blob: 8483bc9d1dcad19bbd15e2d35266c32a8f7a0aeb [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"
Artem Borisov68909612017-12-02 20:19:25 +030041#define MIXER_XML_PATH "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
Artem Borisov68909612017-12-02 20:19:25 +0300271// Treblized config files will be located in /odm/etc or /vendor/etc.
272static const char *kConfigLocationList[] =
273 {"/odm/etc", "/vendor/etc", "/system/etc"};
274static const int kConfigLocationListSize =
275 (sizeof(kConfigLocationList) / sizeof(kConfigLocationList[0]));
276
277bool resolveConfigFile(char file_name[MIXER_PATH_MAX_LENGTH]) {
278 char full_config_path[MIXER_PATH_MAX_LENGTH];
279 for (int i = 0; i < kConfigLocationListSize; i++) {
280 snprintf(full_config_path,
281 MIXER_PATH_MAX_LENGTH,
282 "%s/%s",
283 kConfigLocationList[i],
284 file_name);
285 if (F_OK == access(full_config_path, 0)) {
286 strcpy(file_name, full_config_path);
287 return true;
288 }
289 }
290 return false;
291}
292
Eric Laurentb23d5282013-05-14 15:27:20 -0700293void *platform_init(struct audio_device *adev)
294{
295 char platform[PROPERTY_VALUE_MAX];
296 char baseband[PROPERTY_VALUE_MAX];
297 char value[PROPERTY_VALUE_MAX];
298 struct platform_data *my_data;
Artem Borisov68909612017-12-02 20:19:25 +0300299 char mixer_xml_file[MIXER_PATH_MAX_LENGTH] = MIXER_XML_PATH;
Eric Laurentb23d5282013-05-14 15:27:20 -0700300
sangwoo1b9f4b32013-06-21 18:22:55 -0700301 adev->mixer = mixer_open(MIXER_CARD);
302
303 if (!adev->mixer) {
304 ALOGE("Unable to open the mixer, aborting.");
305 return NULL;
306 }
307
Artem Borisov68909612017-12-02 20:19:25 +0300308 resolveConfigFile(mixer_xml_file);
309 adev->audio_route = audio_route_init(MIXER_CARD, mixer_xml_file);
sangwoo1b9f4b32013-06-21 18:22:55 -0700310 if (!adev->audio_route) {
311 ALOGE("%s: Failed to init audio route controls, aborting.", __func__);
312 return NULL;
313 }
314
Eric Laurentb23d5282013-05-14 15:27:20 -0700315 my_data = calloc(1, sizeof(struct platform_data));
316
317 my_data->adev = adev;
318 my_data->dualmic_config = DUALMIC_CONFIG_NONE;
319 my_data->fluence_in_spkr_mode = false;
320 my_data->fluence_in_voice_call = false;
321 my_data->fluence_in_voice_rec = false;
322
323 property_get("persist.audio.dualmic.config",value,"");
324 if (!strcmp("broadside", value)) {
325 my_data->dualmic_config = DUALMIC_CONFIG_BROADSIDE;
326 adev->acdb_settings |= DMIC_FLAG;
327 } else if (!strcmp("endfire", value)) {
328 my_data->dualmic_config = DUALMIC_CONFIG_ENDFIRE;
329 adev->acdb_settings |= DMIC_FLAG;
330 }
331
332 if (my_data->dualmic_config != DUALMIC_CONFIG_NONE) {
333 property_get("persist.audio.fluence.voicecall",value,"");
334 if (!strcmp("true", value)) {
335 my_data->fluence_in_voice_call = true;
336 }
337
338 property_get("persist.audio.fluence.voicerec",value,"");
339 if (!strcmp("true", value)) {
340 my_data->fluence_in_voice_rec = true;
341 }
342
343 property_get("persist.audio.fluence.speaker",value,"");
344 if (!strcmp("true", value)) {
345 my_data->fluence_in_spkr_mode = true;
346 }
347 }
348
349 my_data->acdb_handle = dlopen(LIB_ACDB_LOADER, RTLD_NOW);
350 if (my_data->acdb_handle == NULL) {
351 ALOGE("%s: DLOPEN failed for %s", __func__, LIB_ACDB_LOADER);
352 } else {
353 ALOGV("%s: DLOPEN successful for %s", __func__, LIB_ACDB_LOADER);
354 my_data->acdb_deallocate = (acdb_deallocate_t)dlsym(my_data->acdb_handle,
355 "acdb_loader_deallocate_ACDB");
356 my_data->acdb_send_audio_cal = (acdb_send_audio_cal_t)dlsym(my_data->acdb_handle,
357 "acdb_loader_send_audio_cal");
358 if (!my_data->acdb_send_audio_cal)
359 ALOGW("%s: Could not find the symbol acdb_send_audio_cal from %s",
360 __func__, LIB_ACDB_LOADER);
361 my_data->acdb_send_voice_cal = (acdb_send_voice_cal_t)dlsym(my_data->acdb_handle,
362 "acdb_loader_send_voice_cal");
363 my_data->acdb_init = (acdb_init_t)dlsym(my_data->acdb_handle,
364 "acdb_loader_init_ACDB");
365 if (my_data->acdb_init == NULL)
366 ALOGE("%s: dlsym error %s for acdb_loader_init_ACDB", __func__, dlerror());
367 else
368 my_data->acdb_init();
369 }
370
371 /* If platform is Fusion3, load CSD Client specific symbols
372 * Voice call is handled by MDM and apps processor talks to
373 * MDM through CSD Client
374 */
375 property_get("ro.board.platform", platform, "");
376 property_get("ro.baseband", baseband, "");
377 if (!strcmp("msm8960", platform) && !strcmp("mdm", baseband)) {
378 my_data->csd_client = dlopen(LIB_CSD_CLIENT, RTLD_NOW);
379 if (my_data->csd_client == NULL)
380 ALOGE("%s: DLOPEN failed for %s", __func__, LIB_CSD_CLIENT);
381 }
382
383 if (my_data->csd_client) {
384 ALOGV("%s: DLOPEN successful for %s", __func__, LIB_CSD_CLIENT);
385 my_data->csd_client_deinit = (csd_client_deinit_t)dlsym(my_data->csd_client,
386 "csd_client_deinit");
387 my_data->csd_disable_device = (csd_disable_device_t)dlsym(my_data->csd_client,
388 "csd_client_disable_device");
389 my_data->csd_enable_device = (csd_enable_device_t)dlsym(my_data->csd_client,
390 "csd_client_enable_device");
391 my_data->csd_start_voice = (csd_start_voice_t)dlsym(my_data->csd_client,
392 "csd_client_start_voice");
393 my_data->csd_stop_voice = (csd_stop_voice_t)dlsym(my_data->csd_client,
394 "csd_client_stop_voice");
395 my_data->csd_volume = (csd_volume_t)dlsym(my_data->csd_client,
396 "csd_client_volume");
397 my_data->csd_mic_mute = (csd_mic_mute_t)dlsym(my_data->csd_client,
398 "csd_client_mic_mute");
399 my_data->csd_client_init = (csd_client_init_t)dlsym(my_data->csd_client,
400 "csd_client_init");
401
402 if (my_data->csd_client_init == NULL) {
403 ALOGE("%s: dlsym error %s for csd_client_init", __func__, dlerror());
404 } else {
405 my_data->csd_client_init();
406 }
407 }
408
409 return my_data;
410}
411
412void platform_deinit(void *platform)
413{
414 free(platform);
415}
416
417const char *platform_get_snd_device_name(snd_device_t snd_device)
418{
419 if (snd_device >= SND_DEVICE_MIN && snd_device < SND_DEVICE_MAX)
420 return device_table[snd_device];
421 else
Ravi Kumar Alamanda64026462014-09-15 00:08:58 -0700422 return "none";
Eric Laurentb23d5282013-05-14 15:27:20 -0700423}
424
Ravi Kumar Alamanda299760a2013-11-01 17:29:09 -0500425void platform_add_backend_name(void *platform __unused, char *mixer_path,
426 snd_device_t snd_device)
Eric Laurentb23d5282013-05-14 15:27:20 -0700427{
428 if (snd_device == SND_DEVICE_IN_BT_SCO_MIC)
429 strcat(mixer_path, " bt-sco");
430 else if(snd_device == SND_DEVICE_OUT_BT_SCO)
431 strcat(mixer_path, " bt-sco");
432 else if (snd_device == SND_DEVICE_OUT_HDMI)
433 strcat(mixer_path, " hdmi");
434 else if (snd_device == SND_DEVICE_OUT_SPEAKER_AND_HDMI)
435 strcat(mixer_path, " speaker-and-hdmi");
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700436 else if (snd_device == SND_DEVICE_OUT_BT_SCO_WB ||
437 snd_device == SND_DEVICE_IN_BT_SCO_MIC_WB)
438 strcat(mixer_path, " bt-sco-wb");
Eric Laurentb23d5282013-05-14 15:27:20 -0700439}
440
441int platform_get_pcm_device_id(audio_usecase_t usecase, int device_type)
442{
443 int device_id;
444 if (device_type == PCM_PLAYBACK)
445 device_id = pcm_device_table[usecase][0];
446 else
447 device_id = pcm_device_table[usecase][1];
448 return device_id;
449}
450
Vignesh Kulothungan019d19b2019-01-23 11:09:18 -0800451int platform_get_haptics_pcm_device_id()
452{
453 return -1;
454}
455
Haynes Mathew George98c95622014-06-20 19:14:25 -0700456int platform_get_snd_device_index(char *snd_device_index_name __unused)
Haynes Mathew George5bc18842014-06-16 16:36:20 -0700457{
458 return -ENODEV;
459}
460
Haynes Mathew George98c95622014-06-20 19:14:25 -0700461int platform_set_snd_device_acdb_id(snd_device_t snd_device __unused,
462 unsigned int acdb_id __unused)
Haynes Mathew George5bc18842014-06-16 16:36:20 -0700463{
464 return -ENODEV;
465}
466
David Lind6229bd2017-07-06 15:28:55 -0700467int platform_get_default_app_type_v2(void *platform __unused, usecase_type_t type __unused,
Yamit Mehtae3b99562016-09-16 22:44:00 +0530468 int *app_type __unused)
469{
470 ALOGE("%s: Not implemented", __func__);
471 return -ENOSYS;
472}
473
Ravi Kumar Alamanda63863002015-04-22 11:15:25 -0700474int platform_get_snd_device_acdb_id(snd_device_t snd_device __unused)
475{
476 ALOGE("%s: Not implemented", __func__);
477 return -ENOSYS;
478}
479
Carter Hsu017c63a2018-10-15 15:01:42 -0700480void platform_add_external_specific_device(snd_device_t snd_device __unused,
481 const char *name __unused,
482 unsigned int acdb_id __unused)
483{
484 return;
485}
486
Eric Laurent788f41f2015-08-24 12:21:50 -0700487void platform_add_operator_specific_device(snd_device_t snd_device __unused,
488 const char *operator __unused,
489 const char *mixer_path __unused,
490 unsigned int acdb_id __unused)
keunhui.park2f7306a2015-07-16 16:48:06 +0900491{
492}
493
Eric Laurentb23d5282013-05-14 15:27:20 -0700494int platform_send_audio_calibration(void *platform, snd_device_t snd_device)
495{
496 struct platform_data *my_data = (struct platform_data *)platform;
497 int acdb_dev_id, acdb_dev_type;
498
499 acdb_dev_id = acdb_device_table[snd_device];
500 if (acdb_dev_id < 0) {
501 ALOGE("%s: Could not find acdb id for device(%d)",
502 __func__, snd_device);
503 return -EINVAL;
504 }
505 if (my_data->acdb_send_audio_cal) {
Eric Laurent994a6932013-07-17 11:51:42 -0700506 ("%s: sending audio calibration for snd_device(%d) acdb_id(%d)",
Eric Laurentb23d5282013-05-14 15:27:20 -0700507 __func__, snd_device, acdb_dev_id);
508 if (snd_device >= SND_DEVICE_OUT_BEGIN &&
509 snd_device < SND_DEVICE_OUT_END)
510 acdb_dev_type = ACDB_DEV_TYPE_OUT;
511 else
512 acdb_dev_type = ACDB_DEV_TYPE_IN;
513 my_data->acdb_send_audio_cal(acdb_dev_id, acdb_dev_type);
514 }
515 return 0;
516}
517
518int platform_switch_voice_call_device_pre(void *platform)
519{
520 struct platform_data *my_data = (struct platform_data *)platform;
521 int ret = 0;
522
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700523 if (my_data->csd_client != NULL &&
524 voice_is_in_call(my_data->adev)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700525 /* This must be called before disabling the mixer controls on APQ side */
526 if (my_data->csd_disable_device == NULL) {
527 ALOGE("%s: dlsym error for csd_disable_device", __func__);
528 } else {
529 ret = my_data->csd_disable_device();
530 if (ret < 0) {
531 ALOGE("%s: csd_client_disable_device, failed, error %d",
532 __func__, ret);
533 }
534 }
535 }
536 return ret;
537}
538
539int platform_switch_voice_call_device_post(void *platform,
540 snd_device_t out_snd_device,
541 snd_device_t in_snd_device)
542{
543 struct platform_data *my_data = (struct platform_data *)platform;
544 int acdb_rx_id, acdb_tx_id;
545 int ret = 0;
546
547 if (my_data->csd_client) {
548 if (my_data->csd_enable_device == NULL) {
549 ALOGE("%s: dlsym error for csd_enable_device",
550 __func__);
551 } else {
552 acdb_rx_id = acdb_device_table[out_snd_device];
553 acdb_tx_id = acdb_device_table[in_snd_device];
554
555 if (acdb_rx_id > 0 || acdb_tx_id > 0) {
556 ret = my_data->csd_enable_device(acdb_rx_id, acdb_tx_id,
557 my_data->adev->acdb_settings);
558 if (ret < 0) {
559 ALOGE("%s: csd_enable_device, failed, error %d",
560 __func__, ret);
561 }
562 } else {
563 ALOGE("%s: Incorrect ACDB IDs (rx: %d tx: %d)", __func__,
564 acdb_rx_id, acdb_tx_id);
565 }
566 }
567 }
568
569 return ret;
570}
571
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700572int platform_start_voice_call(void *platform, uint32_t vsid __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700573{
574 struct platform_data *my_data = (struct platform_data *)platform;
575 int ret = 0;
576
577 if (my_data->csd_client) {
578 if (my_data->csd_start_voice == NULL) {
579 ALOGE("dlsym error for csd_client_start_voice");
580 ret = -ENOSYS;
581 } else {
582 ret = my_data->csd_start_voice();
583 if (ret < 0) {
584 ALOGE("%s: csd_start_voice error %d\n", __func__, ret);
585 }
586 }
587 }
588
589 return ret;
590}
591
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700592int platform_stop_voice_call(void *platform, uint32_t vsid __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700593{
594 struct platform_data *my_data = (struct platform_data *)platform;
595 int ret = 0;
596
597 if (my_data->csd_client) {
598 if (my_data->csd_stop_voice == NULL) {
599 ALOGE("dlsym error for csd_stop_voice");
600 } else {
601 ret = my_data->csd_stop_voice();
602 if (ret < 0) {
603 ALOGE("%s: csd_stop_voice error %d\n", __func__, ret);
604 }
605 }
606 }
607
608 return ret;
609}
610
vivek mehtab6506412015-08-07 16:55:17 -0700611void platform_set_speaker_gain_in_combo(struct audio_device *adev __unused,
Eric Laurent788f41f2015-08-24 12:21:50 -0700612 snd_device_t snd_device __unused,
vivek mehtab6506412015-08-07 16:55:17 -0700613 bool enable __unused) {
614}
615
Eric Laurentb23d5282013-05-14 15:27:20 -0700616int platform_set_voice_volume(void *platform, int volume)
617{
618 struct platform_data *my_data = (struct platform_data *)platform;
619 int ret = 0;
620
621 if (my_data->csd_client) {
622 if (my_data->csd_volume == NULL) {
623 ALOGE("%s: dlsym error for csd_volume", __func__);
624 } else {
625 ret = my_data->csd_volume(volume);
626 if (ret < 0) {
627 ALOGE("%s: csd_volume error %d", __func__, ret);
628 }
629 }
630 } else {
631 ALOGE("%s: No CSD Client present", __func__);
632 }
633
634 return ret;
635}
636
637int platform_set_mic_mute(void *platform, bool state)
638{
639 struct platform_data *my_data = (struct platform_data *)platform;
640 int ret = 0;
641
642 if (my_data->adev->mode == AUDIO_MODE_IN_CALL) {
643 if (my_data->csd_client) {
644 if (my_data->csd_mic_mute == NULL) {
645 ALOGE("%s: dlsym error for csd_mic_mute", __func__);
646 } else {
647 ret = my_data->csd_mic_mute(state);
648 if (ret < 0) {
649 ALOGE("%s: csd_mic_mute error %d", __func__, ret);
650 }
651 }
652 } else {
653 ALOGE("%s: No CSD Client present", __func__);
654 }
655 }
656
657 return ret;
658}
659
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700660int platform_set_device_mute(void *platform __unused, bool state __unused, char *dir __unused)
661{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700662 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700663 return -ENOSYS;
664}
665
Eric Laurentb23d5282013-05-14 15:27:20 -0700666snd_device_t platform_get_output_snd_device(void *platform, audio_devices_t devices)
667{
668 struct platform_data *my_data = (struct platform_data *)platform;
669 struct audio_device *adev = my_data->adev;
670 audio_mode_t mode = adev->mode;
671 snd_device_t snd_device = SND_DEVICE_NONE;
672
673 ALOGV("%s: enter: output devices(%#x)", __func__, devices);
674 if (devices == AUDIO_DEVICE_NONE ||
675 devices & AUDIO_DEVICE_BIT_IN) {
676 ALOGV("%s: Invalid output devices (%#x)", __func__, devices);
677 goto exit;
678 }
679
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700680 if (voice_is_in_call(adev)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700681 if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
682 devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700683 if (adev->voice.tty_mode == TTY_MODE_FULL)
Eric Laurentb23d5282013-05-14 15:27:20 -0700684 snd_device = SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES;
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700685 else if (adev->voice.tty_mode == TTY_MODE_VCO)
Eric Laurentb23d5282013-05-14 15:27:20 -0700686 snd_device = SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES;
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700687 else if (adev->voice.tty_mode == TTY_MODE_HCO)
Eric Laurentb23d5282013-05-14 15:27:20 -0700688 snd_device = SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET;
yixuanjiang9536e672018-09-06 18:43:36 +0800689 else if (devices & AUDIO_DEVICE_OUT_WIRED_HEADSET)
690 snd_device = SND_DEVICE_OUT_VOICE_HEADSET;
Eric Laurentb23d5282013-05-14 15:27:20 -0700691 else
692 snd_device = SND_DEVICE_OUT_VOICE_HEADPHONES;
693 } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700694 if (adev->bt_wb_speech_enabled) {
695 snd_device = SND_DEVICE_OUT_BT_SCO_WB;
696 } else {
697 snd_device = SND_DEVICE_OUT_BT_SCO;
698 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700699 } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) {
700 snd_device = SND_DEVICE_OUT_VOICE_SPEAKER;
701 } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) {
702 if (is_operator_tmus())
703 snd_device = SND_DEVICE_OUT_VOICE_HANDSET_TMUS;
704 else
705 snd_device = SND_DEVICE_OUT_HANDSET;
706 }
707 if (snd_device != SND_DEVICE_NONE) {
708 goto exit;
709 }
710 }
711
712 if (popcount(devices) == 2) {
713 if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
714 AUDIO_DEVICE_OUT_SPEAKER)) {
715 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES;
716 } else if (devices == (AUDIO_DEVICE_OUT_WIRED_HEADSET |
717 AUDIO_DEVICE_OUT_SPEAKER)) {
718 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES;
719 } else if (devices == (AUDIO_DEVICE_OUT_AUX_DIGITAL |
720 AUDIO_DEVICE_OUT_SPEAKER)) {
721 snd_device = SND_DEVICE_OUT_SPEAKER_AND_HDMI;
722 } else {
723 ALOGE("%s: Invalid combo device(%#x)", __func__, devices);
724 goto exit;
725 }
726 if (snd_device != SND_DEVICE_NONE) {
727 goto exit;
728 }
729 }
730
731 if (popcount(devices) != 1) {
732 ALOGE("%s: Invalid output devices(%#x)", __func__, devices);
733 goto exit;
734 }
735
736 if (devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
737 devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
738 snd_device = SND_DEVICE_OUT_HEADPHONES;
739 } else if (devices & AUDIO_DEVICE_OUT_SPEAKER) {
andysu5b30b062018-04-20 16:34:06 +0800740 /*
741 * Perform device switch only if acdb tuning is different between SPEAKER & SPEAKER_REVERSE,
742 * Or there will be a small pause while performing device switch.
743 */
744 if (my_data->speaker_lr_swap &&
745 (acdb_device_table[SND_DEVICE_OUT_SPEAKER] !=
746 acdb_device_table[SND_DEVICE_OUT_SPEAKER_REVERSE]))
Eric Laurentb23d5282013-05-14 15:27:20 -0700747 snd_device = SND_DEVICE_OUT_SPEAKER_REVERSE;
748 else
749 snd_device = SND_DEVICE_OUT_SPEAKER;
750 } else if (devices & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700751 if (adev->bt_wb_speech_enabled) {
752 snd_device = SND_DEVICE_OUT_BT_SCO_WB;
753 } else {
754 snd_device = SND_DEVICE_OUT_BT_SCO;
755 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700756 } else if (devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
757 snd_device = SND_DEVICE_OUT_HDMI ;
758 } else if (devices & AUDIO_DEVICE_OUT_EARPIECE) {
759 snd_device = SND_DEVICE_OUT_HANDSET;
760 } else {
761 ALOGE("%s: Unknown device(s) %#x", __func__, devices);
762 }
763exit:
764 ALOGV("%s: exit: snd_device(%s)", __func__, device_table[snd_device]);
765 return snd_device;
766}
767
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800768snd_device_t platform_get_input_snd_device(void *platform,
769 struct stream_in *in,
770 audio_devices_t out_device)
Eric Laurentb23d5282013-05-14 15:27:20 -0700771{
772 struct platform_data *my_data = (struct platform_data *)platform;
773 struct audio_device *adev = my_data->adev;
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800774 audio_mode_t mode = adev->mode;
Eric Laurentb23d5282013-05-14 15:27:20 -0700775 snd_device_t snd_device = SND_DEVICE_NONE;
776
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800777 if (in == NULL) {
778 in = adev_get_active_input(adev);
779 }
780
781 audio_source_t source = (in == NULL) ? AUDIO_SOURCE_DEFAULT : in->source;
782 audio_devices_t in_device =
783 ((in == NULL) ? AUDIO_DEVICE_NONE : in->device) & ~AUDIO_DEVICE_BIT_IN;
784 audio_channel_mask_t channel_mask = (in == NULL) ? AUDIO_CHANNEL_IN_MONO : in->channel_mask;
785
Eric Laurentb23d5282013-05-14 15:27:20 -0700786 ALOGV("%s: enter: out_device(%#x) in_device(%#x)",
787 __func__, out_device, in_device);
Ravi Kumar Alamandab09e4a02014-10-20 17:07:43 -0700788 if ((out_device != AUDIO_DEVICE_NONE) && voice_is_in_call(adev)) {
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700789 if (adev->voice.tty_mode != TTY_MODE_OFF) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700790 if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE ||
791 out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700792 switch (adev->voice.tty_mode) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700793 case TTY_MODE_FULL:
794 snd_device = SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC;
795 break;
796 case TTY_MODE_VCO:
797 snd_device = SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC;
798 break;
799 case TTY_MODE_HCO:
800 snd_device = SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC;
801 break;
802 default:
Vineeta Srivastava4b89e372014-06-19 14:21:42 -0700803 ALOGE("%s: Invalid TTY mode (%#x)", __func__, adev->voice.tty_mode);
Eric Laurentb23d5282013-05-14 15:27:20 -0700804 }
805 goto exit;
806 }
807 }
808 if (out_device & AUDIO_DEVICE_OUT_EARPIECE ||
809 out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) {
810 if (my_data->fluence_in_voice_call == false) {
811 snd_device = SND_DEVICE_IN_HANDSET_MIC;
812 } else {
813 if (my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
814 if (is_operator_tmus())
815 snd_device = SND_DEVICE_IN_VOICE_DMIC_EF_TMUS;
816 else
817 snd_device = SND_DEVICE_IN_VOICE_DMIC_EF;
818 } else if(my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE)
819 snd_device = SND_DEVICE_IN_VOICE_DMIC_BS;
820 else
821 snd_device = SND_DEVICE_IN_HANDSET_MIC;
822 }
823 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
824 snd_device = SND_DEVICE_IN_VOICE_HEADSET_MIC;
825 } else if (out_device & AUDIO_DEVICE_OUT_ALL_SCO) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700826 if (adev->bt_wb_speech_enabled) {
827 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
828 } else {
829 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
830 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700831 } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) {
832 if (my_data->fluence_in_voice_call && my_data->fluence_in_spkr_mode &&
833 my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
834 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_DMIC_EF;
835 } else if (my_data->fluence_in_voice_call && my_data->fluence_in_spkr_mode &&
836 my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE) {
837 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_DMIC_BS;
838 } else {
839 snd_device = SND_DEVICE_IN_VOICE_SPEAKER_MIC;
840 }
841 }
842 } else if (source == AUDIO_SOURCE_CAMCORDER) {
843 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC ||
844 in_device & AUDIO_DEVICE_IN_BACK_MIC) {
845 snd_device = SND_DEVICE_IN_CAMCORDER_MIC;
846 }
847 } else if (source == AUDIO_SOURCE_VOICE_RECOGNITION) {
848 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
849 if (my_data->dualmic_config == DUALMIC_CONFIG_ENDFIRE) {
850 if (channel_mask == AUDIO_CHANNEL_IN_FRONT_BACK)
851 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_EF;
852 else if (my_data->fluence_in_voice_rec)
853 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_EF_FLUENCE;
854 } else if (my_data->dualmic_config == DUALMIC_CONFIG_BROADSIDE) {
855 if (channel_mask == AUDIO_CHANNEL_IN_FRONT_BACK)
856 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_BS;
857 else if (my_data->fluence_in_voice_rec)
858 snd_device = SND_DEVICE_IN_VOICE_REC_DMIC_BS_FLUENCE;
859 }
860
861 if (snd_device == SND_DEVICE_NONE) {
862 snd_device = SND_DEVICE_IN_VOICE_REC_MIC;
863 }
864 }
Eric Laurent50a38ed2015-10-14 18:48:06 -0700865 } else if (source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
866 mode == AUDIO_MODE_IN_COMMUNICATION) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700867 if (out_device & AUDIO_DEVICE_OUT_SPEAKER)
868 in_device = AUDIO_DEVICE_IN_BACK_MIC;
Eric Laurentd1b7a9b2018-11-15 12:24:31 -0800869 if (in) {
870 if (in != NULL && in->enable_aec) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700871 if (in_device & AUDIO_DEVICE_IN_BACK_MIC) {
872 snd_device = SND_DEVICE_IN_SPEAKER_MIC_AEC;
873 } else if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
874 snd_device = SND_DEVICE_IN_HANDSET_MIC_AEC;
875 } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) {
876 snd_device = SND_DEVICE_IN_HEADSET_MIC_AEC;
877 }
878 set_echo_reference(adev->mixer, "SLIM_RX");
879 } else
880 set_echo_reference(adev->mixer, "NONE");
881 }
882 } else if (source == AUDIO_SOURCE_DEFAULT) {
883 goto exit;
884 }
885
886
887 if (snd_device != SND_DEVICE_NONE) {
888 goto exit;
889 }
890
891 if (in_device != AUDIO_DEVICE_NONE &&
892 !(in_device & AUDIO_DEVICE_IN_VOICE_CALL) &&
893 !(in_device & AUDIO_DEVICE_IN_COMMUNICATION)) {
894 if (in_device & AUDIO_DEVICE_IN_BUILTIN_MIC) {
895 snd_device = SND_DEVICE_IN_HANDSET_MIC;
896 } else if (in_device & AUDIO_DEVICE_IN_BACK_MIC) {
897 snd_device = SND_DEVICE_IN_SPEAKER_MIC;
898 } else if (in_device & AUDIO_DEVICE_IN_WIRED_HEADSET) {
899 snd_device = SND_DEVICE_IN_HEADSET_MIC;
900 } else if (in_device & AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700901 if (adev->bt_wb_speech_enabled) {
902 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
903 } else {
904 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
905 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700906 } else if (in_device & AUDIO_DEVICE_IN_AUX_DIGITAL) {
907 snd_device = SND_DEVICE_IN_HDMI_MIC;
908 } else {
909 ALOGE("%s: Unknown input device(s) %#x", __func__, in_device);
910 ALOGW("%s: Using default handset-mic", __func__);
911 snd_device = SND_DEVICE_IN_HANDSET_MIC;
912 }
913 } else {
914 if (out_device & AUDIO_DEVICE_OUT_EARPIECE) {
915 snd_device = SND_DEVICE_IN_HANDSET_MIC;
916 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
917 snd_device = SND_DEVICE_IN_HEADSET_MIC;
918 } else if (out_device & AUDIO_DEVICE_OUT_SPEAKER) {
919 snd_device = SND_DEVICE_IN_SPEAKER_MIC;
920 } else if (out_device & AUDIO_DEVICE_OUT_WIRED_HEADPHONE) {
921 snd_device = SND_DEVICE_IN_HANDSET_MIC;
922 } else if (out_device & AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET) {
Ravi Kumar Alamanda9f306542014-04-02 15:11:49 -0700923 if (adev->bt_wb_speech_enabled) {
924 snd_device = SND_DEVICE_IN_BT_SCO_MIC_WB;
925 } else {
926 snd_device = SND_DEVICE_IN_BT_SCO_MIC;
927 }
Eric Laurentb23d5282013-05-14 15:27:20 -0700928 } else if (out_device & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
929 snd_device = SND_DEVICE_IN_HDMI_MIC;
930 } else {
931 ALOGE("%s: Unknown output device(s) %#x", __func__, out_device);
932 ALOGW("%s: Using default handset-mic", __func__);
933 snd_device = SND_DEVICE_IN_HANDSET_MIC;
934 }
935 }
936exit:
937 ALOGV("%s: exit: in_snd_device(%s)", __func__, device_table[snd_device]);
938 return snd_device;
939}
940
941int platform_set_hdmi_channels(void *platform, int channel_count)
942{
943 struct platform_data *my_data = (struct platform_data *)platform;
944 struct audio_device *adev = my_data->adev;
945 struct mixer_ctl *ctl;
946 const char *channel_cnt_str = NULL;
947 const char *mixer_ctl_name = "HDMI_RX Channels";
948 switch (channel_count) {
949 case 8:
950 channel_cnt_str = "Eight"; break;
951 case 7:
952 channel_cnt_str = "Seven"; break;
953 case 6:
954 channel_cnt_str = "Six"; break;
955 case 5:
956 channel_cnt_str = "Five"; break;
957 case 4:
958 channel_cnt_str = "Four"; break;
959 case 3:
960 channel_cnt_str = "Three"; break;
961 default:
962 channel_cnt_str = "Two"; break;
963 }
964 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
965 if (!ctl) {
966 ALOGE("%s: Could not get ctl for mixer cmd - %s",
967 __func__, mixer_ctl_name);
968 return -EINVAL;
969 }
970 ALOGV("HDMI channel count: %s", channel_cnt_str);
971 mixer_ctl_set_enum_by_string(ctl, channel_cnt_str);
972 return 0;
973}
974
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -0700975int platform_edid_get_max_channels(void *platform __unused)
Eric Laurentb23d5282013-05-14 15:27:20 -0700976{
977 FILE *file;
978 struct audio_block_header header;
979 char block[MAX_SAD_BLOCKS * SAD_BLOCK_SIZE];
980 char *sad = block;
981 int num_audio_blocks;
982 int channel_count;
983 int max_channels = 0;
984 int i;
985
986 file = fopen(AUDIO_DATA_BLOCK_PATH, "rb");
987 if (file == NULL) {
988 ALOGE("Unable to open '%s'", AUDIO_DATA_BLOCK_PATH);
989 return 0;
990 }
991
992 /* Read audio block header */
993 fread(&header, 1, sizeof(header), file);
994
995 /* Read SAD blocks, clamping the maximum size for safety */
996 if (header.length > (int)sizeof(block))
997 header.length = (int)sizeof(block);
998 fread(&block, header.length, 1, file);
999
1000 fclose(file);
1001
1002 /* Calculate the number of SAD blocks */
1003 num_audio_blocks = header.length / SAD_BLOCK_SIZE;
1004
1005 for (i = 0; i < num_audio_blocks; i++) {
1006 /* Only consider LPCM blocks */
1007 if ((sad[0] >> 3) != EDID_FORMAT_LPCM)
1008 continue;
1009
1010 channel_count = (sad[0] & 0x7) + 1;
1011 if (channel_count > max_channels)
1012 max_channels = channel_count;
1013
1014 /* Advance to next block */
1015 sad += 3;
1016 }
1017
1018 return max_channels;
1019}
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001020
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001021int platform_set_incall_recording_session_id(void *platform __unused,
1022 uint32_t session_id __unused, int rec_mode __unused)
1023{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001024 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001025 return -ENOSYS;
1026}
1027
1028int platform_stop_incall_recording_usecase(void *platform __unused)
1029{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001030 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001031 return -ENOSYS;
1032}
1033
1034int platform_start_incall_music_usecase(void *platform __unused)
1035{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001036 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001037 return -ENOSYS;
1038}
1039
1040int platform_stop_incall_music_usecase(void *platform __unused)
1041{
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001042 ALOGE("%s: Not implemented", __func__);
Vineeta Srivastava4b89e372014-06-19 14:21:42 -07001043 return -ENOSYS;
1044}
1045
Ravi Kumar Alamandac4f57312015-06-26 17:41:02 -07001046int platform_set_parameters(void *platform __unused,
1047 struct str_parms *parms __unused)
1048{
1049 ALOGE("%s: Not implemented", __func__);
1050 return -ENOSYS;
1051}
1052
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001053/* Delay in Us */
1054int64_t platform_render_latency(audio_usecase_t usecase)
1055{
1056 switch (usecase) {
1057 case USECASE_AUDIO_PLAYBACK_DEEP_BUFFER:
1058 return DEEP_BUFFER_PLATFORM_DELAY;
1059 case USECASE_AUDIO_PLAYBACK_LOW_LATENCY:
1060 return LOW_LATENCY_PLATFORM_DELAY;
1061 default:
1062 return 0;
1063 }
1064}
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001065
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001066int platform_switch_voice_call_enable_device_config(void *platform __unused,
1067 snd_device_t out_snd_device __unused,
1068 snd_device_t in_snd_device __unused)
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001069{
1070 return 0;
1071}
1072
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001073int platform_switch_voice_call_usecase_route_post(void *platform __unused,
1074 snd_device_t out_snd_device __unused,
1075 snd_device_t in_snd_device __unused)
Ravi Kumar Alamanda83281a92014-05-19 18:14:57 -07001076{
1077 return 0;
1078}
Haynes Mathew George24ca9ad2014-06-18 15:14:18 -07001079
1080int platform_get_sample_rate(void *platform __unused, uint32_t *rate __unused)
1081{
1082 return -ENOSYS;
1083}
Haynes Mathew George98c95622014-06-20 19:14:25 -07001084
1085int platform_get_usecase_index(const char * usecase __unused)
1086{
1087 return -ENOSYS;
1088}
1089
1090int platform_set_usecase_pcm_id(audio_usecase_t usecase __unused, int32_t type __unused,
1091 int32_t pcm_id __unused)
1092{
1093 return -ENOSYS;
1094}
1095
1096int platform_set_snd_device_backend(snd_device_t device __unused,
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001097 const char *backend __unused,
1098 const char *hw_interface __unused)
Haynes Mathew George98c95622014-06-20 19:14:25 -07001099{
1100 return -ENOSYS;
1101}
Eric Laurentcefbbac2014-09-04 13:54:10 -05001102
vivek mehta1a9b7c02015-06-25 11:49:38 -07001103void platform_set_echo_reference(struct audio_device *adev __unused,
1104 bool enable __unused,
1105 audio_devices_t out_device __unused)
Eric Laurentcefbbac2014-09-04 13:54:10 -05001106{
1107 return;
1108}
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001109
vivek mehtae59cfb22017-06-16 15:57:11 -07001110#define DEFAULT_NOMINAL_SPEAKER_GAIN 20
1111int ramp_speaker_gain(struct audio_device *adev, bool ramp_up, int target_ramp_up_gain) {
1112 // backup_gain: gain to try to set in case of an error during ramp
1113 int start_gain, end_gain, step, backup_gain, i;
1114 bool error = false;
1115 const struct mixer_ctl *ctl;
1116 const char *mixer_ctl_name_gain_left = "Left Speaker Gain";
1117 const char *mixer_ctl_name_gain_right = "Right Speaker Gain";
1118 struct mixer_ctl *ctl_left = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name_gain_left);
1119 struct mixer_ctl *ctl_right = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name_gain_right);
1120 if (!ctl_left || !ctl_right) {
1121 ALOGE("%s: Could not get ctl for mixer cmd - %s or %s, not applying speaker gain ramp",
1122 __func__, mixer_ctl_name_gain_left, mixer_ctl_name_gain_right);
1123 return -EINVAL;
1124 } else if ((mixer_ctl_get_num_values(ctl_left) != 1)
1125 || (mixer_ctl_get_num_values(ctl_right) != 1)) {
1126 ALOGE("%s: Unexpected num values for mixer cmd - %s or %s, not applying speaker gain ramp",
1127 __func__, mixer_ctl_name_gain_left, mixer_ctl_name_gain_right);
1128 return -EINVAL;
1129 }
1130 if (ramp_up) {
1131 start_gain = 0;
1132 end_gain = target_ramp_up_gain > 0 ? target_ramp_up_gain : DEFAULT_NOMINAL_SPEAKER_GAIN;
1133 step = +1;
1134 backup_gain = end_gain;
1135 } else {
1136 // using same gain on left and right
1137 const int left_gain = mixer_ctl_get_value(ctl_left, 0);
1138 start_gain = left_gain > 0 ? left_gain : DEFAULT_NOMINAL_SPEAKER_GAIN;
1139 end_gain = 0;
1140 step = -1;
1141 backup_gain = start_gain;
1142 }
1143 for (i = start_gain ; i != (end_gain + step) ; i += step) {
1144 //ALOGV("setting speaker gain to %d", i);
1145 if (mixer_ctl_set_value(ctl_left, 0, i)) {
1146 ALOGE("%s: error setting %s to %d during gain ramp",
1147 __func__, mixer_ctl_name_gain_left, i);
1148 error = true;
1149 break;
1150 }
1151 if (mixer_ctl_set_value(ctl_right, 0, i)) {
1152 ALOGE("%s: error setting %s to %d during gain ramp",
1153 __func__, mixer_ctl_name_gain_right, i);
1154 error = true;
1155 break;
1156 }
1157 usleep(1000);
1158 }
1159 if (error) {
1160 // an error occured during the ramp, let's still try to go back to a safe volume
1161 if (mixer_ctl_set_value(ctl_left, 0, backup_gain)) {
1162 ALOGE("%s: error restoring left gain to %d", __func__, backup_gain);
1163 }
1164 if (mixer_ctl_set_value(ctl_right, 0, backup_gain)) {
1165 ALOGE("%s: error restoring right gain to %d", __func__, backup_gain);
1166 }
1167 }
1168 return start_gain;
1169}
1170
1171int platform_set_swap_mixer(struct audio_device *adev, bool swap_channels)
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001172{
vivek mehtae59cfb22017-06-16 15:57:11 -07001173 const char *mixer_ctl_name = "Swap channel";
1174 struct mixer_ctl *ctl;
1175 const char *mixer_path;
1176 struct platform_data *my_data = (struct platform_data *)adev->platform;
1177
1178 // forced to set to swap, but device not rotated ... ignore set
1179 if (swap_channels && !my_data->speaker_lr_swap)
1180 return 0;
1181
1182 ALOGV("%s:", __func__);
1183
1184 if (swap_channels) {
1185 mixer_path = platform_get_snd_device_name(SND_DEVICE_OUT_SPEAKER_REVERSE);
1186 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
1187 } else {
1188 mixer_path = platform_get_snd_device_name(SND_DEVICE_OUT_SPEAKER);
1189 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
1190 }
1191
1192 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1193 if (!ctl) {
1194 ALOGE("%s: Could not get ctl for mixer cmd - %s",__func__, mixer_ctl_name);
1195 return -EINVAL;
1196 }
1197
1198 if (mixer_ctl_set_value(ctl, 0, swap_channels) < 0) {
1199 ALOGE("%s: Could not set reverse cotrol %d",__func__, swap_channels);
1200 return -EINVAL;
1201 }
1202
1203 ALOGV("platfor_force_swap_channel :: Channel orientation ( %s ) ",
1204 swap_channels?"R --> L":"L --> R");
1205
1206 return 0;
1207}
1208
1209int platform_check_and_set_swap_lr_channels(struct audio_device *adev, bool swap_channels)
1210{
1211 // only update if there is active pcm playback on speaker
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001212 struct audio_usecase *usecase;
1213 struct listnode *node;
1214 struct platform_data *my_data = (struct platform_data *)adev->platform;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001215
vivek mehtae59cfb22017-06-16 15:57:11 -07001216 my_data->speaker_lr_swap = swap_channels;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001217
vivek mehtae59cfb22017-06-16 15:57:11 -07001218 return platform_set_swap_channels(adev, swap_channels);
1219}
1220
1221int platform_set_swap_channels(struct audio_device *adev, bool swap_channels)
1222{
1223 // only update if there is active pcm playback on speaker
1224 struct audio_usecase *usecase;
1225 struct listnode *node;
1226 struct platform_data *my_data = (struct platform_data *)adev->platform;
1227
1228 // do not swap channels in audio modes with concurrent capture and playback
1229 // as this may break the echo reference
1230 if ((adev->mode == AUDIO_MODE_IN_COMMUNICATION) || (adev->mode == AUDIO_MODE_IN_CALL)) {
1231 ALOGV("%s: will not swap due to audio mode %d", __func__, adev->mode);
1232 return 0;
1233 }
1234
1235 list_for_each(node, &adev->usecase_list) {
1236 usecase = node_to_item(node, struct audio_usecase, list);
1237 if (usecase->type == PCM_PLAYBACK &&
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001238 usecase->stream.out->devices & AUDIO_DEVICE_OUT_SPEAKER) {
vivek mehtae59cfb22017-06-16 15:57:11 -07001239 /*
1240 * If acdb tuning is different for SPEAKER_REVERSE, it is must
1241 * to perform device switch to disable the current backend to
1242 * enable it with new acdb data.
1243 */
1244 if (acdb_device_table[SND_DEVICE_OUT_SPEAKER] !=
1245 acdb_device_table[SND_DEVICE_OUT_SPEAKER_REVERSE]) {
1246 const int initial_skpr_gain = ramp_speaker_gain(adev, false /*ramp_up*/, -1);
1247 select_devices(adev, usecase->id);
1248 if (initial_skpr_gain != -EINVAL)
1249 ramp_speaker_gain(adev, true /*ramp_up*/, initial_skpr_gain);
1250
1251 } else {
1252 platform_set_swap_mixer(adev, swap_channels);
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001253 }
vivek mehtae59cfb22017-06-16 15:57:11 -07001254 break;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001255 }
1256 }
vivek mehtae59cfb22017-06-16 15:57:11 -07001257
1258 return 0;
Ravi Kumar Alamanda1f60cf82015-04-23 19:45:17 -07001259}
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001260
1261bool platform_send_gain_dep_cal(void *platform __unused,
1262 int level __unused)
1263{
vivek mehtafb4d7bd2016-04-29 03:16:47 -07001264 return true;
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001265}
1266
Haynes Mathew George2d809e02016-09-22 17:38:16 -07001267int platform_can_split_snd_device(snd_device_t in_snd_device __unused,
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001268 int *num_devices __unused,
1269 snd_device_t *out_snd_devices __unused)
1270{
Haynes Mathew George2d809e02016-09-22 17:38:16 -07001271 return -ENOSYS;
Ravi Kumar Alamandab7ea4f52015-06-08 16:44:05 -07001272}
1273
1274bool platform_check_backends_match(snd_device_t snd_device1 __unused,
1275 snd_device_t snd_device2 __unused)
1276{
1277 return true;
1278}
vivek mehtade4849c2016-03-03 17:23:38 -08001279
1280int platform_get_snd_device_name_extn(void *platform __unused,
1281 snd_device_t snd_device,
1282 char *device_name)
1283{
David Benjamin1565f992016-09-21 12:10:34 -04001284 strlcpy(device_name, platform_get_snd_device_name(snd_device),
1285 DEVICE_NAME_MAX_SIZE);
vivek mehtade4849c2016-03-03 17:23:38 -08001286 return 0;
1287}
1288
David Linee3fe402017-03-13 10:00:42 -07001289bool platform_check_and_set_playback_backend_cfg(struct audio_device* adev __unused,
1290 struct audio_usecase *usecase __unused,
1291 snd_device_t snd_device __unused)
1292{
1293 return false;
1294}
1295
vivek mehta4ed66e62016-04-15 23:33:34 -07001296bool platform_check_and_set_capture_backend_cfg(struct audio_device* adev __unused,
David Lind6229bd2017-07-06 15:28:55 -07001297 struct audio_usecase *usecase __unused, snd_device_t snd_device __unused)
vivek mehta4ed66e62016-04-15 23:33:34 -07001298{
1299 return false;
1300}
1301
vivek mehtaa8d7c922016-05-25 14:40:44 -07001302bool platform_add_gain_level_mapping(struct amp_db_and_gain_table *tbl_entry __unused)
1303{
1304 return false;
1305}
1306
1307int platform_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl __unused,
1308 int table_size __unused)
1309{
1310 return 0;
1311}
Haynes Mathew Georgec735fb02016-06-30 18:00:28 -07001312
Tom Cherry8721b4d2016-07-14 16:12:23 -07001313int platform_snd_card_update(void *platform __unused,
Haynes Mathew Georgec735fb02016-06-30 18:00:28 -07001314 card_status_t status __unused)
1315{
1316 return -1;
1317}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001318
David Lind6229bd2017-07-06 15:28:55 -07001319int platform_get_snd_device_backend_index(snd_device_t snd_device __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001320{
1321 return -ENOSYS;
1322}
1323
David Lind6229bd2017-07-06 15:28:55 -07001324void platform_check_and_update_copp_sample_rate(void* platform __unused, snd_device_t snd_device __unused,
1325 unsigned int stream_sr __unused, int* sample_rate __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001326{
1327
1328}
1329
David Lind6229bd2017-07-06 15:28:55 -07001330int platform_send_audio_calibration_v2(void *platform __unused, struct audio_usecase *usecase __unused,
1331 int app_type __unused, int sample_rate __unused)
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001332{
1333 return -ENOSYS;
1334}
1335
1336bool platform_supports_app_type_cfg() { return false; }
1337
vivek mehtaa68fea62017-06-08 19:04:02 -07001338void platform_add_app_type(const char *uc_type __unused,
1339 const char *mode __unused,
1340 int bw __unused, int app_type __unused,
1341 int max_sr __unused) {}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001342
vivek mehtaa68fea62017-06-08 19:04:02 -07001343int platform_get_app_type_v2(void *platform __unused,
1344 enum usecase_type_t type __unused,
1345 const char *mode __unused,
1346 int bw __unused, int sr __unused,
1347 int *app_type __unused) {
1348 return -ENOSYS;
1349}
Haynes Mathew Georgee5ff0fc2017-02-16 20:33:38 -08001350
vivek mehta90933872017-06-15 18:04:39 -07001351int platform_set_sidetone(struct audio_device *adev,
1352 snd_device_t out_snd_device,
1353 bool enable, char *str)
1354{
1355 int ret;
1356 if (out_snd_device == SND_DEVICE_OUT_USB_HEADSET ||
1357 out_snd_device == SND_DEVICE_OUT_VOICE_USB_HEADSET) {
1358 ret = audio_extn_usb_enable_sidetone(out_snd_device, enable);
1359 if (ret)
1360 ALOGI("%s: usb device %d does not support device sidetone\n",
1361 __func__, out_snd_device);
1362 } else {
1363 ALOGV("%s: sidetone out device(%d) mixer cmd = %s\n",
1364 __func__, out_snd_device, str);
1365 if (enable)
1366 audio_route_apply_and_update_path(adev->audio_route, str);
1367 else
1368 audio_route_reset_and_update_path(adev->audio_route, str);
1369 }
1370 return 0;
1371}
Haynes Mathew George96483a22017-03-28 14:52:47 -07001372
1373int platform_get_mmap_data_fd(void *platform __unused, int fe_dev __unused, int dir __unused,
1374 int *fd __unused, uint32_t *size __unused)
1375{
1376 return -ENOSYS;
1377}
Mikhail Naganov4ee6e3e2018-03-21 16:28:35 +00001378
1379bool platform_sound_trigger_usecase_needs_event(audio_usecase_t uc_id __unused)
1380{
1381 return false;
1382}
1383
1384bool platform_snd_device_has_speaker(snd_device_t dev __unused) {
1385 return false;
1386}
jiabin8962a4d2018-03-19 18:21:24 -07001387
1388bool platform_set_microphone_characteristic(void *platform __unused,
1389 struct audio_microphone_characteristic_t mic __unused) {
1390 return -ENOSYS;
1391}
1392
1393int platform_get_microphones(void *platform __unused,
1394 struct audio_microphone_characteristic_t *mic_array __unused,
1395 size_t *mic_count __unused) {
1396 return -ENOSYS;
1397}
1398
jiabin2276a702018-05-11 09:36:38 -07001399int platform_get_active_microphones(void *platform __unused, unsigned int channels __unused,
1400 audio_usecase_t usecase __unused,
jiabin8962a4d2018-03-19 18:21:24 -07001401 struct audio_microphone_characteristic_t *mic_array __unused,
1402 size_t *mic_count __unused) {
1403 return -ENOSYS;
1404}
Haynes Mathew George65f6b432018-02-27 17:44:55 -08001405
1406int platform_set_usb_service_interval(void *platform __unused,
1407 bool playback __unused,
1408 unsigned long service_interval __unused,
1409 bool *reconfig)
1410{
1411 *reconfig = false;
1412 return 0;
1413}
1414
Eric Laurentca7724d2018-05-08 09:08:28 -07001415int platform_set_backend_cfg(const struct audio_device* adev __unused,
1416 snd_device_t snd_device __unused,
1417 const struct audio_backend_cfg *backend_cfg __unused)
Haynes Mathew George65f6b432018-02-27 17:44:55 -08001418{
1419 return -1;
1420}
Ashish Jain1c849702018-05-11 20:11:55 +05301421
1422int platform_set_acdb_metainfo_key(void *platform __unused,
1423 char *name __unused,
1424 int key __unused) {
1425 return -ENOSYS;
1426}