Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 1 | /* |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, The Linux Foundation. All rights reserved. |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 3 | * Not a contribution. |
| 4 | * |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [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. |
Jitendra Naruka | 1b6513f | 2014-11-22 19:34:13 -0800 | [diff] [blame] | 18 | * |
| 19 | * This file was modified by DTS, Inc. The portions of the |
| 20 | * code modified by DTS, Inc are copyrighted and |
| 21 | * licensed separately, as follows: |
| 22 | * |
| 23 | * (C) 2014 DTS, Inc. |
| 24 | * |
| 25 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 26 | * you may not use this file except in compliance with the License. |
| 27 | * You may obtain a copy of the License at |
| 28 | * |
| 29 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 30 | * |
| 31 | * Unless required by applicable law or agreed to in writing, software |
| 32 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 33 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 34 | * See the License for the specific language governing permissions and |
| 35 | * limitations under the License. |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 36 | */ |
| 37 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 38 | #ifndef QCOM_AUDIO_HW_H |
| 39 | #define QCOM_AUDIO_HW_H |
| 40 | |
Mingming Yin | 497419f | 2015-07-01 16:57:32 -0700 | [diff] [blame] | 41 | #include <stdlib.h> |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 42 | #include <cutils/str_parms.h> |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 43 | #include <cutils/list.h> |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 44 | #include <cutils/hashmap.h> |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 45 | #include <hardware/audio.h> |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 46 | #include <tinyalsa/asoundlib.h> |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 47 | #include <tinycompress/tinycompress.h> |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 48 | |
| 49 | #include <audio_route/audio_route.h> |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 50 | #include <audio_utils/ErrorLog.h> |
Mingming Yin | 23c383c | 2014-07-11 10:39:59 -0700 | [diff] [blame] | 51 | #include "audio_defs.h" |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 52 | #include "voice.h" |
Dhananjay Kumar | ee4d200 | 2016-10-25 18:02:58 +0530 | [diff] [blame] | 53 | #include "audio_hw_extn_api.h" |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 54 | #include "device_utils.h" |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 55 | |
Weiyin Jiang | a3719ac | 2016-11-23 19:29:35 +0800 | [diff] [blame] | 56 | #if LINUX_ENABLED |
Surendar karka | b51c257 | 2018-02-22 13:09:48 +0530 | [diff] [blame] | 57 | #if defined(__LP64__) |
| 58 | #define VISUALIZER_LIBRARY_PATH "/usr/lib64/libqcomvisualizer.so" |
| 59 | #define OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH "/usr/lib64/libqcompostprocbundle.so" |
| 60 | #define ADM_LIBRARY_PATH "/usr/lib64/libadm.so" |
| 61 | #else |
| 62 | #define VISUALIZER_LIBRARY_PATH "/usr/lib/libqcomvisualizer.so" |
| 63 | #define OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH "/usr/lib/libqcompostprocbundle.so" |
| 64 | #define ADM_LIBRARY_PATH "/usr/lib/libadm.so" |
| 65 | #endif |
Weiyin Jiang | a3719ac | 2016-11-23 19:29:35 +0800 | [diff] [blame] | 66 | #else |
Weiyin Jiang | ae97a68 | 2017-06-30 13:37:47 +0800 | [diff] [blame] | 67 | #define VISUALIZER_LIBRARY_PATH "/vendor/lib/soundfx/libqcomvisualizer.so" |
| 68 | #define OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH "/vendor/lib/soundfx/libqcompostprocbundle.so" |
David Ng | 06ccd87 | 2017-03-15 11:39:33 -0700 | [diff] [blame] | 69 | #define ADM_LIBRARY_PATH "/vendor/lib/libadm.so" |
Weiyin Jiang | a3719ac | 2016-11-23 19:29:35 +0800 | [diff] [blame] | 70 | #endif |
Eric Laurent | c4aef75 | 2013-09-12 17:45:53 -0700 | [diff] [blame] | 71 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 72 | /* Flags used to initialize acdb_settings variable that goes to ACDB library */ |
Venkata Narendra Kumar Gutta | 88fd0bc | 2014-03-27 19:47:56 +0530 | [diff] [blame] | 73 | #define NONE_FLAG 0x00000000 |
Banajit Goswami | de0ea45 | 2014-04-07 12:11:47 -0700 | [diff] [blame] | 74 | #define ANC_FLAG 0x00000001 |
Venkata Narendra Kumar Gutta | 88fd0bc | 2014-03-27 19:47:56 +0530 | [diff] [blame] | 75 | #define DMIC_FLAG 0x00000002 |
| 76 | #define QMIC_FLAG 0x00000004 |
Aditya Bavanari | 4051c8d | 2017-12-13 13:31:26 +0530 | [diff] [blame] | 77 | /* Include TMIC Flag after existing QMIC flag to avoid backward compatibility |
| 78 | * issues since they are bit masked */ |
| 79 | #define TMIC_FLAG 0x00000008 |
Venkata Narendra Kumar Gutta | 88fd0bc | 2014-03-27 19:47:56 +0530 | [diff] [blame] | 80 | #define TTY_MODE_OFF 0x00000010 |
| 81 | #define TTY_MODE_FULL 0x00000020 |
| 82 | #define TTY_MODE_VCO 0x00000040 |
| 83 | #define TTY_MODE_HCO 0x00000080 |
| 84 | #define TTY_MODE_CLEAR 0xFFFFFF0F |
| 85 | #define FLUENCE_MODE_CLEAR 0xFFFFFFF0 |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 86 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 87 | #define ACDB_DEV_TYPE_OUT 1 |
| 88 | #define ACDB_DEV_TYPE_IN 2 |
| 89 | |
Zhou Song | 12c2950 | 2019-03-16 10:37:18 +0800 | [diff] [blame] | 90 | /* SCO SWB codec mode */ |
| 91 | #define SPEECH_MODE_INVALID 0xFFFF |
| 92 | |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 93 | /* support positional and index masks to 8ch */ |
| 94 | #define MAX_SUPPORTED_CHANNEL_MASKS (2 * FCC_8) |
Mingming Yin | 3a941d4 | 2016-02-17 18:08:05 -0800 | [diff] [blame] | 95 | #define MAX_SUPPORTED_FORMATS 15 |
| 96 | #define MAX_SUPPORTED_SAMPLE_RATES 7 |
Eric Laurent | 07eeafd | 2013-10-06 12:52:49 -0700 | [diff] [blame] | 97 | #define DEFAULT_HDMI_OUT_CHANNELS 2 |
Mingming Yin | 2185465 | 2016-04-13 11:54:02 -0700 | [diff] [blame] | 98 | #define DEFAULT_HDMI_OUT_SAMPLE_RATE 48000 |
| 99 | #define DEFAULT_HDMI_OUT_FORMAT AUDIO_FORMAT_PCM_16_BIT |
Ravi Kumar Alamanda | 72c411f | 2013-02-12 02:09:33 -0800 | [diff] [blame] | 100 | |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 101 | #define ERROR_LOG_ENTRIES 16 |
| 102 | |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 103 | #define SND_CARD_STATE_OFFLINE 0 |
| 104 | #define SND_CARD_STATE_ONLINE 1 |
| 105 | |
| 106 | #define STREAM_DIRECTION_IN 0 |
| 107 | #define STREAM_DIRECTION_OUT 1 |
| 108 | |
Sudheer Papothi | fa9d228 | 2015-09-17 01:53:25 +0530 | [diff] [blame] | 109 | #define MAX_PERF_LOCK_OPTS 20 |
| 110 | |
Dhananjay Kumar | 4d91c1a | 2016-12-01 23:27:29 +0530 | [diff] [blame] | 111 | #define MAX_STREAM_PROFILE_STR_LEN 32 |
Vikram Panduranga | df59cae | 2017-08-03 18:04:55 -0700 | [diff] [blame] | 112 | typedef enum { |
| 113 | EFFECT_NONE = 0, |
| 114 | EFFECT_AEC, |
| 115 | EFFECT_NS, |
| 116 | EFFECT_MAX |
| 117 | } effect_type_t; |
| 118 | |
| 119 | struct audio_effect_config { |
| 120 | uint32_t module_id; |
| 121 | uint32_t instance_id; |
| 122 | uint32_t param_id; |
| 123 | uint32_t param_value; |
| 124 | }; |
Dhananjay Kumar | 4d91c1a | 2016-12-01 23:27:29 +0530 | [diff] [blame] | 125 | |
Guodong Hu | 1d46f34 | 2019-06-28 16:57:30 +0800 | [diff] [blame] | 126 | struct audio_fluence_mmsecns_config { |
| 127 | uint32_t topology_id; |
| 128 | uint32_t module_id; |
| 129 | uint32_t instance_id; |
| 130 | uint32_t param_id; |
| 131 | }; |
| 132 | |
Alexy Joseph | 9898883 | 2017-01-13 14:56:59 -0800 | [diff] [blame] | 133 | #define MAX_MIXER_PATH_LEN 64 |
| 134 | |
Haynes Mathew George | 3a1f1fb | 2016-08-09 15:43:13 -0700 | [diff] [blame] | 135 | typedef enum card_status_t { |
| 136 | CARD_STATUS_OFFLINE, |
| 137 | CARD_STATUS_ONLINE |
| 138 | } card_status_t; |
| 139 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 140 | /* These are the supported use cases by the hardware. |
| 141 | * Each usecase is mapped to a specific PCM device. |
| 142 | * Refer to pcm_device_table[]. |
| 143 | */ |
Ravi Kumar Alamanda | 263d80c | 2014-08-20 16:24:38 -0700 | [diff] [blame] | 144 | enum { |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 145 | USECASE_INVALID = -1, |
| 146 | /* Playback usecases */ |
| 147 | USECASE_AUDIO_PLAYBACK_DEEP_BUFFER = 0, |
| 148 | USECASE_AUDIO_PLAYBACK_LOW_LATENCY, |
| 149 | USECASE_AUDIO_PLAYBACK_MULTI_CH, |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 150 | USECASE_AUDIO_PLAYBACK_OFFLOAD, |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 151 | USECASE_AUDIO_PLAYBACK_OFFLOAD2, |
| 152 | USECASE_AUDIO_PLAYBACK_OFFLOAD3, |
| 153 | USECASE_AUDIO_PLAYBACK_OFFLOAD4, |
| 154 | USECASE_AUDIO_PLAYBACK_OFFLOAD5, |
| 155 | USECASE_AUDIO_PLAYBACK_OFFLOAD6, |
| 156 | USECASE_AUDIO_PLAYBACK_OFFLOAD7, |
| 157 | USECASE_AUDIO_PLAYBACK_OFFLOAD8, |
| 158 | USECASE_AUDIO_PLAYBACK_OFFLOAD9, |
Ravi Kumar Alamanda | 474de5a | 2015-06-25 20:08:01 -0700 | [diff] [blame] | 159 | USECASE_AUDIO_PLAYBACK_ULL, |
Haynes Mathew George | 1608104 | 2017-05-31 17:16:49 -0700 | [diff] [blame] | 160 | USECASE_AUDIO_PLAYBACK_MMAP, |
Vignesh Kulothungan | a692727 | 2019-02-20 15:17:07 -0800 | [diff] [blame] | 161 | USECASE_AUDIO_PLAYBACK_WITH_HAPTICS, |
Haynes Mathew George | 484e8d2 | 2017-07-31 18:55:17 -0700 | [diff] [blame] | 162 | USECASE_AUDIO_PLAYBACK_HIFI, |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 163 | USECASE_AUDIO_PLAYBACK_TTS, |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 164 | |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 165 | /* FM usecase */ |
| 166 | USECASE_AUDIO_PLAYBACK_FM, |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 167 | |
Vimal Puthanveed | 5b4d3f1 | 2013-11-05 15:57:39 -0800 | [diff] [blame] | 168 | /* HFP Use case*/ |
| 169 | USECASE_AUDIO_HFP_SCO, |
Vimal Puthanveed | 47e6485 | 2013-12-20 13:23:39 -0800 | [diff] [blame] | 170 | USECASE_AUDIO_HFP_SCO_WB, |
Derek Chen | f709279 | 2017-05-23 12:23:53 -0400 | [diff] [blame] | 171 | USECASE_AUDIO_HFP_SCO_DOWNLINK, |
| 172 | USECASE_AUDIO_HFP_SCO_WB_DOWNLINK, |
Vimal Puthanveed | 5b4d3f1 | 2013-11-05 15:57:39 -0800 | [diff] [blame] | 173 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 174 | /* Capture usecases */ |
| 175 | USECASE_AUDIO_RECORD, |
Mingming Yin | e62d784 | 2013-10-25 16:26:03 -0700 | [diff] [blame] | 176 | USECASE_AUDIO_RECORD_COMPRESS, |
Dhananjay Kumar | ee4d200 | 2016-10-25 18:02:58 +0530 | [diff] [blame] | 177 | USECASE_AUDIO_RECORD_COMPRESS2, |
| 178 | USECASE_AUDIO_RECORD_COMPRESS3, |
| 179 | USECASE_AUDIO_RECORD_COMPRESS4, |
Dhananjay Kumar | 376e38b | 2017-09-28 22:26:23 +0530 | [diff] [blame] | 180 | USECASE_AUDIO_RECORD_COMPRESS5, |
| 181 | USECASE_AUDIO_RECORD_COMPRESS6, |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 182 | USECASE_AUDIO_RECORD_LOW_LATENCY, |
Preetam Singh Ranawat | de84f1a | 2013-11-01 14:58:16 -0700 | [diff] [blame] | 183 | USECASE_AUDIO_RECORD_FM_VIRTUAL, |
Haynes Mathew George | 484e8d2 | 2017-07-31 18:55:17 -0700 | [diff] [blame] | 184 | USECASE_AUDIO_RECORD_HIFI, |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 185 | |
Vikram Panduranga | 93f080e | 2017-06-07 18:16:14 -0700 | [diff] [blame] | 186 | USECASE_AUDIO_PLAYBACK_VOIP, |
| 187 | USECASE_AUDIO_RECORD_VOIP, |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 188 | /* Voice usecase */ |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 189 | USECASE_VOICE_CALL, |
Haynes Mathew George | 1608104 | 2017-05-31 17:16:49 -0700 | [diff] [blame] | 190 | USECASE_AUDIO_RECORD_MMAP, |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 191 | |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 192 | /* Voice extension usecases */ |
| 193 | USECASE_VOICE2_CALL, |
| 194 | USECASE_VOLTE_CALL, |
| 195 | USECASE_QCHAT_CALL, |
Vicky Sehrawat | 7e4fc15 | 2014-02-12 17:58:59 -0800 | [diff] [blame] | 196 | USECASE_VOWLAN_CALL, |
Vidyakumar Athota | 0e10935 | 2015-02-12 17:38:22 -0800 | [diff] [blame] | 197 | USECASE_VOICEMMODE1_CALL, |
| 198 | USECASE_VOICEMMODE2_CALL, |
Narsinga Rao Chella | 05573b7 | 2013-11-15 15:21:40 -0800 | [diff] [blame] | 199 | USECASE_COMPRESS_VOIP_CALL, |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 200 | |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 201 | USECASE_INCALL_REC_UPLINK, |
| 202 | USECASE_INCALL_REC_DOWNLINK, |
| 203 | USECASE_INCALL_REC_UPLINK_AND_DOWNLINK, |
Helen Zeng | e56b485 | 2013-12-03 16:54:40 -0800 | [diff] [blame] | 204 | USECASE_INCALL_REC_UPLINK_COMPRESS, |
| 205 | USECASE_INCALL_REC_DOWNLINK_COMPRESS, |
| 206 | USECASE_INCALL_REC_UPLINK_AND_DOWNLINK_COMPRESS, |
Shiv Maliyappanahalli | da10764 | 2013-10-17 11:16:13 -0700 | [diff] [blame] | 207 | |
Shiv Maliyappanahalli | f3b9a42 | 2013-10-22 16:38:08 -0700 | [diff] [blame] | 208 | USECASE_INCALL_MUSIC_UPLINK, |
| 209 | USECASE_INCALL_MUSIC_UPLINK2, |
| 210 | |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 211 | USECASE_AUDIO_SPKR_CALIB_RX, |
| 212 | USECASE_AUDIO_SPKR_CALIB_TX, |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 213 | |
| 214 | USECASE_AUDIO_PLAYBACK_AFE_PROXY, |
| 215 | USECASE_AUDIO_RECORD_AFE_PROXY, |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 216 | USECASE_AUDIO_DSM_FEEDBACK, |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 217 | |
Md Mansoor Ahmed | db1b4f9 | 2018-01-25 18:56:31 +0530 | [diff] [blame] | 218 | USECASE_AUDIO_PLAYBACK_SILENCE, |
Shiv Maliyappanahalli | c065640 | 2016-09-03 14:13:26 -0700 | [diff] [blame] | 219 | |
Surendar Karka | 93cd25a | 2018-08-28 14:21:37 +0530 | [diff] [blame] | 220 | USECASE_AUDIO_TRANSCODE_LOOPBACK_RX, |
| 221 | USECASE_AUDIO_TRANSCODE_LOOPBACK_TX, |
Varun Balaraj | e49253e | 2017-07-06 19:48:56 +0530 | [diff] [blame] | 222 | |
| 223 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM1, |
| 224 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM2, |
| 225 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM3, |
| 226 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM4, |
| 227 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM5, |
| 228 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM6, |
| 229 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM7, |
| 230 | USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM8, |
Garmond Leung | e2433c3 | 2017-09-28 21:51:22 -0700 | [diff] [blame] | 231 | |
| 232 | USECASE_AUDIO_EC_REF_LOOPBACK, |
Aniket Kumar Lata | 7fd86e1 | 2018-02-20 19:26:10 -0800 | [diff] [blame] | 233 | |
| 234 | USECASE_AUDIO_A2DP_ABR_FEEDBACK, |
| 235 | |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 236 | /* car streams usecases */ |
| 237 | USECASE_AUDIO_PLAYBACK_MEDIA, |
| 238 | USECASE_AUDIO_PLAYBACK_SYS_NOTIFICATION, |
| 239 | USECASE_AUDIO_PLAYBACK_NAV_GUIDANCE, |
| 240 | USECASE_AUDIO_PLAYBACK_PHONE, |
Derek Chen | df05eea | 2019-08-01 13:57:49 -0700 | [diff] [blame] | 241 | USECASE_AUDIO_PLAYBACK_REAR_SEAT, |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 242 | |
Rahul Sharma | 9977098 | 2019-03-06 17:05:26 +0530 | [diff] [blame] | 243 | /*Audio FM Tuner usecase*/ |
| 244 | USECASE_AUDIO_FM_TUNER_EXT, |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 245 | AUDIO_USECASE_MAX |
Ravi Kumar Alamanda | 263d80c | 2014-08-20 16:24:38 -0700 | [diff] [blame] | 246 | }; |
| 247 | |
| 248 | const char * const use_case_table[AUDIO_USECASE_MAX]; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 249 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 250 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) |
| 251 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 252 | /* |
| 253 | * tinyAlsa library interprets period size as number of frames |
| 254 | * one frame = channel_count * sizeof (pcm sample) |
| 255 | * so if format = 16-bit PCM and channels = Stereo, frame size = 2 ch * 2 = 4 bytes |
| 256 | * DEEP_BUFFER_OUTPUT_PERIOD_SIZE = 1024 means 1024 * 4 = 4096 bytes |
| 257 | * We should take care of returning proper size when AudioFlinger queries for |
| 258 | * the buffer size of an input/output stream |
| 259 | */ |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 260 | enum { |
| 261 | OFFLOAD_CMD_EXIT, /* exit compress offload thread loop*/ |
| 262 | OFFLOAD_CMD_DRAIN, /* send a full drain request to DSP */ |
| 263 | OFFLOAD_CMD_PARTIAL_DRAIN, /* send a partial drain request to DSP */ |
| 264 | OFFLOAD_CMD_WAIT_FOR_BUFFER, /* wait for buffer released by DSP */ |
Haynes Mathew George | 3a1f1fb | 2016-08-09 15:43:13 -0700 | [diff] [blame] | 265 | OFFLOAD_CMD_ERROR, /* offload playback hit some error */ |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 266 | }; |
| 267 | |
Eric Laurent | 4b08413 | 2018-10-19 17:33:43 -0700 | [diff] [blame] | 268 | /* |
| 269 | * Camera selection indicated via set_parameters "cameraFacing=front|back and |
| 270 | * "rotation=0|90|180|270"" |
| 271 | */ |
| 272 | enum { |
| 273 | CAMERA_FACING_BACK = 0x0, |
| 274 | CAMERA_FACING_FRONT = 0x1, |
| 275 | CAMERA_FACING_MASK = 0x0F, |
| 276 | CAMERA_ROTATION_LANDSCAPE = 0x0, |
| 277 | CAMERA_ROTATION_INVERT_LANDSCAPE = 0x10, |
| 278 | CAMERA_ROTATION_PORTRAIT = 0x20, |
| 279 | CAMERA_ROTATION_MASK = 0xF0, |
| 280 | CAMERA_BACK_LANDSCAPE = (CAMERA_FACING_BACK|CAMERA_ROTATION_LANDSCAPE), |
| 281 | CAMERA_BACK_INVERT_LANDSCAPE = (CAMERA_FACING_BACK|CAMERA_ROTATION_INVERT_LANDSCAPE), |
| 282 | CAMERA_BACK_PORTRAIT = (CAMERA_FACING_BACK|CAMERA_ROTATION_PORTRAIT), |
| 283 | CAMERA_FRONT_LANDSCAPE = (CAMERA_FACING_FRONT|CAMERA_ROTATION_LANDSCAPE), |
| 284 | CAMERA_FRONT_INVERT_LANDSCAPE = (CAMERA_FACING_FRONT|CAMERA_ROTATION_INVERT_LANDSCAPE), |
| 285 | CAMERA_FRONT_PORTRAIT = (CAMERA_FACING_FRONT|CAMERA_ROTATION_PORTRAIT), |
| 286 | |
| 287 | CAMERA_DEFAULT = CAMERA_BACK_LANDSCAPE, |
| 288 | }; |
| 289 | |
| 290 | //FIXME: to be replaced by proper video capture properties API |
| 291 | #define AUDIO_PARAMETER_KEY_CAMERA_FACING "cameraFacing" |
| 292 | #define AUDIO_PARAMETER_VALUE_FRONT "front" |
| 293 | #define AUDIO_PARAMETER_VALUE_BACK "back" |
| 294 | |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 295 | enum { |
| 296 | OFFLOAD_STATE_IDLE, |
| 297 | OFFLOAD_STATE_PLAYING, |
| 298 | OFFLOAD_STATE_PAUSED, |
| 299 | }; |
| 300 | |
| 301 | struct offload_cmd { |
| 302 | struct listnode node; |
| 303 | int cmd; |
| 304 | int data[]; |
| 305 | }; |
| 306 | |
Manish Dewangan | 69426c8 | 2017-01-30 17:35:36 +0530 | [diff] [blame] | 307 | typedef enum render_mode { |
| 308 | RENDER_MODE_AUDIO_NO_TIMESTAMP = 0, |
| 309 | RENDER_MODE_AUDIO_MASTER, |
| 310 | RENDER_MODE_AUDIO_STC_MASTER, |
| 311 | } render_mode_t; |
| 312 | |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 313 | /* This defines the physical car streams supported in audio HAL, |
| 314 | * limited by the available frontend PCM driver. |
Derek Chen | df05eea | 2019-08-01 13:57:49 -0700 | [diff] [blame] | 315 | * Max number of physical streams supported is currently 16 and is |
| 316 | * represented by stream bit flag. |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 317 | */ |
Derek Chen | df05eea | 2019-08-01 13:57:49 -0700 | [diff] [blame] | 318 | #define MAX_CAR_AUDIO_STREAMS 16 |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 319 | enum { |
| 320 | CAR_AUDIO_STREAM_MEDIA = 0x1, |
| 321 | CAR_AUDIO_STREAM_SYS_NOTIFICATION = 0x2, |
| 322 | CAR_AUDIO_STREAM_NAV_GUIDANCE = 0x4, |
| 323 | CAR_AUDIO_STREAM_PHONE = 0x8, |
Derek Chen | df05eea | 2019-08-01 13:57:49 -0700 | [diff] [blame] | 324 | CAR_AUDIO_STREAM_REAR_SEAT = 0x100, |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 325 | }; |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 326 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 327 | struct stream_app_type_cfg { |
| 328 | int sample_rate; |
Ravi Kumar Alamanda | bdf1416 | 2014-09-05 16:14:17 -0700 | [diff] [blame] | 329 | uint32_t bit_width; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 330 | int app_type; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 331 | int gain[2]; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 332 | }; |
| 333 | |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 334 | struct stream_config { |
| 335 | unsigned int sample_rate; |
| 336 | audio_channel_mask_t channel_mask; |
| 337 | audio_format_t format; |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 338 | struct listnode device_list; |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 339 | unsigned int bit_width; |
| 340 | }; |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 341 | |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 342 | struct stream_inout { |
| 343 | pthread_mutex_t lock; /* see note below on mutex acquisition order */ |
| 344 | pthread_mutex_t pre_lock; /* acquire before lock to avoid DOS by playback thread */ |
| 345 | pthread_cond_t cond; |
| 346 | struct stream_config in_config; |
| 347 | struct stream_config out_config; |
Siddartha Shaik | 343abc6 | 2017-08-08 11:15:25 +0530 | [diff] [blame] | 348 | struct stream_app_type_cfg out_app_type_cfg; |
| 349 | char profile[MAX_STREAM_PROFILE_STR_LEN]; |
Vidyakumar Athota | 6d65588 | 2017-05-22 18:26:24 -0700 | [diff] [blame] | 350 | struct audio_device *dev; |
| 351 | void *adsp_hdlr_stream_handle; |
| 352 | void *ip_hdlr_handle; |
| 353 | stream_callback_t client_callback; |
| 354 | void *client_cookie; |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 355 | }; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 356 | struct stream_out { |
| 357 | struct audio_stream_out stream; |
Eric Laurent | 150dbfe | 2013-02-27 14:31:02 -0800 | [diff] [blame] | 358 | pthread_mutex_t lock; /* see note below on mutex acquisition order */ |
Shiv Maliyappanahalli | 736d4ce | 2015-09-28 15:23:06 -0700 | [diff] [blame] | 359 | pthread_mutex_t pre_lock; /* acquire before lock to avoid DOS by playback thread */ |
Chaithanya Krishna Bacharaju | 69d2e4c | 2017-05-26 18:22:46 +0530 | [diff] [blame] | 360 | pthread_mutex_t compr_mute_lock; /* acquire before setting compress volume */ |
Zhou Song | 48453a0 | 2018-01-10 17:50:59 +0800 | [diff] [blame] | 361 | pthread_mutex_t position_query_lock; /* acquire before updating/getting position of track offload*/ |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 362 | pthread_cond_t cond; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 363 | struct pcm_config config; |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 364 | struct compr_config compr_config; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 365 | struct pcm *pcm; |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 366 | struct compress *compr; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 367 | int standby; |
| 368 | int pcm_device_id; |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 369 | unsigned int sample_rate; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 370 | audio_channel_mask_t channel_mask; |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 371 | audio_format_t format; |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 372 | struct listnode device_list; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 373 | audio_output_flags_t flags; |
Dhananjay Kumar | 4d91c1a | 2016-12-01 23:27:29 +0530 | [diff] [blame] | 374 | char profile[MAX_STREAM_PROFILE_STR_LEN]; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 375 | audio_usecase_t usecase; |
| 376 | /* Array of supported channel mask configurations. +1 so that the last entry is always 0 */ |
| 377 | audio_channel_mask_t supported_channel_masks[MAX_SUPPORTED_CHANNEL_MASKS + 1]; |
Pradnya Chaphekar | 80a8cfb | 2014-10-20 16:17:01 -0700 | [diff] [blame] | 378 | audio_format_t supported_formats[MAX_SUPPORTED_FORMATS+1]; |
Mingming Yin | 3a941d4 | 2016-02-17 18:08:05 -0800 | [diff] [blame] | 379 | uint32_t supported_sample_rates[MAX_SUPPORTED_SAMPLE_RATES+1]; |
Eric Laurent | a9024de | 2013-04-04 09:19:12 -0700 | [diff] [blame] | 380 | bool muted; |
Glenn Kasten | 2ccd7ba | 2013-09-10 09:04:31 -0700 | [diff] [blame] | 381 | uint64_t written; /* total frames written, not cleared when entering standby */ |
Phil Burk | fe17efd | 2019-03-25 10:23:35 -0700 | [diff] [blame] | 382 | int64_t mmap_time_offset_nanos; /* fudge factor to correct inaccuracies in DSP */ |
Phil Burk | d898ba6 | 2019-06-20 12:49:01 -0700 | [diff] [blame] | 383 | int mmap_shared_memory_fd; /* file descriptor associated with MMAP NOIRQ shared memory */ |
Eric Laurent | c4aef75 | 2013-09-12 17:45:53 -0700 | [diff] [blame] | 384 | audio_io_handle_t handle; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 385 | struct stream_app_type_cfg app_type_cfg; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 386 | |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 387 | int non_blocking; |
| 388 | int playback_started; |
| 389 | int offload_state; |
| 390 | pthread_cond_t offload_cond; |
| 391 | pthread_t offload_thread; |
| 392 | struct listnode offload_cmd_list; |
| 393 | bool offload_thread_blocked; |
Zhou Song | 48453a0 | 2018-01-10 17:50:59 +0800 | [diff] [blame] | 394 | struct timespec writeAt; |
Ravi Kumar Alamanda | 4e02e55 | 2013-07-17 15:22:04 -0700 | [diff] [blame] | 395 | |
Ben Romberger | d771a7c | 2017-02-22 18:05:17 -0800 | [diff] [blame] | 396 | void *adsp_hdlr_stream_handle; |
Naresh Tanniru | 8581945 | 2017-05-04 18:55:45 -0700 | [diff] [blame] | 397 | void *ip_hdlr_handle; |
Ben Romberger | d771a7c | 2017-02-22 18:05:17 -0800 | [diff] [blame] | 398 | |
| 399 | stream_callback_t client_callback; |
| 400 | void *client_cookie; |
Haynes Mathew George | 352f27b | 2013-07-26 00:00:15 -0700 | [diff] [blame] | 401 | struct compr_gapless_mdata gapless_mdata; |
| 402 | int send_new_metadata; |
Chaithanya Krishna Bacharaju | a70cb6a | 2015-07-24 14:15:05 +0530 | [diff] [blame] | 403 | bool send_next_track_params; |
| 404 | bool is_compr_metadata_avail; |
Mingming Yin | 3ee55c6 | 2014-08-04 14:23:35 -0700 | [diff] [blame] | 405 | unsigned int bit_width; |
Ashish Jain | 83a6cc2 | 2016-06-28 14:34:17 +0530 | [diff] [blame] | 406 | uint32_t hal_fragment_size; |
| 407 | audio_format_t hal_ip_format; |
| 408 | audio_format_t hal_op_format; |
| 409 | void *convert_buffer; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 410 | |
Haynes Mathew George | 5beddd4 | 2016-06-27 18:33:40 -0700 | [diff] [blame] | 411 | bool realtime; |
| 412 | int af_period_multiplier; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 413 | struct audio_device *dev; |
Dhananjay Kumar | e6293dd | 2017-05-25 17:25:30 +0530 | [diff] [blame] | 414 | card_status_t card_status; |
Manish Dewangan | 69426c8 | 2017-01-30 17:35:36 +0530 | [diff] [blame] | 415 | |
Lakshman Chaluvaraju | 22ba9f1 | 2016-09-12 11:42:10 +0530 | [diff] [blame] | 416 | void* qaf_stream_handle; |
Sidipotu Ashok | d2f10ba | 2019-05-06 15:41:56 +0530 | [diff] [blame] | 417 | void* qap_stream_handle; |
Lakshman Chaluvaraju | 22ba9f1 | 2016-09-12 11:42:10 +0530 | [diff] [blame] | 418 | pthread_cond_t qaf_offload_cond; |
| 419 | pthread_t qaf_offload_thread; |
| 420 | struct listnode qaf_offload_cmd_list; |
Lakshman Chaluvaraju | b4ec870 | 2016-11-04 19:21:12 +0530 | [diff] [blame] | 421 | uint32_t platform_latency; |
Manish Dewangan | 69426c8 | 2017-01-30 17:35:36 +0530 | [diff] [blame] | 422 | render_mode_t render_mode; |
Naresh Tanniru | 6160c71 | 2017-04-17 15:43:48 +0530 | [diff] [blame] | 423 | bool drift_correction_enabled; |
Manish Dewangan | 69426c8 | 2017-01-30 17:35:36 +0530 | [diff] [blame] | 424 | |
Naresh Tanniru | 29bce4e | 2017-04-27 17:54:30 +0530 | [diff] [blame] | 425 | struct audio_out_channel_map_param channel_map_param; /* input channel map */ |
Lakshman Chaluvaraju | b4ec870 | 2016-11-04 19:21:12 +0530 | [diff] [blame] | 426 | audio_offload_info_t info; |
Ashish Jain | 1b9b30c | 2017-05-18 20:57:40 +0530 | [diff] [blame] | 427 | int started; |
Naresh Tanniru | ee3499a | 2017-01-05 14:05:35 +0530 | [diff] [blame] | 428 | qahwi_stream_out_t qahwi_out; |
Manish Dewangan | 37864bc | 2017-06-09 12:28:37 +0530 | [diff] [blame] | 429 | |
| 430 | bool is_iec61937_info_available; |
Chaithanya Krishna Bacharaju | 69d2e4c | 2017-05-26 18:22:46 +0530 | [diff] [blame] | 431 | bool a2dp_compress_mute; |
| 432 | float volume_l; |
| 433 | float volume_r; |
Ramu Gottipati | 97bdcfb | 2018-04-13 17:58:24 +0530 | [diff] [blame] | 434 | bool apply_volume; |
Alexy Joseph | 9898883 | 2017-01-13 14:56:59 -0800 | [diff] [blame] | 435 | |
| 436 | char pm_qos_mixer_path[MAX_MIXER_PATH_LEN]; |
Aniket Kumar Lata | 932f487 | 2017-11-06 18:29:44 -0800 | [diff] [blame] | 437 | int hal_output_suspend_supported; |
| 438 | int dynamic_pm_qos_config_supported; |
Manish Dewangan | 671a420 | 2017-08-18 17:30:46 +0530 | [diff] [blame] | 439 | bool stream_config_changed; |
Varun Balaraj | e49253e | 2017-07-06 19:48:56 +0530 | [diff] [blame] | 440 | mix_matrix_params_t pan_scale_params; |
| 441 | mix_matrix_params_t downmix_params; |
Surendar Karka | f51b584 | 2018-04-26 11:28:38 +0530 | [diff] [blame] | 442 | bool set_dual_mono; |
Manisha Agarwal | 7b3e377 | 2019-02-20 14:33:45 +0530 | [diff] [blame] | 443 | bool prev_card_status_offline; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 444 | |
| 445 | error_log_t *error_log; |
Dhanalakshmi Siddani | 20628c8 | 2019-01-27 17:31:09 +0530 | [diff] [blame] | 446 | bool pspd_coeff_sent; |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 447 | |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 448 | int car_audio_stream; |
Vignesh Kulothungan | 39fc6a2 | 2019-08-01 00:55:59 -0700 | [diff] [blame] | 449 | |
| 450 | union { |
| 451 | char *addr; |
| 452 | struct { |
| 453 | int controller; |
| 454 | int stream; |
| 455 | } cs; |
| 456 | } extconn; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 457 | }; |
| 458 | |
| 459 | struct stream_in { |
| 460 | struct audio_stream_in stream; |
Eric Laurent | 150dbfe | 2013-02-27 14:31:02 -0800 | [diff] [blame] | 461 | pthread_mutex_t lock; /* see note below on mutex acquisition order */ |
Shiv Maliyappanahalli | 736d4ce | 2015-09-28 15:23:06 -0700 | [diff] [blame] | 462 | pthread_mutex_t pre_lock; /* acquire before lock to avoid DOS by playback thread */ |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 463 | struct pcm_config config; |
| 464 | struct pcm *pcm; |
| 465 | int standby; |
| 466 | int source; |
| 467 | int pcm_device_id; |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 468 | struct listnode device_list; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 469 | audio_channel_mask_t channel_mask; |
| 470 | audio_usecase_t usecase; |
Ravi Kumar Alamanda | f70ffb4 | 2013-04-16 15:55:53 -0700 | [diff] [blame] | 471 | bool enable_aec; |
Ravi Kumar Alamanda | 198185e | 2013-11-07 15:42:19 -0800 | [diff] [blame] | 472 | bool enable_ns; |
Narsinga Rao Chella | 05573b7 | 2013-11-15 15:21:40 -0800 | [diff] [blame] | 473 | audio_format_t format; |
Carter Hsu | 2e429db | 2019-05-14 18:50:52 +0800 | [diff] [blame] | 474 | bool enable_ec_port; |
| 475 | bool ec_opened; |
| 476 | struct listnode aec_list; |
| 477 | struct listnode ns_list; |
Phil Burk | e0a86d1 | 2019-02-16 22:28:11 -0800 | [diff] [blame] | 478 | int64_t mmap_time_offset_nanos; /* fudge factor to correct inaccuracies in DSP */ |
Phil Burk | d898ba6 | 2019-06-20 12:49:01 -0700 | [diff] [blame] | 479 | int mmap_shared_memory_fd; /* file descriptor associated with MMAP NOIRQ shared memory */ |
Ravi Kumar Alamanda | 8fa6b19 | 2014-09-09 16:06:42 -0700 | [diff] [blame] | 480 | audio_io_handle_t capture_handle; |
Ravi Kumar Alamanda | 8a0f977 | 2015-06-15 10:35:19 -0700 | [diff] [blame] | 481 | audio_input_flags_t flags; |
Dhananjay Kumar | 4d91c1a | 2016-12-01 23:27:29 +0530 | [diff] [blame] | 482 | char profile[MAX_STREAM_PROFILE_STR_LEN]; |
Ravi Kumar Alamanda | 8fa6b19 | 2014-09-09 16:06:42 -0700 | [diff] [blame] | 483 | bool is_st_session; |
Bharath Ramachandramurthy | 837535b | 2015-02-05 14:27:59 -0800 | [diff] [blame] | 484 | bool is_st_session_active; |
Dhananjay Kumar | 9983c37 | 2016-12-09 22:00:40 +0530 | [diff] [blame] | 485 | unsigned int sample_rate; |
| 486 | unsigned int bit_width; |
Haynes Mathew George | 5beddd4 | 2016-06-27 18:33:40 -0700 | [diff] [blame] | 487 | bool realtime; |
| 488 | int af_period_multiplier; |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 489 | struct stream_app_type_cfg app_type_cfg; |
Dhananjay Kumar | ee4d200 | 2016-10-25 18:02:58 +0530 | [diff] [blame] | 490 | void *cin_extn; |
| 491 | qahwi_stream_in_t qahwi_in; |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 492 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 493 | struct audio_device *dev; |
Dhananjay Kumar | e6293dd | 2017-05-25 17:25:30 +0530 | [diff] [blame] | 494 | card_status_t card_status; |
Haynes Mathew George | 1608104 | 2017-05-31 17:16:49 -0700 | [diff] [blame] | 495 | int capture_started; |
justinweng | 20fb6d8 | 2019-02-21 18:49:00 -0700 | [diff] [blame] | 496 | float zoom; |
| 497 | audio_microphone_direction_t direction; |
Haynes Mathew George | 484e8d2 | 2017-07-31 18:55:17 -0700 | [diff] [blame] | 498 | |
Deeraj Soman | 30cc7ae | 2019-03-18 16:26:55 +0530 | [diff] [blame] | 499 | volatile int32_t capture_stopped; |
| 500 | |
Haynes Mathew George | 484e8d2 | 2017-07-31 18:55:17 -0700 | [diff] [blame] | 501 | /* Array of supported channel mask configurations. +1 so that the last entry is always 0 */ |
| 502 | audio_channel_mask_t supported_channel_masks[MAX_SUPPORTED_CHANNEL_MASKS + 1]; |
| 503 | audio_format_t supported_formats[MAX_SUPPORTED_FORMATS + 1]; |
| 504 | uint32_t supported_sample_rates[MAX_SUPPORTED_SAMPLE_RATES + 1]; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 505 | |
| 506 | int64_t frames_read; /* total frames read, not cleared when entering standby */ |
| 507 | int64_t frames_muted; /* total frames muted, not cleared when entering standby */ |
| 508 | |
| 509 | error_log_t *error_log; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 510 | }; |
| 511 | |
| 512 | typedef enum { |
| 513 | PCM_PLAYBACK, |
| 514 | PCM_CAPTURE, |
Narsinga Rao Chella | 05573b7 | 2013-11-15 15:21:40 -0800 | [diff] [blame] | 515 | VOICE_CALL, |
Vimal Puthanveed | 5b4d3f1 | 2013-11-05 15:57:39 -0800 | [diff] [blame] | 516 | VOIP_CALL, |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 517 | PCM_HFP_CALL, |
Surendar Karka | 93cd25a | 2018-08-28 14:21:37 +0530 | [diff] [blame] | 518 | TRANSCODE_LOOPBACK_RX, |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 519 | TRANSCODE_LOOPBACK_TX, |
Rahul Sharma | 9977098 | 2019-03-06 17:05:26 +0530 | [diff] [blame] | 520 | PCM_PASSTHROUGH, |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 521 | USECASE_TYPE_MAX |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 522 | } usecase_type_t; |
| 523 | |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 524 | typedef enum { |
| 525 | PATCH_NONE = -1, |
| 526 | PATCH_PLAYBACK, |
| 527 | PATCH_CAPTURE, |
| 528 | PATCH_DEVICE_LOOPBACK |
| 529 | } patch_type_t; |
| 530 | |
| 531 | struct audio_patch_info { |
| 532 | struct audio_patch *patch; |
| 533 | patch_type_t patch_type; |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 534 | }; |
| 535 | |
| 536 | struct audio_stream_info { |
| 537 | struct audio_stream *stream; |
| 538 | audio_patch_handle_t patch_handle; |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 539 | }; |
| 540 | |
Ravi Kumar Alamanda | 096c87f | 2013-02-28 20:54:57 -0800 | [diff] [blame] | 541 | union stream_ptr { |
| 542 | struct stream_in *in; |
| 543 | struct stream_out *out; |
Siddartha Shaik | 31b530e | 2017-05-19 15:26:33 +0530 | [diff] [blame] | 544 | struct stream_inout *inout; |
Ravi Kumar Alamanda | 096c87f | 2013-02-28 20:54:57 -0800 | [diff] [blame] | 545 | }; |
| 546 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 547 | struct audio_usecase { |
Ravi Kumar Alamanda | 3b1816c | 2013-02-27 23:01:21 -0800 | [diff] [blame] | 548 | struct listnode list; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 549 | audio_usecase_t id; |
| 550 | usecase_type_t type; |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 551 | struct listnode device_list; |
Ravi Kumar Alamanda | 71c84b7 | 2013-03-10 23:50:28 -0700 | [diff] [blame] | 552 | snd_device_t out_snd_device; |
| 553 | snd_device_t in_snd_device; |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 554 | struct stream_app_type_cfg out_app_type_cfg; |
| 555 | struct stream_app_type_cfg in_app_type_cfg; |
Ravi Kumar Alamanda | 096c87f | 2013-02-28 20:54:57 -0800 | [diff] [blame] | 556 | union stream_ptr stream; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 557 | }; |
| 558 | |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 559 | struct stream_format { |
| 560 | struct listnode list; |
| 561 | audio_format_t format; |
| 562 | }; |
| 563 | |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 564 | struct stream_sample_rate { |
| 565 | struct listnode list; |
| 566 | uint32_t sample_rate; |
| 567 | }; |
| 568 | |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 569 | typedef union { |
| 570 | audio_output_flags_t out_flags; |
| 571 | audio_input_flags_t in_flags; |
| 572 | } audio_io_flags_t; |
| 573 | |
| 574 | struct streams_io_cfg { |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 575 | struct listnode list; |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 576 | audio_io_flags_t flags; |
Dhananjay Kumar | 4d91c1a | 2016-12-01 23:27:29 +0530 | [diff] [blame] | 577 | char profile[MAX_STREAM_PROFILE_STR_LEN]; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 578 | struct listnode format_list; |
Amit Shekhar | 6f461b1 | 2014-08-01 14:52:58 -0700 | [diff] [blame] | 579 | struct listnode sample_rate_list; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 580 | struct stream_app_type_cfg app_type_cfg; |
| 581 | }; |
| 582 | |
Derek Chen | f939fb7 | 2018-11-13 13:34:41 -0800 | [diff] [blame] | 583 | typedef struct streams_input_ctxt { |
| 584 | struct listnode list; |
| 585 | struct stream_in *input; |
| 586 | } streams_input_ctxt_t; |
| 587 | |
| 588 | typedef struct streams_output_ctxt { |
| 589 | struct listnode list; |
| 590 | struct stream_out *output; |
| 591 | } streams_output_ctxt_t; |
| 592 | |
Ravi Kumar Alamanda | 8a0f977 | 2015-06-15 10:35:19 -0700 | [diff] [blame] | 593 | typedef void* (*adm_init_t)(); |
| 594 | typedef void (*adm_deinit_t)(void *); |
| 595 | typedef void (*adm_register_output_stream_t)(void *, audio_io_handle_t, audio_output_flags_t); |
| 596 | typedef void (*adm_register_input_stream_t)(void *, audio_io_handle_t, audio_input_flags_t); |
| 597 | typedef void (*adm_deregister_stream_t)(void *, audio_io_handle_t); |
| 598 | typedef void (*adm_request_focus_t)(void *, audio_io_handle_t); |
| 599 | typedef void (*adm_abandon_focus_t)(void *, audio_io_handle_t); |
Haynes Mathew George | 5beddd4 | 2016-06-27 18:33:40 -0700 | [diff] [blame] | 600 | typedef void (*adm_set_config_t)(void *, audio_io_handle_t, |
| 601 | struct pcm *, |
| 602 | struct pcm_config *); |
| 603 | typedef void (*adm_request_focus_v2_t)(void *, audio_io_handle_t, long); |
| 604 | typedef bool (*adm_is_noirq_avail_t)(void *, int, int, int); |
| 605 | typedef void (*adm_on_routing_change_t)(void *, audio_io_handle_t); |
Aniket Kumar Lata | 60586a9 | 2019-05-22 22:18:55 -0700 | [diff] [blame] | 606 | typedef int (*adm_request_focus_v2_1_t)(void *, audio_io_handle_t, long); |
Ravi Kumar Alamanda | 8a0f977 | 2015-06-15 10:35:19 -0700 | [diff] [blame] | 607 | |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 608 | struct audio_device { |
| 609 | struct audio_hw_device device; |
Eric Laurent | 4b08413 | 2018-10-19 17:33:43 -0700 | [diff] [blame] | 610 | |
Eric Laurent | 150dbfe | 2013-02-27 14:31:02 -0800 | [diff] [blame] | 611 | pthread_mutex_t lock; /* see note below on mutex acquisition order */ |
Weiyin Jiang | fa65d3e | 2019-03-05 23:39:45 +0800 | [diff] [blame] | 612 | pthread_mutex_t cal_lock; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 613 | struct mixer *mixer; |
| 614 | audio_mode_t mode; |
Jaideep Sharma | 477917f | 2020-03-13 18:13:33 +0530 | [diff] [blame] | 615 | audio_mode_t prev_mode; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 616 | audio_devices_t out_device; |
Ravi Kumar Alamanda | 096c87f | 2013-02-28 20:54:57 -0800 | [diff] [blame] | 617 | struct stream_out *primary_output; |
Ravi Kumar Alamanda | 060bc5a | 2014-09-05 13:51:35 -0700 | [diff] [blame] | 618 | struct stream_out *voice_tx_output; |
| 619 | struct stream_out *current_call_output; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 620 | bool bluetooth_nrec; |
| 621 | bool screen_off; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 622 | int *snd_dev_ref_cnt; |
Ravi Kumar Alamanda | 3b1816c | 2013-02-27 23:01:21 -0800 | [diff] [blame] | 623 | struct listnode usecase_list; |
Subhash Chandra Bose Naripeddy | 19dc03b | 2014-03-10 14:43:05 -0700 | [diff] [blame] | 624 | struct listnode streams_output_cfg_list; |
Dhananjay Kumar | d6d3215 | 2016-10-13 16:11:03 +0530 | [diff] [blame] | 625 | struct listnode streams_input_cfg_list; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 626 | struct audio_route *audio_route; |
| 627 | int acdb_settings; |
Jean-Michel Trivi | c56336b | 2013-05-24 16:55:17 -0700 | [diff] [blame] | 628 | bool speaker_lr_swap; |
Shiv Maliyappanahalli | 34b585f | 2013-10-01 15:49:05 -0700 | [diff] [blame] | 629 | struct voice voice; |
Eric Laurent | 07eeafd | 2013-10-06 12:52:49 -0700 | [diff] [blame] | 630 | unsigned int cur_hdmi_channels; |
Mingming Yin | 2185465 | 2016-04-13 11:54:02 -0700 | [diff] [blame] | 631 | audio_format_t cur_hdmi_format; |
| 632 | unsigned int cur_hdmi_sample_rate; |
| 633 | unsigned int cur_hdmi_bit_width; |
Krishnankutty Kolathappilly | 0b2de1c | 2014-02-14 14:45:49 -0800 | [diff] [blame] | 634 | unsigned int cur_wfd_channels; |
Mingming Yin | 514a8bc | 2014-07-29 15:22:21 -0700 | [diff] [blame] | 635 | bool bt_wb_speech_enabled; |
Zhou Song | 12c2950 | 2019-03-16 10:37:18 +0800 | [diff] [blame] | 636 | unsigned int swb_speech_mode; |
vivek mehta | 344576a | 2016-04-12 18:56:03 -0700 | [diff] [blame] | 637 | bool allow_afe_proxy_usage; |
Haynes Mathew George | 01156f9 | 2018-04-13 15:29:54 -0700 | [diff] [blame] | 638 | bool is_charging; // from battery listener |
Vignesh Kulothungan | 7d37431 | 2018-02-21 17:12:00 -0800 | [diff] [blame] | 639 | bool mic_break_enabled; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 640 | bool enable_hfp; |
| 641 | bool mic_muted; |
| 642 | bool enable_voicerx; |
Quinn Male | f605036 | 2019-01-30 15:55:40 -0800 | [diff] [blame] | 643 | unsigned int num_va_sessions; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 644 | |
Apoorv Raghuvanshi | 84fa2fe | 2013-12-04 11:57:47 -0800 | [diff] [blame] | 645 | int snd_card; |
Dhananjay Kumar | e6293dd | 2017-05-25 17:25:30 +0530 | [diff] [blame] | 646 | card_status_t card_status; |
Apoorv Raghuvanshi | 2149216 | 2015-02-19 18:19:36 -0800 | [diff] [blame] | 647 | unsigned int cur_codec_backend_samplerate; |
| 648 | unsigned int cur_codec_backend_bit_width; |
Ashish Jain | 81eb2a8 | 2015-05-13 10:52:34 +0530 | [diff] [blame] | 649 | bool is_channel_status_set; |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 650 | void *platform; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 651 | void *extspk; |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 652 | unsigned int offload_usecases_state; |
Samyak Jain | 15fda66 | 2018-12-18 16:40:52 +0530 | [diff] [blame] | 653 | unsigned int pcm_record_uc_state; |
Eric Laurent | c4aef75 | 2013-09-12 17:45:53 -0700 | [diff] [blame] | 654 | void *visualizer_lib; |
Subhash Chandra Bose Naripeddy | 1d08916 | 2013-11-13 13:31:50 -0800 | [diff] [blame] | 655 | int (*visualizer_start_output)(audio_io_handle_t, int); |
| 656 | int (*visualizer_stop_output)(audio_io_handle_t, int); |
| 657 | void *offload_effects_lib; |
Ashish Jain | 5106d36 | 2016-05-11 19:23:33 +0530 | [diff] [blame] | 658 | int (*offload_effects_start_output)(audio_io_handle_t, int, struct mixer *); |
Subhash Chandra Bose Naripeddy | 1d08916 | 2013-11-13 13:31:50 -0800 | [diff] [blame] | 659 | int (*offload_effects_stop_output)(audio_io_handle_t, int); |
Naresh Tanniru | 4c63039 | 2014-05-12 01:05:52 +0530 | [diff] [blame] | 660 | |
Jitendra Naruka | 1b6513f | 2014-11-22 19:34:13 -0800 | [diff] [blame] | 661 | int (*offload_effects_set_hpx_state)(bool); |
Ravi Kumar Alamanda | 8a0f977 | 2015-06-15 10:35:19 -0700 | [diff] [blame] | 662 | |
| 663 | void *adm_data; |
| 664 | void *adm_lib; |
| 665 | adm_init_t adm_init; |
| 666 | adm_deinit_t adm_deinit; |
| 667 | adm_register_input_stream_t adm_register_input_stream; |
| 668 | adm_register_output_stream_t adm_register_output_stream; |
| 669 | adm_deregister_stream_t adm_deregister_stream; |
| 670 | adm_request_focus_t adm_request_focus; |
| 671 | adm_abandon_focus_t adm_abandon_focus; |
Haynes Mathew George | 5beddd4 | 2016-06-27 18:33:40 -0700 | [diff] [blame] | 672 | adm_set_config_t adm_set_config; |
| 673 | adm_request_focus_v2_t adm_request_focus_v2; |
| 674 | adm_is_noirq_avail_t adm_is_noirq_avail; |
| 675 | adm_on_routing_change_t adm_on_routing_change; |
Aniket Kumar Lata | 60586a9 | 2019-05-22 22:18:55 -0700 | [diff] [blame] | 676 | adm_request_focus_v2_1_t adm_request_focus_v2_1; |
Dhananjay Kumar | d68883d | 2015-09-04 13:39:26 +0530 | [diff] [blame] | 677 | |
| 678 | void (*offload_effects_get_parameters)(struct str_parms *, |
| 679 | struct str_parms *); |
| 680 | void (*offload_effects_set_parameters)(struct str_parms *); |
vivek mehta | 446c396 | 2015-09-14 10:57:35 -0700 | [diff] [blame] | 681 | |
| 682 | bool multi_offload_enable; |
Sudheer Papothi | fa9d228 | 2015-09-17 01:53:25 +0530 | [diff] [blame] | 683 | int perf_lock_handle; |
| 684 | int perf_lock_opts[MAX_PERF_LOCK_OPTS]; |
| 685 | int perf_lock_opts_size; |
Sidipotu Ashok | e6f78cb | 2015-11-05 14:42:20 +0530 | [diff] [blame] | 686 | bool native_playback_enabled; |
Preetam Singh Ranawat | b0c0dd7 | 2016-08-18 00:32:06 +0530 | [diff] [blame] | 687 | bool asrc_mode_enabled; |
Dhananjay Kumar | ee4d200 | 2016-10-25 18:02:58 +0530 | [diff] [blame] | 688 | qahwi_device_t qahwi_dev; |
Alexy Joseph | 5e4ccbc | 2017-02-21 14:20:12 -0800 | [diff] [blame] | 689 | bool vr_audio_mode_enabled; |
Xiaojun Sang | 785b5da | 2017-08-03 15:52:29 +0800 | [diff] [blame] | 690 | uint32_t dsp_bit_width_enforce_mode; |
Ashish Jain | 1b9b30c | 2017-05-18 20:57:40 +0530 | [diff] [blame] | 691 | bool bt_sco_on; |
Satish Babu Patakokila | c3c5d43 | 2017-07-04 22:48:59 +0530 | [diff] [blame] | 692 | struct audio_device_config_param *device_cfg_params; |
Varun Balaraj | e49253e | 2017-07-06 19:48:56 +0530 | [diff] [blame] | 693 | unsigned int interactive_usecase_state; |
Aalique Grahame | 3765986 | 2017-12-03 22:34:26 -0800 | [diff] [blame] | 694 | bool dp_allowed_for_voice; |
Derek Chen | d253007 | 2014-11-24 12:39:14 -0800 | [diff] [blame] | 695 | void *ext_hw_plugin; |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 696 | |
Vignesh Kulothungan | a692727 | 2019-02-20 15:17:07 -0800 | [diff] [blame] | 697 | struct pcm_config haptics_config; |
| 698 | struct pcm *haptic_pcm; |
| 699 | int haptic_pcm_device_id; |
| 700 | uint8_t *haptic_buffer; |
| 701 | size_t haptic_buffer_size; |
| 702 | |
Aalique Grahame | 22e4910 | 2018-12-18 14:23:57 -0800 | [diff] [blame] | 703 | /* logging */ |
| 704 | snd_device_t last_logged_snd_device[AUDIO_USECASE_MAX][2]; /* [out, in] */ |
| 705 | |
| 706 | /* The pcm_params use_case_table is loaded by adev_verify_devices() upon |
| 707 | * calling adev_open(). |
| 708 | * |
| 709 | * If an entry is not NULL, it can be used to determine if extended precision |
| 710 | * or other capabilities are present for the device corresponding to that usecase. |
| 711 | */ |
| 712 | struct pcm_params *use_case_table[AUDIO_USECASE_MAX]; |
Derek Chen | f939fb7 | 2018-11-13 13:34:41 -0800 | [diff] [blame] | 713 | struct listnode active_inputs_list; |
| 714 | struct listnode active_outputs_list; |
Dhanalakshmi Siddani | 20628c8 | 2019-01-27 17:31:09 +0530 | [diff] [blame] | 715 | bool use_old_pspd_mix_ctrl; |
Eric Laurent | 4b08413 | 2018-10-19 17:33:43 -0700 | [diff] [blame] | 716 | int camera_orientation; /* CAMERA_BACK_LANDSCAPE ... CAMERA_FRONT_PORTRAIT */ |
Aniket Kumar Lata | 60586a9 | 2019-05-22 22:18:55 -0700 | [diff] [blame] | 717 | bool adm_routing_changed; |
Rahul Sharma | 9977098 | 2019-03-06 17:05:26 +0530 | [diff] [blame] | 718 | struct listnode audio_patch_record_list; |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 719 | Hashmap *patch_map; |
| 720 | Hashmap *io_streams_map; |
Rahul Sharma | 9977098 | 2019-03-06 17:05:26 +0530 | [diff] [blame] | 721 | }; |
| 722 | |
| 723 | struct audio_patch_record { |
| 724 | struct listnode list; |
| 725 | audio_patch_handle_t handle; |
| 726 | audio_usecase_t usecase; |
Derek Chen | 6c0f3de | 2020-02-26 00:30:42 -0800 | [diff] [blame] | 727 | struct audio_patch patch; |
Ravi Kumar Alamanda | 2dfba2b | 2013-01-17 16:50:22 -0800 | [diff] [blame] | 728 | }; |
| 729 | |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 730 | int select_devices(struct audio_device *adev, |
| 731 | audio_usecase_t uc_id); |
| 732 | int disable_audio_route(struct audio_device *adev, |
Haynes Mathew George | 1376ca6 | 2014-04-24 11:55:48 -0700 | [diff] [blame] | 733 | struct audio_usecase *usecase); |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 734 | int disable_snd_device(struct audio_device *adev, |
Haynes Mathew George | 1376ca6 | 2014-04-24 11:55:48 -0700 | [diff] [blame] | 735 | snd_device_t snd_device); |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 736 | int enable_snd_device(struct audio_device *adev, |
Haynes Mathew George | 1376ca6 | 2014-04-24 11:55:48 -0700 | [diff] [blame] | 737 | snd_device_t snd_device); |
| 738 | |
Gopikrishnaiah Anandan | f538cef | 2013-10-28 14:06:03 -0700 | [diff] [blame] | 739 | int enable_audio_route(struct audio_device *adev, |
Haynes Mathew George | 1376ca6 | 2014-04-24 11:55:48 -0700 | [diff] [blame] | 740 | struct audio_usecase *usecase); |
| 741 | |
Alexy Joseph | b137994 | 2016-01-29 15:49:38 -0800 | [diff] [blame] | 742 | struct audio_usecase *get_usecase_from_list(const struct audio_device *adev, |
Apoorv Raghuvanshi | 6e26284 | 2013-10-06 14:39:35 -0700 | [diff] [blame] | 743 | audio_usecase_t uc_id); |
Krishnankutty Kolathappilly | eff07ef | 2013-11-21 20:39:59 -0800 | [diff] [blame] | 744 | |
Subhash Chandra Bose Naripeddy | 16ff4f8 | 2014-04-01 21:03:10 -0700 | [diff] [blame] | 745 | bool is_offload_usecase(audio_usecase_t uc_id); |
| 746 | |
Sidipotu Ashok | e6f78cb | 2015-11-05 14:42:20 +0530 | [diff] [blame] | 747 | bool audio_is_true_native_stream_active(struct audio_device *adev); |
| 748 | |
Preetam Singh Ranawat | cb6212e | 2016-07-19 18:33:53 +0530 | [diff] [blame] | 749 | bool audio_is_dsd_native_stream_active(struct audio_device *adev); |
Preetam Singh Ranawat | b0c0dd7 | 2016-08-18 00:32:06 +0530 | [diff] [blame] | 750 | |
Xiaojun Sang | 785b5da | 2017-08-03 15:52:29 +0800 | [diff] [blame] | 751 | uint32_t adev_get_dsp_bit_width_enforce_mode(); |
| 752 | |
Mingming Yin | 07972cc | 2014-06-06 17:11:23 -0700 | [diff] [blame] | 753 | int pcm_ioctl(struct pcm *pcm, int request, ...); |
| 754 | |
Alexy Joseph | b137994 | 2016-01-29 15:49:38 -0800 | [diff] [blame] | 755 | audio_usecase_t get_usecase_id_from_usecase_type(const struct audio_device *adev, |
Narsinga Rao Chella | f928a98 | 2015-03-06 14:57:35 -0800 | [diff] [blame] | 756 | usecase_type_t type); |
Venkata Narendra Kumar Gutta | ed0f94f | 2014-07-09 16:29:28 +0530 | [diff] [blame] | 757 | |
Chaithanya Krishna Bacharaju | 69d2e4c | 2017-05-26 18:22:46 +0530 | [diff] [blame] | 758 | int check_a2dp_restore(struct audio_device *adev, struct stream_out *out, bool restore); |
| 759 | |
Lakshman Chaluvaraju | 22ba9f1 | 2016-09-12 11:42:10 +0530 | [diff] [blame] | 760 | int adev_open_output_stream(struct audio_hw_device *dev, |
| 761 | audio_io_handle_t handle, |
| 762 | audio_devices_t devices, |
| 763 | audio_output_flags_t flags, |
| 764 | struct audio_config *config, |
| 765 | struct audio_stream_out **stream_out, |
Derek Chen | 5f67a94 | 2020-02-24 23:08:13 -0800 | [diff] [blame] | 766 | const char *address); |
Lakshman Chaluvaraju | 22ba9f1 | 2016-09-12 11:42:10 +0530 | [diff] [blame] | 767 | void adev_close_output_stream(struct audio_hw_device *dev __unused, |
| 768 | struct audio_stream_out *stream); |
| 769 | |
Varun Balaraj | e49253e | 2017-07-06 19:48:56 +0530 | [diff] [blame] | 770 | bool is_interactive_usecase(audio_usecase_t uc_id); |
| 771 | |
Derek Chen | f939fb7 | 2018-11-13 13:34:41 -0800 | [diff] [blame] | 772 | streams_input_ctxt_t *in_get_stream(struct audio_device *dev, |
| 773 | audio_io_handle_t input); |
| 774 | streams_output_ctxt_t *out_get_stream(struct audio_device *dev, |
| 775 | audio_io_handle_t output); |
| 776 | |
Derek Chen | f6318be | 2017-06-12 17:16:24 -0400 | [diff] [blame] | 777 | size_t get_output_period_size(uint32_t sample_rate, |
| 778 | audio_format_t format, |
| 779 | int channel_count, |
| 780 | int duration /*in millisecs*/); |
| 781 | |
Krishnankutty Kolathappilly | eff07ef | 2013-11-21 20:39:59 -0800 | [diff] [blame] | 782 | #define LITERAL_TO_STRING(x) #x |
| 783 | #define CHECK(condition) LOG_ALWAYS_FATAL_IF(!(condition), "%s",\ |
| 784 | __FILE__ ":" LITERAL_TO_STRING(__LINE__)\ |
| 785 | " ASSERT_FATAL(" #condition ") failed.") |
| 786 | |
Chaithanya Krishna Bacharaju | c9f9971 | 2019-04-16 15:32:52 +0530 | [diff] [blame] | 787 | static inline bool is_loopback_input_device(audio_devices_t device) { |
| 788 | if (!audio_is_output_device(device) && |
| 789 | ((device & AUDIO_DEVICE_IN_LOOPBACK) == AUDIO_DEVICE_IN_LOOPBACK)) |
| 790 | return true; |
| 791 | else |
| 792 | return false; |
| 793 | } |
| 794 | |
Jaideep Sharma | d305a4a | 2020-02-27 14:29:04 +0530 | [diff] [blame] | 795 | static inline bool audio_is_virtual_input_source(audio_source_t source) { |
| 796 | bool result = false; |
| 797 | switch(source) { |
| 798 | case AUDIO_SOURCE_VOICE_UPLINK : |
| 799 | case AUDIO_SOURCE_VOICE_DOWNLINK : |
| 800 | case AUDIO_SOURCE_VOICE_CALL : |
| 801 | case AUDIO_SOURCE_FM_TUNER : |
| 802 | result = true; |
| 803 | break; |
| 804 | default: |
| 805 | break; |
| 806 | } |
| 807 | return result; |
| 808 | } |
| 809 | |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 810 | int route_output_stream(struct stream_out *stream, |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 811 | struct listnode *devices); |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 812 | int route_input_stream(struct stream_in *stream, |
Aniket Kumar Lata | 0e6e1e5 | 2019-11-14 21:43:55 -0800 | [diff] [blame] | 813 | struct listnode *devices, |
| 814 | audio_source_t source); |
Aniket Kumar Lata | 1fda943 | 2019-11-01 17:08:33 -0700 | [diff] [blame] | 815 | |
Derek Chen | 6c0f3de | 2020-02-26 00:30:42 -0800 | [diff] [blame] | 816 | audio_patch_handle_t generate_patch_handle(); |
| 817 | |
Eric Laurent | 150dbfe | 2013-02-27 14:31:02 -0800 | [diff] [blame] | 818 | /* |
| 819 | * NOTE: when multiple mutexes have to be acquired, always take the |
| 820 | * stream_in or stream_out mutex first, followed by the audio_device mutex. |
| 821 | */ |
| 822 | |
Eric Laurent | b23d528 | 2013-05-14 15:27:20 -0700 | [diff] [blame] | 823 | #endif // QCOM_AUDIO_HW_H |