Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 1 | /* |
Shiv Maliyappanahalli | dd28726 | 2016-01-08 15:57:07 -0800 | [diff] [blame] | 2 | * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved. |
Apoorv Raghuvanshi | 9eaf94e | 2013-10-04 16:13:44 -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 | #ifndef QCOM_AUDIO_PLATFORM_H |
| 21 | #define QCOM_AUDIO_PLATFORM_H |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 22 | #include <sound/voice_params.h> |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 23 | |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 24 | enum { |
| 25 | FLUENCE_NONE, |
Ravi Kumar Alamanda | b034ddb | 2013-11-06 15:52:18 -0800 | [diff] [blame] | 26 | FLUENCE_DUAL_MIC = 0x1, |
| 27 | FLUENCE_QUAD_MIC = 0x2, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 28 | }; |
| 29 | |
Narsinga Rao Chella | 61e0f9b | 2014-03-06 21:25:22 -0800 | [diff] [blame] | 30 | enum { |
| 31 | FLUENCE_ENDFIRE = 0x1, |
| 32 | FLUENCE_BROADSIDE = 0x2, |
| 33 | }; |
| 34 | |
Chaithanya Krishna Bacharaju | 9955b16 | 2016-05-25 16:25:53 +0530 | [diff] [blame] | 35 | enum { |
| 36 | SOURCE_MONO_MIC = 0x1, /* Target contains 1 mic */ |
| 37 | SOURCE_DUAL_MIC = 0x2, /* Target contains 2 mics */ |
| 38 | SOURCE_THREE_MIC = 0x4, /* Target contains 3 mics */ |
| 39 | SOURCE_QUAD_MIC = 0x8, /* Target contains 4 mics */ |
| 40 | }; |
| 41 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 42 | /* |
| 43 | * Below are the devices for which is back end is same, SLIMBUS_0_RX. |
| 44 | * All these devices are handled by the internal HW codec. We can |
Apoorv Raghuvanshi | f59bb22 | 2015-02-18 12:23:23 -0800 | [diff] [blame] | 45 | * enable any one of these devices at any time. An exception here is |
| 46 | * 44.1k headphone which uses different backend. This is filtered |
| 47 | * as different hal internal device in the code but remains same |
| 48 | * as standard android device AUDIO_DEVICE_OUT_WIRED_HEADPHONE |
| 49 | * for other layers. |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 50 | */ |
| 51 | #define AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND \ |
| 52 | (AUDIO_DEVICE_OUT_EARPIECE | AUDIO_DEVICE_OUT_SPEAKER | \ |
Ravi Kumar Alamanda | 52de13c | 2015-10-17 22:21:52 -0700 | [diff] [blame] | 53 | AUDIO_DEVICE_OUT_WIRED_HEADSET | AUDIO_DEVICE_OUT_WIRED_HEADPHONE | \ |
| 54 | AUDIO_DEVICE_OUT_LINE) |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 55 | |
Narsinga Rao Chella | f99003c | 2015-07-08 19:38:38 -0700 | [diff] [blame] | 56 | /* |
| 57 | * Below are the input devices for which back end is same, SLIMBUS_0_TX. |
| 58 | * All these devices are handled by the internal HW codec. We can |
| 59 | * enable any one of these devices at any time |
| 60 | */ |
| 61 | #define AUDIO_DEVICE_IN_ALL_CODEC_BACKEND \ |
| 62 | (AUDIO_DEVICE_IN_BUILTIN_MIC | AUDIO_DEVICE_IN_BACK_MIC | \ |
| 63 | AUDIO_DEVICE_IN_WIRED_HEADSET | AUDIO_DEVICE_IN_VOICE_CALL) & ~AUDIO_DEVICE_BIT_IN |
| 64 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 65 | /* Sound devices specific to the platform |
| 66 | * The DEVICE_OUT_* and DEVICE_IN_* should be mapped to these sound |
| 67 | * devices to enable corresponding mixer paths |
| 68 | */ |
| 69 | enum { |
| 70 | SND_DEVICE_NONE = 0, |
| 71 | |
| 72 | /* Playback devices */ |
| 73 | SND_DEVICE_MIN, |
| 74 | SND_DEVICE_OUT_BEGIN = SND_DEVICE_MIN, |
| 75 | SND_DEVICE_OUT_HANDSET = SND_DEVICE_OUT_BEGIN, |
| 76 | SND_DEVICE_OUT_SPEAKER, |
Tanya Finkel | 0013005 | 2014-07-14 04:26:56 -0700 | [diff] [blame] | 77 | SND_DEVICE_OUT_SPEAKER_EXTERNAL_1, |
| 78 | SND_DEVICE_OUT_SPEAKER_EXTERNAL_2, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 79 | SND_DEVICE_OUT_SPEAKER_REVERSE, |
Banajit Goswami | 20cdd21 | 2015-09-11 01:11:30 -0700 | [diff] [blame] | 80 | SND_DEVICE_OUT_SPEAKER_VBAT, |
Ravi Kumar Alamanda | 52de13c | 2015-10-17 22:21:52 -0700 | [diff] [blame] | 81 | SND_DEVICE_OUT_LINE, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 82 | SND_DEVICE_OUT_HEADPHONES, |
Apoorv Raghuvanshi | f59bb22 | 2015-02-18 12:23:23 -0800 | [diff] [blame] | 83 | SND_DEVICE_OUT_HEADPHONES_44_1, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 84 | SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES, |
Ravi Kumar Alamanda | 52de13c | 2015-10-17 22:21:52 -0700 | [diff] [blame] | 85 | SND_DEVICE_OUT_SPEAKER_AND_LINE, |
Tanya Finkel | 0013005 | 2014-07-14 04:26:56 -0700 | [diff] [blame] | 86 | SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES_EXTERNAL_1, |
| 87 | SND_DEVICE_OUT_SPEAKER_AND_HEADPHONES_EXTERNAL_2, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 88 | SND_DEVICE_OUT_VOICE_HANDSET, |
| 89 | SND_DEVICE_OUT_VOICE_SPEAKER, |
Banajit Goswami | 20cdd21 | 2015-09-11 01:11:30 -0700 | [diff] [blame] | 90 | SND_DEVICE_OUT_VOICE_SPEAKER_VBAT, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 91 | SND_DEVICE_OUT_VOICE_HEADPHONES, |
Ravi Kumar Alamanda | 52de13c | 2015-10-17 22:21:52 -0700 | [diff] [blame] | 92 | SND_DEVICE_OUT_VOICE_LINE, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 93 | SND_DEVICE_OUT_HDMI, |
| 94 | SND_DEVICE_OUT_SPEAKER_AND_HDMI, |
| 95 | SND_DEVICE_OUT_BT_SCO, |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 96 | SND_DEVICE_OUT_BT_SCO_WB, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 97 | SND_DEVICE_OUT_VOICE_TTY_FULL_HEADPHONES, |
| 98 | SND_DEVICE_OUT_VOICE_TTY_VCO_HEADPHONES, |
| 99 | SND_DEVICE_OUT_VOICE_TTY_HCO_HANDSET, |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 100 | SND_DEVICE_OUT_VOICE_TX, |
Apoorv Raghuvanshi | 5792d4b | 2013-10-07 18:40:05 -0700 | [diff] [blame] | 101 | SND_DEVICE_OUT_AFE_PROXY, |
| 102 | SND_DEVICE_OUT_USB_HEADSET, |
| 103 | SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET, |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 104 | SND_DEVICE_OUT_TRANSMISSION_FM, |
Apoorv Raghuvanshi | 9eaf94e | 2013-10-04 16:13:44 -0700 | [diff] [blame] | 105 | SND_DEVICE_OUT_ANC_HEADSET, |
| 106 | SND_DEVICE_OUT_ANC_FB_HEADSET, |
| 107 | SND_DEVICE_OUT_VOICE_ANC_HEADSET, |
| 108 | SND_DEVICE_OUT_VOICE_ANC_FB_HEADSET, |
| 109 | SND_DEVICE_OUT_SPEAKER_AND_ANC_HEADSET, |
| 110 | SND_DEVICE_OUT_ANC_HANDSET, |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 111 | SND_DEVICE_OUT_SPEAKER_PROTECTED, |
Anish Kumar | 46c7b87 | 2014-09-09 01:49:44 -0700 | [diff] [blame] | 112 | SND_DEVICE_OUT_VOICE_SPEAKER_PROTECTED, |
Banajit Goswami | 20cdd21 | 2015-09-11 01:11:30 -0700 | [diff] [blame] | 113 | SND_DEVICE_OUT_SPEAKER_PROTECTED_VBAT, |
| 114 | SND_DEVICE_OUT_VOICE_SPEAKER_PROTECTED_VBAT, |
Preetam Singh Ranawat | 61716b1 | 2015-12-14 11:55:24 +0530 | [diff] [blame] | 115 | SND_DEVICE_OUT_SPEAKER_WSA, |
| 116 | SND_DEVICE_OUT_VOICE_SPEAKER_WSA, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 117 | SND_DEVICE_OUT_END, |
| 118 | |
| 119 | /* |
| 120 | * Note: IN_BEGIN should be same as OUT_END because total number of devices |
| 121 | * SND_DEVICES_MAX should not exceed MAX_RX + MAX_TX devices. |
| 122 | */ |
| 123 | /* Capture devices */ |
| 124 | SND_DEVICE_IN_BEGIN = SND_DEVICE_OUT_END, |
| 125 | SND_DEVICE_IN_HANDSET_MIC = SND_DEVICE_IN_BEGIN, |
Tanya Finkel | 0013005 | 2014-07-14 04:26:56 -0700 | [diff] [blame] | 126 | SND_DEVICE_IN_HANDSET_MIC_EXTERNAL, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 127 | SND_DEVICE_IN_HANDSET_MIC_AEC, |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 128 | SND_DEVICE_IN_HANDSET_MIC_NS, |
| 129 | SND_DEVICE_IN_HANDSET_MIC_AEC_NS, |
| 130 | SND_DEVICE_IN_HANDSET_DMIC, |
Ravi Kumar Alamanda | b034ddb | 2013-11-06 15:52:18 -0800 | [diff] [blame] | 131 | SND_DEVICE_IN_HANDSET_DMIC_AEC, |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 132 | SND_DEVICE_IN_HANDSET_DMIC_NS, |
| 133 | SND_DEVICE_IN_HANDSET_DMIC_AEC_NS, |
| 134 | SND_DEVICE_IN_SPEAKER_MIC, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 135 | SND_DEVICE_IN_SPEAKER_MIC_AEC, |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 136 | SND_DEVICE_IN_SPEAKER_MIC_NS, |
| 137 | SND_DEVICE_IN_SPEAKER_MIC_AEC_NS, |
| 138 | SND_DEVICE_IN_SPEAKER_DMIC, |
Ravi Kumar Alamanda | b034ddb | 2013-11-06 15:52:18 -0800 | [diff] [blame] | 139 | SND_DEVICE_IN_SPEAKER_DMIC_AEC, |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 140 | SND_DEVICE_IN_SPEAKER_DMIC_NS, |
| 141 | SND_DEVICE_IN_SPEAKER_DMIC_AEC_NS, |
| 142 | SND_DEVICE_IN_HEADSET_MIC, |
| 143 | SND_DEVICE_IN_HEADSET_MIC_FLUENCE, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 144 | SND_DEVICE_IN_VOICE_SPEAKER_MIC, |
| 145 | SND_DEVICE_IN_VOICE_HEADSET_MIC, |
| 146 | SND_DEVICE_IN_HDMI_MIC, |
| 147 | SND_DEVICE_IN_BT_SCO_MIC, |
Vicky Sehrawat | e240e5d | 2014-08-12 17:17:04 -0700 | [diff] [blame] | 148 | SND_DEVICE_IN_BT_SCO_MIC_NREC, |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 149 | SND_DEVICE_IN_BT_SCO_MIC_WB, |
Vicky Sehrawat | e240e5d | 2014-08-12 17:17:04 -0700 | [diff] [blame] | 150 | SND_DEVICE_IN_BT_SCO_MIC_WB_NREC, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 151 | SND_DEVICE_IN_CAMCORDER_MIC, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 152 | SND_DEVICE_IN_VOICE_DMIC, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 153 | SND_DEVICE_IN_VOICE_SPEAKER_DMIC, |
| 154 | SND_DEVICE_IN_VOICE_SPEAKER_QMIC, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 155 | SND_DEVICE_IN_VOICE_TTY_FULL_HEADSET_MIC, |
| 156 | SND_DEVICE_IN_VOICE_TTY_VCO_HANDSET_MIC, |
| 157 | SND_DEVICE_IN_VOICE_TTY_HCO_HEADSET_MIC, |
| 158 | SND_DEVICE_IN_VOICE_REC_MIC, |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 159 | SND_DEVICE_IN_VOICE_REC_MIC_NS, |
Ravi Kumar Alamanda | b034ddb | 2013-11-06 15:52:18 -0800 | [diff] [blame] | 160 | SND_DEVICE_IN_VOICE_REC_DMIC_STEREO, |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 161 | SND_DEVICE_IN_VOICE_REC_DMIC_FLUENCE, |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 162 | SND_DEVICE_IN_VOICE_RX, |
Apoorv Raghuvanshi | 5792d4b | 2013-10-07 18:40:05 -0700 | [diff] [blame] | 163 | SND_DEVICE_IN_USB_HEADSET_MIC, |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 164 | SND_DEVICE_IN_CAPTURE_FM, |
Apoorv Raghuvanshi | 9eaf94e | 2013-10-04 16:13:44 -0700 | [diff] [blame] | 165 | SND_DEVICE_IN_AANC_HANDSET_MIC, |
Apoorv Raghuvanshi | 6178a3f | 2013-10-19 12:38:54 -0700 | [diff] [blame] | 166 | SND_DEVICE_IN_QUAD_MIC, |
Apoorv Raghuvanshi | 6bd8dbf | 2013-10-19 18:37:52 -0700 | [diff] [blame] | 167 | SND_DEVICE_IN_HANDSET_STEREO_DMIC, |
| 168 | SND_DEVICE_IN_SPEAKER_STEREO_DMIC, |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 169 | SND_DEVICE_IN_CAPTURE_VI_FEEDBACK, |
Narsinga Rao Chella | 61e0f9b | 2014-03-06 21:25:22 -0800 | [diff] [blame] | 170 | SND_DEVICE_IN_VOICE_SPEAKER_DMIC_BROADSIDE, |
| 171 | SND_DEVICE_IN_SPEAKER_DMIC_BROADSIDE, |
| 172 | SND_DEVICE_IN_SPEAKER_DMIC_AEC_BROADSIDE, |
| 173 | SND_DEVICE_IN_SPEAKER_DMIC_NS_BROADSIDE, |
| 174 | SND_DEVICE_IN_SPEAKER_DMIC_AEC_NS_BROADSIDE, |
Shiv Maliyappanahalli | dd28726 | 2016-01-08 15:57:07 -0800 | [diff] [blame] | 175 | SND_DEVICE_IN_VOICE_FLUENCE_DMIC_AANC, |
Narsinga Rao Chella | 975572e | 2014-10-21 11:49:00 -0700 | [diff] [blame] | 176 | SND_DEVICE_IN_HANDSET_QMIC, |
| 177 | SND_DEVICE_IN_SPEAKER_QMIC_AEC, |
| 178 | SND_DEVICE_IN_SPEAKER_QMIC_NS, |
| 179 | SND_DEVICE_IN_SPEAKER_QMIC_AEC_NS, |
Shiv Maliyappanahalli | 5a10aea | 2015-07-02 10:36:23 -0700 | [diff] [blame] | 180 | SND_DEVICE_IN_THREE_MIC, |
Chaithanya Krishna Bacharaju | 9955b16 | 2016-05-25 16:25:53 +0530 | [diff] [blame] | 181 | SND_DEVICE_IN_HANDSET_TMIC, |
Chaithanya Krishna Bacharaju | 24f86f3 | 2016-05-26 16:34:53 +0530 | [diff] [blame^] | 182 | SND_DEVICE_IN_UNPROCESSED_MIC, |
| 183 | SND_DEVICE_IN_UNPROCESSED_STEREO_MIC, |
| 184 | SND_DEVICE_IN_UNPROCESSED_THREE_MIC, |
| 185 | SND_DEVICE_IN_UNPROCESSED_QUAD_MIC, |
| 186 | SND_DEVICE_IN_UNPROCESSED_HEADSET_MIC, |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 187 | SND_DEVICE_IN_END, |
| 188 | |
| 189 | SND_DEVICE_MAX = SND_DEVICE_IN_END, |
| 190 | |
| 191 | }; |
| 192 | |
Apoorv Raghuvanshi | f59bb22 | 2015-02-18 12:23:23 -0800 | [diff] [blame] | 193 | #define DEFAULT_OUTPUT_SAMPLING_RATE 48000 |
| 194 | #define OUTPUT_SAMPLING_RATE_44100 44100 |
Manish Dewangan | ba9fcfa | 2016-03-24 16:20:06 +0530 | [diff] [blame] | 195 | #define MAX_CODEC_TX_BACKENDS 1 |
Apoorv Raghuvanshi | 2149216 | 2015-02-19 18:19:36 -0800 | [diff] [blame] | 196 | enum { |
| 197 | DEFAULT_CODEC_BACKEND, |
Sidipotu Ashok | 9f0b16e | 2016-04-28 13:48:28 +0530 | [diff] [blame] | 198 | SLIMBUS_0_RX = DEFAULT_CODEC_BACKEND, |
Apoorv Raghuvanshi | 2149216 | 2015-02-19 18:19:36 -0800 | [diff] [blame] | 199 | HEADPHONE_44_1_BACKEND, |
Sidipotu Ashok | 9f0b16e | 2016-04-28 13:48:28 +0530 | [diff] [blame] | 200 | SLIMBUS_5_RX = HEADPHONE_44_1_BACKEND, |
| 201 | HEADPHONE_BACKEND, |
| 202 | SLIMBUS_6_RX = HEADPHONE_BACKEND, |
| 203 | HDMI_RX_BACKEND, |
Apoorv Raghuvanshi | 2149216 | 2015-02-19 18:19:36 -0800 | [diff] [blame] | 204 | MAX_CODEC_BACKENDS |
| 205 | }; |
| 206 | |
| 207 | #define AUDIO_PARAMETER_KEY_NATIVE_AUDIO "audio.nat.codec.enabled" |
Sidipotu Ashok | e6f78cb | 2015-11-05 14:42:20 +0530 | [diff] [blame] | 208 | #define AUDIO_PARAMETER_KEY_NATIVE_AUDIO_MODE "native_audio_mode" |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 209 | |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 210 | #define ALL_SESSION_VSID 0xFFFFFFFF |
Vidyakumar Athota | c37f42a | 2014-03-11 11:57:48 -0700 | [diff] [blame] | 211 | #define DEFAULT_MUTE_RAMP_DURATION_MS 20 |
sangwoo | 53b2cf0 | 2013-07-25 19:18:44 -0700 | [diff] [blame] | 212 | #define DEFAULT_VOLUME_RAMP_DURATION_MS 20 |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 213 | #define MIXER_PATH_MAX_LENGTH 100 |
Sidipotu Ashok | e6f78cb | 2015-11-05 14:42:20 +0530 | [diff] [blame] | 214 | #define CODEC_VERSION_MAX_LENGTH 100 |
sangwoo | 53b2cf0 | 2013-07-25 19:18:44 -0700 | [diff] [blame] | 215 | |
Narsinga Rao Chella | 05573b7 | 2013-11-15 15:21:40 -0800 | [diff] [blame] | 216 | #define MAX_VOL_INDEX 5 |
| 217 | #define MIN_VOL_INDEX 0 |
| 218 | #define percent_to_index(val, min, max) \ |
| 219 | ((val) * ((max) - (min)) * 0.01 + (min) + .5) |
| 220 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 221 | /* |
| 222 | * tinyAlsa library interprets period size as number of frames |
| 223 | * one frame = channel_count * sizeof (pcm sample) |
| 224 | * so if format = 16-bit PCM and channels = Stereo, frame size = 2 ch * 2 = 4 bytes |
| 225 | * DEEP_BUFFER_OUTPUT_PERIOD_SIZE = 1024 means 1024 * 4 = 4096 bytes |
| 226 | * We should take care of returning proper size when AudioFlinger queries for |
| 227 | * the buffer size of an input/output stream |
| 228 | */ |
Alexy Joseph | 029faa2 | 2015-06-18 14:22:14 -0700 | [diff] [blame] | 229 | #define DEEP_BUFFER_OUTPUT_PERIOD_SIZE 1920 |
| 230 | #define DEEP_BUFFER_OUTPUT_PERIOD_COUNT 2 |
Ravi Kumar Alamanda | 33d3306 | 2013-06-11 14:40:01 -0700 | [diff] [blame] | 231 | #define LOW_LATENCY_OUTPUT_PERIOD_SIZE 240 |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 232 | #define LOW_LATENCY_OUTPUT_PERIOD_COUNT 2 |
| 233 | |
| 234 | #define HDMI_MULTI_PERIOD_SIZE 336 |
| 235 | #define HDMI_MULTI_PERIOD_COUNT 8 |
| 236 | #define HDMI_MULTI_DEFAULT_CHANNEL_COUNT 6 |
| 237 | #define HDMI_MULTI_PERIOD_BYTES (HDMI_MULTI_PERIOD_SIZE * HDMI_MULTI_DEFAULT_CHANNEL_COUNT * 2) |
| 238 | |
Ravi Kumar Alamanda | 33d3306 | 2013-06-11 14:40:01 -0700 | [diff] [blame] | 239 | #define AUDIO_CAPTURE_PERIOD_DURATION_MSEC 20 |
| 240 | #define AUDIO_CAPTURE_PERIOD_COUNT 2 |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 241 | |
Ravi Kumar Alamanda | dc9bb15 | 2014-09-08 15:59:58 -0700 | [diff] [blame] | 242 | #define LOW_LATENCY_CAPTURE_SAMPLE_RATE 48000 |
| 243 | #define LOW_LATENCY_CAPTURE_PERIOD_SIZE 240 |
| 244 | #define LOW_LATENCY_CAPTURE_USE_CASE 1 |
| 245 | |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 246 | #define DEVICE_NAME_MAX_SIZE 128 |
| 247 | #define HW_INFO_ARRAY_MAX_SIZE 32 |
| 248 | |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 249 | #define DEEP_BUFFER_PCM_DEVICE 0 |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 250 | #define AUDIO_RECORD_PCM_DEVICE 0 |
Preetam Singh Ranawat | de84f1a | 2013-11-01 14:58:16 -0700 | [diff] [blame] | 251 | #define MULTIMEDIA2_PCM_DEVICE 1 |
Ravi Kumar Alamanda | 474de5a | 2015-06-25 20:08:01 -0700 | [diff] [blame] | 252 | #define MULTIMEDIA3_PCM_DEVICE 4 |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 253 | #define FM_PLAYBACK_PCM_DEVICE 5 |
| 254 | #define FM_CAPTURE_PCM_DEVICE 6 |
Vimal Puthanveed | 5b4d3f1 | 2013-11-05 15:57:39 -0800 | [diff] [blame] | 255 | #define HFP_PCM_RX 5 |
Vimal Puthanveed | 5b4d3f1 | 2013-11-05 15:57:39 -0800 | [diff] [blame] | 256 | |
Shiv Maliyappanahalli | f3b9a42 | 2013-10-22 16:38:08 -0700 | [diff] [blame] | 257 | #define INCALL_MUSIC_UPLINK_PCM_DEVICE 1 |
Avinash Vaish | a3886d2 | 2014-03-14 18:51:53 +0530 | [diff] [blame] | 258 | |
| 259 | #ifdef PLATFORM_MSM8610 |
| 260 | #define INCALL_MUSIC_UPLINK2_PCM_DEVICE 14 |
| 261 | #elif PLATFORM_MSM8x26 |
Shiv Maliyappanahalli | f3b9a42 | 2013-10-22 16:38:08 -0700 | [diff] [blame] | 262 | #define INCALL_MUSIC_UPLINK2_PCM_DEVICE 16 |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 263 | #elif PLATFORM_APQ8084 |
| 264 | #define INCALL_MUSIC_UPLINK2_PCM_DEVICE 34 |
Avinash Vaish | a3886d2 | 2014-03-14 18:51:53 +0530 | [diff] [blame] | 265 | #else |
Karthik Reddy Katta | d2e89ee | 2014-04-01 20:26:34 +0530 | [diff] [blame] | 266 | #define INCALL_MUSIC_UPLINK2_PCM_DEVICE 35 |
Avinash Vaish | a3886d2 | 2014-03-14 18:51:53 +0530 | [diff] [blame] | 267 | #endif |
| 268 | |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 269 | #define SPKR_PROT_CALIB_RX_PCM_DEVICE 5 |
Phani Kumar Uppalapati | 9da60a2 | 2014-03-19 18:59:39 -0700 | [diff] [blame] | 270 | #ifdef PLATFORM_APQ8084 |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 271 | #define SPKR_PROT_CALIB_TX_PCM_DEVICE 35 |
Sudheer Papothi | d2b182f | 2015-07-09 09:18:52 +0530 | [diff] [blame] | 272 | #elif PLATFORM_MSM8996 |
| 273 | #define SPKR_PROT_CALIB_TX_PCM_DEVICE 42 |
Phani Kumar Uppalapati | 9da60a2 | 2014-03-19 18:59:39 -0700 | [diff] [blame] | 274 | #else |
Gopikrishnaiah Anandan | 29b4fd5 | 2014-01-23 19:31:38 -0800 | [diff] [blame] | 275 | #define SPKR_PROT_CALIB_TX_PCM_DEVICE 25 |
Phani Kumar Uppalapati | 9da60a2 | 2014-03-19 18:59:39 -0700 | [diff] [blame] | 276 | #endif |
Krishnankutty Kolathappilly | a43f96e | 2013-11-01 12:17:53 -0700 | [diff] [blame] | 277 | #define PLAYBACK_OFFLOAD_DEVICE 9 |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 278 | |
vivek mehta | 446c396 | 2015-09-14 10:57:35 -0700 | [diff] [blame] | 279 | // Direct_PCM |
Garmond Leung | c153646 | 2016-04-22 10:41:07 -0700 | [diff] [blame] | 280 | #if defined (PLATFORM_MSM8994) || defined (PLATFORM_MSM8996) || defined (PLATFORM_APQ8084) || defined (PLATFORM_MSMCOBALT) |
vivek mehta | 446c396 | 2015-09-14 10:57:35 -0700 | [diff] [blame] | 281 | #define PLAYBACK_OFFLOAD_DEVICE2 17 |
| 282 | #endif |
| 283 | |
Garmond Leung | c153646 | 2016-04-22 10:41:07 -0700 | [diff] [blame] | 284 | #if defined (PLATFORM_APQ8084) || defined (PLATFORM_MSM8996) || defined (PLATFORM_MSMCOBALT) |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 285 | #define PLAYBACK_OFFLOAD_DEVICE3 18 |
| 286 | #define PLAYBACK_OFFLOAD_DEVICE4 34 |
| 287 | #define PLAYBACK_OFFLOAD_DEVICE5 35 |
| 288 | #define PLAYBACK_OFFLOAD_DEVICE6 36 |
| 289 | #define PLAYBACK_OFFLOAD_DEVICE7 37 |
| 290 | #define PLAYBACK_OFFLOAD_DEVICE8 38 |
| 291 | #define PLAYBACK_OFFLOAD_DEVICE9 39 |
| 292 | #endif |
Vidyakumar Athota | 46025ef | 2015-12-08 10:47:12 -0800 | [diff] [blame] | 293 | #ifdef PLATFORM_MSM8994 |
Subhash Chandra Bose Naripeddy | 1691081 | 2014-05-27 14:01:47 -0700 | [diff] [blame] | 294 | #define PLAYBACK_OFFLOAD_DEVICE3 18 |
| 295 | #define PLAYBACK_OFFLOAD_DEVICE4 37 |
| 296 | #define PLAYBACK_OFFLOAD_DEVICE5 38 |
| 297 | #define PLAYBACK_OFFLOAD_DEVICE6 39 |
| 298 | #define PLAYBACK_OFFLOAD_DEVICE7 40 |
| 299 | #define PLAYBACK_OFFLOAD_DEVICE8 41 |
| 300 | #define PLAYBACK_OFFLOAD_DEVICE9 42 |
| 301 | #endif |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 302 | |
Narsinga Rao Chella | 05573b7 | 2013-11-15 15:21:40 -0800 | [diff] [blame] | 303 | #define COMPRESS_VOIP_CALL_PCM_DEVICE 3 |
Krishnankutty Kolathappilly | a43f96e | 2013-11-01 12:17:53 -0700 | [diff] [blame] | 304 | |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 305 | #ifdef PLATFORM_MSM8610 |
| 306 | #define LOWLATENCY_PCM_DEVICE 12 |
Venkata Narendra Kumar Gutta | 65d5126 | 2014-04-14 21:18:52 +0530 | [diff] [blame] | 307 | #define EC_REF_RX "SEC_I2S_RX" |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 308 | #else |
| 309 | #define LOWLATENCY_PCM_DEVICE 15 |
Laxminath Kasam | 7294f52 | 2013-12-11 05:07:00 +0530 | [diff] [blame] | 310 | #define EC_REF_RX "SLIM_RX" |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 311 | #endif |
Krishnankutty Kolathappilly | 11806db | 2013-11-20 10:39:32 -0800 | [diff] [blame] | 312 | #ifdef PLATFORM_MSM8x26 |
| 313 | #define COMPRESS_CAPTURE_DEVICE 20 |
| 314 | #else |
Mingming Yin | e62d784 | 2013-10-25 16:26:03 -0700 | [diff] [blame] | 315 | #define COMPRESS_CAPTURE_DEVICE 19 |
Krishnankutty Kolathappilly | 11806db | 2013-11-20 10:39:32 -0800 | [diff] [blame] | 316 | #endif |
Mingming Yin | 8e5a4f6 | 2013-10-07 15:23:41 -0700 | [diff] [blame] | 317 | |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 318 | #ifdef PLATFORM_MSM8x26 |
| 319 | #define VOICE_CALL_PCM_DEVICE 2 |
| 320 | #define VOICE2_CALL_PCM_DEVICE 14 |
| 321 | #define VOLTE_CALL_PCM_DEVICE 17 |
| 322 | #define QCHAT_CALL_PCM_DEVICE 18 |
Vicky Sehrawat | 7e4fc15 | 2014-02-12 17:58:59 -0800 | [diff] [blame] | 323 | #define VOWLAN_CALL_PCM_DEVICE 30 |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 324 | #elif PLATFORM_APQ8084 |
| 325 | #define VOICE_CALL_PCM_DEVICE 20 |
Phani Kumar Uppalapati | 9da60a2 | 2014-03-19 18:59:39 -0700 | [diff] [blame] | 326 | #define VOICE2_CALL_PCM_DEVICE 25 |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 327 | #define VOLTE_CALL_PCM_DEVICE 21 |
Banajit Goswami | bb2002f | 2014-03-27 13:51:33 -0700 | [diff] [blame] | 328 | #define QCHAT_CALL_PCM_DEVICE 33 |
Vicky Sehrawat | 7e4fc15 | 2014-02-12 17:58:59 -0800 | [diff] [blame] | 329 | #define VOWLAN_CALL_PCM_DEVICE -1 |
Vicky Sehrawat | f55b03c | 2013-12-09 14:56:18 -0800 | [diff] [blame] | 330 | #elif PLATFORM_MSM8610 |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 331 | #define VOICE_CALL_PCM_DEVICE 2 |
| 332 | #define VOICE2_CALL_PCM_DEVICE 13 |
Venkata Narendra Kumar Gutta | 8f84e9f | 2013-12-30 19:30:46 +0530 | [diff] [blame] | 333 | #define VOLTE_CALL_PCM_DEVICE 15 |
| 334 | #define QCHAT_CALL_PCM_DEVICE 14 |
Vicky Sehrawat | 7e4fc15 | 2014-02-12 17:58:59 -0800 | [diff] [blame] | 335 | #define VOWLAN_CALL_PCM_DEVICE -1 |
Narsinga Rao Chella | c2b9999 | 2014-05-15 22:45:59 -0700 | [diff] [blame] | 336 | #elif PLATFORM_MSM8994 |
| 337 | #define VOICE_CALL_PCM_DEVICE 2 |
| 338 | #define VOICE2_CALL_PCM_DEVICE 22 |
| 339 | #define VOLTE_CALL_PCM_DEVICE 14 |
| 340 | #define QCHAT_CALL_PCM_DEVICE 20 |
| 341 | #define VOWLAN_CALL_PCM_DEVICE 36 |
Vidyakumar Athota | 0e10935 | 2015-02-12 17:38:22 -0800 | [diff] [blame] | 342 | #elif PLATFORM_MSM8996 |
| 343 | #define VOICE_CALL_PCM_DEVICE 40 |
| 344 | #define VOICE2_CALL_PCM_DEVICE 41 |
| 345 | #define VOLTE_CALL_PCM_DEVICE 14 |
| 346 | #define QCHAT_CALL_PCM_DEVICE 20 |
| 347 | #define VOWLAN_CALL_PCM_DEVICE 33 |
Vicky Sehrawat | f55b03c | 2013-12-09 14:56:18 -0800 | [diff] [blame] | 348 | #else |
| 349 | #define VOICE_CALL_PCM_DEVICE 2 |
| 350 | #define VOICE2_CALL_PCM_DEVICE 22 |
| 351 | #define VOLTE_CALL_PCM_DEVICE 14 |
| 352 | #define QCHAT_CALL_PCM_DEVICE 20 |
Vicky Sehrawat | 8456ae0 | 2014-05-09 16:28:40 -0700 | [diff] [blame] | 353 | #define VOWLAN_CALL_PCM_DEVICE 36 |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 354 | #endif |
| 355 | |
Vidyakumar Athota | 0e10935 | 2015-02-12 17:38:22 -0800 | [diff] [blame] | 356 | #ifdef PLATFORM_MSM8996 |
| 357 | #define VOICEMMODE1_CALL_PCM_DEVICE 2 |
| 358 | #define VOICEMMODE2_CALL_PCM_DEVICE 22 |
| 359 | #else |
| 360 | #define VOICEMMODE1_CALL_PCM_DEVICE 44 |
| 361 | #define VOICEMMODE2_CALL_PCM_DEVICE 45 |
| 362 | #endif |
| 363 | |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 364 | #define AFE_PROXY_PLAYBACK_PCM_DEVICE 7 |
| 365 | #define AFE_PROXY_RECORD_PCM_DEVICE 8 |
| 366 | |
Satya Krishna Pindiproli | 813feda | 2014-02-11 15:59:58 +0530 | [diff] [blame] | 367 | #ifdef PLATFORM_MSM8x26 |
| 368 | #define HFP_SCO_RX 28 |
| 369 | #define HFP_ASM_RX_TX 29 |
| 370 | #else |
| 371 | #define HFP_SCO_RX 23 |
| 372 | #define HFP_ASM_RX_TX 24 |
| 373 | #endif |
| 374 | |
Banajit Goswami | 88d6cc5 | 2014-04-10 17:59:02 -0700 | [diff] [blame] | 375 | #ifdef PLATFORM_APQ8084 |
| 376 | #define FM_RX_VOLUME "Quat MI2S FM RX Volume" |
Sudheer Papothi | cd99424 | 2014-07-11 00:50:19 +0530 | [diff] [blame] | 377 | #elif PLATFORM_MSM8994 |
| 378 | #define FM_RX_VOLUME "PRI MI2S LOOPBACK Volume" |
Mingming Yin | 89c6a7f | 2015-03-24 11:56:14 -0700 | [diff] [blame] | 379 | #elif PLATFORM_MSM8996 |
Banajit Goswami | 22582e7 | 2014-10-15 18:29:34 -0700 | [diff] [blame] | 380 | #define FM_RX_VOLUME "Tert MI2S LOOPBACK Volume" |
Banajit Goswami | 4c0dff2 | 2016-03-04 18:31:22 -0800 | [diff] [blame] | 381 | #elif PLATFORM_MSMCOBALT |
| 382 | #define FM_RX_VOLUME "SLIMBUS_8 LOOPBACK Volume" |
Banajit Goswami | 88d6cc5 | 2014-04-10 17:59:02 -0700 | [diff] [blame] | 383 | #else |
| 384 | #define FM_RX_VOLUME "Internal FM RX Volume" |
| 385 | #endif |
| 386 | |
Chaithanya Krishna Bacharaju | 9955b16 | 2016-05-25 16:25:53 +0530 | [diff] [blame] | 387 | #define PLATFORM_MAX_MIC_COUNT "input_mic_max_count" |
| 388 | #define PLATFORM_DEFAULT_MIC_COUNT 2 |
| 389 | |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 390 | #define LIB_CSD_CLIENT "libcsd-client.so" |
| 391 | /* CSD-CLIENT related functions */ |
Helen Zeng | 6a16ad7 | 2014-02-23 22:04:44 -0800 | [diff] [blame] | 392 | typedef int (*init_t)(bool); |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 393 | typedef int (*deinit_t)(); |
| 394 | typedef int (*disable_device_t)(); |
Vidyakumar Athota | 545dbd3 | 2013-11-13 17:30:53 -0800 | [diff] [blame] | 395 | typedef int (*enable_device_config_t)(int, int); |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 396 | typedef int (*enable_device_t)(int, int, uint32_t); |
Vidyakumar Athota | c37f42a | 2014-03-11 11:57:48 -0700 | [diff] [blame] | 397 | typedef int (*volume_t)(uint32_t, int, uint16_t); |
| 398 | typedef int (*mic_mute_t)(uint32_t, int, uint16_t); |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 399 | typedef int (*slow_talk_t)(uint32_t, uint8_t); |
| 400 | typedef int (*start_voice_t)(uint32_t); |
| 401 | typedef int (*stop_voice_t)(uint32_t); |
| 402 | typedef int (*start_playback_t)(uint32_t); |
| 403 | typedef int (*stop_playback_t)(uint32_t); |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 404 | typedef int (*set_lch_t)(uint32_t, enum voice_lch_mode); |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 405 | typedef int (*start_record_t)(uint32_t, int); |
Vidyakumar Athota | 2850d53 | 2013-11-19 16:02:12 -0800 | [diff] [blame] | 406 | typedef int (*stop_record_t)(uint32_t); |
Helen Zeng | 6a16ad7 | 2014-02-23 22:04:44 -0800 | [diff] [blame] | 407 | typedef int (*get_sample_rate_t)(uint32_t *); |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 408 | /* CSD Client structure */ |
| 409 | struct csd_data { |
| 410 | void *csd_client; |
| 411 | init_t init; |
| 412 | deinit_t deinit; |
| 413 | disable_device_t disable_device; |
Vidyakumar Athota | 545dbd3 | 2013-11-13 17:30:53 -0800 | [diff] [blame] | 414 | enable_device_config_t enable_device_config; |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 415 | enable_device_t enable_device; |
| 416 | volume_t volume; |
| 417 | mic_mute_t mic_mute; |
| 418 | slow_talk_t slow_talk; |
| 419 | start_voice_t start_voice; |
| 420 | stop_voice_t stop_voice; |
| 421 | start_playback_t start_playback; |
| 422 | stop_playback_t stop_playback; |
Vidyakumar Athota | 21b3bb9 | 2014-04-25 11:08:08 -0700 | [diff] [blame] | 423 | set_lch_t set_lch; |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 424 | start_record_t start_record; |
| 425 | stop_record_t stop_record; |
Helen Zeng | 6a16ad7 | 2014-02-23 22:04:44 -0800 | [diff] [blame] | 426 | get_sample_rate_t get_sample_rate; |
Vidyakumar Athota | d9d9ff3 | 2013-11-13 11:46:52 -0800 | [diff] [blame] | 427 | }; |
| 428 | |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 429 | /* HDMI Passthrough defines */ |
| 430 | enum { |
| 431 | LEGACY_PCM = 0, |
| 432 | PASSTHROUGH, |
| 433 | PASSTHROUGH_CONVERT |
| 434 | }; |
| 435 | /* |
| 436 | * ID for setting mute and lateny on the device side |
| 437 | * through Device PP Params mixer control. |
| 438 | */ |
| 439 | #define DEVICE_PARAM_MUTE_ID 0 |
| 440 | #define DEVICE_PARAM_LATENCY_ID 1 |
Narsinga Rao Chella | f928a98 | 2015-03-06 14:57:35 -0800 | [diff] [blame] | 441 | |
| 442 | #define ENUM_TO_STRING(X) #X |
| 443 | |
| 444 | struct audio_device_to_audio_interface { |
| 445 | audio_devices_t device; |
| 446 | char device_name[100]; |
| 447 | char interface_name[100]; |
| 448 | }; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 449 | #endif // QCOM_AUDIO_PLATFORM_H |