blob: be2b95eb71a6443e42d1d856e8aaf6c36acda16e [file] [log] [blame]
Eric Laurentb23d5282013-05-14 15:27:20 -07001/*
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07002 * Copyright (C) 2013-2014 The Android Open Source Project
Eric Laurentb23d5282013-05-14 15:27:20 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "msm8960_platform"
18/*#define LOG_NDEBUG 0*/
19#define LOG_NDDEBUG 0
20
21#include <stdlib.h>
22#include <dlfcn.h>
Haynes Mathew Georgee6e2d442018-02-22 18:51:56 -080023#include <log/log.h>
Eric Laurentb23d5282013-05-14 15:27:20 -070024#include <cutils/properties.h>
25#include <audio_hw.h>
26#include <platform_api.h>
27#include "platform.h"
David Lind6229bd2017-07-06 15:28:55 -070028#include "audio_extn.h"
Eric Laurentb23d5282013-05-14 15:27:20 -070029
30#define LIB_ACDB_LOADER "libacdbloader.so"
31#define LIB_CSD_CLIENT "libcsd-client.so"
32
33#define DUALMIC_CONFIG_NONE 0 /* Target does not contain 2 mics */
34#define DUALMIC_CONFIG_ENDFIRE 1
35#define DUALMIC_CONFIG_BROADSIDE 2
36
37/*
38 * This is the sysfs path for the HDMI audio data block
39 */
40#define AUDIO_DATA_BLOCK_PATH "/sys/class/graphics/fb1/audio_data_block"
sangwoo1b9f4b32013-06-21 18:22:55 -070041#define MIXER_XML_PATH "/system/etc/mixer_paths.xml"
Eric Laurentb23d5282013-05-14 15:27:20 -070042
43/*
44 * This file will have a maximum of 38 bytes:
45 *
46 * 4 bytes: number of audio blocks
47 * 4 bytes: total length of Short Audio Descriptor (SAD) blocks
48 * Maximum 10 * 3 bytes: SAD blocks
49 */
50#define MAX_SAD_BLOCKS 10
51#define SAD_BLOCK_SIZE 3
52
53/* EDID format ID for LPCM audio */
54#define EDID_FORMAT_LPCM 1
55
56struct audio_block_header
57{
58 int reserved;
59 int length;
60};
61
62
63typedef void (*acdb_deallocate_t)();
64typedef int (*acdb_init_t)();
65typedef void (*acdb_send_audio_cal_t)(int, int);
66typedef void (*acdb_send_voice_cal_t)(int, int);
67
68typedef int (*csd_client_init_t)();
69typedef int (*csd_client_deinit_t)();
70typedef int (*csd_disable_device_t)();
71typedef int (*csd_enable_device_t)(int, int, uint32_t);
72typedef int (*csd_volume_t)(int);
73typedef int (*csd_mic_mute_t)(int);
74typedef int (*csd_start_voice_t)();
75typedef int (*csd_stop_voice_t)();
76
77
78/* Audio calibration related functions */
79struct platform_data {
80 struct audio_device *adev;
81 bool fluence_in_spkr_mode;
82 bool fluence_in_voice_call;
83 bool fluence_in_voice_rec;
84 int dualmic_config;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -070085 bool speaker_lr_swap;
Eric Laurentb23d5282013-05-14 15:27:20 -070086
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
105static 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},
David Lind6229bd2017-07-06 15:28:55 -0700108 [USECASE_AUDIO_PLAYBACK_HIFI] = {1, 1},
Eric Laurentb23d5282013-05-14 15:27:20 -0700109 [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 */
115static 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",
David Linfb3c9952018-01-19 14:57:43 -0800121 [SND_DEVICE_OUT_SPEAKER_SAFE] = "speaker-safe",
Eric Laurentb23d5282013-05-14 15:27:20 -0700122 [SND_DEVICE_OUT_HEADPHONES] = "headphones",
123 [SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES] = "speaker-and-headphones",
124 [SND_DEVICE_OUT_VOICE_SPEAKER] = "voice-speaker",
125 [SND_DEVICE_OUT_VOICE_HEADPHONES] = "voice-headphones",
yixuanjiang9536e672018-09-06 18:43:36 +0800126 [SND_DEVICE_OUT_VOICE_HEADSET] = "voice-headphones",
Eric Laurentb23d5282013-05-14 15:27:20 -0700127 [SND_DEVICE_OUT_HDMI] = "hdmi",
128 [SND_DEVICE_OUT_SPEAKER_AND_HDMI] = "speaker-and-hdmi",
129 [SND_DEVICE_OUT_BT_SCO] = "bt-sco-headset",
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700130 [SND_DEVICE_OUT_BT_SCO_WB] = "bt-sco-headset-wb",
Eric Laurentb23d5282013-05-14 15:27:20 -0700131 [SND_DEVICE_OUT_VOICE_HANDSET_TMUS] = "voice-handset-tmus",
Eric Laurent788f41f2015-08-24 12:21:50 -0700132 [SND_DEVICE_OUT_VOICE_HANDSET] = "voice-handset-tmus",
133 [SND_DEVICE_OUT_VOICE_HAC_HANDSET] = "voice-handset-tmus",
Eric Laurentb23d5282013-05-14 15:27:20 -0700134 [SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES] = "voice-tty-full-headphones",
135 [SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES] = "voice-tty-vco-headphones",
136 [SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET] = "voice-tty-hco-handset",
Eric Laurentb1b07992017-06-29 09:20:02 -0700137 [SND_DEVICE_OUT_USB_HEADSET] = "usb-headset",
138 [SND_DEVICE_OUT_USB_HEADPHONES] = "usb-headphones",
139 [SND_DEVICE_OUT_VOICE_USB_HEADSET] = "usb-headset",
140 [SND_DEVICE_OUT_VOICE_USB_HEADPHONES] = "usb-headphones",
141
Eric Laurentb23d5282013-05-14 15:27:20 -0700142
143 /* Capture sound devices */
144 [SND_DEVICE_IN_HANDSET_MIC] = "handset-mic",
145 [SND_DEVICE_IN_SPEAKER_MIC] = "speaker-mic",
146 [SND_DEVICE_IN_HEADSET_MIC] = "headset-mic",
147 [SND_DEVICE_IN_HANDSET_MIC_AEC] = "handset-mic",
148 [SND_DEVICE_IN_SPEAKER_MIC_AEC] = "voice-speaker-mic",
149 [SND_DEVICE_IN_HEADSET_MIC_AEC] = "headset-mic",
150 [SND_DEVICE_IN_VOICE_SPEAKER_MIC] = "voice-speaker-mic",
151 [SND_DEVICE_IN_VOICE_HEADSET_MIC] = "voice-headset-mic",
152 [SND_DEVICE_IN_HDMI_MIC] = "hdmi-mic",
153 [SND_DEVICE_IN_BT_SCO_MIC] = "bt-sco-mic",
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700154 [SND_DEVICE_IN_BT_SCO_MIC_WB] = "bt-sco-mic-wb",
Eric Laurentb23d5282013-05-14 15:27:20 -0700155 [SND_DEVICE_IN_CAMCORDER_MIC] = "camcorder-mic",
156 [SND_DEVICE_IN_VOICE_DMIC_EF] = "voice-dmic-ef",
157 [SND_DEVICE_IN_VOICE_DMIC_BS] = "voice-dmic-bs",
158 [SND_DEVICE_IN_VOICE_DMIC_EF_TMUS] = "voice-dmic-ef-tmus",
159 [SND_DEVICE_IN_VOICE_SPEAKER_DMIC_EF] = "voice-speaker-dmic-ef",
160 [SND_DEVICE_IN_VOICE_SPEAKER_DMIC_BS] = "voice-speaker-dmic-bs",
161 [SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC] = "voice-tty-full-headset-mic",
162 [SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC] = "voice-tty-vco-handset-mic",
163 [SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC] = "voice-tty-hco-headset-mic",
164 [SND_DEVICE_IN_VOICE_REC_MIC] = "voice-rec-mic",
165 [SND_DEVICE_IN_VOICE_REC_DMIC_EF] = "voice-rec-dmic-ef",
166 [SND_DEVICE_IN_VOICE_REC_DMIC_BS] = "voice-rec-dmic-bs",
167 [SND_DEVICE_IN_VOICE_REC_DMIC_EF_FLUENCE] = "voice-rec-dmic-ef-fluence",
168 [SND_DEVICE_IN_VOICE_REC_DMIC_BS_FLUENCE] = "voice-rec-dmic-bs-fluence",
169};
170
171/* ACDB IDs (audio DSP path configuration IDs) for each sound device */
172static const int acdb_device_table[SND_DEVICE_MAX] = {
173 [SND_DEVICE_NONE] = -1,
174 [SND_DEVICE_OUT_HANDSET] = 7,
175 [SND_DEVICE_OUT_SPEAKER] = 14,
176 [SND_DEVICE_OUT_SPEAKER_REVERSE] = 14,
David Linfb3c9952018-01-19 14:57:43 -0800177 [SND_DEVICE_OUT_SPEAKER_SAFE] = 14,
Eric Laurentb23d5282013-05-14 15:27:20 -0700178 [SND_DEVICE_OUT_HEADPHONES] = 10,
179 [SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES] = 10,
180 [SND_DEVICE_OUT_VOICE_SPEAKER] = 14,
181 [SND_DEVICE_OUT_VOICE_HEADPHONES] = 10,
yixuanjiang9536e672018-09-06 18:43:36 +0800182 [SND_DEVICE_OUT_VOICE_HEADSET] = 10,
Eric Laurentb23d5282013-05-14 15:27:20 -0700183 [SND_DEVICE_OUT_HDMI] = 18,
184 [SND_DEVICE_OUT_SPEAKER_AND_HDMI] = 14,
185 [SND_DEVICE_OUT_BT_SCO] = 22,
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700186 [SND_DEVICE_OUT_BT_SCO_WB] = 39,
Eric Laurentb23d5282013-05-14 15:27:20 -0700187 [SND_DEVICE_OUT_VOICE_HANDSET_TMUS] = 81,
Eric Laurent788f41f2015-08-24 12:21:50 -0700188 [SND_DEVICE_OUT_VOICE_HANDSET] = 81,
189 [SND_DEVICE_OUT_VOICE_HAC_HANDSET] = 81,
Eric Laurentb23d5282013-05-14 15:27:20 -0700190 [SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES] = 17,
191 [SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES] = 17,
192 [SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET] = 37,
Eric Laurentb1b07992017-06-29 09:20:02 -0700193 [SND_DEVICE_OUT_USB_HEADSET] = 45,
194 [SND_DEVICE_OUT_USB_HEADPHONES] = 45,
195 [SND_DEVICE_OUT_VOICE_USB_HEADSET] = 45,
196 [SND_DEVICE_OUT_VOICE_USB_HEADPHONES] = 45,
Eric Laurentb23d5282013-05-14 15:27:20 -0700197
198 [SND_DEVICE_IN_HANDSET_MIC] = 4,
199 [SND_DEVICE_IN_SPEAKER_MIC] = 4,
200 [SND_DEVICE_IN_HEADSET_MIC] = 8,
201 [SND_DEVICE_IN_HANDSET_MIC_AEC] = 40,
202 [SND_DEVICE_IN_SPEAKER_MIC_AEC] = 42,
203 [SND_DEVICE_IN_HEADSET_MIC_AEC] = 47,
204 [SND_DEVICE_IN_VOICE_SPEAKER_MIC] = 11,
205 [SND_DEVICE_IN_VOICE_HEADSET_MIC] = 8,
206 [SND_DEVICE_IN_HDMI_MIC] = 4,
207 [SND_DEVICE_IN_BT_SCO_MIC] = 21,
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700208 [SND_DEVICE_IN_BT_SCO_MIC_WB] = 38,
Eric Laurentb23d5282013-05-14 15:27:20 -0700209 [SND_DEVICE_IN_CAMCORDER_MIC] = 61,
210 [SND_DEVICE_IN_VOICE_DMIC_EF] = 6,
211 [SND_DEVICE_IN_VOICE_DMIC_BS] = 5,
212 [SND_DEVICE_IN_VOICE_DMIC_EF_TMUS] = 91,
213 [SND_DEVICE_IN_VOICE_SPEAKER_DMIC_EF] = 13,
214 [SND_DEVICE_IN_VOICE_SPEAKER_DMIC_BS] = 12,
215 [SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC] = 16,
216 [SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC] = 36,
217 [SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC] = 16,
218 [SND_DEVICE_IN_VOICE_REC_MIC] = 62,
219 /* TODO: Update with proper acdb ids */
220 [SND_DEVICE_IN_VOICE_REC_DMIC_EF] = 62,
221 [SND_DEVICE_IN_VOICE_REC_DMIC_BS] = 62,
222 [SND_DEVICE_IN_VOICE_REC_DMIC_EF_FLUENCE] = 6,
223 [SND_DEVICE_IN_VOICE_REC_DMIC_BS_FLUENCE] = 5,
224};
225
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700226#define DEEP_BUFFER_PLATFORM_DELAY (29*1000LL)
227#define LOW_LATENCY_PLATFORM_DELAY (13*1000LL)
228
Eric Laurentb23d5282013-05-14 15:27:20 -0700229static pthread_once_t check_op_once_ctl = PTHREAD_ONCE_INIT;
230static bool is_tmus = false;
231
232static void check_operator()
233{
234 char value[PROPERTY_VALUE_MAX];
235 int mccmnc;
236 property_get("gsm.sim.operator.numeric",value,"0");
237 mccmnc = atoi(value);
238 ALOGD("%s: tmus mccmnc %d", __func__, mccmnc);
239 switch(mccmnc) {
240 /* TMUS MCC(310), MNC(490, 260, 026) */
241 case 310490:
242 case 310260:
243 case 310026:
244 is_tmus = true;
245 break;
246 }
247}
248
249bool is_operator_tmus()
250{
251 pthread_once(&check_op_once_ctl, check_operator);
252 return is_tmus;
253}
254
255static int set_echo_reference(struct mixer *mixer, const char* ec_ref)
256{
257 struct mixer_ctl *ctl;
258 const char *mixer_ctl_name = "EC_REF_RX";
259
260 ctl = mixer_get_ctl_by_name(mixer, mixer_ctl_name);
261 if (!ctl) {
262 ALOGE("%s: Could not get ctl for mixer cmd - %s",
263 __func__, mixer_ctl_name);
264 return -EINVAL;
265 }
266 ALOGV("Setting EC Reference: %s", ec_ref);
267 mixer_ctl_set_enum_by_string(ctl, ec_ref);
268 return 0;
269}
270
271void *platform_init(struct audio_device *adev)
272{
273 char platform[PROPERTY_VALUE_MAX];
274 char baseband[PROPERTY_VALUE_MAX];
275 char value[PROPERTY_VALUE_MAX];
276 struct platform_data *my_data;
277
sangwoo1b9f4b32013-06-21 18:22:55 -0700278 adev->mixer = mixer_open(MIXER_CARD);
279
280 if (!adev->mixer) {
281 ALOGE("Unable to open the mixer, aborting.");
282 return NULL;
283 }
284
285 adev->audio_route = audio_route_init(MIXER_CARD, MIXER_XML_PATH);
286 if (!adev->audio_route) {
287 ALOGE("%s: Failed to init audio route controls, aborting.", __func__);
288 return NULL;
289 }
290
Eric Laurentb23d5282013-05-14 15:27:20 -0700291 my_data = calloc(1, sizeof(struct platform_data));
292
293 my_data->adev = adev;
294 my_data->dualmic_config = DUALMIC_CONFIG_NONE;
295 my_data->fluence_in_spkr_mode = false;
296 my_data->fluence_in_voice_call = false;
297 my_data->fluence_in_voice_rec = false;
298
299 property_get("persist.audio.dualmic.config",value,"");
300 if (!strcmp("broadside", value)) {
301 my_data->dualmic_config = DUALMIC_CONFIG_BROADSIDE;
302 adev->acdb_settings |= DMIC_FLAG;
303 } else if (!strcmp("endfire", value)) {
304 my_data->dualmic_config = DUALMIC_CONFIG_ENDFIRE;
305 adev->acdb_settings |= DMIC_FLAG;
306 }
307
308 if (my_data->dualmic_config != DUALMIC_CONFIG_NONE) {
309 property_get("persist.audio.fluence.voicecall",value,"");
310 if (!strcmp("true", value)) {
311 my_data->fluence_in_voice_call = true;
312 }
313
314 property_get("persist.audio.fluence.voicerec",value,"");
315 if (!strcmp("true", value)) {
316 my_data->fluence_in_voice_rec = true;
317 }
318
319 property_get("persist.audio.fluence.speaker",value,"");
320 if (!strcmp("true", value)) {
321 my_data->fluence_in_spkr_mode = true;
322 }
323 }
324
325 my_data->acdb_handle = dlopen(LIB_ACDB_LOADER, RTLD_NOW);
326 if (my_data->acdb_handle == NULL) {
327 ALOGE("%s: DLOPEN failed for %s", __func__, LIB_ACDB_LOADER);
328 } else {
329 ALOGV("%s: DLOPEN successful for %s", __func__, LIB_ACDB_LOADER);
330 my_data->acdb_deallocate = (acdb_deallocate_t)dlsym(my_data->acdb_handle,
331 "acdb_loader_deallocate_ACDB");
332 my_data->acdb_send_audio_cal = (acdb_send_audio_cal_t)dlsym(my_data->acdb_handle,
333 "acdb_loader_send_audio_cal");
334 if (!my_data->acdb_send_audio_cal)
335 ALOGW("%s: Could not find the symbol acdb_send_audio_cal from %s",
336 __func__, LIB_ACDB_LOADER);
337 my_data->acdb_send_voice_cal = (acdb_send_voice_cal_t)dlsym(my_data->acdb_handle,
338 "acdb_loader_send_voice_cal");
339 my_data->acdb_init = (acdb_init_t)dlsym(my_data->acdb_handle,
340 "acdb_loader_init_ACDB");
341 if (my_data->acdb_init == NULL)
342 ALOGE("%s: dlsym error %s for acdb_loader_init_ACDB", __func__, dlerror());
343 else
344 my_data->acdb_init();
345 }
346
347 /* If platform is Fusion3, load CSD Client specific symbols
348 * Voice call is handled by MDM and apps processor talks to
349 * MDM through CSD Client
350 */
351 property_get("ro.board.platform", platform, "");
352 property_get("ro.baseband", baseband, "");
353 if (!strcmp("msm8960", platform) && !strcmp("mdm", baseband)) {
354 my_data->csd_client = dlopen(LIB_CSD_CLIENT, RTLD_NOW);
355 if (my_data->csd_client == NULL)
356 ALOGE("%s: DLOPEN failed for %s", __func__, LIB_CSD_CLIENT);
357 }
358
359 if (my_data->csd_client) {
360 ALOGV("%s: DLOPEN successful for %s", __func__, LIB_CSD_CLIENT);
361 my_data->csd_client_deinit = (csd_client_deinit_t)dlsym(my_data->csd_client,
362 "csd_client_deinit");
363 my_data->csd_disable_device = (csd_disable_device_t)dlsym(my_data->csd_client,
364 "csd_client_disable_device");
365 my_data->csd_enable_device = (csd_enable_device_t)dlsym(my_data->csd_client,
366 "csd_client_enable_device");
367 my_data->csd_start_voice = (csd_start_voice_t)dlsym(my_data->csd_client,
368 "csd_client_start_voice");
369 my_data->csd_stop_voice = (csd_stop_voice_t)dlsym(my_data->csd_client,
370 "csd_client_stop_voice");
371 my_data->csd_volume = (csd_volume_t)dlsym(my_data->csd_client,
372 "csd_client_volume");
373 my_data->csd_mic_mute = (csd_mic_mute_t)dlsym(my_data->csd_client,
374 "csd_client_mic_mute");
375 my_data->csd_client_init = (csd_client_init_t)dlsym(my_data->csd_client,
376 "csd_client_init");
377
378 if (my_data->csd_client_init == NULL) {
379 ALOGE("%s: dlsym error %s for csd_client_init", __func__, dlerror());
380 } else {
381 my_data->csd_client_init();
382 }
383 }
384
385 return my_data;
386}
387
388void platform_deinit(void *platform)
389{
390 free(platform);
391}
392
393const char *platform_get_snd_device_name(snd_device_t snd_device)
394{
395 if (snd_device >= SND_DEVICE_MIN && snd_device < SND_DEVICE_MAX)
396 return device_table[snd_device];
397 else
Ravi Kumar Alamanda64026462014-09-15 00:08:58 -0700398 return "none";
Eric Laurentb23d5282013-05-14 15:27:20 -0700399}
400
Ravi Kumar Alamanda299760a2013-11-01 17:29:09 -0500401void platform_add_backend_name(void *platform __unused, char *mixer_path,
402 snd_device_t snd_device)
Eric Laurentb23d5282013-05-14 15:27:20 -0700403{
404 if (snd_device == SND_DEVICE_IN_BT_SCO_MIC)
405 strcat(mixer_path, " bt-sco");
406 else if(snd_device == SND_DEVICE_OUT_BT_SCO)
407 strcat(mixer_path, " bt-sco");
408 else if (snd_device == SND_DEVICE_OUT_HDMI)
409 strcat(mixer_path, " hdmi");
410 else if (snd_device == SND_DEVICE_OUT_SPEAKER_AND_HDMI)
411 strcat(mixer_path, " speaker-and-hdmi");
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700412 else if (snd_device == SND_DEVICE_OUT_BT_SCO_WB ||
413 snd_device == SND_DEVICE_IN_BT_SCO_MIC_WB)
414 strcat(mixer_path, " bt-sco-wb");
Eric Laurentb23d5282013-05-14 15:27:20 -0700415}
416
417int platform_get_pcm_device_id(audio_usecase_t usecase, int device_type)
418{
419 int device_id;
420 if (device_type == PCM_PLAYBACK)
421 device_id = pcm_device_table[usecase][0];
422 else
423 device_id = pcm_device_table[usecase][1];
424 return device_id;
425}
426
Haynes Mathew George98c95622014-06-20 19:14:25 -0700427int platform_get_snd_device_index(char *snd_device_index_name __unused)
Haynes Mathew George5bc18842014-06-16 16:36:20 -0700428{
429 return -ENODEV;
430}
431
Haynes Mathew George98c95622014-06-20 19:14:25 -0700432int platform_set_snd_device_acdb_id(snd_device_t snd_device __unused,
433 unsigned int acdb_id __unused)
Haynes Mathew George5bc18842014-06-16 16:36:20 -0700434{
435 return -ENODEV;
436}
437
David Lind6229bd2017-07-06 15:28:55 -0700438int platform_get_default_app_type_v2(void *platform __unused, usecase_type_t type __unused,
Yamit Mehtae3b99562016-09-16 22:44:00 +0530439 int *app_type __unused)
440{
441 ALOGE("%s: Not implemented", __func__);
442 return -ENOSYS;
443}
444
Ravi Kumar Alamanda63863002015-04-22 11:15:25 -0700445int platform_get_snd_device_acdb_id(snd_device_t snd_device __unused)
446{
447 ALOGE("%s: Not implemented", __func__);
448 return -ENOSYS;
449}
450
Eric Laurent788f41f2015-08-24 12:21:50 -0700451void platform_add_operator_specific_device(snd_device_t snd_device __unused,
452 const char *operator __unused,
453 const char *mixer_path __unused,
454 unsigned int acdb_id __unused)
keunhui.park2f7306a2015-07-16 16:48:06 +0900455{
456}
457
Eric Laurentb23d5282013-05-14 15:27:20 -0700458int platform_send_audio_calibration(void *platform, snd_device_t snd_device)
459{
460 struct platform_data *my_data = (struct platform_data *)platform;
461 int acdb_dev_id, acdb_dev_type;
462
463 acdb_dev_id = acdb_device_table[snd_device];
464 if (acdb_dev_id < 0) {
465 ALOGE("%s: Could not find acdb id for device(%d)",
466 __func__, snd_device);
467 return -EINVAL;
468 }
469 if (my_data->acdb_send_audio_cal) {
Eric Laurent994a6932013-07-17 11:51:42 -0700470 ("%s: sending audio calibration for snd_device(%d) acdb_id(%d)",
Eric Laurentb23d5282013-05-14 15:27:20 -0700471 __func__, snd_device, acdb_dev_id);
472 if (snd_device >= SND_DEVICE_OUT_BEGIN &&
473 snd_device < SND_DEVICE_OUT_END)
474 acdb_dev_type = ACDB_DEV_TYPE_OUT;
475 else
476 acdb_dev_type = ACDB_DEV_TYPE_IN;
477 my_data->acdb_send_audio_cal(acdb_dev_id, acdb_dev_type);
478 }
479 return 0;
480}
481
482int platform_switch_voice_call_device_pre(void *platform)
483{
484 struct platform_data *my_data = (struct platform_data *)platform;
485 int ret = 0;
486
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700487 if (my_data->csd_client != NULL &&
488 voice_is_in_call(my_data->adev)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700489 /* This must be called before disabling the mixer controls on APQ side */
490 if (my_data->csd_disable_device == NULL) {
491 ALOGE("%s: dlsym error for csd_disable_device", __func__);
492 } else {
493 ret = my_data->csd_disable_device();
494 if (ret < 0) {
495 ALOGE("%s: csd_client_disable_device, failed, error %d",
496 __func__, ret);
497 }
498 }
499 }
500 return ret;
501}
502
503int platform_switch_voice_call_device_post(void *platform,
504 snd_device_t out_snd_device,
505 snd_device_t in_snd_device)
506{
507 struct platform_data *my_data = (struct platform_data *)platform;
508 int acdb_rx_id, acdb_tx_id;
509 int ret = 0;
510
511 if (my_data->csd_client) {
512 if (my_data->csd_enable_device == NULL) {
513 ALOGE("%s: dlsym error for csd_enable_device",
514 __func__);
515 } else {
516 acdb_rx_id = acdb_device_table[out_snd_device];
517 acdb_tx_id = acdb_device_table[in_snd_device];
518
519 if (acdb_rx_id > 0 || acdb_tx_id > 0) {
520 ret = my_data->csd_enable_device(acdb_rx_id, acdb_tx_id,
521 my_data->adev->acdb_settings);
522 if (ret < 0) {
523 ALOGE("%s: csd_enable_device, failed, error %d",
524 __func__, ret);
525 }
526 } else {
527 ALOGE("%s: Incorrect ACDB IDs (rx: %d tx: %d)", __func__,
528 acdb_rx_id, acdb_tx_id);
529 }
530 }
531 }
532
533 return ret;
534}
535
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700536int platform_start_voice_call(void *platform, uint32_t vsid __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700537{
538 struct platform_data *my_data = (struct platform_data *)platform;
539 int ret = 0;
540
541 if (my_data->csd_client) {
542 if (my_data->csd_start_voice == NULL) {
543 ALOGE("dlsym error for csd_client_start_voice");
544 ret = -ENOSYS;
545 } else {
546 ret = my_data->csd_start_voice();
547 if (ret < 0) {
548 ALOGE("%s: csd_start_voice error %d\n", __func__, ret);
549 }
550 }
551 }
552
553 return ret;
554}
555
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700556int platform_stop_voice_call(void *platform, uint32_t vsid __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700557{
558 struct platform_data *my_data = (struct platform_data *)platform;
559 int ret = 0;
560
561 if (my_data->csd_client) {
562 if (my_data->csd_stop_voice == NULL) {
563 ALOGE("dlsym error for csd_stop_voice");
564 } else {
565 ret = my_data->csd_stop_voice();
566 if (ret < 0) {
567 ALOGE("%s: csd_stop_voice error %d\n", __func__, ret);
568 }
569 }
570 }
571
572 return ret;
573}
574
vivek mehtab6506412015-08-07 16:55:17 -0700575void platform_set_speaker_gain_in_combo(struct audio_device *adev __unused,
Eric Laurent788f41f2015-08-24 12:21:50 -0700576 snd_device_t snd_device __unused,
vivek mehtab6506412015-08-07 16:55:17 -0700577 bool enable __unused) {
578}
579
Eric Laurentb23d5282013-05-14 15:27:20 -0700580int platform_set_voice_volume(void *platform, int volume)
581{
582 struct platform_data *my_data = (struct platform_data *)platform;
583 int ret = 0;
584
585 if (my_data->csd_client) {
586 if (my_data->csd_volume == NULL) {
587 ALOGE("%s: dlsym error for csd_volume", __func__);
588 } else {
589 ret = my_data->csd_volume(volume);
590 if (ret < 0) {
591 ALOGE("%s: csd_volume error %d", __func__, ret);
592 }
593 }
594 } else {
595 ALOGE("%s: No CSD Client present", __func__);
596 }
597
598 return ret;
599}
600
601int platform_set_mic_mute(void *platform, bool state)
602{
603 struct platform_data *my_data = (struct platform_data *)platform;
604 int ret = 0;
605
606 if (my_data->adev->mode == AUDIO_MODE_IN_CALL) {
607 if (my_data->csd_client) {
608 if (my_data->csd_mic_mute == NULL) {
609 ALOGE("%s: dlsym error for csd_mic_mute", __func__);
610 } else {
611 ret = my_data->csd_mic_mute(state);
612 if (ret < 0) {
613 ALOGE("%s: csd_mic_mute error %d", __func__, ret);
614 }
615 }
616 } else {
617 ALOGE("%s: No CSD Client present", __func__);
618 }
619 }
620
621 return ret;
622}
623
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700624int platform_set_device_mute(void *platform __unused, bool state __unused, char *dir __unused)
625{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700626 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700627 return -ENOSYS;
628}
629
Eric Laurentb23d5282013-05-14 15:27:20 -0700630snd_device_t platform_get_output_snd_device(void *platform, audio_devices_t devices)
631{
632 struct platform_data *my_data = (struct platform_data *)platform;
633 struct audio_device *adev = my_data->adev;
634 audio_mode_t mode = adev->mode;
635 snd_device_t snd_device = SND_DEVICE_NONE;
636
637 ALOGV("%s: enter: output devices(%#x)", __func__, devices);
638 if (devices == AUDIO_DEVICE_NONE ||
639 devices & AUDIO_DEVICE_BIT_IN) {
640 ALOGV("%s: Invalid output devices (%#x)", __func__, devices);
641 goto exit;
642 }
643
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700644 if (voice_is_in_call(adev)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700645 if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
646 devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700647 if (adev->voice.tty_mode == TTY_MODE_FULL)
Eric Laurentb23d5282013-05-14 15:27:20 -0700648 snd_device = SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES;
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700649 else if (adev->voice.tty_mode == TTY_MODE_VCO)
Eric Laurentb23d5282013-05-14 15:27:20 -0700650 snd_device = SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES;
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700651 else if (adev->voice.tty_mode == TTY_MODE_HCO)
Eric Laurentb23d5282013-05-14 15:27:20 -0700652 snd_device = SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET;
yixuanjiang9536e672018-09-06 18:43:36 +0800653 else if (devices & AUDIO_DEVICE_OUT_WIRED_HEADSET)
654 snd_device = SND_DEVICE_OUT_VOICE_HEADSET;
Eric Laurentb23d5282013-05-14 15:27:20 -0700655 else
656 snd_device = SND_DEVICE_OUT_VOICE_HEADPHONES;
657 } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700658 if (adev->bt_wb_speech_enabled) {
659 snd_device = SND_DEVICE_OUT_BT_SCO_WB;
660 } else {
661 snd_device = SND_DEVICE_OUT_BT_SCO;
662 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700663 } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) {
664 snd_device = SND_DEVICE_OUT_VOICE_SPEAKER;
665 } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) {
666 if (is_operator_tmus())
667 snd_device = SND_DEVICE_OUT_VOICE_HANDSET_TMUS;
668 else
669 snd_device = SND_DEVICE_OUT_HANDSET;
670 }
671 if (snd_device != SND_DEVICE_NONE) {
672 goto exit;
673 }
674 }
675
676 if (popcount(devices) == 2) {
677 if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
678 AUDIO_DEVICE_OUT_SPEAKER)) {
679 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES;
680 } else if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADSET |
681 AUDIO_DEVICE_OUT_SPEAKER)) {
682 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES;
683 } else if (devices == (AUDIO_DEVICE_OUT_AUX_DIGITAL |
684 AUDIO_DEVICE_OUT_SPEAKER)) {
685 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HDMI;
686 } else {
687 ALOGE("%s: Invalid combo device(%#x)", __func__, devices);
688 goto exit;
689 }
690 if (snd_device != SND_DEVICE_NONE) {
691 goto exit;
692 }
693 }
694
695 if (popcount(devices) != 1) {
696 ALOGE("%s: Invalid output devices(%#x)", __func__, devices);
697 goto exit;
698 }
699
700 if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
701 devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
702 snd_device = SND_DEVICE_OUT_HEADPHONES;
703 } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) {
andysu5b30b062018-04-20 16:34:06 +0800704 /*
705 * Perform device switch only if acdb tuning is different between SPEAKER & SPEAKER_REVERSE,
706 * Or there will be a small pause while performing device switch.
707 */
708 if (my_data->speaker_lr_swap &&
709 (acdb_device_table[SND_DEVICE_OUT_SPEAKER] !=
710 acdb_device_table[SND_DEVICE_OUT_SPEAKER_REVERSE]))
Eric Laurentb23d5282013-05-14 15:27:20 -0700711 snd_device = SND_DEVICE_OUT_SPEAKER_REVERSE;
712 else
713 snd_device = SND_DEVICE_OUT_SPEAKER;
714 } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700715 if (adev->bt_wb_speech_enabled) {
716 snd_device = SND_DEVICE_OUT_BT_SCO_WB;
717 } else {
718 snd_device = SND_DEVICE_OUT_BT_SCO;
719 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700720 } else if (devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
721 snd_device = SND_DEVICE_OUT_HDMI ;
722 } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) {
723 snd_device = SND_DEVICE_OUT_HANDSET;
724 } else {
725 ALOGE("%s: Unknown device(s) %#x", __func__, devices);
726 }
727exit:
728 ALOGV("%s: exit: snd_device(%s)", __func__, device_table[snd_device]);
729 return snd_device;
730}
731
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800732snd_device_t platform_get_input_snd_device(void *platform,
733 struct stream_in *in,
734 audio_devices_t out_device)
Eric Laurentb23d5282013-05-14 15:27:20 -0700735{
736 struct platform_data *my_data = (struct platform_data *)platform;
737 struct audio_device *adev = my_data->adev;
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800738 audio_mode_t mode = adev->mode;
Eric Laurentb23d5282013-05-14 15:27:20 -0700739 snd_device_t snd_device = SND_DEVICE_NONE;
740
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800741 if (in == NULL) {
742 in = adev_get_active_input(adev);
743 }
744
745 audio_source_t source = (in == NULL) ? AUDIO_SOURCE_DEFAULT : in->source;
746 audio_devices_t in_device =
747 ((in == NULL) ? AUDIO_DEVICE_NONE : in->device) & ~AUDIO_DEVICE_BIT_IN;
748 audio_channel_mask_t channel_mask = (in == NULL) ? AUDIO_CHANNEL_IN_MONO : in->channel_mask;
749
Eric Laurentb23d5282013-05-14 15:27:20 -0700750 ALOGV("%s: enter: out_device(%#x) in_device(%#x)",
751 __func__, out_device, in_device);
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700752 if ((out_device != AUDIO_DEVICE_NONE) && voice_is_in_call(adev)) {
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700753 if (adev->voice.tty_mode != TTY_MODE_OFF) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700754 if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
755 out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700756 switch (adev->voice.tty_mode) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700757 case TTY_MODE_FULL:
758 snd_device = SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC;
759 break;
760 case TTY_MODE_VCO:
761 snd_device = SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC;
762 break;
763 case TTY_MODE_HCO:
764 snd_device = SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC;
765 break;
766 default:
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700767 ALOGE("%s: Invalid TTY mode (%#x)", __func__, adev->voice.tty_mode);
Eric Laurentb23d5282013-05-14 15:27:20 -0700768 }
769 goto exit;
770 }
771 }
772 if (out_device & AUDIO_DEVICE_OUT_EARPIECE ||
773 out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) {
774 if (my_data->fluence_in_voice_call == false) {
775 snd_device = SND_DEVICE_IN_HANDSET_MIC;
776 } else {
777 if (my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
778 if (is_operator_tmus())
779 snd_device = SND_DEVICE_IN_VOICE_DMIC_EF_TMUS;
780 else
781 snd_device = SND_DEVICE_IN_VOICE_DMIC_EF;
782 } else if(my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE)
783 snd_device = SND_DEVICE_IN_VOICE_DMIC_BS;
784 else
785 snd_device = SND_DEVICE_IN_HANDSET_MIC;
786 }
787 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
788 snd_device = SND_DEVICE_IN_VOICE_HEADSET_MIC;
789 } else if (out_device & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700790 if (adev->bt_wb_speech_enabled) {
791 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
792 } else {
793 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
794 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700795 } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) {
796 if (my_data->fluence_in_voice_call && my_data->fluence_in_spkr_mode &&
797 my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
798 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_DMIC_EF;
799 } else if (my_data->fluence_in_voice_call && my_data->fluence_in_spkr_mode &&
800 my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE) {
801 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_DMIC_BS;
802 } else {
803 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_MIC;
804 }
805 }
806 } else if (source == AUDIO_SOURCE_CAMCORDER) {
807 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC ||
808 in_device & AUDIO_DEVICE_IN_BACK_MIC) {
809 snd_device = SND_DEVICE_IN_CAMCORDER_MIC;
810 }
811 } else if (source == AUDIO_SOURCE_VOICE_RECOGNITION) {
812 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
813 if (my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
814 if (channel_mask == AUDIO_CHANNEL_IN_FRONT_BACK)
815 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_EF;
816 else if (my_data->fluence_in_voice_rec)
817 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_EF_FLUENCE;
818 } else if (my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE) {
819 if (channel_mask == AUDIO_CHANNEL_IN_FRONT_BACK)
820 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_BS;
821 else if (my_data->fluence_in_voice_rec)
822 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_BS_FLUENCE;
823 }
824
825 if (snd_device == SND_DEVICE_NONE) {
826 snd_device = SND_DEVICE_IN_VOICE_REC_MIC;
827 }
828 }
Eric Laurent50a38ed2015-10-14 18:48:06 -0700829 } else if (source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
830 mode == AUDIO_MODE_IN_COMMUNICATION) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700831 if (out_device & AUDIO_DEVICE_OUT_SPEAKER)
832 in_device = AUDIO_DEVICE_IN_BACK_MIC;
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800833 if (in) {
834 if (in != NULL && in->enable_aec) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700835 if (in_device & AUDIO_DEVICE_IN_BACK_MIC) {
836 snd_device = SND_DEVICE_IN_SPEAKER_MIC_AEC;
837 } else if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
838 snd_device = SND_DEVICE_IN_HANDSET_MIC_AEC;
839 } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) {
840 snd_device = SND_DEVICE_IN_HEADSET_MIC_AEC;
841 }
842 set_echo_reference(adev->mixer, "SLIM_RX");
843 } else
844 set_echo_reference(adev->mixer, "NONE");
845 }
846 } else if (source == AUDIO_SOURCE_DEFAULT) {
847 goto exit;
848 }
849
850
851 if (snd_device != SND_DEVICE_NONE) {
852 goto exit;
853 }
854
855 if (in_device != AUDIO_DEVICE_NONE &&
856 !(in_device & AUDIO_DEVICE_IN_VOICE_CALL) &&
857 !(in_device & AUDIO_DEVICE_IN_COMMUNICATION)) {
858 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
859 snd_device = SND_DEVICE_IN_HANDSET_MIC;
860 } else if (in_device & AUDIO_DEVICE_IN_BACK_MIC) {
861 snd_device = SND_DEVICE_IN_SPEAKER_MIC;
862 } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) {
863 snd_device = SND_DEVICE_IN_HEADSET_MIC;
864 } else if (in_device & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700865 if (adev->bt_wb_speech_enabled) {
866 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
867 } else {
868 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
869 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700870 } else if (in_device & AUDIO_DEVICE_IN_AUX_DIGITAL) {
871 snd_device = SND_DEVICE_IN_HDMI_MIC;
872 } else {
873 ALOGE("%s: Unknown input device(s) %#x", __func__, in_device);
874 ALOGW("%s: Using default handset-mic", __func__);
875 snd_device = SND_DEVICE_IN_HANDSET_MIC;
876 }
877 } else {
878 if (out_device & AUDIO_DEVICE_OUT_EARPIECE) {
879 snd_device = SND_DEVICE_IN_HANDSET_MIC;
880 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
881 snd_device = SND_DEVICE_IN_HEADSET_MIC;
882 } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) {
883 snd_device = SND_DEVICE_IN_SPEAKER_MIC;
884 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) {
885 snd_device = SND_DEVICE_IN_HANDSET_MIC;
886 } else if (out_device & AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700887 if (adev->bt_wb_speech_enabled) {
888 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
889 } else {
890 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
891 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700892 } else if (out_device & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
893 snd_device = SND_DEVICE_IN_HDMI_MIC;
894 } else {
895 ALOGE("%s: Unknown output device(s) %#x", __func__, out_device);
896 ALOGW("%s: Using default handset-mic", __func__);
897 snd_device = SND_DEVICE_IN_HANDSET_MIC;
898 }
899 }
900exit:
901 ALOGV("%s: exit: in_snd_device(%s)", __func__, device_table[snd_device]);
902 return snd_device;
903}
904
905int platform_set_hdmi_channels(void *platform, int channel_count)
906{
907 struct platform_data *my_data = (struct platform_data *)platform;
908 struct audio_device *adev = my_data->adev;
909 struct mixer_ctl *ctl;
910 const char *channel_cnt_str = NULL;
911 const char *mixer_ctl_name = "HDMI_RX Channels";
912 switch (channel_count) {
913 case 8:
914 channel_cnt_str = "Eight"; break;
915 case 7:
916 channel_cnt_str = "Seven"; break;
917 case 6:
918 channel_cnt_str = "Six"; break;
919 case 5:
920 channel_cnt_str = "Five"; break;
921 case 4:
922 channel_cnt_str = "Four"; break;
923 case 3:
924 channel_cnt_str = "Three"; break;
925 default:
926 channel_cnt_str = "Two"; break;
927 }
928 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
929 if (!ctl) {
930 ALOGE("%s: Could not get ctl for mixer cmd - %s",
931 __func__, mixer_ctl_name);
932 return -EINVAL;
933 }
934 ALOGV("HDMI channel count: %s", channel_cnt_str);
935 mixer_ctl_set_enum_by_string(ctl, channel_cnt_str);
936 return 0;
937}
938
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700939int platform_edid_get_max_channels(void *platform __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700940{
941 FILE *file;
942 struct audio_block_header header;
943 char block[MAX_SAD_BLOCKS * SAD_BLOCK_SIZE];
944 char *sad = block;
945 int num_audio_blocks;
946 int channel_count;
947 int max_channels = 0;
948 int i;
949
950 file = fopen(AUDIO_DATA_BLOCK_PATH, "rb");
951 if (file == NULL) {
952 ALOGE("Unable to open '%s'", AUDIO_DATA_BLOCK_PATH);
953 return 0;
954 }
955
956 /* Read audio block header */
957 fread(&header, 1, sizeof(header), file);
958
959 /* Read SAD blocks, clamping the maximum size for safety */
960 if (header.length > (int)sizeof(block))
961 header.length = (int)sizeof(block);
962 fread(&block, header.length, 1, file);
963
964 fclose(file);
965
966 /* Calculate the number of SAD blocks */
967 num_audio_blocks = header.length / SAD_BLOCK_SIZE;
968
969 for (i = 0; i < num_audio_blocks; i++) {
970 /* Only consider LPCM blocks */
971 if ((sad[0] >> 3) != EDID_FORMAT_LPCM)
972 continue;
973
974 channel_count = (sad[0] & 0x7) + 1;
975 if (channel_count > max_channels)
976 max_channels = channel_count;
977
978 /* Advance to next block */
979 sad += 3;
980 }
981
982 return max_channels;
983}
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700984
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700985int platform_set_incall_recording_session_id(void *platform __unused,
986 uint32_t session_id __unused, int rec_mode __unused)
987{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700988 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700989 return -ENOSYS;
990}
991
992int platform_stop_incall_recording_usecase(void *platform __unused)
993{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700994 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700995 return -ENOSYS;
996}
997
998int platform_start_incall_music_usecase(void *platform __unused)
999{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001000 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001001 return -ENOSYS;
1002}
1003
1004int platform_stop_incall_music_usecase(void *platform __unused)
1005{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001006 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001007 return -ENOSYS;
1008}
1009
Ravi Kumar Alamandac4f57312015-06-26 17:41:02 -07001010int platform_set_parameters(void *platform __unused,
1011 struct str_parms *parms __unused)
1012{
1013 ALOGE("%s: Not implemented", __func__);
1014 return -ENOSYS;
1015}
1016
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001017/* Delay in Us */
1018int64_t platform_render_latency(audio_usecase_t usecase)
1019{
1020 switch (usecase) {
1021 case USECASE_AUDIO_PLAYBACK_DEEP_BUFFER:
1022 return DEEP_BUFFER_PLATFORM_DELAY;
1023 case USECASE_AUDIO_PLAYBACK_LOW_LATENCY:
1024 return LOW_LATENCY_PLATFORM_DELAY;
1025 default:
1026 return 0;
1027 }
1028}
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001029
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001030int platform_switch_voice_call_enable_device_config(void *platform __unused,
1031 snd_device_t out_snd_device __unused,
1032 snd_device_t in_snd_device __unused)
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001033{
1034 return 0;
1035}
1036
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001037int platform_switch_voice_call_usecase_route_post(void *platform __unused,
1038 snd_device_t out_snd_device __unused,
1039 snd_device_t in_snd_device __unused)
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001040{
1041 return 0;
1042}
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001043
1044int platform_get_sample_rate(void *platform __unused, uint32_t *rate __unused)
1045{
1046 return -ENOSYS;
1047}
Haynes Mathew George98c95622014-06-20 19:14:25 -07001048
1049int platform_get_usecase_index(const char * usecase __unused)
1050{
1051 return -ENOSYS;
1052}
1053
1054int platform_set_usecase_pcm_id(audio_usecase_t usecase __unused, int32_t type __unused,
1055 int32_t pcm_id __unused)
1056{
1057 return -ENOSYS;
1058}
1059
1060int platform_set_snd_device_backend(snd_device_t device __unused,
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001061 const char *backend __unused,
1062 const char *hw_interface __unused)
Haynes Mathew George98c95622014-06-20 19:14:25 -07001063{
1064 return -ENOSYS;
1065}
Eric Laurentcefbbac2014-09-04 13:54:10 -05001066
vivek mehta1a9b7c02015-06-25 11:49:38 -07001067void platform_set_echo_reference(struct audio_device *adev __unused,
1068 bool enable __unused,
1069 audio_devices_t out_device __unused)
Eric Laurentcefbbac2014-09-04 13:54:10 -05001070{
1071 return;
1072}
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001073
vivek mehtae59cfb22017-06-16 15:57:11 -07001074#define DEFAULT_NOMINAL_SPEAKER_GAIN 20
1075int ramp_speaker_gain(struct audio_device *adev, bool ramp_up, int target_ramp_up_gain) {
1076 // backup_gain: gain to try to set in case of an error during ramp
1077 int start_gain, end_gain, step, backup_gain, i;
1078 bool error = false;
1079 const struct mixer_ctl *ctl;
1080 const char *mixer_ctl_name_gain_left = "Left Speaker Gain";
1081 const char *mixer_ctl_name_gain_right = "Right Speaker Gain";
1082 struct mixer_ctl *ctl_left = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name_gain_left);
1083 struct mixer_ctl *ctl_right = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name_gain_right);
1084 if (!ctl_left || !ctl_right) {
1085 ALOGE("%s: Could not get ctl for mixer cmd - %s or %s, not applying speaker gain ramp",
1086 __func__, mixer_ctl_name_gain_left, mixer_ctl_name_gain_right);
1087 return -EINVAL;
1088 } else if ((mixer_ctl_get_num_values(ctl_left) != 1)
1089 || (mixer_ctl_get_num_values(ctl_right) != 1)) {
1090 ALOGE("%s: Unexpected num values for mixer cmd - %s or %s, not applying speaker gain ramp",
1091 __func__, mixer_ctl_name_gain_left, mixer_ctl_name_gain_right);
1092 return -EINVAL;
1093 }
1094 if (ramp_up) {
1095 start_gain = 0;
1096 end_gain = target_ramp_up_gain > 0 ? target_ramp_up_gain : DEFAULT_NOMINAL_SPEAKER_GAIN;
1097 step = +1;
1098 backup_gain = end_gain;
1099 } else {
1100 // using same gain on left and right
1101 const int left_gain = mixer_ctl_get_value(ctl_left, 0);
1102 start_gain = left_gain > 0 ? left_gain : DEFAULT_NOMINAL_SPEAKER_GAIN;
1103 end_gain = 0;
1104 step = -1;
1105 backup_gain = start_gain;
1106 }
1107 for (i = start_gain ; i != (end_gain + step) ; i += step) {
1108 //ALOGV("setting speaker gain to %d", i);
1109 if (mixer_ctl_set_value(ctl_left, 0, i)) {
1110 ALOGE("%s: error setting %s to %d during gain ramp",
1111 __func__, mixer_ctl_name_gain_left, i);
1112 error = true;
1113 break;
1114 }
1115 if (mixer_ctl_set_value(ctl_right, 0, i)) {
1116 ALOGE("%s: error setting %s to %d during gain ramp",
1117 __func__, mixer_ctl_name_gain_right, i);
1118 error = true;
1119 break;
1120 }
1121 usleep(1000);
1122 }
1123 if (error) {
1124 // an error occured during the ramp, let's still try to go back to a safe volume
1125 if (mixer_ctl_set_value(ctl_left, 0, backup_gain)) {
1126 ALOGE("%s: error restoring left gain to %d", __func__, backup_gain);
1127 }
1128 if (mixer_ctl_set_value(ctl_right, 0, backup_gain)) {
1129 ALOGE("%s: error restoring right gain to %d", __func__, backup_gain);
1130 }
1131 }
1132 return start_gain;
1133}
1134
1135int platform_set_swap_mixer(struct audio_device *adev, bool swap_channels)
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001136{
vivek mehtae59cfb22017-06-16 15:57:11 -07001137 const char *mixer_ctl_name = "Swap channel";
1138 struct mixer_ctl *ctl;
1139 const char *mixer_path;
1140 struct platform_data *my_data = (struct platform_data *)adev->platform;
1141
1142 // forced to set to swap, but device not rotated ... ignore set
1143 if (swap_channels && !my_data->speaker_lr_swap)
1144 return 0;
1145
1146 ALOGV("%s:", __func__);
1147
1148 if (swap_channels) {
1149 mixer_path = platform_get_snd_device_name(SND_DEVICE_OUT_SPEAKER_REVERSE);
1150 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
1151 } else {
1152 mixer_path = platform_get_snd_device_name(SND_DEVICE_OUT_SPEAKER);
1153 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
1154 }
1155
1156 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1157 if (!ctl) {
1158 ALOGE("%s: Could not get ctl for mixer cmd - %s",__func__, mixer_ctl_name);
1159 return -EINVAL;
1160 }
1161
1162 if (mixer_ctl_set_value(ctl, 0, swap_channels) < 0) {
1163 ALOGE("%s: Could not set reverse cotrol %d",__func__, swap_channels);
1164 return -EINVAL;
1165 }
1166
1167 ALOGV("platfor_force_swap_channel :: Channel orientation ( %s ) ",
1168 swap_channels?"R --> L":"L --> R");
1169
1170 return 0;
1171}
1172
1173int platform_check_and_set_swap_lr_channels(struct audio_device *adev, bool swap_channels)
1174{
1175 // only update if there is active pcm playback on speaker
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001176 struct audio_usecase *usecase;
1177 struct listnode *node;
1178 struct platform_data *my_data = (struct platform_data *)adev->platform;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001179
vivek mehtae59cfb22017-06-16 15:57:11 -07001180 my_data->speaker_lr_swap = swap_channels;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001181
vivek mehtae59cfb22017-06-16 15:57:11 -07001182 return platform_set_swap_channels(adev, swap_channels);
1183}
1184
1185int platform_set_swap_channels(struct audio_device *adev, bool swap_channels)
1186{
1187 // only update if there is active pcm playback on speaker
1188 struct audio_usecase *usecase;
1189 struct listnode *node;
1190 struct platform_data *my_data = (struct platform_data *)adev->platform;
1191
1192 // do not swap channels in audio modes with concurrent capture and playback
1193 // as this may break the echo reference
1194 if ((adev->mode == AUDIO_MODE_IN_COMMUNICATION) || (adev->mode == AUDIO_MODE_IN_CALL)) {
1195 ALOGV("%s: will not swap due to audio mode %d", __func__, adev->mode);
1196 return 0;
1197 }
1198
1199 list_for_each(node, &adev->usecase_list) {
1200 usecase = node_to_item(node, struct audio_usecase, list);
1201 if (usecase->type == PCM_PLAYBACK &&
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001202 usecase->stream.out->devices & AUDIO_DEVICE_OUT_SPEAKER) {
vivek mehtae59cfb22017-06-16 15:57:11 -07001203 /*
1204 * If acdb tuning is different for SPEAKER_REVERSE, it is must
1205 * to perform device switch to disable the current backend to
1206 * enable it with new acdb data.
1207 */
1208 if (acdb_device_table[SND_DEVICE_OUT_SPEAKER] !=
1209 acdb_device_table[SND_DEVICE_OUT_SPEAKER_REVERSE]) {
1210 const int initial_skpr_gain = ramp_speaker_gain(adev, false /*ramp_up*/, -1);
1211 select_devices(adev, usecase->id);
1212 if (initial_skpr_gain != -EINVAL)
1213 ramp_speaker_gain(adev, true /*ramp_up*/, initial_skpr_gain);
1214
1215 } else {
1216 platform_set_swap_mixer(adev, swap_channels);
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001217 }
vivek mehtae59cfb22017-06-16 15:57:11 -07001218 break;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001219 }
1220 }
vivek mehtae59cfb22017-06-16 15:57:11 -07001221
1222 return 0;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001223}
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001224
1225bool platform_send_gain_dep_cal(void *platform __unused,
1226 int level __unused)
1227{
vivek mehtafb4d7bd2016-04-29 03:16:47 -07001228 return true;
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001229}
1230
Haynes Mathew George2d809e02016-09-22 17:38:16 -07001231int platform_can_split_snd_device(snd_device_t in_snd_device __unused,
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001232 int *num_devices __unused,
1233 snd_device_t *out_snd_devices __unused)
1234{
Haynes Mathew George2d809e02016-09-22 17:38:16 -07001235 return -ENOSYS;
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001236}
1237
1238bool platform_check_backends_match(snd_device_t snd_device1 __unused,
1239 snd_device_t snd_device2 __unused)
1240{
1241 return true;
1242}
vivek mehtade4849c2016-03-03 17:23:38 -08001243
1244int platform_get_snd_device_name_extn(void *platform __unused,
1245 snd_device_t snd_device,
1246 char *device_name)
1247{
David Benjamin1565f992016-09-21 12:10:34 -04001248 strlcpy(device_name, platform_get_snd_device_name(snd_device),
1249 DEVICE_NAME_MAX_SIZE);
vivek mehtade4849c2016-03-03 17:23:38 -08001250 return 0;
1251}
1252
David Linee3fe402017-03-13 10:00:42 -07001253bool platform_check_and_set_playback_backend_cfg(struct audio_device* adev __unused,
1254 struct audio_usecase *usecase __unused,
1255 snd_device_t snd_device __unused)
1256{
1257 return false;
1258}
1259
vivek mehta4ed66e62016-04-15 23:33:34 -07001260bool platform_check_and_set_capture_backend_cfg(struct audio_device* adev __unused,
David Lind6229bd2017-07-06 15:28:55 -07001261 struct audio_usecase *usecase __unused, snd_device_t snd_device __unused)
vivek mehta4ed66e62016-04-15 23:33:34 -07001262{
1263 return false;
1264}
1265
vivek mehtaa8d7c922016-05-25 14:40:44 -07001266bool platform_add_gain_level_mapping(struct amp_db_and_gain_table *tbl_entry __unused)
1267{
1268 return false;
1269}
1270
1271int platform_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl __unused,
1272 int table_size __unused)
1273{
1274 return 0;
1275}
Haynes Mathew Georgec735fb02016-06-30 18:00:28 -07001276
Tom Cherry8721b4d2016-07-14 16:12:23 -07001277int platform_snd_card_update(void *platform __unused,
Haynes Mathew Georgec735fb02016-06-30 18:00:28 -07001278 card_status_t status __unused)
1279{
1280 return -1;
1281}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001282
David Lind6229bd2017-07-06 15:28:55 -07001283int platform_get_snd_device_backend_index(snd_device_t snd_device __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001284{
1285 return -ENOSYS;
1286}
1287
David Lind6229bd2017-07-06 15:28:55 -07001288void platform_check_and_update_copp_sample_rate(void* platform __unused, snd_device_t snd_device __unused,
1289 unsigned int stream_sr __unused, int* sample_rate __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001290{
1291
1292}
1293
David Lind6229bd2017-07-06 15:28:55 -07001294int platform_send_audio_calibration_v2(void *platform __unused, struct audio_usecase *usecase __unused,
1295 int app_type __unused, int sample_rate __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001296{
1297 return -ENOSYS;
1298}
1299
1300bool platform_supports_app_type_cfg() { return false; }
1301
vivek mehtaa68fea62017-06-08 19:04:02 -07001302void platform_add_app_type(const char *uc_type __unused,
1303 const char *mode __unused,
1304 int bw __unused, int app_type __unused,
1305 int max_sr __unused) {}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001306
vivek mehtaa68fea62017-06-08 19:04:02 -07001307int platform_get_app_type_v2(void *platform __unused,
1308 enum usecase_type_t type __unused,
1309 const char *mode __unused,
1310 int bw __unused, int sr __unused,
1311 int *app_type __unused) {
1312 return -ENOSYS;
1313}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001314
vivek mehta90933872017-06-15 18:04:39 -07001315int platform_set_sidetone(struct audio_device *adev,
1316 snd_device_t out_snd_device,
1317 bool enable, char *str)
1318{
1319 int ret;
1320 if (out_snd_device == SND_DEVICE_OUT_USB_HEADSET ||
1321 out_snd_device == SND_DEVICE_OUT_VOICE_USB_HEADSET) {
1322 ret = audio_extn_usb_enable_sidetone(out_snd_device, enable);
1323 if (ret)
1324 ALOGI("%s: usb device %d does not support device sidetone\n",
1325 __func__, out_snd_device);
1326 } else {
1327 ALOGV("%s: sidetone out device(%d) mixer cmd = %s\n",
1328 __func__, out_snd_device, str);
1329 if (enable)
1330 audio_route_apply_and_update_path(adev->audio_route, str);
1331 else
1332 audio_route_reset_and_update_path(adev->audio_route, str);
1333 }
1334 return 0;
1335}
Haynes Mathew George96483a22017-03-28 14:52:47 -07001336
1337int platform_get_mmap_data_fd(void *platform __unused, int fe_dev __unused, int dir __unused,
1338 int *fd __unused, uint32_t *size __unused)
1339{
1340 return -ENOSYS;
1341}
Mikhail Naganov4ee6e3e2018-03-21 16:28:35 +00001342
1343bool platform_sound_trigger_usecase_needs_event(audio_usecase_t uc_id __unused)
1344{
1345 return false;
1346}
1347
1348bool platform_snd_device_has_speaker(snd_device_t dev __unused) {
1349 return false;
1350}
jiabin8962a4d2018-03-19 18:21:24 -07001351
1352bool platform_set_microphone_characteristic(void *platform __unused,
1353 struct audio_microphone_characteristic_t mic __unused) {
1354 return -ENOSYS;
1355}
1356
1357int platform_get_microphones(void *platform __unused,
1358 struct audio_microphone_characteristic_t *mic_array __unused,
1359 size_t *mic_count __unused) {
1360 return -ENOSYS;
1361}
1362
jiabin2276a702018-05-11 09:36:38 -07001363int platform_get_active_microphones(void *platform __unused, unsigned int channels __unused,
1364 audio_usecase_t usecase __unused,
jiabin8962a4d2018-03-19 18:21:24 -07001365 struct audio_microphone_characteristic_t *mic_array __unused,
1366 size_t *mic_count __unused) {
1367 return -ENOSYS;
1368}
Haynes Mathew George65f6b432018-02-27 17:44:55 -08001369
1370int platform_set_usb_service_interval(void *platform __unused,
1371 bool playback __unused,
1372 unsigned long service_interval __unused,
1373 bool *reconfig)
1374{
1375 *reconfig = false;
1376 return 0;
1377}
1378
Eric Laurentca7724d2018-05-08 09:08:28 -07001379int platform_set_backend_cfg(const struct audio_device* adev __unused,
1380 snd_device_t snd_device __unused,
1381 const struct audio_backend_cfg *backend_cfg __unused)
Haynes Mathew George65f6b432018-02-27 17:44:55 -08001382{
1383 return -1;
1384}
Ashish Jain1c849702018-05-11 20:11:55 +05301385
1386int platform_set_acdb_metainfo_key(void *platform __unused,
1387 char *name __unused,
1388 int key __unused) {
1389 return -ENOSYS;
1390}