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