Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 1 | /* |
Dhananjay Kumar | 429eb45 | 2018-12-10 22:26:53 +0530 | [diff] [blame] | 2 | * Copyright (c) 2013-2019, The Linux Foundation. All rights reserved. |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 3 | * Not a contribution. |
| 4 | * |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 5 | * Copyright (C) 2013 The Android Open Source Project |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | |
| 20 | #define LOG_TAG "msm8960_platform" |
| 21 | /*#define LOG_NDEBUG 0*/ |
| 22 | #define LOG_NDDEBUG 0 |
| 23 | |
| 24 | #include <stdlib.h> |
| 25 | #include <dlfcn.h> |
Weiyin Jiang | 2995f66 | 2019-04-17 14:25:12 +0800 | [diff] [blame] | 26 | #include <log/log.h> |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 27 | #include <cutils/properties.h> |
| 28 | #include <audio_hw.h> |
| 29 | #include <platform_api.h> |
| 30 | #include "platform.h" |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 31 | #include "audio_extn.h" |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 32 | |
| 33 | #define LIB_ACDB_LOADER "libacdbloader.so" |
| 34 | #define LIB_CSD_CLIENT "libcsd-client.so" |
| 35 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 36 | /* |
| 37 | * This is the sysfs path for the HDMI audio data block |
| 38 | */ |
| 39 | #define AUDIO_DATA_BLOCK_PATH "/sys/class/graphics/fb1/audio_data_block" |
sangwoo | 1b9f4b3 | 2013-06-21 18:22:55 -0700 | [diff] [blame] | 40 | #define MIXER_XML_PATH "/system/etc/mixer_paths.xml" |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * This file will have a maximum of 38 bytes: |
| 44 | * |
| 45 | * 4 bytes: number of audio blocks |
| 46 | * 4 bytes: total length of Short Audio Descriptor (SAD) blocks |
| 47 | * Maximum 10 * 3 bytes: SAD blocks |
| 48 | */ |
| 49 | #define MAX_SAD_BLOCKS 10 |
| 50 | #define SAD_BLOCK_SIZE 3 |
| 51 | |
| 52 | /* EDID format ID for LPCM audio */ |
| 53 | #define EDID_FORMAT_LPCM 1 |
| 54 | |
| 55 | struct audio_block_header |
| 56 | { |
| 57 | int reserved; |
| 58 | int length; |
| 59 | }; |
| 60 | |
| 61 | |
| 62 | typedef void (*acdb_deallocate_t)(); |
| 63 | typedef int (*acdb_init_t)(); |
| 64 | typedef void (*acdb_send_audio_cal_t)(int, int); |
| 65 | typedef void (*acdb_send_voice_cal_t)(int, int); |
| 66 | |
| 67 | typedef int (*csd_client_init_t)(); |
| 68 | typedef int (*csd_client_deinit_t)(); |
| 69 | typedef int (*csd_disable_device_t)(); |
| 70 | typedef int (*csd_enable_device_t)(int, int, uint32_t); |
| 71 | typedef int (*csd_volume_t)(int); |
| 72 | typedef int (*csd_mic_mute_t)(int); |
| 73 | typedef int (*csd_start_voice_t)(); |
| 74 | typedef int (*csd_stop_voice_t)(); |
| 75 | |
| 76 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 77 | struct platform_data { |
| 78 | struct audio_device *adev; |
| 79 | bool fluence_in_spkr_mode; |
| 80 | bool fluence_in_voice_call; |
| 81 | bool fluence_in_voice_rec; |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 82 | int fluence_type; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 83 | int dualmic_config; |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 84 | bool ec_ref_enabled; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 85 | |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 86 | /* Audio calibration related functions */ |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 87 | void *acdb_handle; |
| 88 | acdb_init_t acdb_init; |
| 89 | acdb_deallocate_t acdb_deallocate; |
| 90 | acdb_send_audio_cal_t acdb_send_audio_cal; |
| 91 | acdb_send_voice_cal_t acdb_send_voice_cal; |
| 92 | |
| 93 | /* CSD Client related functions for voice call */ |
| 94 | void *csd_client; |
| 95 | csd_client_init_t csd_client_init; |
| 96 | csd_client_deinit_t csd_client_deinit; |
| 97 | csd_disable_device_t csd_disable_device; |
| 98 | csd_enable_device_t csd_enable_device; |
| 99 | csd_volume_t csd_volume; |
| 100 | csd_mic_mute_t csd_mic_mute; |
| 101 | csd_start_voice_t csd_start_voice; |
| 102 | csd_stop_voice_t csd_stop_voice; |
| 103 | }; |
| 104 | |
| 105 | static const int pcm_device_table[AUDIO_USECASE_MAX][2] = { |
| 106 | [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = {0, 0}, |
| 107 | [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = {14, 14}, |
| 108 | [USECASE_AUDIO_PLAYBACK_MULTI_CH] = {1, 1}, |
| 109 | [USECASE_AUDIO_RECORD] = {0, 0}, |
| 110 | [USECASE_AUDIO_RECORD_LOW_LATENCY] = {14, 14}, |
| 111 | [USECASE_VOICE_CALL] = {12, 12}, |
| 112 | }; |
| 113 | |
| 114 | /* Array to store sound devices */ |
| 115 | static const char * const device_table[SND_DEVICE_MAX] = { |
| 116 | [SND_DEVICE_NONE] = "none", |
| 117 | /* Playback sound devices */ |
| 118 | [SND_DEVICE_OUT_HANDSET] = "handset", |
| 119 | [SND_DEVICE_OUT_SPEAKER] = "speaker", |
| 120 | [SND_DEVICE_OUT_SPEAKER_REVERSE] = "speaker-reverse", |
| 121 | [SND_DEVICE_OUT_HEADPHONES] = "headphones", |
| 122 | [SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES] = "speaker-and-headphones", |
| 123 | [SND_DEVICE_OUT_VOICE_SPEAKER] = "voice-speaker", |
| 124 | [SND_DEVICE_OUT_VOICE_HEADPHONES] = "voice-headphones", |
| 125 | [SND_DEVICE_OUT_HDMI] = "hdmi", |
| 126 | [SND_DEVICE_OUT_SPEAKER_AND_HDMI] = "speaker-and-hdmi", |
| 127 | [SND_DEVICE_OUT_BT_SCO] = "bt-sco-headset", |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 128 | [SND_DEVICE_OUT_BT_SCO_WB] = "bt-sco-headset-wb", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 129 | [SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES] = "voice-tty-full-headphones", |
| 130 | [SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES] = "voice-tty-vco-headphones", |
| 131 | [SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET] = "voice-tty-hco-handset", |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 132 | [SND_DEVICE_OUT_USB_HEADSET] = "usb-headphones", |
| 133 | [SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET] = "speaker-and-usb-headphones", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 134 | |
| 135 | /* Capture sound devices */ |
| 136 | [SND_DEVICE_IN_HANDSET_MIC] = "handset-mic", |
| 137 | [SND_DEVICE_IN_SPEAKER_MIC] = "speaker-mic", |
| 138 | [SND_DEVICE_IN_HEADSET_MIC] = "headset-mic", |
| 139 | [SND_DEVICE_IN_HANDSET_MIC_AEC] = "handset-mic", |
| 140 | [SND_DEVICE_IN_SPEAKER_MIC_AEC] = "voice-speaker-mic", |
| 141 | [SND_DEVICE_IN_HEADSET_MIC_AEC] = "headset-mic", |
| 142 | [SND_DEVICE_IN_VOICE_SPEAKER_MIC] = "voice-speaker-mic", |
| 143 | [SND_DEVICE_IN_VOICE_HEADSET_MIC] = "voice-headset-mic", |
| 144 | [SND_DEVICE_IN_HDMI_MIC] = "hdmi-mic", |
| 145 | [SND_DEVICE_IN_BT_SCO_MIC] = "bt-sco-mic", |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 146 | [SND_DEVICE_IN_BT_SCO_MIC_WB] = "bt-sco-mic-wb", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 147 | [SND_DEVICE_IN_CAMCORDER_MIC] = "camcorder-mic", |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 148 | [SND_DEVICE_IN_VOICE_DMIC] = "voice-dmic-ef", |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 149 | [SND_DEVICE_IN_VOICE_SPEAKER_DMIC] = "voice-speaker-dmic-ef", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 150 | [SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC] = "voice-tty-full-headset-mic", |
| 151 | [SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC] = "voice-tty-vco-handset-mic", |
| 152 | [SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC] = "voice-tty-hco-headset-mic", |
| 153 | [SND_DEVICE_IN_VOICE_REC_MIC] = "voice-rec-mic", |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 154 | [SND_DEVICE_IN_VOICE_REC_DMIC] = "voice-rec-dmic-ef", |
| 155 | [SND_DEVICE_IN_VOICE_REC_DMIC_FLUENCE] = "voice-rec-dmic-ef-fluence", |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 156 | [SND_DEVICE_IN_USB_HEADSET_MIC] = "usb-headset-mic", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | /* ACDB IDs (audio DSP path configuration IDs) for each sound device */ |
| 160 | static const int acdb_device_table[SND_DEVICE_MAX] = { |
| 161 | [SND_DEVICE_NONE] = -1, |
| 162 | [SND_DEVICE_OUT_HANDSET] = 7, |
| 163 | [SND_DEVICE_OUT_SPEAKER] = 14, |
| 164 | [SND_DEVICE_OUT_SPEAKER_REVERSE] = 14, |
| 165 | [SND_DEVICE_OUT_HEADPHONES] = 10, |
| 166 | [SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES] = 10, |
| 167 | [SND_DEVICE_OUT_VOICE_SPEAKER] = 14, |
| 168 | [SND_DEVICE_OUT_VOICE_HEADPHONES] = 10, |
| 169 | [SND_DEVICE_OUT_HDMI] = 18, |
| 170 | [SND_DEVICE_OUT_SPEAKER_AND_HDMI] = 14, |
| 171 | [SND_DEVICE_OUT_BT_SCO] = 22, |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 172 | [SND_DEVICE_OUT_BT_SCO_WB] = 39, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 173 | [SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES] = 17, |
| 174 | [SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES] = 17, |
| 175 | [SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET] = 37, |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 176 | [SND_DEVICE_OUT_USB_HEADSET] = 45, |
| 177 | [SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET] = 14, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 178 | |
| 179 | [SND_DEVICE_IN_HANDSET_MIC] = 4, |
| 180 | [SND_DEVICE_IN_SPEAKER_MIC] = 4, |
| 181 | [SND_DEVICE_IN_HEADSET_MIC] = 8, |
| 182 | [SND_DEVICE_IN_HANDSET_MIC_AEC] = 40, |
| 183 | [SND_DEVICE_IN_SPEAKER_MIC_AEC] = 42, |
| 184 | [SND_DEVICE_IN_HEADSET_MIC_AEC] = 47, |
| 185 | [SND_DEVICE_IN_VOICE_SPEAKER_MIC] = 11, |
| 186 | [SND_DEVICE_IN_VOICE_HEADSET_MIC] = 8, |
| 187 | [SND_DEVICE_IN_HDMI_MIC] = 4, |
| 188 | [SND_DEVICE_IN_BT_SCO_MIC] = 21, |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 189 | [SND_DEVICE_IN_BT_SCO_MIC_WB] = 38, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 190 | [SND_DEVICE_IN_CAMCORDER_MIC] = 61, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 191 | [SND_DEVICE_IN_VOICE_DMIC] = 6, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 192 | [SND_DEVICE_IN_VOICE_SPEAKER_DMIC] = 13, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 193 | [SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC] = 16, |
| 194 | [SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC] = 36, |
| 195 | [SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC] = 16, |
| 196 | [SND_DEVICE_IN_VOICE_REC_MIC] = 62, |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 197 | [SND_DEVICE_IN_USB_HEADSET_MIC] = 44, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 198 | /* TODO: Update with proper acdb ids */ |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 199 | [SND_DEVICE_IN_VOICE_REC_DMIC] = 62, |
| 200 | [SND_DEVICE_IN_VOICE_REC_DMIC_FLUENCE] = 6, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 201 | }; |
| 202 | |
Haynes Mathew George | 7ff216f | 2013-09-11 19:51:41 -0700 | [diff] [blame] | 203 | #define DEEP_BUFFER_PLATFORM_DELAY (29*1000LL) |
| 204 | #define LOW_LATENCY_PLATFORM_DELAY (13*1000LL) |
| 205 | |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 206 | void platform_set_echo_reference(void *platform, bool enable) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 207 | { |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 208 | struct platform_data *my_data = (struct platform_data *)platform; |
| 209 | struct audio_device *adev = my_data->adev; |
| 210 | |
| 211 | if (enable) { |
| 212 | my_data->ec_ref_enabled = enable; |
Anish Kumar | 4980fa1 | 2014-04-17 12:42:20 -0700 | [diff] [blame] | 213 | audio_route_apply_and_update_path(adev->audio_route, "echo-reference"); |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 214 | } else { |
| 215 | if (my_data->ec_ref_enabled) { |
| 216 | audio_route_reset_and_update_path(adev->audio_route, "echo-reference"); |
| 217 | my_data->ec_ref_enabled = enable; |
| 218 | } else { |
| 219 | ALOGV("EC Reference is already disabled: %d", my_data->ec_ref_enabled); |
| 220 | } |
| 221 | } |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 222 | |
Anish Kumar | 4980fa1 | 2014-04-17 12:42:20 -0700 | [diff] [blame] | 223 | ALOGV("Setting EC Reference: %d", enable); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void *platform_init(struct audio_device *adev) |
| 227 | { |
| 228 | char platform[PROPERTY_VALUE_MAX]; |
| 229 | char baseband[PROPERTY_VALUE_MAX]; |
| 230 | char value[PROPERTY_VALUE_MAX]; |
| 231 | struct platform_data *my_data; |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 232 | const char *snd_card_name; |
Satish Babu Patakokila | bbd4e9d | 2015-05-13 22:08:06 +0530 | [diff] [blame] | 233 | const char *mixer_ctl_name = "Set HPX ActiveBe"; |
| 234 | struct mixer_ctl *ctl = NULL; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 235 | |
sangwoo | 1b9f4b3 | 2013-06-21 18:22:55 -0700 | [diff] [blame] | 236 | adev->mixer = mixer_open(MIXER_CARD); |
| 237 | |
| 238 | if (!adev->mixer) { |
| 239 | ALOGE("Unable to open the mixer, aborting."); |
| 240 | return NULL; |
| 241 | } |
| 242 | |
| 243 | adev->audio_route = audio_route_init(MIXER_CARD, MIXER_XML_PATH); |
| 244 | if (!adev->audio_route) { |
| 245 | ALOGE("%s: Failed to init audio route controls, aborting.", __func__); |
Mingming Yin | dda29e6 | 2015-12-02 18:02:28 -0800 | [diff] [blame] | 246 | mixer_close(adev->mixer); |
sangwoo | 1b9f4b3 | 2013-06-21 18:22:55 -0700 | [diff] [blame] | 247 | return NULL; |
| 248 | } |
| 249 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 250 | my_data = calloc(1, sizeof(struct platform_data)); |
| 251 | |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 252 | snd_card_name = mixer_get_name(adev->mixer); |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 253 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 254 | my_data->adev = adev; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 255 | my_data->fluence_in_spkr_mode = false; |
| 256 | my_data->fluence_in_voice_call = false; |
| 257 | my_data->fluence_in_voice_rec = false; |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 258 | my_data->fluence_type = FLUENCE_NONE; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 259 | |
Aniket Kumar Lata | 8fc67e6 | 2017-05-02 12:33:46 -0700 | [diff] [blame] | 260 | property_get("ro.vendor.audio.sdk.fluencetype", value, ""); |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 261 | if (!strncmp("fluencepro", value, sizeof("fluencepro"))) { |
| 262 | my_data->fluence_type = FLUENCE_QUAD_MIC; |
| 263 | } else if (!strncmp("fluence", value, sizeof("fluence"))) { |
| 264 | my_data->fluence_type = FLUENCE_DUAL_MIC; |
| 265 | } else { |
| 266 | my_data->fluence_type = FLUENCE_NONE; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 269 | if (my_data->fluence_type != FLUENCE_NONE) { |
Aniket Kumar Lata | 8fc67e6 | 2017-05-02 12:33:46 -0700 | [diff] [blame] | 270 | property_get("persist.vendor.audio.fluence.voicecall",value,""); |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 271 | if (!strncmp("true", value, sizeof("true"))) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 272 | my_data->fluence_in_voice_call = true; |
| 273 | } |
| 274 | |
Aniket Kumar Lata | 8fc67e6 | 2017-05-02 12:33:46 -0700 | [diff] [blame] | 275 | property_get("persist.vendor.audio.fluence.voicerec",value,""); |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 276 | if (!strncmp("true", value, sizeof("true"))) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 277 | my_data->fluence_in_voice_rec = true; |
| 278 | } |
| 279 | |
Aniket Kumar Lata | 8fc67e6 | 2017-05-02 12:33:46 -0700 | [diff] [blame] | 280 | property_get("persist.vendor.audio.fluence.speaker",value,""); |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 281 | if (!strncmp("true", value, sizeof("true"))) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 282 | my_data->fluence_in_spkr_mode = true; |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | my_data->acdb_handle = dlopen(LIB_ACDB_LOADER, RTLD_NOW); |
| 287 | if (my_data->acdb_handle == NULL) { |
| 288 | ALOGE("%s: DLOPEN failed for %s", __func__, LIB_ACDB_LOADER); |
| 289 | } else { |
| 290 | ALOGV("%s: DLOPEN successful for %s", __func__, LIB_ACDB_LOADER); |
| 291 | my_data->acdb_deallocate = (acdb_deallocate_t)dlsym(my_data->acdb_handle, |
| 292 | "acdb_loader_deallocate_ACDB"); |
| 293 | my_data->acdb_send_audio_cal = (acdb_send_audio_cal_t)dlsym(my_data->acdb_handle, |
| 294 | "acdb_loader_send_audio_cal"); |
| 295 | if (!my_data->acdb_send_audio_cal) |
| 296 | ALOGW("%s: Could not find the symbol acdb_send_audio_cal from %s", |
| 297 | __func__, LIB_ACDB_LOADER); |
| 298 | my_data->acdb_send_voice_cal = (acdb_send_voice_cal_t)dlsym(my_data->acdb_handle, |
| 299 | "acdb_loader_send_voice_cal"); |
| 300 | my_data->acdb_init = (acdb_init_t)dlsym(my_data->acdb_handle, |
| 301 | "acdb_loader_init_ACDB"); |
| 302 | if (my_data->acdb_init == NULL) |
| 303 | ALOGE("%s: dlsym error %s for acdb_loader_init_ACDB", __func__, dlerror()); |
| 304 | else |
| 305 | my_data->acdb_init(); |
| 306 | } |
| 307 | |
| 308 | /* If platform is Fusion3, load CSD Client specific symbols |
| 309 | * Voice call is handled by MDM and apps processor talks to |
| 310 | * MDM through CSD Client |
| 311 | */ |
| 312 | property_get("ro.board.platform", platform, ""); |
| 313 | property_get("ro.baseband", baseband, ""); |
| 314 | if (!strcmp("msm8960", platform) && !strcmp("mdm", baseband)) { |
| 315 | my_data->csd_client = dlopen(LIB_CSD_CLIENT, RTLD_NOW); |
| 316 | if (my_data->csd_client == NULL) |
| 317 | ALOGE("%s: DLOPEN failed for %s", __func__, LIB_CSD_CLIENT); |
| 318 | } |
| 319 | |
| 320 | if (my_data->csd_client) { |
| 321 | ALOGV("%s: DLOPEN successful for %s", __func__, LIB_CSD_CLIENT); |
| 322 | my_data->csd_client_deinit = (csd_client_deinit_t)dlsym(my_data->csd_client, |
| 323 | "csd_client_deinit"); |
| 324 | my_data->csd_disable_device = (csd_disable_device_t)dlsym(my_data->csd_client, |
| 325 | "csd_client_disable_device"); |
| 326 | my_data->csd_enable_device = (csd_enable_device_t)dlsym(my_data->csd_client, |
| 327 | "csd_client_enable_device"); |
| 328 | my_data->csd_start_voice = (csd_start_voice_t)dlsym(my_data->csd_client, |
| 329 | "csd_client_start_voice"); |
| 330 | my_data->csd_stop_voice = (csd_stop_voice_t)dlsym(my_data->csd_client, |
| 331 | "csd_client_stop_voice"); |
| 332 | my_data->csd_volume = (csd_volume_t)dlsym(my_data->csd_client, |
| 333 | "csd_client_volume"); |
| 334 | my_data->csd_mic_mute = (csd_mic_mute_t)dlsym(my_data->csd_client, |
| 335 | "csd_client_mic_mute"); |
| 336 | my_data->csd_client_init = (csd_client_init_t)dlsym(my_data->csd_client, |
| 337 | "csd_client_init"); |
| 338 | |
| 339 | if (my_data->csd_client_init == NULL) { |
| 340 | ALOGE("%s: dlsym error %s for csd_client_init", __func__, dlerror()); |
| 341 | } else { |
| 342 | my_data->csd_client_init(); |
| 343 | } |
| 344 | } |
| 345 | |
Satish Babu Patakokila | bbd4e9d | 2015-05-13 22:08:06 +0530 | [diff] [blame] | 346 | /* Configure active back end for HPX*/ |
| 347 | ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name); |
| 348 | if (ctl) { |
| 349 | ALOGI(" sending HPX Active BE information "); |
| 350 | mixer_ctl_set_value(ctl, 0, false); |
| 351 | } |
| 352 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 353 | return my_data; |
| 354 | } |
| 355 | |
Dhananjay Kumar | 429eb45 | 2018-12-10 22:26:53 +0530 | [diff] [blame] | 356 | struct audio_custom_mtmx_params * |
| 357 | platform_get_custom_mtmx_params |
| 358 | ( |
| 359 | void *platform __unused, |
| 360 | struct audio_custom_mtmx_params_info *info __unused |
| 361 | ) |
| 362 | { |
| 363 | ALOGW("%s: not implemented!", __func__); |
| 364 | return NULL; |
| 365 | } |
| 366 | |
| 367 | int platform_add_custom_mtmx_params |
| 368 | ( |
| 369 | void *platform __unused, |
| 370 | struct audio_custom_mtmx_params_info *info __unused |
| 371 | ) |
| 372 | { |
| 373 | ALOGW("%s: not implemented!", __func__); |
| 374 | return -ENOSYS; |
| 375 | } |
| 376 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 377 | void platform_deinit(void *platform) |
| 378 | { |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 379 | struct platform_data *my_data = (struct platform_data *)platform; |
| 380 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 381 | free(platform); |
| 382 | } |
| 383 | |
| 384 | const char *platform_get_snd_device_name(snd_device_t snd_device) |
| 385 | { |
| 386 | if (snd_device >= SND_DEVICE_MIN && snd_device < SND_DEVICE_MAX) |
| 387 | return device_table[snd_device]; |
| 388 | else |
| 389 | return ""; |
| 390 | } |
| 391 | |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 392 | int platform_get_snd_device_name_extn(void *platform, snd_device_t snd_device, |
| 393 | char *device_name) |
| 394 | { |
| 395 | struct platform_data *my_data = (struct platform_data *)platform; |
| 396 | |
| 397 | if (snd_device >= SND_DEVICE_MIN && snd_device < SND_DEVICE_MAX) { |
| 398 | strlcpy(device_name, device_table[snd_device], DEVICE_NAME_MAX_SIZE); |
Ravi Kumar Alamanda | 48c921d | 2013-10-29 06:07:44 -0700 | [diff] [blame] | 399 | } else { |
| 400 | strlcpy(device_name, "", DEVICE_NAME_MAX_SIZE); |
| 401 | return -EINVAL; |
| 402 | } |
| 403 | |
| 404 | return 0; |
| 405 | } |
| 406 | |
Banajit Goswami | 20cdd21 | 2015-09-11 01:11:30 -0700 | [diff] [blame] | 407 | void platform_add_backend_name(char *mixer_path, snd_device_t snd_device, |
Banajit Goswami | 4dc87fb | 2015-10-11 21:46:07 -0700 | [diff] [blame] | 408 | struct audio_usecase *usecase __unused) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 409 | { |
| 410 | if (snd_device == SND_DEVICE_IN_BT_SCO_MIC) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 411 | strlcat(mixer_path, " bt-sco", MIXER_PATH_MAX_LENGTH); |
| 412 | else if (snd_device == SND_DEVICE_IN_BT_SCO_MIC_WB) |
| 413 | strlcat(mixer_path, " bt-sco-wb", MIXER_PATH_MAX_LENGTH); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 414 | else if(snd_device == SND_DEVICE_OUT_BT_SCO) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 415 | strlcat(mixer_path, " bt-sco", MIXER_PATH_MAX_LENGTH); |
| 416 | else if(snd_device == SND_DEVICE_OUT_BT_SCO_WB) |
| 417 | strlcat(mixer_path, " bt-sco-wb", MIXER_PATH_MAX_LENGTH); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 418 | else if (snd_device == SND_DEVICE_OUT_HDMI) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 419 | strlcat(mixer_path, " hdmi", MIXER_PATH_MAX_LENGTH); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 420 | else if (snd_device == SND_DEVICE_OUT_SPEAKER_AND_HDMI) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 421 | strlcat(mixer_path, " speaker-and-hdmi", MIXER_PATH_MAX_LENGTH); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | int platform_get_pcm_device_id(audio_usecase_t usecase, int device_type) |
| 425 | { |
Mingshu Pang | 1513f97 | 2019-05-24 12:43:51 +0800 | [diff] [blame] | 426 | int device_id = -1; |
| 427 | |
| 428 | if ((usecase >= AUDIO_USECASE_MAX) || (usecase <= USECASE_INVALID)) { |
| 429 | ALOGE("%s: invalid usecase case idx %d", __func__, usecase); |
| 430 | return device_id; |
| 431 | } |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 432 | if (device_type == PCM_PLAYBACK) |
| 433 | device_id = pcm_device_table[usecase][0]; |
| 434 | else |
| 435 | device_id = pcm_device_table[usecase][1]; |
| 436 | return device_id; |
| 437 | } |
| 438 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 439 | int platform_get_snd_device_index(char *snd_device_index_name __unused) |
Ben Romberger | 61764e3 | 2014-01-10 13:49:02 -0800 | [diff] [blame] | 440 | { |
| 441 | return -ENODEV; |
| 442 | } |
| 443 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 444 | int platform_set_snd_device_acdb_id(snd_device_t snd_device __unused, |
| 445 | unsigned int acdb_id __unused) |
Ben Romberger | 5588688 | 2014-01-10 13:49:02 -0800 | [diff] [blame] | 446 | { |
| 447 | return -ENODEV; |
| 448 | } |
| 449 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 450 | uint32_t platform_get_compress_offload_buffer_size(audio_offload_info_t* info __unused) |
| 451 | { |
| 452 | ALOGE("%s: Not implemented", __func__); |
| 453 | return -ENOSYS; |
| 454 | } |
| 455 | |
| 456 | int platform_get_snd_device_acdb_id(snd_device_t snd_device __unused) |
| 457 | { |
| 458 | ALOGE("%s: Not implemented", __func__); |
| 459 | return -ENOSYS; |
| 460 | } |
| 461 | |
Carter Hsu | 32a6236 | 2018-10-15 15:01:42 -0700 | [diff] [blame] | 462 | void platform_add_external_specific_device(snd_device_t snd_device __unused, |
| 463 | const char *name __unused, |
| 464 | unsigned int acdb_id __unused) |
| 465 | { |
| 466 | return; |
| 467 | } |
| 468 | |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 469 | int platform_set_snd_device_bit_width(snd_device_t snd_device __unused, |
| 470 | unsigned int bit_width __unused) |
Amit Shekhar | 5a39c91 | 2014-10-14 15:39:30 -0700 | [diff] [blame] | 471 | { |
| 472 | ALOGE("%s: Not implemented", __func__); |
| 473 | return -ENOSYS; |
| 474 | } |
| 475 | |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 476 | int platform_get_snd_device_bit_width(snd_device_t snd_device __unused) |
Amit Shekhar | 5a39c91 | 2014-10-14 15:39:30 -0700 | [diff] [blame] | 477 | { |
| 478 | ALOGE("%s: Not implemented", __func__); |
| 479 | return -ENOSYS; |
| 480 | } |
| 481 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 482 | int platform_switch_voice_call_enable_device_config(void *platform __unused, |
| 483 | snd_device_t out_snd_device __unused, |
| 484 | snd_device_t in_snd_device __unused) |
| 485 | { |
| 486 | ALOGE("%s: Not implemented", __func__); |
| 487 | return -ENOSYS; |
| 488 | } |
| 489 | |
| 490 | int platform_switch_voice_call_usecase_route_post(void *platform __unused, |
| 491 | snd_device_t out_snd_device __unused, |
| 492 | snd_device_t in_snd_device __unused) |
| 493 | { |
| 494 | ALOGE("%s: Not implemented", __func__); |
| 495 | return -ENOSYS; |
| 496 | } |
| 497 | |
| 498 | int platform_set_incall_recording_session_id(void *platform __unused, |
| 499 | uint32_t session_id __unused, |
| 500 | int rec_mode __unused) |
| 501 | { |
| 502 | ALOGE("%s: Not implemented", __func__); |
| 503 | return -ENOSYS; |
| 504 | } |
| 505 | |
| 506 | int platform_stop_incall_recording_usecase(void *platform __unused) |
| 507 | { |
| 508 | ALOGE("%s: Not implemented", __func__); |
| 509 | return -ENOSYS; |
| 510 | } |
| 511 | |
| 512 | int platform_get_sample_rate(void *platform __unused, uint32_t *rate __unused) |
| 513 | { |
| 514 | ALOGE("%s: Not implemented", __func__); |
| 515 | return -ENOSYS; |
| 516 | } |
| 517 | |
| 518 | int platform_get_default_app_type(void *platform __unused) |
| 519 | { |
| 520 | ALOGE("%s: Not implemented", __func__); |
| 521 | return -ENOSYS; |
| 522 | } |
| 523 | |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 524 | int platform_send_audio_calibration(void *platform, struct audio_usecase *usecase, |
Zhou Song | 06761dd | 2019-04-28 18:08:17 +0800 | [diff] [blame^] | 525 | int app_type __unused) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 526 | { |
| 527 | struct platform_data *my_data = (struct platform_data *)platform; |
| 528 | int acdb_dev_id, acdb_dev_type; |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 529 | struct audio_device *adev = my_data->adev; |
| 530 | int snd_device = SND_DEVICE_OUT_SPEAKER; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 531 | |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 532 | if (usecase->type == PCM_PLAYBACK) |
| 533 | snd_device = platform_get_output_snd_device(adev->platform, |
| 534 | usecase->stream.out->devices); |
Karthik Reddy Katta | 81c4261 | 2015-11-13 17:49:07 +0530 | [diff] [blame] | 535 | else if ((usecase->type == PCM_CAPTURE) && |
| 536 | voice_is_in_call_rec_stream(usecase->stream.in)) |
| 537 | snd_device = voice_get_incall_rec_snd_device(usecase->in_snd_device); |
Preetam Singh Ranawat | 2d0e463 | 2015-02-02 12:40:59 +0530 | [diff] [blame] | 538 | else if ((usecase->type == PCM_HFP_CALL) || (usecase->type == PCM_CAPTURE)) |
| 539 | snd_device = platform_get_input_snd_device(adev->platform, |
| 540 | adev->primary_output->devices); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 541 | acdb_dev_id = acdb_device_table[snd_device]; |
| 542 | if (acdb_dev_id < 0) { |
| 543 | ALOGE("%s: Could not find acdb id for device(%d)", |
| 544 | __func__, snd_device); |
| 545 | return -EINVAL; |
| 546 | } |
| 547 | if (my_data->acdb_send_audio_cal) { |
Eric Laurent | 994a693 | 2013-07-17 11:51:42 -0700 | [diff] [blame] | 548 | ("%s: sending audio calibration for snd_device(%d) acdb_id(%d)", |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 549 | __func__, snd_device, acdb_dev_id); |
| 550 | if (snd_device >= SND_DEVICE_OUT_BEGIN && |
| 551 | snd_device < SND_DEVICE_OUT_END) |
| 552 | acdb_dev_type = ACDB_DEV_TYPE_OUT; |
| 553 | else |
| 554 | acdb_dev_type = ACDB_DEV_TYPE_IN; |
| 555 | my_data->acdb_send_audio_cal(acdb_dev_id, acdb_dev_type); |
| 556 | } |
| 557 | return 0; |
| 558 | } |
| 559 | |
| 560 | int platform_switch_voice_call_device_pre(void *platform) |
| 561 | { |
| 562 | struct platform_data *my_data = (struct platform_data *)platform; |
| 563 | int ret = 0; |
| 564 | |
Ravi Kumar Alamanda | be14939 | 2014-10-20 17:07:43 -0700 | [diff] [blame] | 565 | if (my_data->csd_client != NULL && |
| 566 | voice_is_in_call(my_data->adev)) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 567 | /* This must be called before disabling the mixer controls on APQ side */ |
| 568 | if (my_data->csd_disable_device == NULL) { |
| 569 | ALOGE("%s: dlsym error for csd_disable_device", __func__); |
| 570 | } else { |
| 571 | ret = my_data->csd_disable_device(); |
| 572 | if (ret < 0) { |
| 573 | ALOGE("%s: csd_client_disable_device, failed, error %d", |
| 574 | __func__, ret); |
| 575 | } |
| 576 | } |
| 577 | } |
| 578 | return ret; |
| 579 | } |
| 580 | |
| 581 | int platform_switch_voice_call_device_post(void *platform, |
| 582 | snd_device_t out_snd_device, |
| 583 | snd_device_t in_snd_device) |
| 584 | { |
| 585 | struct platform_data *my_data = (struct platform_data *)platform; |
| 586 | int acdb_rx_id, acdb_tx_id; |
| 587 | int ret = 0; |
| 588 | |
| 589 | if (my_data->csd_client) { |
| 590 | if (my_data->csd_enable_device == NULL) { |
| 591 | ALOGE("%s: dlsym error for csd_enable_device", |
| 592 | __func__); |
| 593 | } else { |
| 594 | acdb_rx_id = acdb_device_table[out_snd_device]; |
| 595 | acdb_tx_id = acdb_device_table[in_snd_device]; |
| 596 | |
| 597 | if (acdb_rx_id > 0 || acdb_tx_id > 0) { |
| 598 | ret = my_data->csd_enable_device(acdb_rx_id, acdb_tx_id, |
| 599 | my_data->adev->acdb_settings); |
| 600 | if (ret < 0) { |
| 601 | ALOGE("%s: csd_enable_device, failed, error %d", |
| 602 | __func__, ret); |
| 603 | } |
| 604 | } else { |
| 605 | ALOGE("%s: Incorrect ACDB IDs (rx: %d tx: %d)", __func__, |
| 606 | acdb_rx_id, acdb_tx_id); |
| 607 | } |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | return ret; |
| 612 | } |
| 613 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 614 | int platform_start_voice_call(void *platform, uint32_t vsid __unused) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 615 | { |
| 616 | struct platform_data *my_data = (struct platform_data *)platform; |
| 617 | int ret = 0; |
| 618 | |
| 619 | if (my_data->csd_client) { |
| 620 | if (my_data->csd_start_voice == NULL) { |
| 621 | ALOGE("dlsym error for csd_client_start_voice"); |
| 622 | ret = -ENOSYS; |
| 623 | } else { |
| 624 | ret = my_data->csd_start_voice(); |
| 625 | if (ret < 0) { |
| 626 | ALOGE("%s: csd_start_voice error %d\n", __func__, ret); |
| 627 | } |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | return ret; |
| 632 | } |
| 633 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 634 | int platform_stop_voice_call(void *platform, uint32_t vsid __unused) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 635 | { |
| 636 | struct platform_data *my_data = (struct platform_data *)platform; |
| 637 | int ret = 0; |
| 638 | |
| 639 | if (my_data->csd_client) { |
| 640 | if (my_data->csd_stop_voice == NULL) { |
| 641 | ALOGE("dlsym error for csd_stop_voice"); |
| 642 | } else { |
| 643 | ret = my_data->csd_stop_voice(); |
| 644 | if (ret < 0) { |
| 645 | ALOGE("%s: csd_stop_voice error %d\n", __func__, ret); |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | return ret; |
| 651 | } |
| 652 | |
| 653 | int platform_set_voice_volume(void *platform, int volume) |
| 654 | { |
| 655 | struct platform_data *my_data = (struct platform_data *)platform; |
| 656 | int ret = 0; |
| 657 | |
| 658 | if (my_data->csd_client) { |
| 659 | if (my_data->csd_volume == NULL) { |
| 660 | ALOGE("%s: dlsym error for csd_volume", __func__); |
| 661 | } else { |
| 662 | ret = my_data->csd_volume(volume); |
| 663 | if (ret < 0) { |
| 664 | ALOGE("%s: csd_volume error %d", __func__, ret); |
| 665 | } |
| 666 | } |
| 667 | } else { |
| 668 | ALOGE("%s: No CSD Client present", __func__); |
| 669 | } |
| 670 | |
| 671 | return ret; |
| 672 | } |
| 673 | |
| 674 | int platform_set_mic_mute(void *platform, bool state) |
| 675 | { |
| 676 | struct platform_data *my_data = (struct platform_data *)platform; |
| 677 | int ret = 0; |
| 678 | |
| 679 | if (my_data->adev->mode == AUDIO_MODE_IN_CALL) { |
| 680 | if (my_data->csd_client) { |
| 681 | if (my_data->csd_mic_mute == NULL) { |
| 682 | ALOGE("%s: dlsym error for csd_mic_mute", __func__); |
| 683 | } else { |
| 684 | ret = my_data->csd_mic_mute(state); |
| 685 | if (ret < 0) { |
| 686 | ALOGE("%s: csd_mic_mute error %d", __func__, ret); |
| 687 | } |
| 688 | } |
| 689 | } else { |
| 690 | ALOGE("%s: No CSD Client present", __func__); |
| 691 | } |
| 692 | } |
| 693 | |
| 694 | return ret; |
| 695 | } |
| 696 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 697 | int platform_set_device_mute(void *platform __unused, bool state __unused, char *dir __unused) |
Shiv Maliyappanahalli | c6fd8ee | 2014-03-07 15:31:55 -0800 | [diff] [blame] | 698 | { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 699 | ALOGE("%s: Not implemented", __func__); |
Shiv Maliyappanahalli | c6fd8ee | 2014-03-07 15:31:55 -0800 | [diff] [blame] | 700 | return -ENOSYS; |
| 701 | } |
| 702 | |
Shiv Maliyappanahalli | c065640 | 2016-09-03 14:13:26 -0700 | [diff] [blame] | 703 | int platform_get_ext_disp_type(void *platform) |
| 704 | { |
| 705 | return EXT_DISPLAY_TYPE_HDMI; |
| 706 | } |
| 707 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 708 | snd_device_t platform_get_output_snd_device(void *platform, audio_devices_t devices) |
| 709 | { |
| 710 | struct platform_data *my_data = (struct platform_data *)platform; |
| 711 | struct audio_device *adev = my_data->adev; |
| 712 | audio_mode_t mode = adev->mode; |
| 713 | snd_device_t snd_device = SND_DEVICE_NONE; |
| 714 | |
| 715 | ALOGV("%s: enter: output devices(%#x)", __func__, devices); |
| 716 | if (devices == AUDIO_DEVICE_NONE || |
| 717 | devices & AUDIO_DEVICE_BIT_IN) { |
| 718 | ALOGV("%s: Invalid output devices (%#x)", __func__, devices); |
| 719 | goto exit; |
| 720 | } |
| 721 | |
Venkata Narendra Kumar Gutta | bfdfa15 | 2015-06-22 14:25:35 +0530 | [diff] [blame] | 722 | if (mode == AUDIO_MODE_IN_CALL) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 723 | if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE || |
| 724 | devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 725 | if (adev->voice.tty_mode == TTY_MODE_FULL) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 726 | snd_device = SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES; |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 727 | else if (adev->voice.tty_mode == TTY_MODE_VCO) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 728 | snd_device = SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES; |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 729 | else if (adev->voice.tty_mode == TTY_MODE_HCO) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 730 | snd_device = SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET; |
| 731 | else |
| 732 | snd_device = SND_DEVICE_OUT_VOICE_HEADPHONES; |
| 733 | } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) { |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 734 | if (adev->bt_wb_speech_enabled) |
| 735 | snd_device = SND_DEVICE_OUT_BT_SCO_WB; |
| 736 | else |
| 737 | snd_device = SND_DEVICE_OUT_BT_SCO; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 738 | } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) { |
| 739 | snd_device = SND_DEVICE_OUT_VOICE_SPEAKER; |
| 740 | } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) { |
Ravi Kumar Alamanda | ceb4082 | 2013-11-06 11:01:47 -0800 | [diff] [blame] | 741 | snd_device = SND_DEVICE_OUT_HANDSET; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 742 | } |
| 743 | if (snd_device != SND_DEVICE_NONE) { |
| 744 | goto exit; |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | if (popcount(devices) == 2) { |
| 749 | if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADPHONE | |
| 750 | AUDIO_DEVICE_OUT_SPEAKER)) { |
| 751 | snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES; |
| 752 | } else if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADSET | |
| 753 | AUDIO_DEVICE_OUT_SPEAKER)) { |
| 754 | snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES; |
| 755 | } else if (devices == (AUDIO_DEVICE_OUT_AUX_DIGITAL | |
| 756 | AUDIO_DEVICE_OUT_SPEAKER)) { |
| 757 | snd_device = SND_DEVICE_OUT_SPEAKER_AND_HDMI; |
| 758 | } else { |
| 759 | ALOGE("%s: Invalid combo device(%#x)", __func__, devices); |
| 760 | goto exit; |
| 761 | } |
| 762 | if (snd_device != SND_DEVICE_NONE) { |
| 763 | goto exit; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | if (popcount(devices) != 1) { |
| 768 | ALOGE("%s: Invalid output devices(%#x)", __func__, devices); |
| 769 | goto exit; |
| 770 | } |
| 771 | |
| 772 | if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE || |
| 773 | devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) { |
| 774 | snd_device = SND_DEVICE_OUT_HEADPHONES; |
| 775 | } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) { |
| 776 | if (adev->speaker_lr_swap) |
| 777 | snd_device = SND_DEVICE_OUT_SPEAKER_REVERSE; |
| 778 | else |
| 779 | snd_device = SND_DEVICE_OUT_SPEAKER; |
| 780 | } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) { |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 781 | if (adev->bt_wb_speech_enabled) |
| 782 | snd_device = SND_DEVICE_OUT_BT_SCO_WB; |
| 783 | else |
| 784 | snd_device = SND_DEVICE_OUT_BT_SCO; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 785 | } else if (devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) { |
| 786 | snd_device = SND_DEVICE_OUT_HDMI ; |
| 787 | } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) { |
| 788 | snd_device = SND_DEVICE_OUT_HANDSET; |
| 789 | } else { |
| 790 | ALOGE("%s: Unknown device(s) %#x", __func__, devices); |
| 791 | } |
| 792 | exit: |
| 793 | ALOGV("%s: exit: snd_device(%s)", __func__, device_table[snd_device]); |
| 794 | return snd_device; |
| 795 | } |
| 796 | |
| 797 | snd_device_t platform_get_input_snd_device(void *platform, audio_devices_t out_device) |
| 798 | { |
| 799 | struct platform_data *my_data = (struct platform_data *)platform; |
| 800 | struct audio_device *adev = my_data->adev; |
| 801 | audio_source_t source = (adev->active_input == NULL) ? |
| 802 | AUDIO_SOURCE_DEFAULT : adev->active_input->source; |
| 803 | |
| 804 | audio_mode_t mode = adev->mode; |
| 805 | audio_devices_t in_device = ((adev->active_input == NULL) ? |
| 806 | AUDIO_DEVICE_NONE : adev->active_input->device) |
| 807 | & ~AUDIO_DEVICE_BIT_IN; |
| 808 | audio_channel_mask_t channel_mask = (adev->active_input == NULL) ? |
| 809 | AUDIO_CHANNEL_IN_MONO : adev->active_input->channel_mask; |
| 810 | snd_device_t snd_device = SND_DEVICE_NONE; |
| 811 | |
| 812 | ALOGV("%s: enter: out_device(%#x) in_device(%#x)", |
| 813 | __func__, out_device, in_device); |
Venkata Narendra Kumar Gutta | bfdfa15 | 2015-06-22 14:25:35 +0530 | [diff] [blame] | 814 | if ((out_device != AUDIO_DEVICE_NONE) && (mode == AUDIO_MODE_IN_CALL)) { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 815 | if (adev->voice.tty_mode != TTY_MODE_OFF) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 816 | if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE || |
| 817 | out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 818 | switch (adev->voice.tty_mode) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 819 | case TTY_MODE_FULL: |
| 820 | snd_device = SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC; |
| 821 | break; |
| 822 | case TTY_MODE_VCO: |
| 823 | snd_device = SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC; |
| 824 | break; |
| 825 | case TTY_MODE_HCO: |
| 826 | snd_device = SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC; |
| 827 | break; |
| 828 | default: |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 829 | ALOGE("%s: Invalid TTY mode (%#x)", __func__, adev->voice.tty_mode); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 830 | } |
| 831 | goto exit; |
| 832 | } |
| 833 | } |
| 834 | if (out_device & AUDIO_DEVICE_OUT_EARPIECE || |
| 835 | out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) { |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 836 | if (my_data->fluence_type == FLUENCE_NONE || |
| 837 | my_data->fluence_in_voice_call == false) { |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 838 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 839 | } else { |
Ravi Kumar Alamanda | ceb4082 | 2013-11-06 11:01:47 -0800 | [diff] [blame] | 840 | snd_device = SND_DEVICE_IN_VOICE_DMIC; |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 841 | adev->acdb_settings |= DMIC_FLAG; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 842 | } |
| 843 | } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) { |
| 844 | snd_device = SND_DEVICE_IN_VOICE_HEADSET_MIC; |
| 845 | } else if (out_device & AUDIO_DEVICE_OUT_ALL_SCO) { |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 846 | if (adev->bt_wb_speech_enabled) |
| 847 | snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB; |
| 848 | else |
| 849 | snd_device = SND_DEVICE_IN_BT_SCO_MIC; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 850 | } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) { |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 851 | if (my_data->fluence_type != FLUENCE_NONE && |
| 852 | my_data->fluence_in_voice_call && |
| 853 | my_data->fluence_in_spkr_mode) { |
| 854 | if(my_data->fluence_type == FLUENCE_DUAL_MIC) { |
| 855 | adev->acdb_settings |= DMIC_FLAG; |
| 856 | snd_device = SND_DEVICE_IN_VOICE_SPEAKER_DMIC; |
| 857 | } else { |
| 858 | adev->acdb_settings |= QMIC_FLAG; |
| 859 | snd_device = SND_DEVICE_IN_VOICE_SPEAKER_QMIC; |
| 860 | } |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 861 | } else { |
| 862 | snd_device = SND_DEVICE_IN_VOICE_SPEAKER_MIC; |
| 863 | } |
| 864 | } |
| 865 | } else if (source == AUDIO_SOURCE_CAMCORDER) { |
| 866 | if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC || |
| 867 | in_device & AUDIO_DEVICE_IN_BACK_MIC) { |
| 868 | snd_device = SND_DEVICE_IN_CAMCORDER_MIC; |
| 869 | } |
| 870 | } else if (source == AUDIO_SOURCE_VOICE_RECOGNITION) { |
| 871 | if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) { |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 872 | if (channel_mask == AUDIO_CHANNEL_IN_FRONT_BACK) |
| 873 | snd_device = SND_DEVICE_IN_VOICE_REC_DMIC; |
| 874 | else if (my_data->fluence_in_voice_rec) |
| 875 | snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_FLUENCE; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 876 | |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 877 | if (snd_device == SND_DEVICE_NONE) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 878 | snd_device = SND_DEVICE_IN_VOICE_REC_MIC; |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 879 | else |
| 880 | adev->acdb_settings |= DMIC_FLAG; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 881 | } |
| 882 | } else if (source == AUDIO_SOURCE_VOICE_COMMUNICATION) { |
| 883 | if (out_device & AUDIO_DEVICE_OUT_SPEAKER) |
| 884 | in_device = AUDIO_DEVICE_IN_BACK_MIC; |
| 885 | if (adev->active_input) { |
| 886 | if (adev->active_input->enable_aec) { |
| 887 | if (in_device & AUDIO_DEVICE_IN_BACK_MIC) { |
| 888 | snd_device = SND_DEVICE_IN_SPEAKER_MIC_AEC; |
| 889 | } else if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) { |
| 890 | snd_device = SND_DEVICE_IN_HANDSET_MIC_AEC; |
| 891 | } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) { |
| 892 | snd_device = SND_DEVICE_IN_HEADSET_MIC_AEC; |
| 893 | } |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 894 | platform_set_echo_reference(adev->platform, true); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 895 | } else |
Venkata Narendra Kumar Gutta | 1bbbf54 | 2014-09-04 19:11:25 +0530 | [diff] [blame] | 896 | platform_set_echo_reference(adev->platform, false); |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 897 | } |
| 898 | } else if (source == AUDIO_SOURCE_DEFAULT) { |
| 899 | goto exit; |
| 900 | } |
| 901 | |
| 902 | |
| 903 | if (snd_device != SND_DEVICE_NONE) { |
| 904 | goto exit; |
| 905 | } |
| 906 | |
| 907 | if (in_device != AUDIO_DEVICE_NONE && |
| 908 | !(in_device & AUDIO_DEVICE_IN_VOICE_CALL) && |
| 909 | !(in_device & AUDIO_DEVICE_IN_COMMUNICATION)) { |
| 910 | if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) { |
| 911 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 912 | } else if (in_device & AUDIO_DEVICE_IN_BACK_MIC) { |
| 913 | snd_device = SND_DEVICE_IN_SPEAKER_MIC; |
| 914 | } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) { |
| 915 | snd_device = SND_DEVICE_IN_HEADSET_MIC; |
| 916 | } else if (in_device & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) { |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 917 | if (adev->bt_wb_speech_enabled) |
| 918 | snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB; |
| 919 | else |
| 920 | snd_device = SND_DEVICE_IN_BT_SCO_MIC; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 921 | } else if (in_device & AUDIO_DEVICE_IN_AUX_DIGITAL) { |
| 922 | snd_device = SND_DEVICE_IN_HDMI_MIC; |
| 923 | } else { |
| 924 | ALOGE("%s: Unknown input device(s) %#x", __func__, in_device); |
| 925 | ALOGW("%s: Using default handset-mic", __func__); |
| 926 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 927 | } |
| 928 | } else { |
| 929 | if (out_device & AUDIO_DEVICE_OUT_EARPIECE) { |
| 930 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 931 | } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) { |
| 932 | snd_device = SND_DEVICE_IN_HEADSET_MIC; |
| 933 | } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) { |
| 934 | snd_device = SND_DEVICE_IN_SPEAKER_MIC; |
| 935 | } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) { |
| 936 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 937 | } else if (out_device & AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET) { |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 938 | if (adev->bt_wb_speech_enabled) |
| 939 | snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB; |
| 940 | else |
| 941 | snd_device = SND_DEVICE_IN_BT_SCO_MIC; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 942 | } else if (out_device & AUDIO_DEVICE_OUT_AUX_DIGITAL) { |
| 943 | snd_device = SND_DEVICE_IN_HDMI_MIC; |
| 944 | } else { |
| 945 | ALOGE("%s: Unknown output device(s) %#x", __func__, out_device); |
| 946 | ALOGW("%s: Using default handset-mic", __func__); |
| 947 | snd_device = SND_DEVICE_IN_HANDSET_MIC; |
| 948 | } |
| 949 | } |
| 950 | exit: |
| 951 | ALOGV("%s: exit: in_snd_device(%s)", __func__, device_table[snd_device]); |
| 952 | return snd_device; |
| 953 | } |
| 954 | |
| 955 | int platform_set_hdmi_channels(void *platform, int channel_count) |
| 956 | { |
| 957 | struct platform_data *my_data = (struct platform_data *)platform; |
| 958 | struct audio_device *adev = my_data->adev; |
| 959 | struct mixer_ctl *ctl; |
| 960 | const char *channel_cnt_str = NULL; |
| 961 | const char *mixer_ctl_name = "HDMI_RX Channels"; |
| 962 | switch (channel_count) { |
| 963 | case 8: |
| 964 | channel_cnt_str = "Eight"; break; |
| 965 | case 7: |
| 966 | channel_cnt_str = "Seven"; break; |
| 967 | case 6: |
| 968 | channel_cnt_str = "Six"; break; |
| 969 | case 5: |
| 970 | channel_cnt_str = "Five"; break; |
| 971 | case 4: |
| 972 | channel_cnt_str = "Four"; break; |
| 973 | case 3: |
| 974 | channel_cnt_str = "Three"; break; |
| 975 | default: |
| 976 | channel_cnt_str = "Two"; break; |
| 977 | } |
| 978 | ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name); |
| 979 | if (!ctl) { |
| 980 | ALOGE("%s: Could not get ctl for mixer cmd - %s", |
| 981 | __func__, mixer_ctl_name); |
| 982 | return -EINVAL; |
| 983 | } |
| 984 | ALOGV("HDMI channel count: %s", channel_cnt_str); |
| 985 | mixer_ctl_set_enum_by_string(ctl, channel_cnt_str); |
| 986 | return 0; |
| 987 | } |
| 988 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 989 | int platform_edid_get_max_channels(void *platform __unused) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 990 | { |
| 991 | FILE *file; |
| 992 | struct audio_block_header header; |
| 993 | char block[MAX_SAD_BLOCKS * SAD_BLOCK_SIZE]; |
| 994 | char *sad = block; |
| 995 | int num_audio_blocks; |
| 996 | int channel_count; |
| 997 | int max_channels = 0; |
| 998 | int i; |
| 999 | |
| 1000 | file = fopen(AUDIO_DATA_BLOCK_PATH, "rb"); |
| 1001 | if (file == NULL) { |
| 1002 | ALOGE("Unable to open '%s'", AUDIO_DATA_BLOCK_PATH); |
| 1003 | return 0; |
| 1004 | } |
| 1005 | |
| 1006 | /* Read audio block header */ |
| 1007 | fread(&header, 1, sizeof(header), file); |
| 1008 | |
| 1009 | /* Read SAD blocks, clamping the maximum size for safety */ |
| 1010 | if (header.length > (int)sizeof(block)) |
| 1011 | header.length = (int)sizeof(block); |
| 1012 | fread(&block, header.length, 1, file); |
| 1013 | |
| 1014 | fclose(file); |
| 1015 | |
| 1016 | /* Calculate the number of SAD blocks */ |
| 1017 | num_audio_blocks = header.length / SAD_BLOCK_SIZE; |
| 1018 | |
| 1019 | for (i = 0; i < num_audio_blocks; i++) { |
| 1020 | /* Only consider LPCM blocks */ |
| 1021 | if ((sad[0] >> 3) != EDID_FORMAT_LPCM) |
| 1022 | continue; |
| 1023 | |
| 1024 | channel_count = (sad[0] & 0x7) + 1; |
| 1025 | if (channel_count > max_channels) |
| 1026 | max_channels = channel_count; |
| 1027 | |
| 1028 | /* Advance to next block */ |
| 1029 | sad += 3; |
| 1030 | } |
| 1031 | |
| 1032 | return max_channels; |
| 1033 | } |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 1034 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1035 | void platform_get_parameters(void *platform __unused, |
| 1036 | struct str_parms *query __unused, |
| 1037 | struct str_parms *reply __unused) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 1038 | { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1039 | ALOGE("%s: Not implemented", __func__); |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1042 | int platform_set_parameters(void *platform __unused, struct str_parms *parms __unused) |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 1043 | { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1044 | ALOGE("%s: Not implemented", __func__); |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 1045 | return -ENOSYS; |
| 1046 | } |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 1047 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1048 | int platform_set_incall_recoding_session_id(void *platform __unused, |
| 1049 | uint32_t session_id __unused) |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 1050 | { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1051 | ALOGE("%s: Not implemented", __func__); |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 1052 | return -ENOSYS; |
| 1053 | } |
Shruthi Krishna | ace1085 | 2013-10-25 14:32:12 -0700 | [diff] [blame] | 1054 | |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 1055 | int platform_update_lch(void *platform __unused, |
| 1056 | struct voice_session *session __unused, |
| 1057 | enum voice_lch_mode lch_mode __unused) |
| 1058 | { |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1059 | ALOGE("%s: Not implemented", __func__); |
| 1060 | return -ENOSYS; |
| 1061 | } |
| 1062 | |
| 1063 | int platform_start_incall_music_usecase(void *platform __unused) |
| 1064 | { |
| 1065 | ALOGE("%s: Not implemented", __func__); |
| 1066 | return -ENOSYS; |
| 1067 | } |
| 1068 | |
| 1069 | int platform_stop_incall_music_usecase(void *platform __unused) |
| 1070 | { |
| 1071 | ALOGE("%s: Not implemented", __func__); |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 1072 | return -ENOSYS; |
| 1073 | } |
| 1074 | |
Lakshman Chaluvaraju | 22ba9f1 | 2016-09-12 11:42:10 +0530 | [diff] [blame] | 1075 | unsigned char* platform_get_license(void *platform, int *size) |
| 1076 | { |
| 1077 | ALOGE("%s: Not implemented", __func__); |
| 1078 | return NULL; |
| 1079 | } |
| 1080 | |
Haynes Mathew George | 7ff216f | 2013-09-11 19:51:41 -0700 | [diff] [blame] | 1081 | /* Delay in Us */ |
| 1082 | int64_t platform_render_latency(audio_usecase_t usecase) |
| 1083 | { |
| 1084 | switch (usecase) { |
| 1085 | case USECASE_AUDIO_PLAYBACK_DEEP_BUFFER: |
| 1086 | return DEEP_BUFFER_PLATFORM_DELAY; |
| 1087 | case USECASE_AUDIO_PLAYBACK_LOW_LATENCY: |
| 1088 | return LOW_LATENCY_PLATFORM_DELAY; |
| 1089 | default: |
| 1090 | return 0; |
| 1091 | } |
| 1092 | } |
Mingming Yin | e62d784 | 2013-10-25 16:26:03 -0700 | [diff] [blame] | 1093 | |
| 1094 | int platform_update_usecase_from_source(int source, int usecase) |
| 1095 | { |
| 1096 | ALOGV("%s: input source :%d", __func__, source); |
| 1097 | return usecase; |
| 1098 | } |
Kiran Kandi | de144c8 | 2013-11-20 15:58:32 -0800 | [diff] [blame] | 1099 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1100 | bool platform_listen_device_needs_event(snd_device_t snd_device __unused) |
Kiran Kandi | de144c8 | 2013-11-20 15:58:32 -0800 | [diff] [blame] | 1101 | { |
Dhananjay Kumar | 45b7174 | 2014-05-29 21:47:27 +0530 | [diff] [blame] | 1102 | return false; |
| 1103 | } |
| 1104 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1105 | bool platform_listen_usecase_needs_event(audio_usecase_t uc_id __unused) |
Dhananjay Kumar | 45b7174 | 2014-05-29 21:47:27 +0530 | [diff] [blame] | 1106 | { |
| 1107 | return false; |
Kiran Kandi | de144c8 | 2013-11-20 15:58:32 -0800 | [diff] [blame] | 1108 | } |
Mingming Yin | 3ee55c6 | 2014-08-04 14:23:35 -0700 | [diff] [blame] | 1109 | |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1110 | bool platform_check_and_set_codec_backend_cfg(struct audio_device* adev __unused, |
| 1111 | struct audio_usecase *usecase __unused) |
| 1112 | { |
Mingming Yin | 3ee55c6 | 2014-08-04 14:23:35 -0700 | [diff] [blame] | 1113 | return false; |
| 1114 | } |
| 1115 | |
Manish Dewangan | ba9fcfa | 2016-03-24 16:20:06 +0530 | [diff] [blame] | 1116 | bool platform_check_and_set_capture_codec_backend_cfg(struct audio_device* adev __unused, |
| 1117 | struct audio_usecase *usecase __unused) |
| 1118 | { |
| 1119 | return false; |
| 1120 | } |
| 1121 | |
Haynes Mathew George | f4da6fe | 2014-06-20 19:14:25 -0700 | [diff] [blame] | 1122 | int platform_get_usecase_index(const char * usecase __unused) |
| 1123 | { |
| 1124 | return -ENOSYS; |
| 1125 | } |
| 1126 | |
| 1127 | int platform_set_usecase_pcm_id(audio_usecase_t usecase __unused, int32_t type __unused, |
| 1128 | int32_t pcm_id __unused) |
| 1129 | { |
| 1130 | return -ENOSYS; |
| 1131 | } |
| 1132 | |
Sidipotu Ashok | 9f0b16e | 2016-04-28 13:48:28 +0530 | [diff] [blame] | 1133 | int platform_set_snd_device_backend(snd_device_t device __unused, |
| 1134 | const char *backend __unused, |
| 1135 | const char *hw_interface __unused) |
Haynes Mathew George | f4da6fe | 2014-06-20 19:14:25 -0700 | [diff] [blame] | 1136 | { |
| 1137 | return -ENOSYS; |
| 1138 | } |
Ravi Kumar Alamanda | 8fa6b19 | 2014-09-09 16:06:42 -0700 | [diff] [blame] | 1139 | |
Siena Richard | 7c2db77 | 2016-12-21 11:32:34 -0800 | [diff] [blame] | 1140 | int platform_get_snd_device_backend_index(snd_device_t device) |
| 1141 | { |
| 1142 | return -ENOSYS; |
| 1143 | } |
| 1144 | |
Ravi Kumar Alamanda | 8fa6b19 | 2014-09-09 16:06:42 -0700 | [diff] [blame] | 1145 | bool platform_sound_trigger_device_needs_event(snd_device_t snd_device __unused) |
| 1146 | { |
| 1147 | return false; |
| 1148 | } |
| 1149 | |
| 1150 | bool platform_sound_trigger_usecase_needs_event(audio_usecase_t uc_id __unused) |
| 1151 | { |
| 1152 | return false; |
| 1153 | } |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 1154 | |
| 1155 | int platform_set_fluence_type(void *platform __unused, char *value __unused) |
| 1156 | { |
| 1157 | return -ENOSYS; |
| 1158 | } |
| 1159 | |
| 1160 | int platform_get_fluence_type(void *platform __unused, char *value __unused, |
| 1161 | uint32_t len __unused) |
| 1162 | { |
| 1163 | return -ENOSYS; |
| 1164 | } |
| 1165 | |
| 1166 | uint32_t platform_get_pcm_offload_buffer_size(audio_offload_info_t* info __unused) |
| 1167 | { |
| 1168 | return 0; |
| 1169 | } |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1170 | |
| 1171 | int platform_get_edid_info(void *platform __unused) |
| 1172 | { |
| 1173 | return -ENOSYS; |
| 1174 | } |
| 1175 | |
| 1176 | int platform_set_channel_map(void *platform __unused, int ch_count __unused, |
| 1177 | char *ch_map __unused, int snd_id __unused) |
| 1178 | { |
| 1179 | return -ENOSYS; |
| 1180 | } |
| 1181 | |
| 1182 | int platform_set_stream_channel_map(void *platform __unused, |
| 1183 | audio_channel_mask_t channel_mask __unused, |
Naresh Tanniru | 29bce4e | 2017-04-27 17:54:30 +0530 | [diff] [blame] | 1184 | int snd_id __unused |
| 1185 | uint8_t *input_channel_map __unused) |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1186 | { |
| 1187 | return -ENOSYS; |
| 1188 | } |
| 1189 | |
| 1190 | int platform_set_edid_channels_configuration(void *platform __unused, |
Weiyin Jiang | ff72f81 | 2018-04-13 15:02:33 +0800 | [diff] [blame] | 1191 | int channels __unused, |
| 1192 | int backend_idx __unused) |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1193 | { |
| 1194 | return 0; |
| 1195 | } |
| 1196 | |
| 1197 | unsigned char platform_map_to_edid_format(int format __unused) |
| 1198 | { |
| 1199 | return 0; |
| 1200 | } |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 1201 | |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1202 | bool platform_is_edid_supported_format(void *platform __unused, |
| 1203 | int format __unused) |
| 1204 | { |
| 1205 | return false; |
| 1206 | } |
| 1207 | |
Mingming Yin | 3a941d4 | 2016-02-17 18:08:05 -0800 | [diff] [blame] | 1208 | bool platform_is_edid_supported_sample_rate(void *platform __unused, |
| 1209 | int sample_rate __unused) |
| 1210 | { |
| 1211 | return false; |
| 1212 | } |
| 1213 | |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1214 | void platform_cache_edid(void * platform __unused) |
| 1215 | { |
| 1216 | |
| 1217 | } |
| 1218 | |
Mingming Yin | ddd610b | 2016-01-20 17:09:32 -0800 | [diff] [blame] | 1219 | void platform_invalidate_hdmi_config(void * platform __unused) |
Pradnya Chaphekar | 4403bd7 | 2014-09-09 09:50:01 -0700 | [diff] [blame] | 1220 | { |
| 1221 | |
| 1222 | } |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 1223 | |
Mingming Yin | 2185465 | 2016-04-13 11:54:02 -0700 | [diff] [blame] | 1224 | int platform_set_hdmi_config(void *platform __unused, |
| 1225 | uint32_t channel_count __unused, |
| 1226 | uint32_t sample_rate __unused, |
| 1227 | bool enable_passthrough __unused) |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 1228 | { |
| 1229 | return 0; |
| 1230 | } |
| 1231 | |
| 1232 | int platform_set_device_params(struct stream_out *out __unused, |
| 1233 | int param __unused, int value __unused) |
| 1234 | { |
| 1235 | return 0; |
| 1236 | } |
Narsinga Rao Chella | f928a98 | 2015-03-06 14:57:35 -0800 | [diff] [blame] | 1237 | |
| 1238 | int platform_set_audio_device_interface(const char * device_name __unused, |
Karthik Reddy Katta | 508eca4 | 2015-05-11 13:43:18 +0530 | [diff] [blame] | 1239 | const char *intf_name __unused, |
| 1240 | const char *codec_type __unused) |
Narsinga Rao Chella | f928a98 | 2015-03-06 14:57:35 -0800 | [diff] [blame] | 1241 | { |
| 1242 | return -ENOSYS; |
| 1243 | } |
Laxminath Kasam | 8225243 | 2015-05-29 18:37:11 +0530 | [diff] [blame] | 1244 | |
vivek mehta | a76401a | 2015-04-24 14:12:15 -0700 | [diff] [blame] | 1245 | bool platform_send_gain_dep_cal(void *platform __unused, |
| 1246 | int level __unused) |
| 1247 | { |
| 1248 | return 0; |
| 1249 | } |
Banajit Goswami | 4dc87fb | 2015-10-11 21:46:07 -0700 | [diff] [blame] | 1250 | |
| 1251 | void platform_set_gsm_mode(void *platform __unused, bool enable __unused) |
| 1252 | { |
| 1253 | ALOGE("%s: Not implemented", __func__); |
| 1254 | } |
Xiaojun Sang | 040cc9f | 2015-08-03 19:38:28 +0800 | [diff] [blame] | 1255 | |
| 1256 | bool platform_can_enable_spkr_prot_on_device(snd_device_t snd_device __unused) |
| 1257 | { |
| 1258 | /* speaker protection not implemented for this platform*/ |
| 1259 | return false; |
| 1260 | } |
| 1261 | |
| 1262 | int platform_get_spkr_prot_acdb_id(snd_device_t snd_device __unused) |
| 1263 | { |
| 1264 | return -ENOSYS; |
| 1265 | } |
| 1266 | |
| 1267 | int platform_get_spkr_prot_snd_device(snd_device_t snd_device __unused) |
| 1268 | { |
| 1269 | return -ENOSYS; |
| 1270 | } |
Venkata Narendra Kumar Gutta | 7f4817f | 2016-01-29 14:15:53 +0530 | [diff] [blame] | 1271 | |
Rohit kumar | f412040 | 2016-08-05 19:19:48 +0530 | [diff] [blame] | 1272 | int platform_get_vi_feedback_snd_device(snd_device_t snd_device __unused) |
| 1273 | { |
| 1274 | return -ENOSYS; |
| 1275 | } |
| 1276 | |
Venkata Narendra Kumar Gutta | 7f4817f | 2016-01-29 14:15:53 +0530 | [diff] [blame] | 1277 | int platform_spkr_prot_is_wsa_analog_mode(void *adev __unused) |
| 1278 | { |
| 1279 | return 0; |
Haynes Mathew George | bfe8ff4 | 2016-09-22 17:38:16 -0700 | [diff] [blame] | 1280 | |
| 1281 | } |
| 1282 | |
| 1283 | int platform_can_split_snd_device(snd_device_t in_snd_device __unused, |
| 1284 | int *num_devices __unused, |
| 1285 | snd_device_t *out_snd_devices __unused) |
Sidipotu Ashok | 9f0b16e | 2016-04-28 13:48:28 +0530 | [diff] [blame] | 1286 | { |
Haynes Mathew George | bfe8ff4 | 2016-09-22 17:38:16 -0700 | [diff] [blame] | 1287 | return -ENOSYS; |
Sidipotu Ashok | 9f0b16e | 2016-04-28 13:48:28 +0530 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | bool platform_check_backends_match(snd_device_t snd_device1 __unused, |
| 1291 | snd_device_t snd_device2 __unused) |
| 1292 | { |
Weiyin Jiang | aa80acd | 2016-09-21 16:42:11 +0800 | [diff] [blame] | 1293 | return -ENOSYS; |
| 1294 | } |
| 1295 | |
| 1296 | int platform_send_audio_cal(void* platform __unused, |
Aditya Bavanari | 29bcea2 | 2017-10-03 20:10:35 +0530 | [diff] [blame] | 1297 | acdb_audio_cal_cfg_t* cal __unused, void* data __unused, |
Weiyin Jiang | aa80acd | 2016-09-21 16:42:11 +0800 | [diff] [blame] | 1298 | int length __unused, bool persist __unused) |
| 1299 | { |
| 1300 | return -ENOSYS; |
| 1301 | } |
| 1302 | |
| 1303 | int platform_get_audio_cal(void* platform __unused, |
Aditya Bavanari | 29bcea2 | 2017-10-03 20:10:35 +0530 | [diff] [blame] | 1304 | acdb_audio_cal_cfg_t* cal __unused, void* data __unused, |
Weiyin Jiang | aa80acd | 2016-09-21 16:42:11 +0800 | [diff] [blame] | 1305 | int* length __unused, bool persist __unused) |
| 1306 | { |
| 1307 | return -ENOSYS; |
| 1308 | } |
| 1309 | |
| 1310 | int platform_store_audio_cal(void* platform __unused, |
Aditya Bavanari | 29bcea2 | 2017-10-03 20:10:35 +0530 | [diff] [blame] | 1311 | acdb_audio_cal_cfg_t* cal __unused, void* data __unused, |
Weiyin Jiang | aa80acd | 2016-09-21 16:42:11 +0800 | [diff] [blame] | 1312 | int length __unused) |
| 1313 | { |
| 1314 | return -ENOSYS; |
| 1315 | } |
| 1316 | |
| 1317 | |
| 1318 | int platform_retrieve_audio_cal(void* platform __unused, |
Aditya Bavanari | 29bcea2 | 2017-10-03 20:10:35 +0530 | [diff] [blame] | 1319 | acdb_audio_cal_cfg_t* cal __unused, void* data __unused, |
Weiyin Jiang | aa80acd | 2016-09-21 16:42:11 +0800 | [diff] [blame] | 1320 | int* length __unused) |
| 1321 | { |
| 1322 | return -ENOSYS; |
Venkata Narendra Kumar Gutta | 7f4817f | 2016-01-29 14:15:53 +0530 | [diff] [blame] | 1323 | } |
Kuirong Wang | 1cad714 | 2016-05-24 15:21:56 -0700 | [diff] [blame] | 1324 | |
| 1325 | int platform_set_sidetone(struct audio_device *adev, |
| 1326 | snd_device_t out_snd_device, |
| 1327 | bool enable, |
| 1328 | char *str) |
| 1329 | { |
| 1330 | int ret; |
| 1331 | if (out_snd_device == SND_DEVICE_OUT_USB_HEADSET) { |
| 1332 | ret = audio_extn_usb_enable_sidetone(out_snd_device, enable); |
| 1333 | if (ret) |
| 1334 | ALOGI("%s: usb device %d does not support device sidetone\n", |
| 1335 | __func__, out_snd_device); |
| 1336 | } else { |
| 1337 | ALOGV("%s: sidetone out device(%d) mixer cmd = %s\n", |
| 1338 | __func__, out_snd_device, str); |
| 1339 | |
| 1340 | if (enable) |
| 1341 | audio_route_apply_and_update_path(adev->audio_route, str); |
| 1342 | else |
| 1343 | audio_route_reset_and_update_path(adev->audio_route, str); |
| 1344 | } |
| 1345 | return 0; |
| 1346 | } |
Preetam Singh Ranawat | cb6212e | 2016-07-19 18:33:53 +0530 | [diff] [blame] | 1347 | |
Vidyakumar Athota | ea269c6 | 2016-10-31 09:05:59 -0700 | [diff] [blame] | 1348 | void platform_update_aanc_path(struct audio_device *adev __unused, |
| 1349 | snd_device_t out_snd_device __unused, |
| 1350 | bool enable __unused, |
| 1351 | char *str __unused) |
| 1352 | { |
| 1353 | return; |
| 1354 | } |
| 1355 | |
Preetam Singh Ranawat | cb6212e | 2016-07-19 18:33:53 +0530 | [diff] [blame] | 1356 | bool platform_check_codec_dsd_support(void *platform __unused) |
| 1357 | { |
| 1358 | return false; |
| 1359 | } |
| 1360 | |
| 1361 | int platform_get_backend_index(snd_device_t snd_device __unused); |
| 1362 | { |
| 1363 | return 0; |
Preetam Singh Ranawat | b0c0dd7 | 2016-08-18 00:32:06 +0530 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | bool platform_check_codec_asrc_support(void *platform __unused) |
| 1367 | { |
| 1368 | return false; |
| 1369 | } |
| 1370 | |
Aniket Kumar Lata | f56b640 | 2016-10-27 12:03:18 -0700 | [diff] [blame] | 1371 | bool platform_add_gain_level_mapping(struct amp_db_and_gain_table *tbl_entry __unused) |
| 1372 | { |
| 1373 | return false; |
| 1374 | } |
| 1375 | |
| 1376 | int platform_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl __unused, |
| 1377 | int table_size __unused) |
| 1378 | { |
| 1379 | return 0; |
| 1380 | } |
Dhanalakshmi Siddani | 21be3ac | 2016-12-29 14:31:08 +0530 | [diff] [blame] | 1381 | |
| 1382 | int platform_get_meta_info_key_from_list(void *platform __unused, |
| 1383 | char *mod_name __unused) |
| 1384 | { |
| 1385 | return 0; |
| 1386 | } |
| 1387 | |
| 1388 | int platform_set_acdb_metainfo_key(void *platform __unused, char *name __unused, |
| 1389 | int key __unused) |
| 1390 | { |
| 1391 | return 0; |
| 1392 | } |
Haynes Mathew George | ef51488 | 2017-05-01 17:46:23 -0700 | [diff] [blame] | 1393 | |
| 1394 | int platform_get_mmap_data_fd(void *platform, int fe_dev, int dir, int *fd, |
| 1395 | uint32_t *size) |
| 1396 | { |
| 1397 | return -ENOSYS; |
| 1398 | } |
Naresh Tanniru | dcb47c5 | 2018-06-25 16:23:32 +0530 | [diff] [blame] | 1399 | |
| 1400 | bool platform_set_microphone_characteristic(void *platform __unused, |
| 1401 | struct audio_microphone_characteristic_t mic __unused) { |
| 1402 | return -ENOSYS; |
| 1403 | } |
| 1404 | |
| 1405 | int platform_get_microphones(void *platform __unused, |
| 1406 | struct audio_microphone_characteristic_t *mic_array __unused, |
| 1407 | size_t *mic_count __unused) { |
| 1408 | return -ENOSYS; |
| 1409 | } |
| 1410 | |
| 1411 | int platform_get_active_microphones(void *platform __unused, unsigned int channels __unused, |
| 1412 | audio_usecase_t usecase __unused, |
| 1413 | struct audio_microphone_characteristic_t *mic_array __unused, |
| 1414 | size_t *mic_count __unused) { |
| 1415 | return -ENOSYS; |
| 1416 | } |