blob: af374b5086397edb839272095e19726f9ece80df [file] [log] [blame]
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001/*
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07002 * Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07003 * Not a Contribution.
4 *
Shiv Maliyappanahalli8911f282014-01-10 15:56:19 -08005 * Copyright (C) 2013 The Android Open Source Project
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006 *
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 Naruka1b6513f2014-11-22 19:34:13 -080018 *
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 Alamanda2dfba2b2013-01-17 16:50:22 -080036 */
37
38#define LOG_TAG "audio_hw_primary"
Haynes Mathew George5beddd42016-06-27 18:33:40 -070039#define ATRACE_TAG (ATRACE_TAG_AUDIO|ATRACE_TAG_HAL)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080040/*#define LOG_NDEBUG 0*/
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070041/*#define VERY_VERY_VERBOSE_LOGGING*/
42#ifdef VERY_VERY_VERBOSE_LOGGING
43#define ALOGVV ALOGV
44#else
45#define ALOGVV(a...) do { } while(0)
46#endif
George Gao3018ede2019-10-23 13:23:00 -070047#include <limits.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080048#include <errno.h>
49#include <pthread.h>
50#include <stdint.h>
51#include <sys/time.h>
52#include <stdlib.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080053#include <math.h>
Eric Laurentc4aef752013-09-12 17:45:53 -070054#include <dlfcn.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070055#include <sys/resource.h>
56#include <sys/prctl.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080057
Aalique Grahame22e49102018-12-18 14:23:57 -080058#include <log/log.h>
Haynes Mathew George5beddd42016-06-27 18:33:40 -070059#include <cutils/trace.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080060#include <cutils/str_parms.h>
61#include <cutils/properties.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070062#include <cutils/atomic.h>
63#include <cutils/sched_policy.h>
Eric Laurentb23d5282013-05-14 15:27:20 -070064#include <hardware/audio_effect.h>
Haynes Mathew George484e8d22017-07-31 18:55:17 -070065#include <hardware/audio_alsaops.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070066#include <system/thread_defs.h>
Haynes Mathew George16081042017-05-31 17:16:49 -070067#include <tinyalsa/asoundlib.h>
Eric Laurentb23d5282013-05-14 15:27:20 -070068#include <audio_effects/effect_aec.h>
69#include <audio_effects/effect_ns.h>
Ashish Jainf1eaa582016-05-23 20:54:24 +053070#include <audio_utils/format.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080071#include "audio_hw.h"
Wei Wangf7ca6c92017-11-21 14:51:20 -080072#include "audio_perf.h"
Eric Laurentb23d5282013-05-14 15:27:20 -070073#include "platform_api.h"
74#include <platform.h>
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070075#include "audio_extn.h"
Narsinga Rao Chella05573b72013-11-15 15:21:40 -080076#include "voice_extn.h"
Ashish Jaind5694242017-09-05 20:09:06 +053077#include "ip_hdlr_intf.h"
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080078
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070079#include "sound/compress_params.h"
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -080080#include "sound/asound.h"
ApurupaPattapu2e084df2013-12-18 15:47:59 -080081
Revathi Uddaraju1eac8b02017-05-18 17:13:33 +053082#ifdef DYNAMIC_LOG_ENABLED
83#include <log_xml_parser.h>
84#define LOG_MASK HAL_MOD_FILE_AUDIO_HW
85#include <log_utils.h>
86#endif
87
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070088#define COMPRESS_OFFLOAD_NUM_FRAGMENTS 4
Ashish Jain5106d362016-05-11 19:23:33 +053089/*DIRECT PCM has same buffer sizes as DEEP Buffer*/
90#define DIRECT_PCM_NUM_FRAGMENTS 2
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070091#define COMPRESS_PLAYBACK_VOLUME_MAX 0x2000
Vikram Panduranga93f080e2017-06-07 18:16:14 -070092#define VOIP_PLAYBACK_VOLUME_MAX 0x2000
Arun Mirpuri5d170872019-03-26 13:21:31 -070093#define MMAP_PLAYBACK_VOLUME_MAX 0x2000
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +053094#define PCM_PLAYBACK_VOLUME_MAX 0x2000
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +053095#define DSD_VOLUME_MIN_DB (-110)
Aniket Kumar Lata8426d1f2019-06-10 15:25:53 -070096#define INVALID_OUT_VOLUME -1
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070097#define AUDIO_IO_PORTS_MAX 32
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070098
Aalique Grahame22e49102018-12-18 14:23:57 -080099#define RECORD_GAIN_MIN 0.0f
100#define RECORD_GAIN_MAX 1.0f
101#define RECORD_VOLUME_CTL_MAX 0x2000
102
103/* treat as unsigned Q1.13 */
104#define APP_TYPE_GAIN_DEFAULT 0x2000
105
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700106#define PROXY_OPEN_RETRY_COUNT 100
107#define PROXY_OPEN_WAIT_TIME 20
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800108
Arun Mirpurib1bec9c2019-01-29 16:42:45 -0800109#define GET_USECASE_AUDIO_PLAYBACK_PRIMARY(db) \
110 (db)? USECASE_AUDIO_PLAYBACK_DEEP_BUFFER : \
111 USECASE_AUDIO_PLAYBACK_LOW_LATENCY
112#define GET_PCM_CONFIG_AUDIO_PLAYBACK_PRIMARY(db) \
113 (db)? pcm_config_deep_buffer : pcm_config_low_latency
Haynes Mathew Georgebf143712013-12-03 13:02:53 -0800114
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700115#define ULL_PERIOD_SIZE (DEFAULT_OUTPUT_SAMPLING_RATE/1000)
Vikram Panduranga93f080e2017-06-07 18:16:14 -0700116#define DEFAULT_VOIP_BUF_DURATION_MS 20
117#define DEFAULT_VOIP_BIT_DEPTH_BYTE sizeof(int16_t)
118#define DEFAULT_VOIP_SAMP_RATE 48000
119
120#define VOIP_IO_BUF_SIZE(SR, DURATION_MS, BIT_DEPTH) (SR)/1000 * DURATION_MS * BIT_DEPTH
121
122struct pcm_config default_pcm_config_voip_copp = {
123 .channels = 1,
124 .rate = DEFAULT_VOIP_SAMP_RATE, /* changed when the stream is opened */
125 .period_size = VOIP_IO_BUF_SIZE(DEFAULT_VOIP_SAMP_RATE, DEFAULT_VOIP_BUF_DURATION_MS, DEFAULT_VOIP_BIT_DEPTH_BYTE)/2,
126 .period_count = 2,
127 .format = PCM_FORMAT_S16_LE,
kunleiz95b597a2017-10-23 17:07:33 +0800128 .avail_min = VOIP_IO_BUF_SIZE(DEFAULT_VOIP_SAMP_RATE, DEFAULT_VOIP_BUF_DURATION_MS, DEFAULT_VOIP_BIT_DEPTH_BYTE)/2,
129 .stop_threshold = INT_MAX,
Vikram Panduranga93f080e2017-06-07 18:16:14 -0700130};
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700131
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700132#define MIN_CHANNEL_COUNT 1
133#define DEFAULT_CHANNEL_COUNT 2
134#define MAX_HIFI_CHANNEL_COUNT 8
135
Aalique Grahame22e49102018-12-18 14:23:57 -0800136#ifndef MAX_TARGET_SPECIFIC_CHANNEL_CNT
137#define MAX_CHANNEL_COUNT 1
138#else
139#define MAX_CHANNEL_COUNT atoi(XSTR(MAX_TARGET_SPECIFIC_CHANNEL_CNT))
140#define XSTR(x) STR(x)
141#define STR(x) #x
142#endif
143
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -0700144static unsigned int configured_low_latency_capture_period_size =
145 LOW_LATENCY_CAPTURE_PERIOD_SIZE;
146
Haynes Mathew George16081042017-05-31 17:16:49 -0700147#define MMAP_PERIOD_SIZE (DEFAULT_OUTPUT_SAMPLING_RATE/1000)
148#define MMAP_PERIOD_COUNT_MIN 32
149#define MMAP_PERIOD_COUNT_MAX 512
150#define MMAP_PERIOD_COUNT_DEFAULT (MMAP_PERIOD_COUNT_MAX)
151
Aalique Grahame22e49102018-12-18 14:23:57 -0800152/* This constant enables extended precision handling.
153 * TODO The flag is off until more testing is done.
154 */
155static const bool k_enable_extended_precision = false;
Arun Mirpurie008ed22019-03-21 11:21:04 -0700156extern int AUDIO_DEVICE_IN_ALL_CODEC_BACKEND;
Aalique Grahame22e49102018-12-18 14:23:57 -0800157
Eric Laurentb23d5282013-05-14 15:27:20 -0700158struct pcm_config pcm_config_deep_buffer = {
159 .channels = 2,
160 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
161 .period_size = DEEP_BUFFER_OUTPUT_PERIOD_SIZE,
162 .period_count = DEEP_BUFFER_OUTPUT_PERIOD_COUNT,
163 .format = PCM_FORMAT_S16_LE,
164 .start_threshold = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
165 .stop_threshold = INT_MAX,
166 .avail_min = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
167};
168
169struct pcm_config pcm_config_low_latency = {
170 .channels = 2,
171 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
172 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
173 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
174 .format = PCM_FORMAT_S16_LE,
175 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
176 .stop_threshold = INT_MAX,
177 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
178};
179
Vignesh Kulothungana6927272019-02-20 15:17:07 -0800180struct pcm_config pcm_config_haptics_audio = {
181 .channels = 1,
182 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
183 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
184 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
185 .format = PCM_FORMAT_S16_LE,
186 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
187 .stop_threshold = INT_MAX,
188 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
189};
190
191struct pcm_config pcm_config_haptics = {
192 .channels = 1,
193 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
194 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
195 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
196 .format = PCM_FORMAT_S16_LE,
197 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
198 .stop_threshold = INT_MAX,
199 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
200};
201
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700202static int af_period_multiplier = 4;
203struct pcm_config pcm_config_rt = {
204 .channels = 2,
205 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
206 .period_size = ULL_PERIOD_SIZE, //1 ms
207 .period_count = 512, //=> buffer size is 512ms
208 .format = PCM_FORMAT_S16_LE,
209 .start_threshold = ULL_PERIOD_SIZE*8, //8ms
210 .stop_threshold = INT_MAX,
211 .silence_threshold = 0,
212 .silence_size = 0,
213 .avail_min = ULL_PERIOD_SIZE, //1 ms
214};
215
Eric Laurentb23d5282013-05-14 15:27:20 -0700216struct pcm_config pcm_config_hdmi_multi = {
217 .channels = HDMI_MULTI_DEFAULT_CHANNEL_COUNT, /* changed when the stream is opened */
218 .rate = DEFAULT_OUTPUT_SAMPLING_RATE, /* changed when the stream is opened */
219 .period_size = HDMI_MULTI_PERIOD_SIZE,
220 .period_count = HDMI_MULTI_PERIOD_COUNT,
221 .format = PCM_FORMAT_S16_LE,
222 .start_threshold = 0,
223 .stop_threshold = INT_MAX,
224 .avail_min = 0,
225};
226
Haynes Mathew George16081042017-05-31 17:16:49 -0700227struct pcm_config pcm_config_mmap_playback = {
228 .channels = 2,
229 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
230 .period_size = MMAP_PERIOD_SIZE,
231 .period_count = MMAP_PERIOD_COUNT_DEFAULT,
232 .format = PCM_FORMAT_S16_LE,
233 .start_threshold = MMAP_PERIOD_SIZE*8,
234 .stop_threshold = INT32_MAX,
235 .silence_threshold = 0,
236 .silence_size = 0,
237 .avail_min = MMAP_PERIOD_SIZE, //1 ms
238};
239
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700240struct pcm_config pcm_config_hifi = {
241 .channels = DEFAULT_CHANNEL_COUNT, /* changed when the stream is opened */
242 .rate = DEFAULT_OUTPUT_SAMPLING_RATE, /* changed when the stream is opened */
243 .period_size = HIFI_BUFFER_OUTPUT_PERIOD_SIZE, /* change #define */
244 .period_count = HIFI_BUFFER_OUTPUT_PERIOD_COUNT,
245 .format = PCM_FORMAT_S24_3LE,
246 .start_threshold = 0,
247 .stop_threshold = INT_MAX,
248 .avail_min = 0,
249};
250
Eric Laurentb23d5282013-05-14 15:27:20 -0700251struct pcm_config pcm_config_audio_capture = {
252 .channels = 2,
Eric Laurentb23d5282013-05-14 15:27:20 -0700253 .period_count = AUDIO_CAPTURE_PERIOD_COUNT,
254 .format = PCM_FORMAT_S16_LE,
255};
256
Haynes Mathew George16081042017-05-31 17:16:49 -0700257struct pcm_config pcm_config_mmap_capture = {
258 .channels = 2,
259 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
260 .period_size = MMAP_PERIOD_SIZE,
261 .period_count = MMAP_PERIOD_COUNT_DEFAULT,
262 .format = PCM_FORMAT_S16_LE,
263 .start_threshold = 0,
264 .stop_threshold = INT_MAX,
265 .silence_threshold = 0,
266 .silence_size = 0,
267 .avail_min = MMAP_PERIOD_SIZE, //1 ms
268};
269
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700270#define AFE_PROXY_CHANNEL_COUNT 2
271#define AFE_PROXY_SAMPLING_RATE 48000
272
273#define AFE_PROXY_PLAYBACK_PERIOD_SIZE 768
274#define AFE_PROXY_PLAYBACK_PERIOD_COUNT 4
275
276struct pcm_config pcm_config_afe_proxy_playback = {
277 .channels = AFE_PROXY_CHANNEL_COUNT,
278 .rate = AFE_PROXY_SAMPLING_RATE,
279 .period_size = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
280 .period_count = AFE_PROXY_PLAYBACK_PERIOD_COUNT,
281 .format = PCM_FORMAT_S16_LE,
282 .start_threshold = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
283 .stop_threshold = INT_MAX,
284 .avail_min = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
285};
286
287#define AFE_PROXY_RECORD_PERIOD_SIZE 768
288#define AFE_PROXY_RECORD_PERIOD_COUNT 4
289
Aalique Grahame22e49102018-12-18 14:23:57 -0800290struct pcm_config pcm_config_audio_capture_rt = {
291 .channels = 2,
292 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
293 .period_size = ULL_PERIOD_SIZE,
294 .period_count = 512,
295 .format = PCM_FORMAT_S16_LE,
296 .start_threshold = 0,
297 .stop_threshold = AFE_PROXY_RECORD_PERIOD_SIZE * AFE_PROXY_RECORD_PERIOD_COUNT,
298 .silence_threshold = 0,
299 .silence_size = 0,
300 .avail_min = ULL_PERIOD_SIZE, //1 ms
301};
302
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700303struct pcm_config pcm_config_afe_proxy_record = {
304 .channels = AFE_PROXY_CHANNEL_COUNT,
305 .rate = AFE_PROXY_SAMPLING_RATE,
306 .period_size = AFE_PROXY_RECORD_PERIOD_SIZE,
307 .period_count = AFE_PROXY_RECORD_PERIOD_COUNT,
308 .format = PCM_FORMAT_S16_LE,
309 .start_threshold = AFE_PROXY_RECORD_PERIOD_SIZE,
310 .stop_threshold = INT_MAX,
311 .avail_min = AFE_PROXY_RECORD_PERIOD_SIZE,
312};
313
Ashish Jainf1eaa582016-05-23 20:54:24 +0530314#define AUDIO_MAX_PCM_FORMATS 7
315
316const uint32_t format_to_bitwidth_table[AUDIO_MAX_PCM_FORMATS] = {
317 [AUDIO_FORMAT_DEFAULT] = 0,
318 [AUDIO_FORMAT_PCM_16_BIT] = sizeof(uint16_t),
319 [AUDIO_FORMAT_PCM_8_BIT] = sizeof(uint8_t),
320 [AUDIO_FORMAT_PCM_32_BIT] = sizeof(uint32_t),
321 [AUDIO_FORMAT_PCM_8_24_BIT] = sizeof(uint32_t),
322 [AUDIO_FORMAT_PCM_FLOAT] = sizeof(float),
323 [AUDIO_FORMAT_PCM_24_BIT_PACKED] = sizeof(uint8_t) * 3,
324};
325
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -0800326const char * const use_case_table[AUDIO_USECASE_MAX] = {
Eric Laurentb23d5282013-05-14 15:27:20 -0700327 [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = "deep-buffer-playback",
328 [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = "low-latency-playback",
Vignesh Kulothungana6927272019-02-20 15:17:07 -0800329 [USECASE_AUDIO_PLAYBACK_WITH_HAPTICS] = "audio-with-haptics-playback",
Ravi Kumar Alamanda474de5a2015-06-25 20:08:01 -0700330 [USECASE_AUDIO_PLAYBACK_ULL] = "audio-ull-playback",
331 [USECASE_AUDIO_PLAYBACK_MULTI_CH] = "multi-channel-playback",
Shruthi Krishnaace10852013-10-25 14:32:12 -0700332 [USECASE_AUDIO_PLAYBACK_OFFLOAD] = "compress-offload-playback",
vivek mehta446c3962015-09-14 10:57:35 -0700333 //Enabled for Direct_PCM
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700334 [USECASE_AUDIO_PLAYBACK_OFFLOAD2] = "compress-offload-playback2",
335 [USECASE_AUDIO_PLAYBACK_OFFLOAD3] = "compress-offload-playback3",
336 [USECASE_AUDIO_PLAYBACK_OFFLOAD4] = "compress-offload-playback4",
337 [USECASE_AUDIO_PLAYBACK_OFFLOAD5] = "compress-offload-playback5",
338 [USECASE_AUDIO_PLAYBACK_OFFLOAD6] = "compress-offload-playback6",
339 [USECASE_AUDIO_PLAYBACK_OFFLOAD7] = "compress-offload-playback7",
340 [USECASE_AUDIO_PLAYBACK_OFFLOAD8] = "compress-offload-playback8",
341 [USECASE_AUDIO_PLAYBACK_OFFLOAD9] = "compress-offload-playback9",
Haynes Mathew George16081042017-05-31 17:16:49 -0700342 [USECASE_AUDIO_PLAYBACK_FM] = "play-fm",
343 [USECASE_AUDIO_PLAYBACK_MMAP] = "mmap-playback",
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700344 [USECASE_AUDIO_PLAYBACK_HIFI] = "hifi-playback",
Aalique Grahame22e49102018-12-18 14:23:57 -0800345 [USECASE_AUDIO_PLAYBACK_TTS] = "audio-tts-playback",
vivek mehta0ea887a2015-08-26 14:01:20 -0700346
Eric Laurentb23d5282013-05-14 15:27:20 -0700347 [USECASE_AUDIO_RECORD] = "audio-record",
Mingming Yine62d7842013-10-25 16:26:03 -0700348 [USECASE_AUDIO_RECORD_COMPRESS] = "audio-record-compress",
Dhananjay Kumaree4d2002016-10-25 18:02:58 +0530349 [USECASE_AUDIO_RECORD_COMPRESS2] = "audio-record-compress2",
350 [USECASE_AUDIO_RECORD_COMPRESS3] = "audio-record-compress3",
351 [USECASE_AUDIO_RECORD_COMPRESS4] = "audio-record-compress4",
Dhananjay Kumar376e38b2017-09-28 22:26:23 +0530352 [USECASE_AUDIO_RECORD_COMPRESS5] = "audio-record-compress5",
353 [USECASE_AUDIO_RECORD_COMPRESS6] = "audio-record-compress6",
Eric Laurentb23d5282013-05-14 15:27:20 -0700354 [USECASE_AUDIO_RECORD_LOW_LATENCY] = "low-latency-record",
Preetam Singh Ranawatde84f1a2013-11-01 14:58:16 -0700355 [USECASE_AUDIO_RECORD_FM_VIRTUAL] = "fm-virtual-record",
Haynes Mathew George16081042017-05-31 17:16:49 -0700356 [USECASE_AUDIO_RECORD_MMAP] = "mmap-record",
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700357 [USECASE_AUDIO_RECORD_HIFI] = "hifi-record",
Haynes Mathew George16081042017-05-31 17:16:49 -0700358
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800359 [USECASE_AUDIO_HFP_SCO] = "hfp-sco",
Vimal Puthanveed47e64852013-12-20 13:23:39 -0800360 [USECASE_AUDIO_HFP_SCO_WB] = "hfp-sco-wb",
Derek Chenf7092792017-05-23 12:23:53 -0400361 [USECASE_AUDIO_HFP_SCO_DOWNLINK] = "hfp-sco-downlink",
362 [USECASE_AUDIO_HFP_SCO_WB_DOWNLINK] = "hfp-sco-wb-downlink",
Mingming Yin3ee55c62014-08-04 14:23:35 -0700363
Derek Chenf7092792017-05-23 12:23:53 -0400364 [USECASE_VOICE_CALL] = "voice-call",
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700365 [USECASE_VOICE2_CALL] = "voice2-call",
366 [USECASE_VOLTE_CALL] = "volte-call",
367 [USECASE_QCHAT_CALL] = "qchat-call",
Vicky Sehrawat7e4fc152014-02-12 17:58:59 -0800368 [USECASE_VOWLAN_CALL] = "vowlan-call",
Vidyakumar Athota0e109352015-02-12 17:38:22 -0800369 [USECASE_VOICEMMODE1_CALL] = "voicemmode1-call",
370 [USECASE_VOICEMMODE2_CALL] = "voicemmode2-call",
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800371 [USECASE_COMPRESS_VOIP_CALL] = "compress-voip-call",
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700372 [USECASE_INCALL_REC_UPLINK] = "incall-rec-uplink",
373 [USECASE_INCALL_REC_DOWNLINK] = "incall-rec-downlink",
374 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK] = "incall-rec-uplink-and-downlink",
Helen Zenge56b4852013-12-03 16:54:40 -0800375 [USECASE_INCALL_REC_UPLINK_COMPRESS] = "incall-rec-uplink-compress",
376 [USECASE_INCALL_REC_DOWNLINK_COMPRESS] = "incall-rec-downlink-compress",
377 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK_COMPRESS] = "incall-rec-uplink-and-downlink-compress",
378
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -0700379 [USECASE_INCALL_MUSIC_UPLINK] = "incall_music_uplink",
380 [USECASE_INCALL_MUSIC_UPLINK2] = "incall_music_uplink2",
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700381 [USECASE_AUDIO_SPKR_CALIB_RX] = "spkr-rx-calib",
382 [USECASE_AUDIO_SPKR_CALIB_TX] = "spkr-vi-record",
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700383
384 [USECASE_AUDIO_PLAYBACK_AFE_PROXY] = "afe-proxy-playback",
385 [USECASE_AUDIO_RECORD_AFE_PROXY] = "afe-proxy-record",
Md Mansoor Ahmeddb1b4f92018-01-25 18:56:31 +0530386 [USECASE_AUDIO_PLAYBACK_SILENCE] = "silence-playback",
Vikram Panduranga93f080e2017-06-07 18:16:14 -0700387
Siddartha Shaik31b530e2017-05-19 15:26:33 +0530388 /* Transcode loopback cases */
Surendar Karka93cd25a2018-08-28 14:21:37 +0530389 [USECASE_AUDIO_TRANSCODE_LOOPBACK_RX] = "audio-transcode-loopback-rx",
390 [USECASE_AUDIO_TRANSCODE_LOOPBACK_TX] = "audio-transcode-loopback-tx",
Vikram Panduranga93f080e2017-06-07 18:16:14 -0700391
392 [USECASE_AUDIO_PLAYBACK_VOIP] = "audio-playback-voip",
393 [USECASE_AUDIO_RECORD_VOIP] = "audio-record-voip",
Varun Balaraje49253e2017-07-06 19:48:56 +0530394 /* For Interactive Audio Streams */
395 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM1] = "audio-interactive-stream1",
396 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM2] = "audio-interactive-stream2",
397 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM3] = "audio-interactive-stream3",
398 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM4] = "audio-interactive-stream4",
399 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM5] = "audio-interactive-stream5",
400 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM6] = "audio-interactive-stream6",
401 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM7] = "audio-interactive-stream7",
402 [USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM8] = "audio-interactive-stream8",
Garmond Leunge2433c32017-09-28 21:51:22 -0700403
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800404 [USECASE_AUDIO_EC_REF_LOOPBACK] = "ec-ref-audio-capture",
405
Derek Chenf6318be2017-06-12 17:16:24 -0400406 [USECASE_AUDIO_A2DP_ABR_FEEDBACK] = "a2dp-abr-feedback",
407
408 [USECASE_AUDIO_PLAYBACK_MEDIA] = "media-playback",
409 [USECASE_AUDIO_PLAYBACK_SYS_NOTIFICATION] = "sys-notification-playback",
410 [USECASE_AUDIO_PLAYBACK_NAV_GUIDANCE] = "nav-guidance-playback",
411 [USECASE_AUDIO_PLAYBACK_PHONE] = "phone-playback",
Derek Chendf05eea2019-08-01 13:57:49 -0700412 [USECASE_AUDIO_PLAYBACK_REAR_SEAT] = "rear-seat-playback",
Rahul Sharma99770982019-03-06 17:05:26 +0530413 [USECASE_AUDIO_FM_TUNER_EXT] = "fm-tuner-ext",
Eric Laurentb23d5282013-05-14 15:27:20 -0700414};
415
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700416static const audio_usecase_t offload_usecases[] = {
417 USECASE_AUDIO_PLAYBACK_OFFLOAD,
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700418 USECASE_AUDIO_PLAYBACK_OFFLOAD2,
419 USECASE_AUDIO_PLAYBACK_OFFLOAD3,
420 USECASE_AUDIO_PLAYBACK_OFFLOAD4,
421 USECASE_AUDIO_PLAYBACK_OFFLOAD5,
422 USECASE_AUDIO_PLAYBACK_OFFLOAD6,
423 USECASE_AUDIO_PLAYBACK_OFFLOAD7,
424 USECASE_AUDIO_PLAYBACK_OFFLOAD8,
425 USECASE_AUDIO_PLAYBACK_OFFLOAD9,
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700426};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800427
Varun Balaraje49253e2017-07-06 19:48:56 +0530428static const audio_usecase_t interactive_usecases[] = {
429 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM1,
430 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM2,
431 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM3,
432 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM4,
433 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM5,
434 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM6,
435 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM7,
436 USECASE_AUDIO_PLAYBACK_INTERACTIVE_STREAM8,
437};
438
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800439#define STRING_TO_ENUM(string) { #string, string }
440
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800441struct string_to_enum {
442 const char *name;
443 uint32_t value;
444};
445
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700446static const struct string_to_enum channels_name_to_enum_table[] = {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800447 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_STEREO),
Mingming Yin3a941d42016-02-17 18:08:05 -0800448 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_2POINT1),
449 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_QUAD),
450 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_SURROUND),
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700451 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_PENTA),
Mingming Yin3a941d42016-02-17 18:08:05 -0800452 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_5POINT1),
453 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_6POINT1),
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800454 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_7POINT1),
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700455 STRING_TO_ENUM(AUDIO_CHANNEL_IN_MONO),
456 STRING_TO_ENUM(AUDIO_CHANNEL_IN_STEREO),
457 STRING_TO_ENUM(AUDIO_CHANNEL_IN_FRONT_BACK),
458 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_1),
459 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_2),
460 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_3),
461 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_4),
462 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_5),
463 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_6),
464 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_7),
465 STRING_TO_ENUM(AUDIO_CHANNEL_INDEX_MASK_8),
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800466};
467
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700468static const struct string_to_enum formats_name_to_enum_table[] = {
469 STRING_TO_ENUM(AUDIO_FORMAT_PCM_16_BIT),
470 STRING_TO_ENUM(AUDIO_FORMAT_PCM_24_BIT_PACKED),
471 STRING_TO_ENUM(AUDIO_FORMAT_PCM_32_BIT),
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700472 STRING_TO_ENUM(AUDIO_FORMAT_AC3),
473 STRING_TO_ENUM(AUDIO_FORMAT_E_AC3),
474 STRING_TO_ENUM(AUDIO_FORMAT_E_AC3_JOC),
Ben Romberger1aaaf862017-04-06 17:49:46 -0700475 STRING_TO_ENUM(AUDIO_FORMAT_DOLBY_TRUEHD),
Mingming Yin3a941d42016-02-17 18:08:05 -0800476 STRING_TO_ENUM(AUDIO_FORMAT_DTS),
477 STRING_TO_ENUM(AUDIO_FORMAT_DTS_HD),
Naresh Tanniru928f0862017-04-07 16:44:23 -0700478 STRING_TO_ENUM(AUDIO_FORMAT_IEC61937)
Mingming Yin3a941d42016-02-17 18:08:05 -0800479};
480
481//list of all supported sample rates by HDMI specification.
482static const int out_hdmi_sample_rates[] = {
483 32000, 44100, 48000, 88200, 96000, 176400, 192000,
484};
485
Haynes Mathew George484e8d22017-07-31 18:55:17 -0700486static const struct string_to_enum out_sample_rates_name_to_enum_table[] = {
Mingming Yin3a941d42016-02-17 18:08:05 -0800487 STRING_TO_ENUM(32000),
488 STRING_TO_ENUM(44100),
489 STRING_TO_ENUM(48000),
490 STRING_TO_ENUM(88200),
491 STRING_TO_ENUM(96000),
492 STRING_TO_ENUM(176400),
493 STRING_TO_ENUM(192000),
Mingshu pange8aedf12019-10-25 15:38:27 +0800494 STRING_TO_ENUM(352800),
495 STRING_TO_ENUM(384000),
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700496};
497
Carter Hsu2e429db2019-05-14 18:50:52 +0800498struct in_effect_list {
499 struct listnode list;
500 effect_handle_t handle;
501};
502
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700503static struct audio_device *adev = NULL;
Ben Romberger02ab1192018-05-24 12:10:08 -0700504static pthread_mutex_t adev_init_lock = PTHREAD_MUTEX_INITIALIZER;
Kiran Kandi910e1862013-10-29 13:29:42 -0700505static unsigned int audio_device_ref_count;
vivek mehtab72d08d2016-04-29 03:16:47 -0700506//cache last MBDRC cal step level
507static int last_known_cal_step = -1 ;
Kiran Kandi910e1862013-10-29 13:29:42 -0700508
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +0530509static int check_a2dp_restore_l(struct audio_device *adev, struct stream_out *out, bool restore);
510static int out_set_compr_volume(struct audio_stream_out *stream, float left, float right);
Arun Mirpuri5d170872019-03-26 13:21:31 -0700511static int out_set_mmap_volume(struct audio_stream_out *stream, float left, float right);
Zhou Song2b8f28f2017-09-11 10:51:38 +0800512static int out_set_voip_volume(struct audio_stream_out *stream, float left, float right);
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +0530513static int out_set_pcm_volume(struct audio_stream_out *stream, float left, float right);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +0530514
Derek Chen6f293672019-04-01 01:40:24 -0700515static void adev_snd_mon_cb(void *cookie, struct str_parms *parms);
516static void in_snd_mon_cb(void * stream, struct str_parms * parms);
517static void out_snd_mon_cb(void * stream, struct str_parms * parms);
518
Zhou Song331c8e52019-08-26 14:16:12 +0800519static int configure_btsco_sample_rate(snd_device_t snd_device);
520
Vatsal Buchac09ae062018-11-14 13:25:08 +0530521#ifdef AUDIO_FEATURE_ENABLED_GCOV
522extern void __gcov_flush();
523static void enable_gcov()
524{
525 __gcov_flush();
526}
527#else
528static void enable_gcov()
529{
530}
531#endif
532
justinweng20fb6d82019-02-21 18:49:00 -0700533static int in_set_microphone_direction(const struct audio_stream_in *stream,
534 audio_microphone_direction_t dir);
535static int in_set_microphone_field_dimension(const struct audio_stream_in *stream, float zoom);
536
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700537static bool may_use_noirq_mode(struct audio_device *adev, audio_usecase_t uc_id,
538 int flags __unused)
539{
540 int dir = 0;
541 switch (uc_id) {
542 case USECASE_AUDIO_RECORD_LOW_LATENCY:
543 dir = 1;
544 case USECASE_AUDIO_PLAYBACK_ULL:
545 break;
546 default:
547 return false;
548 }
549
550 int dev_id = platform_get_pcm_device_id(uc_id, dir == 0 ?
551 PCM_PLAYBACK : PCM_CAPTURE);
552 if (adev->adm_is_noirq_avail)
553 return adev->adm_is_noirq_avail(adev->adm_data,
554 adev->snd_card, dev_id, dir);
555 return false;
556}
557
558static void register_out_stream(struct stream_out *out)
559{
560 struct audio_device *adev = out->dev;
561 if (is_offload_usecase(out->usecase) ||
562 !adev->adm_register_output_stream)
563 return;
564
565 // register stream first for backward compatibility
566 adev->adm_register_output_stream(adev->adm_data,
567 out->handle,
568 out->flags);
569
570 if (!adev->adm_set_config)
571 return;
572
573 if (out->realtime)
574 adev->adm_set_config(adev->adm_data,
575 out->handle,
576 out->pcm, &out->config);
577}
578
579static void register_in_stream(struct stream_in *in)
580{
581 struct audio_device *adev = in->dev;
582 if (!adev->adm_register_input_stream)
583 return;
584
585 adev->adm_register_input_stream(adev->adm_data,
586 in->capture_handle,
587 in->flags);
588
589 if (!adev->adm_set_config)
590 return;
591
592 if (in->realtime)
593 adev->adm_set_config(adev->adm_data,
594 in->capture_handle,
595 in->pcm,
596 &in->config);
597}
598
599static void request_out_focus(struct stream_out *out, long ns)
600{
601 struct audio_device *adev = out->dev;
602
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700603 if (adev->adm_request_focus_v2)
604 adev->adm_request_focus_v2(adev->adm_data, out->handle, ns);
605 else if (adev->adm_request_focus)
606 adev->adm_request_focus(adev->adm_data, out->handle);
607}
608
Aniket Kumar Lata60586a92019-05-22 22:18:55 -0700609static int request_in_focus(struct stream_in *in, long ns)
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700610{
611 struct audio_device *adev = in->dev;
Aniket Kumar Lata60586a92019-05-22 22:18:55 -0700612 int ret = 0;
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700613
Aniket Kumar Lata60586a92019-05-22 22:18:55 -0700614 if (adev->adm_request_focus_v2_1)
615 ret = adev->adm_request_focus_v2_1(adev->adm_data, in->capture_handle, ns);
616 else if (adev->adm_request_focus_v2)
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700617 adev->adm_request_focus_v2(adev->adm_data, in->capture_handle, ns);
618 else if (adev->adm_request_focus)
619 adev->adm_request_focus(adev->adm_data, in->capture_handle);
Aniket Kumar Lata60586a92019-05-22 22:18:55 -0700620
621 return ret;
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700622}
623
624static void release_out_focus(struct stream_out *out)
625{
626 struct audio_device *adev = out->dev;
627
628 if (adev->adm_abandon_focus)
629 adev->adm_abandon_focus(adev->adm_data, out->handle);
630}
631
632static void release_in_focus(struct stream_in *in)
633{
634 struct audio_device *adev = in->dev;
635 if (adev->adm_abandon_focus)
636 adev->adm_abandon_focus(adev->adm_data, in->capture_handle);
637}
638
Dhananjay Kumare6293dd2017-05-25 17:25:30 +0530639static int parse_snd_card_status(struct str_parms *parms, int *card,
640 card_status_t *status)
641{
642 char value[32]={0};
643 char state[32]={0};
644
645 int ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
646 if (ret < 0)
647 return -1;
648
649 // sscanf should be okay as value is of max length 32.
650 // same as sizeof state.
651 if (sscanf(value, "%d,%s", card, state) < 2)
652 return -1;
653
654 *status = !strcmp(state, "ONLINE") ? CARD_STATUS_ONLINE :
655 CARD_STATUS_OFFLINE;
656 return 0;
657}
658
Haynes Mathew Georgeb0f5dc32017-10-06 18:35:12 -0700659static inline void adjust_frames_for_device_delay(struct stream_out *out,
660 uint32_t *dsp_frames) {
661 // Adjustment accounts for A2dp encoder latency with offload usecases
662 // Note: Encoder latency is returned in ms.
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -0800663 if (is_a2dp_out_device_type(&out->device_list)) {
Haynes Mathew Georgeb0f5dc32017-10-06 18:35:12 -0700664 unsigned long offset =
665 (audio_extn_a2dp_get_encoder_latency() * out->sample_rate / 1000);
666 *dsp_frames = (*dsp_frames > offset) ? (*dsp_frames - offset) : 0;
667 }
668}
669
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700670static inline bool free_entry(void *key __unused,
671 void *value, void *context __unused)
672{
673 free(value);
674 return true;
675}
676
677static inline void free_map(Hashmap *map)
678{
679 if (map) {
680 hashmapForEach(map, free_entry, (void *) NULL);
681 hashmapFree(map);
682 }
683}
684
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800685static inline void patch_map_remove_l(struct audio_device *adev,
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700686 audio_patch_handle_t patch_handle)
687{
688 if (patch_handle == AUDIO_PATCH_HANDLE_NONE)
689 return;
690
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700691 struct audio_patch_info *p_info =
692 hashmapGet(adev->patch_map, (void *) (intptr_t) patch_handle);
693 if (p_info) {
694 ALOGV("%s: Remove patch %d", __func__, patch_handle);
695 hashmapRemove(adev->patch_map, (void *) (intptr_t) patch_handle);
696 free(p_info->patch);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700697 free(p_info);
698 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700699}
700
701static inline int io_streams_map_insert(struct audio_device *adev,
702 struct audio_stream *stream,
703 audio_io_handle_t handle,
704 audio_patch_handle_t patch_handle)
705{
706 struct audio_stream_info *s_info =
707 (struct audio_stream_info *) calloc(1, sizeof(struct audio_stream_info));
708
709 if (s_info == NULL) {
710 ALOGE("%s: Could not allocate stream info", __func__);
711 return -ENOMEM;
712 }
713 s_info->stream = stream;
714 s_info->patch_handle = patch_handle;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700715
716 pthread_mutex_lock(&adev->lock);
717 struct audio_stream_info *stream_info =
718 hashmapPut(adev->io_streams_map, (void *) (intptr_t) handle, (void *) s_info);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700719 if (stream_info != NULL)
720 free(stream_info);
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800721 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700722 ALOGD("%s: Added stream in io_streams_map with handle %d", __func__, handle);
723 return 0;
724}
725
726static inline void io_streams_map_remove(struct audio_device *adev,
727 audio_io_handle_t handle)
728{
729 pthread_mutex_lock(&adev->lock);
730 struct audio_stream_info *s_info =
731 hashmapRemove(adev->io_streams_map, (void *) (intptr_t) handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700732 if (s_info == NULL)
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800733 goto done;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700734 ALOGD("%s: Removed stream with handle %d", __func__, handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800735 patch_map_remove_l(adev, s_info->patch_handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700736 free(s_info);
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800737done:
738 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700739 return;
740}
741
Aniket Kumar Latabc774842020-01-16 21:22:05 -0800742static struct audio_patch_info* fetch_patch_info_l(struct audio_device *adev,
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700743 audio_patch_handle_t handle)
744{
745 struct audio_patch_info *p_info = NULL;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700746 p_info = (struct audio_patch_info *)
747 hashmapGet(adev->patch_map, (void *) (intptr_t) handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -0700748 return p_info;
749}
750
vivek mehtaa76401a2015-04-24 14:12:15 -0700751__attribute__ ((visibility ("default")))
752bool audio_hw_send_gain_dep_calibration(int level) {
753 bool ret_val = false;
vivek mehtab72d08d2016-04-29 03:16:47 -0700754 ALOGV("%s: called ...", __func__);
vivek mehtaa76401a2015-04-24 14:12:15 -0700755
756 pthread_mutex_lock(&adev_init_lock);
757
758 if (adev != NULL && adev->platform != NULL) {
759 pthread_mutex_lock(&adev->lock);
760 ret_val = platform_send_gain_dep_cal(adev->platform, level);
vivek mehtab72d08d2016-04-29 03:16:47 -0700761
Preetam Singh Ranawatf4ae0222017-05-31 17:07:28 +0530762 // cache level info for any of the use case which
763 // was not started.
764 last_known_cal_step = level;;
vivek mehtab72d08d2016-04-29 03:16:47 -0700765
vivek mehtaa76401a2015-04-24 14:12:15 -0700766 pthread_mutex_unlock(&adev->lock);
767 } else {
768 ALOGE("%s: %s is NULL", __func__, adev == NULL ? "adev" : "adev->platform");
769 }
770
771 pthread_mutex_unlock(&adev_init_lock);
772
773 return ret_val;
774}
775
Ashish Jain5106d362016-05-11 19:23:33 +0530776static int check_and_set_gapless_mode(struct audio_device *adev, bool enable_gapless)
777{
Krishnankutty Kolathappilly6d8788b2014-01-09 12:45:31 -0800778 bool gapless_enabled = false;
779 const char *mixer_ctl_name = "Compress Gapless Playback";
780 struct mixer_ctl *ctl;
781
782 ALOGV("%s:", __func__);
Aniket Kumar Lata8fc67e62017-05-02 12:33:46 -0700783 gapless_enabled = property_get_bool("vendor.audio.offload.gapless.enabled", false);
Ashish Jain5106d362016-05-11 19:23:33 +0530784
785 /*Disable gapless if its AV playback*/
786 gapless_enabled = gapless_enabled && enable_gapless;
Krishnankutty Kolathappilly6d8788b2014-01-09 12:45:31 -0800787
788 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
789 if (!ctl) {
790 ALOGE("%s: Could not get ctl for mixer cmd - %s",
791 __func__, mixer_ctl_name);
792 return -EINVAL;
793 }
794
795 if (mixer_ctl_set_value(ctl, 0, gapless_enabled) < 0) {
796 ALOGE("%s: Could not set gapless mode %d",
797 __func__, gapless_enabled);
798 return -EINVAL;
799 }
800 return 0;
801}
Haynes Mathew George5191a852013-09-11 14:19:36 -0700802
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -0700803__attribute__ ((visibility ("default")))
804int audio_hw_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl,
805 int table_size) {
806 int ret_val = 0;
807 ALOGV("%s: enter ... ", __func__);
808
809 pthread_mutex_lock(&adev_init_lock);
810 if (adev == NULL) {
811 ALOGW("%s: adev is NULL .... ", __func__);
812 goto done;
813 }
814
815 pthread_mutex_lock(&adev->lock);
816 ret_val = platform_get_gain_level_mapping(mapping_tbl, table_size);
817 pthread_mutex_unlock(&adev->lock);
818done:
819 pthread_mutex_unlock(&adev_init_lock);
820 ALOGV("%s: exit ... ", __func__);
821 return ret_val;
822}
823
Arun Mirpurib1bec9c2019-01-29 16:42:45 -0800824bool audio_hw_send_qdsp_parameter(int stream_type, float vol, bool active)
Aalique Grahame22e49102018-12-18 14:23:57 -0800825{
826 bool ret = false;
827 ALOGV("%s: enter ...", __func__);
828
829 pthread_mutex_lock(&adev_init_lock);
830
831 if (adev != NULL && adev->platform != NULL) {
832 pthread_mutex_lock(&adev->lock);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -0800833 ret = audio_extn_qdsp_set_state(adev, stream_type, vol, active);
Aalique Grahame22e49102018-12-18 14:23:57 -0800834 pthread_mutex_unlock(&adev->lock);
835 }
836
837 pthread_mutex_unlock(&adev_init_lock);
838
839 ALOGV("%s: exit with ret %d", __func__, ret);
840 return ret;
841}
Aalique Grahame22e49102018-12-18 14:23:57 -0800842
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700843static bool is_supported_format(audio_format_t format)
844{
Eric Laurent86e17132013-09-12 17:49:30 -0700845 if (format == AUDIO_FORMAT_MP3 ||
Satish Babu Patakokila0c313922016-12-08 12:07:08 +0530846 format == AUDIO_FORMAT_MP2 ||
Ashish Jainf9b78162014-08-25 20:36:25 +0530847 format == AUDIO_FORMAT_AAC_LC ||
848 format == AUDIO_FORMAT_AAC_HE_V1 ||
849 format == AUDIO_FORMAT_AAC_HE_V2 ||
Manish Dewangana6fc5442015-08-24 20:30:31 +0530850 format == AUDIO_FORMAT_AAC_ADTS_LC ||
851 format == AUDIO_FORMAT_AAC_ADTS_HE_V1 ||
852 format == AUDIO_FORMAT_AAC_ADTS_HE_V2 ||
Arun Kumar Dasari3b174182016-12-27 13:01:14 +0530853 format == AUDIO_FORMAT_AAC_LATM_LC ||
854 format == AUDIO_FORMAT_AAC_LATM_HE_V1 ||
855 format == AUDIO_FORMAT_AAC_LATM_HE_V2 ||
Ashish Jain5106d362016-05-11 19:23:33 +0530856 format == AUDIO_FORMAT_PCM_24_BIT_PACKED ||
857 format == AUDIO_FORMAT_PCM_8_24_BIT ||
Ashish Jainf1eaa582016-05-23 20:54:24 +0530858 format == AUDIO_FORMAT_PCM_FLOAT ||
859 format == AUDIO_FORMAT_PCM_32_BIT ||
vivek mehta0ea887a2015-08-26 14:01:20 -0700860 format == AUDIO_FORMAT_PCM_16_BIT ||
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +0530861 format == AUDIO_FORMAT_AC3 ||
862 format == AUDIO_FORMAT_E_AC3 ||
Ben Romberger1aaaf862017-04-06 17:49:46 -0700863 format == AUDIO_FORMAT_DOLBY_TRUEHD ||
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +0530864 format == AUDIO_FORMAT_DTS ||
865 format == AUDIO_FORMAT_DTS_HD ||
Weiyin Jiang18ac4e92015-03-15 15:03:40 +0800866 format == AUDIO_FORMAT_FLAC ||
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +0530867 format == AUDIO_FORMAT_ALAC ||
868 format == AUDIO_FORMAT_APE ||
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +0530869 format == AUDIO_FORMAT_DSD ||
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +0530870 format == AUDIO_FORMAT_VORBIS ||
Weiyin Jiang18ac4e92015-03-15 15:03:40 +0800871 format == AUDIO_FORMAT_WMA ||
Dhanalakshmi Siddani18737932016-11-29 17:33:17 +0530872 format == AUDIO_FORMAT_WMA_PRO ||
Naresh Tanniru928f0862017-04-07 16:44:23 -0700873 format == AUDIO_FORMAT_APTX ||
874 format == AUDIO_FORMAT_IEC61937)
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800875 return true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700876
877 return false;
878}
879
Haynes Mathew George5beddd42016-06-27 18:33:40 -0700880static inline bool is_mmap_usecase(audio_usecase_t uc_id)
881{
882 return (uc_id == USECASE_AUDIO_RECORD_AFE_PROXY) ||
883 (uc_id == USECASE_AUDIO_PLAYBACK_AFE_PROXY);
884}
885
Aniket Kumar Lata8426d1f2019-06-10 15:25:53 -0700886static inline bool is_valid_volume(float left, float right)
887{
888 return ((left >= 0.0f && right >= 0.0f) ? true : false);
889}
890
Avinash Vaish71a8b972014-07-24 15:36:33 +0530891static int enable_audio_route_for_voice_usecases(struct audio_device *adev,
892 struct audio_usecase *uc_info)
893{
894 struct listnode *node;
895 struct audio_usecase *usecase;
896
897 if (uc_info == NULL)
898 return -EINVAL;
899
900 /* Re-route all voice usecases on the shared backend other than the
901 specified usecase to new snd devices */
902 list_for_each(node, &adev->usecase_list) {
903 usecase = node_to_item(node, struct audio_usecase, list);
Narsinga Rao Chellae7f33c12015-01-28 15:23:34 -0800904 if ((usecase->type == VOICE_CALL) && (usecase != uc_info))
Avinash Vaish71a8b972014-07-24 15:36:33 +0530905 enable_audio_route(adev, usecase);
906 }
907 return 0;
908}
909
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +0530910static void enable_asrc_mode(struct audio_device *adev)
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +0530911{
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +0530912 ALOGV("%s", __func__);
913 audio_route_apply_and_update_path(adev->audio_route,
914 "asrc-mode");
915 adev->asrc_mode_enabled = true;
916}
917
918static void disable_asrc_mode(struct audio_device *adev)
919{
920 ALOGV("%s", __func__);
921 audio_route_reset_and_update_path(adev->audio_route,
922 "asrc-mode");
923 adev->asrc_mode_enabled = false;
924}
925
926/*
927 * - Enable ASRC mode for incoming mix path use case(Headphone backend)if Headphone
928 * 44.1 or Native DSD backends are enabled for any of current use case.
929 * e.g. 48-> + (Naitve DSD or Headphone 44.1)
930 * - Disable current mix path use case(Headphone backend) and re-enable it with
931 * ASRC mode for incoming Headphone 44.1 or Native DSD use case.
932 * e.g. Naitve DSD or Headphone 44.1 -> + 48
933 */
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +0530934static void check_and_set_asrc_mode(struct audio_device *adev,
935 struct audio_usecase *uc_info,
936 snd_device_t snd_device)
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +0530937{
938 ALOGV("%s snd device %d", __func__, snd_device);
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +0530939 int i, num_new_devices = 0;
940 snd_device_t split_new_snd_devices[SND_DEVICE_OUT_END];
941 /*
942 *Split snd device for new combo use case
943 *e.g. Headphopne 44.1-> + Ringtone (Headphone + Speaker)
944 */
945 if (platform_split_snd_device(adev->platform,
946 snd_device,
947 &num_new_devices,
948 split_new_snd_devices) == 0) {
949 for (i = 0; i < num_new_devices; i++)
950 check_and_set_asrc_mode(adev, uc_info, split_new_snd_devices[i]);
951 } else {
952 int new_backend_idx = platform_get_backend_index(snd_device);
953 if (((new_backend_idx == HEADPHONE_BACKEND) ||
954 (new_backend_idx == HEADPHONE_44_1_BACKEND) ||
955 (new_backend_idx == DSD_NATIVE_BACKEND)) &&
956 !adev->asrc_mode_enabled) {
957 struct listnode *node = NULL;
958 struct audio_usecase *uc = NULL;
959 struct stream_out *curr_out = NULL;
960 int usecase_backend_idx = DEFAULT_CODEC_BACKEND;
961 int i, num_devices, ret = 0;
962 snd_device_t split_snd_devices[SND_DEVICE_OUT_END];
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +0530963
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +0530964 list_for_each(node, &adev->usecase_list) {
965 uc = node_to_item(node, struct audio_usecase, list);
966 curr_out = (struct stream_out*) uc->stream.out;
967 if (curr_out && PCM_PLAYBACK == uc->type && uc != uc_info) {
968 /*
969 *Split snd device for existing combo use case
970 *e.g. Ringtone (Headphone + Speaker) + Headphopne 44.1
971 */
972 ret = platform_split_snd_device(adev->platform,
973 uc->out_snd_device,
974 &num_devices,
975 split_snd_devices);
976 if (ret < 0 || num_devices == 0) {
977 ALOGV("%s: Unable to split uc->out_snd_device: %d",__func__, uc->out_snd_device);
978 split_snd_devices[0] = uc->out_snd_device;
979 num_devices = 1;
Garmond Leung50058f62017-02-08 09:49:30 -0800980 }
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +0530981 for (i = 0; i < num_devices; i++) {
982 usecase_backend_idx = platform_get_backend_index(split_snd_devices[i]);
983 ALOGD("%s:snd_dev %d usecase_backend_idx %d",__func__, split_snd_devices[i],usecase_backend_idx);
984 if((new_backend_idx == HEADPHONE_BACKEND) &&
985 ((usecase_backend_idx == HEADPHONE_44_1_BACKEND) ||
986 (usecase_backend_idx == DSD_NATIVE_BACKEND))) {
987 ALOGD("%s:DSD or native stream detected enabling asrcmode in hardware",
988 __func__);
989 enable_asrc_mode(adev);
990 break;
991 } else if(((new_backend_idx == HEADPHONE_44_1_BACKEND) ||
992 (new_backend_idx == DSD_NATIVE_BACKEND)) &&
993 (usecase_backend_idx == HEADPHONE_BACKEND)) {
994 ALOGD("%s:48K stream detected, disabling and enabling it with asrcmode in hardware",
995 __func__);
996 disable_audio_route(adev, uc);
997 disable_snd_device(adev, uc->out_snd_device);
998 // Apply true-high-quality-mode if DSD or > 44.1KHz or >=24-bit
999 if (new_backend_idx == DSD_NATIVE_BACKEND)
1000 audio_route_apply_and_update_path(adev->audio_route,
1001 "hph-true-highquality-mode");
1002 else if ((new_backend_idx == HEADPHONE_44_1_BACKEND) &&
1003 (curr_out->bit_width >= 24))
1004 audio_route_apply_and_update_path(adev->audio_route,
1005 "hph-highquality-mode");
1006 enable_asrc_mode(adev);
1007 enable_snd_device(adev, uc->out_snd_device);
1008 enable_audio_route(adev, uc);
1009 break;
1010 }
1011 }
1012 // reset split devices count
1013 num_devices = 0;
Garmond Leung50058f62017-02-08 09:49:30 -08001014 }
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +05301015 if (adev->asrc_mode_enabled)
1016 break;
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +05301017 }
1018 }
1019 }
1020}
1021
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001022static int send_effect_enable_disable_mixer_ctl(struct audio_device *adev,
1023 struct audio_effect_config effect_config,
1024 unsigned int param_value)
1025{
1026 char mixer_ctl_name[] = "Audio Effect";
1027 struct mixer_ctl *ctl;
1028 long set_values[6];
Eric Laurent637e2d42018-11-15 12:24:31 -08001029 struct stream_in *in = adev_get_active_input(adev);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001030
Aniket Kumar Lata7de63522019-06-13 11:05:18 -07001031 if (in == NULL) {
1032 ALOGE("%s: active input stream is NULL", __func__);
1033 return -EINVAL;
1034 }
1035
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001036 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1037 if (!ctl) {
1038 ALOGE("%s: Could not get mixer ctl - %s",
1039 __func__, mixer_ctl_name);
1040 return -EINVAL;
1041 }
1042
1043 set_values[0] = 1; //0:Rx 1:Tx
1044 set_values[1] = in->app_type_cfg.app_type;
1045 set_values[2] = (long)effect_config.module_id;
1046 set_values[3] = (long)effect_config.instance_id;
1047 set_values[4] = (long)effect_config.param_id;
1048 set_values[5] = param_value;
1049
1050 mixer_ctl_set_array(ctl, set_values, ARRAY_SIZE(set_values));
1051
1052 return 0;
1053
1054}
1055
1056static int update_effect_param_ecns(struct audio_device *adev, unsigned int module_id,
1057 int effect_type, unsigned int *param_value)
1058{
1059 int ret = 0;
1060 struct audio_effect_config other_effect_config;
1061 struct audio_usecase *usecase = NULL;
Eric Laurent637e2d42018-11-15 12:24:31 -08001062 struct stream_in *in = adev_get_active_input(adev);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001063
Aniket Kumar Lata7de63522019-06-13 11:05:18 -07001064 if (in == NULL) {
1065 ALOGE("%s: active input stream is NULL", __func__);
1066 return -EINVAL;
1067 }
1068
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001069 usecase = get_usecase_from_list(adev, in->usecase);
1070 if (!usecase)
1071 return -EINVAL;
1072
1073 ret = platform_get_effect_config_data(usecase->in_snd_device, &other_effect_config,
1074 effect_type == EFFECT_AEC ? EFFECT_NS : EFFECT_AEC);
1075 if (ret < 0) {
1076 ALOGE("%s Failed to get effect params %d", __func__, ret);
1077 return ret;
1078 }
1079
1080 if (module_id == other_effect_config.module_id) {
1081 //Same module id for AEC/NS. Values need to be combined
1082 if (((effect_type == EFFECT_AEC) && (in->enable_ns)) ||
1083 ((effect_type == EFFECT_NS) && (in->enable_aec))) {
1084 *param_value |= other_effect_config.param_value;
1085 }
1086 }
1087
1088 return ret;
1089}
1090
1091static int enable_disable_effect(struct audio_device *adev, int effect_type, bool enable)
Gangadhar Sb0210342019-02-22 17:39:41 +05301092{
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001093 struct audio_effect_config effect_config;
1094 struct audio_usecase *usecase = NULL;
1095 int ret = 0;
1096 unsigned int param_value = 0;
Eric Laurent637e2d42018-11-15 12:24:31 -08001097 struct stream_in *in = adev_get_active_input(adev);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001098
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08001099 if(!voice_extn_is_dynamic_ecns_enabled())
1100 return ENOSYS;
1101
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001102 if (!in) {
1103 ALOGE("%s: Invalid input stream", __func__);
1104 return -EINVAL;
1105 }
1106
1107 ALOGD("%s: effect_type:%d enable:%d", __func__, effect_type, enable);
1108
1109 usecase = get_usecase_from_list(adev, in->usecase);
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001110 if (usecase == NULL) {
1111 ALOGE("%s: Could not find the usecase (%d) in the list",
1112 __func__, in->usecase);
1113 return -EINVAL;
1114 }
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001115
1116 ret = platform_get_effect_config_data(usecase->in_snd_device, &effect_config, effect_type);
1117 if (ret < 0) {
1118 ALOGE("%s Failed to get module id %d", __func__, ret);
1119 return ret;
1120 }
1121 ALOGV("%s: %d %d usecase->id:%d usecase->in_snd_device:%d", __func__, effect_config.module_id,
1122 in->app_type_cfg.app_type, usecase->id, usecase->in_snd_device);
1123
1124 if(enable)
1125 param_value = effect_config.param_value;
1126
1127 /*Special handling for AEC & NS effects Param values need to be
1128 updated if module ids are same*/
1129
1130 if ((effect_type == EFFECT_AEC) || (effect_type == EFFECT_NS)) {
1131 ret = update_effect_param_ecns(adev, effect_config.module_id, effect_type, &param_value);
1132 if (ret < 0)
1133 return ret;
1134 }
1135
1136 ret = send_effect_enable_disable_mixer_ctl(adev, effect_config, param_value);
1137
1138 return ret;
1139}
1140
1141static void check_and_enable_effect(struct audio_device *adev)
1142{
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08001143 if(!voice_extn_is_dynamic_ecns_enabled())
1144 return;
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001145
Eric Laurent637e2d42018-11-15 12:24:31 -08001146 struct stream_in *in = adev_get_active_input(adev);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001147
Eric Laurent637e2d42018-11-15 12:24:31 -08001148 if (in != NULL && !in->standby) {
1149 if (in->enable_aec)
1150 enable_disable_effect(adev, EFFECT_AEC, true);
1151
1152 if (in->enable_ns &&
1153 in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) {
1154 enable_disable_effect(adev, EFFECT_NS, true);
1155 }
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001156 }
1157}
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07001158
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07001159int pcm_ioctl(struct pcm *pcm, int request, ...)
1160{
1161 va_list ap;
1162 void * arg;
1163 int pcm_fd = *(int*)pcm;
1164
1165 va_start(ap, request);
1166 arg = va_arg(ap, void *);
1167 va_end(ap);
1168
1169 return ioctl(pcm_fd, request, arg);
1170}
1171
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -07001172int enable_audio_route(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001173 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001174{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001175 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001176 char mixer_path[MIXER_PATH_MAX_LENGTH];
Manish Dewangan58229382017-02-02 15:48:41 +05301177 struct stream_out *out = NULL;
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301178 struct stream_in *in = NULL;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001179 struct listnode out_devices;
Soumya Managoli6993b762018-06-28 16:04:57 +05301180 int ret = 0;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001181
1182 if (usecase == NULL)
1183 return -EINVAL;
1184
1185 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
1186
Carter Hsu2e429db2019-05-14 18:50:52 +08001187 if (usecase->type == PCM_CAPTURE) {
1188 struct stream_in *in = usecase->stream.in;
1189 struct audio_usecase *uinfo;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001190 snd_device = usecase->in_snd_device;
Carter Hsu2e429db2019-05-14 18:50:52 +08001191
1192 if (in) {
1193 if (in->enable_aec || in->enable_ec_port) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001194 list_init(&out_devices);
1195 update_device_list(&out_devices, AUDIO_DEVICE_OUT_SPEAKER, "", true);
Carter Hsu2e429db2019-05-14 18:50:52 +08001196 struct listnode *node;
1197 struct audio_usecase *voip_usecase = get_usecase_from_list(adev,
1198 USECASE_AUDIO_PLAYBACK_VOIP);
1199 if (voip_usecase) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001200 assign_devices(&out_devices,
1201 &voip_usecase->stream.out->device_list);
Carter Hsu2e429db2019-05-14 18:50:52 +08001202 } else if (adev->primary_output &&
1203 !adev->primary_output->standby) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001204 assign_devices(&out_devices,
1205 &adev->primary_output->device_list);
Carter Hsu2e429db2019-05-14 18:50:52 +08001206 } else {
1207 list_for_each(node, &adev->usecase_list) {
1208 uinfo = node_to_item(node, struct audio_usecase, list);
1209 if (uinfo->type != PCM_CAPTURE) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001210 assign_devices(&out_devices,
1211 &uinfo->stream.out->device_list);
Carter Hsu2e429db2019-05-14 18:50:52 +08001212 break;
1213 }
1214 }
1215 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001216
1217 platform_set_echo_reference(adev, true, &out_devices);
Carter Hsu2e429db2019-05-14 18:50:52 +08001218 in->ec_opened = true;
1219 }
1220 }
Guodong Huf5e614d2019-06-24 18:42:03 +08001221 } else if ((usecase->type == TRANSCODE_LOOPBACK_TX) || ((usecase->type == PCM_HFP_CALL) &&
1222 ((usecase->id == USECASE_AUDIO_HFP_SCO) || (usecase->id == USECASE_AUDIO_HFP_SCO_WB)) &&
1223 (usecase->in_snd_device == SND_DEVICE_IN_VOICE_SPEAKER_MIC_HFP_MMSECNS))) {
Carter Hsu2e429db2019-05-14 18:50:52 +08001224 snd_device = usecase->in_snd_device;
1225 } else {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001226 snd_device = usecase->out_snd_device;
Carter Hsu2e429db2019-05-14 18:50:52 +08001227 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001228
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08001229#ifdef DS1_DOLBY_DAP_ENABLED
1230 audio_extn_dolby_set_dmid(adev);
1231 audio_extn_dolby_set_endpoint(adev);
1232#endif
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -07001233 audio_extn_dolby_ds2_set_endpoint(adev);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07001234 audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_BUSY);
Dhananjay Kumar45b71742014-05-29 21:47:27 +05301235 audio_extn_listen_update_stream_status(usecase, LISTEN_EVENT_STREAM_BUSY);
Ben Romberger1fafdde2015-09-09 19:43:15 -07001236 audio_extn_utils_send_app_type_cfg(adev, usecase);
Jasmine Cha4dcc1092019-03-04 18:12:47 +08001237 if (audio_extn_is_maxx_audio_enabled())
1238 audio_extn_ma_set_device(usecase);
Dhananjay Kumar14170dd2015-08-28 13:24:16 +05301239 audio_extn_utils_send_audio_calibration(adev, usecase);
Manish Dewangan58229382017-02-02 15:48:41 +05301240 if ((usecase->type == PCM_PLAYBACK) && is_offload_usecase(usecase->id)) {
1241 out = usecase->stream.out;
1242 if (out && out->compr)
1243 audio_extn_utils_compress_set_clk_rec_mode(usecase);
1244 }
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301245
1246 if (usecase->type == PCM_CAPTURE) {
1247 in = usecase->stream.in;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001248 if (in && is_loopback_input_device(get_device_types(&in->device_list))) {
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301249 ALOGD("%s: set custom mtmx params v1", __func__);
1250 audio_extn_set_custom_mtmx_params_v1(adev, usecase, true);
1251 }
1252 } else {
1253 audio_extn_set_custom_mtmx_params_v2(adev, usecase, true);
1254 }
Manish Dewangan58229382017-02-02 15:48:41 +05301255
Andy Hung756ecc12018-10-19 17:47:12 -07001256 // we shouldn't truncate mixer_path
1257 ALOGW_IF(strlcpy(mixer_path, use_case_table[usecase->id], sizeof(mixer_path))
1258 >= sizeof(mixer_path), "%s: truncation on mixer path", __func__);
1259 // this also appends to mixer_path
Banajit Goswami20cdd212015-09-11 01:11:30 -07001260 platform_add_backend_name(mixer_path, snd_device, usecase);
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07001261 ALOGD("%s: apply mixer and update path: %s", __func__, mixer_path);
Soumya Managoli6993b762018-06-28 16:04:57 +05301262 ret = audio_route_apply_and_update_path(adev->audio_route, mixer_path);
1263 if (!ret && usecase->id == USECASE_AUDIO_PLAYBACK_FM) {
1264 struct str_parms *parms = str_parms_create_str("fm_restore_volume=1");
1265 if (parms) {
1266 audio_extn_fm_set_parameters(adev, parms);
1267 str_parms_destroy(parms);
1268 }
1269 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001270 ALOGV("%s: exit", __func__);
1271 return 0;
1272}
1273
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001274int disable_audio_route(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001275 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001276{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001277 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001278 char mixer_path[MIXER_PATH_MAX_LENGTH];
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301279 struct stream_in *in = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001280
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05301281 if (usecase == NULL || usecase->id == USECASE_INVALID)
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001282 return -EINVAL;
1283
1284 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Surendar Karka93cd25a2018-08-28 14:21:37 +05301285 if (usecase->type == PCM_CAPTURE || usecase->type == TRANSCODE_LOOPBACK_TX)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001286 snd_device = usecase->in_snd_device;
1287 else
1288 snd_device = usecase->out_snd_device;
Andy Hung756ecc12018-10-19 17:47:12 -07001289 // we shouldn't truncate mixer_path
1290 ALOGW_IF(strlcpy(mixer_path, use_case_table[usecase->id], sizeof(mixer_path))
1291 >= sizeof(mixer_path), "%s: truncation on mixer path", __func__);
1292 // this also appends to mixer_path
Banajit Goswami20cdd212015-09-11 01:11:30 -07001293 platform_add_backend_name(mixer_path, snd_device, usecase);
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07001294 ALOGD("%s: reset and update mixer path: %s", __func__, mixer_path);
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -07001295 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Carter Hsu2e429db2019-05-14 18:50:52 +08001296 if (usecase->type == PCM_CAPTURE) {
1297 struct stream_in *in = usecase->stream.in;
1298 if (in && in->ec_opened) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001299 struct listnode out_devices;
1300 list_init(&out_devices);
1301 platform_set_echo_reference(in->dev, false, &out_devices);
Carter Hsu2e429db2019-05-14 18:50:52 +08001302 in->ec_opened = false;
1303 }
1304 }
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07001305 audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_FREE);
Dhananjay Kumar45b71742014-05-29 21:47:27 +05301306 audio_extn_listen_update_stream_status(usecase, LISTEN_EVENT_STREAM_FREE);
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301307
1308 if (usecase->type == PCM_CAPTURE) {
1309 in = usecase->stream.in;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001310 if (in && is_loopback_input_device(get_device_types(&in->device_list))) {
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301311 ALOGD("%s: reset custom mtmx params v1", __func__);
1312 audio_extn_set_custom_mtmx_params_v1(adev, usecase, false);
1313 }
1314 } else {
1315 audio_extn_set_custom_mtmx_params_v2(adev, usecase, false);
1316 }
1317
Weiyin Jiang298ffd92019-06-03 14:29:30 +08001318 if ((usecase->type == PCM_PLAYBACK) &&
1319 (usecase->stream.out != NULL))
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +05301320 usecase->stream.out->pspd_coeff_sent = false;
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05301321
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001322 ALOGV("%s: exit", __func__);
1323 return 0;
1324}
1325
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -07001326int enable_snd_device(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001327 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001328{
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301329 int i, num_devices = 0;
1330 snd_device_t new_snd_devices[SND_DEVICE_OUT_END];
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001331 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
1332
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001333 if (snd_device < SND_DEVICE_MIN ||
1334 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001335 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001336 return -EINVAL;
1337 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001338
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001339 if (platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001340 ALOGE("%s: Invalid sound device returned", __func__);
1341 return -EINVAL;
1342 }
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001343
1344 adev->snd_dev_ref_cnt[snd_device]++;
1345
1346 if ((adev->snd_dev_ref_cnt[snd_device] > 1) &&
1347 (platform_split_snd_device(adev->platform,
1348 snd_device,
1349 &num_devices,
1350 new_snd_devices) != 0)) {
Eric Laurent994a6932013-07-17 11:51:42 -07001351 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001352 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001353 return 0;
1354 }
1355
Gopikrishnaiah Anandane85d0462014-06-30 21:41:20 -07001356 if (audio_extn_spkr_prot_is_enabled())
1357 audio_extn_spkr_prot_calib_cancel(adev);
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -07001358
Aalique Grahame22e49102018-12-18 14:23:57 -08001359 audio_extn_dsm_feedback_enable(adev, snd_device, true);
1360
Xiaojun Sang040cc9f2015-08-03 19:38:28 +08001361 if (platform_can_enable_spkr_prot_on_device(snd_device) &&
1362 audio_extn_spkr_prot_is_enabled()) {
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001363 if (platform_get_spkr_prot_acdb_id(snd_device) < 0) {
1364 goto err;
1365 }
1366 audio_extn_dev_arbi_acquire(snd_device);
1367 if (audio_extn_spkr_prot_start_processing(snd_device)) {
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -08001368 ALOGE("%s: spkr_start_processing failed", __func__);
Ravit Dennisaaee49c2015-02-04 21:26:22 +02001369 audio_extn_dev_arbi_release(snd_device);
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001370 goto err;
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -08001371 }
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001372 } else if (platform_split_snd_device(adev->platform,
1373 snd_device,
1374 &num_devices,
1375 new_snd_devices) == 0) {
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301376 for (i = 0; i < num_devices; i++) {
1377 enable_snd_device(adev, new_snd_devices[i]);
1378 }
Aalique Grahame22e49102018-12-18 14:23:57 -08001379 platform_set_speaker_gain_in_combo(adev, snd_device, true);
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -08001380 } else {
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07001381 ALOGD("%s: snd_device(%d: %s)", __func__, snd_device, device_name);
Naresh Tannirucd2353e2016-08-19 00:37:25 +05301382
Preetam Singh Ranawatf1d417c2017-01-10 17:00:32 +05301383
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001384 if ((SND_DEVICE_OUT_BT_A2DP == snd_device) &&
1385 (audio_extn_a2dp_start_playback() < 0)) {
1386 ALOGE(" fail to configure A2dp Source control path ");
1387 goto err;
1388 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001389
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001390 if ((SND_DEVICE_IN_BT_A2DP == snd_device) &&
1391 (audio_extn_a2dp_start_capture() < 0)) {
1392 ALOGE(" fail to configure A2dp Sink control path ");
1393 goto err;
1394 }
Naresh Tannirucd2353e2016-08-19 00:37:25 +05301395
Zhou Song12c29502019-03-16 10:37:18 +08001396 if (((SND_DEVICE_OUT_BT_SCO_SWB == snd_device) ||
1397 (SND_DEVICE_IN_BT_SCO_MIC_SWB_NREC == snd_device) ||
1398 (SND_DEVICE_IN_BT_SCO_MIC_SWB == snd_device)) &&
1399 (audio_extn_sco_start_configuration() < 0)) {
1400 ALOGE(" fail to configure sco control path ");
1401 goto err;
1402 }
1403
Zhou Song331c8e52019-08-26 14:16:12 +08001404 configure_btsco_sample_rate(snd_device);
Bharath Ramachandramurthy0de16782014-03-28 21:34:33 -07001405 /* due to the possibility of calibration overwrite between listen
1406 and audio, notify listen hal before audio calibration is sent */
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07001407 audio_extn_sound_trigger_update_device_status(snd_device,
1408 ST_EVENT_SND_DEVICE_BUSY);
Dhananjay Kumar45b71742014-05-29 21:47:27 +05301409 audio_extn_listen_update_device_status(snd_device,
1410 LISTEN_EVENT_SND_DEVICE_BUSY);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -07001411 if (platform_get_snd_device_acdb_id(snd_device) < 0) {
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07001412 audio_extn_sound_trigger_update_device_status(snd_device,
1413 ST_EVENT_SND_DEVICE_FREE);
Dhananjay Kumar45b71742014-05-29 21:47:27 +05301414 audio_extn_listen_update_device_status(snd_device,
1415 LISTEN_EVENT_SND_DEVICE_FREE);
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001416 goto err;
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -07001417 }
Lior Barenboim0b61bc72014-05-13 13:01:37 +03001418 audio_extn_dev_arbi_acquire(snd_device);
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -07001419 audio_route_apply_and_update_path(adev->audio_route, device_name);
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301420
1421 if (SND_DEVICE_OUT_HEADPHONES == snd_device &&
1422 !adev->native_playback_enabled &&
1423 audio_is_true_native_stream_active(adev)) {
1424 ALOGD("%s: %d: napb: enabling native mode in hardware",
1425 __func__, __LINE__);
1426 audio_route_apply_and_update_path(adev->audio_route,
1427 "true-native-mode");
1428 adev->native_playback_enabled = true;
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +05301429 }
Dhanalakshmi Siddani10621622018-04-30 15:07:27 +05301430 if (((snd_device == SND_DEVICE_IN_HANDSET_6MIC) ||
1431 (snd_device == SND_DEVICE_IN_HANDSET_QMIC)) &&
Eric Laurent637e2d42018-11-15 12:24:31 -08001432 (audio_extn_ffv_get_stream() == adev_get_active_input(adev))) {
Garmond Leunge2433c32017-09-28 21:51:22 -07001433 ALOGD("%s: init ec ref loopback", __func__);
1434 audio_extn_ffv_init_ec_ref_loopback(adev, snd_device);
1435 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001436 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001437 return 0;
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001438err:
1439 adev->snd_dev_ref_cnt[snd_device]--;
1440 return -EINVAL;;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001441}
1442
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001443int disable_snd_device(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001444 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001445{
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301446 int i, num_devices = 0;
1447 snd_device_t new_snd_devices[SND_DEVICE_OUT_END];
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001448 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
1449
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001450 if (snd_device < SND_DEVICE_MIN ||
1451 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001452 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001453 return -EINVAL;
1454 }
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001455
1456 if (platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
1457 ALOGE("%s: Invalid sound device returned", __func__);
1458 return -EINVAL;
1459 }
1460
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001461 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
1462 ALOGE("%s: device ref cnt is already 0", __func__);
1463 return -EINVAL;
1464 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001465
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001466 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -07001467
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001468
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001469 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07001470 ALOGD("%s: snd_device(%d: %s)", __func__, snd_device, device_name);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301471
Aalique Grahame22e49102018-12-18 14:23:57 -08001472 audio_extn_dsm_feedback_enable(adev, snd_device, false);
1473
Xiaojun Sang040cc9f2015-08-03 19:38:28 +08001474 if (platform_can_enable_spkr_prot_on_device(snd_device) &&
1475 audio_extn_spkr_prot_is_enabled()) {
Anish Kumar46c7b872014-09-09 01:49:44 -07001476 audio_extn_spkr_prot_stop_processing(snd_device);
Vignesh Kulothungan3b5fae52017-09-25 12:16:30 -07001477
1478 // when speaker device is disabled, reset swap.
1479 // will be renabled on usecase start
1480 platform_set_swap_channels(adev, false);
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001481 } else if (platform_split_snd_device(adev->platform,
1482 snd_device,
1483 &num_devices,
1484 new_snd_devices) == 0) {
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301485 for (i = 0; i < num_devices; i++) {
1486 disable_snd_device(adev, new_snd_devices[i]);
1487 }
Aalique Grahame22e49102018-12-18 14:23:57 -08001488 platform_set_speaker_gain_in_combo(adev, snd_device, false);
Lior Barenboim0b61bc72014-05-13 13:01:37 +03001489 } else {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -07001490 audio_route_reset_and_update_path(adev->audio_route, device_name);
Lior Barenboim0b61bc72014-05-13 13:01:37 +03001491 }
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07001492
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001493 if (snd_device == SND_DEVICE_OUT_BT_A2DP)
Naresh Tannirucd2353e2016-08-19 00:37:25 +05301494 audio_extn_a2dp_stop_playback();
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001495 else if (snd_device == SND_DEVICE_IN_BT_A2DP)
Florian Pfister1a84f312018-07-19 14:38:18 +02001496 audio_extn_a2dp_stop_capture();
Zhou Songd6d71752019-05-21 18:08:51 +08001497 else if ((snd_device == SND_DEVICE_OUT_HDMI) ||
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001498 (snd_device == SND_DEVICE_OUT_DISPLAY_PORT))
Ashish Jain81eb2a82015-05-13 10:52:34 +05301499 adev->is_channel_status_set = false;
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001500 else if ((snd_device == SND_DEVICE_OUT_HEADPHONES) &&
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301501 adev->native_playback_enabled) {
1502 ALOGD("%s: %d: napb: disabling native mode in hardware",
1503 __func__, __LINE__);
1504 audio_route_reset_and_update_path(adev->audio_route,
1505 "true-native-mode");
1506 adev->native_playback_enabled = false;
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001507 } else if ((snd_device == SND_DEVICE_OUT_HEADPHONES) &&
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +05301508 adev->asrc_mode_enabled) {
1509 ALOGD("%s: %d: disabling asrc mode in hardware", __func__, __LINE__);
Preetam Singh Ranawat6a836662016-09-08 17:04:35 +05301510 disable_asrc_mode(adev);
1511 audio_route_apply_and_update_path(adev->audio_route, "hph-lowpower-mode");
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001512 } else if (((snd_device == SND_DEVICE_IN_HANDSET_6MIC) ||
Dhanalakshmi Siddaniaf4bd622019-02-27 16:28:06 +05301513 (snd_device == SND_DEVICE_IN_HANDSET_QMIC)) &&
Eric Laurent637e2d42018-11-15 12:24:31 -08001514 (audio_extn_ffv_get_stream() == adev_get_active_input(adev))) {
Garmond Leunge2433c32017-09-28 21:51:22 -07001515 ALOGD("%s: deinit ec ref loopback", __func__);
1516 audio_extn_ffv_deinit_ec_ref_loopback(adev, snd_device);
1517 }
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001518
1519 audio_extn_utils_release_snd_device(snd_device);
1520 } else {
1521 if (platform_split_snd_device(adev->platform,
1522 snd_device,
1523 &num_devices,
1524 new_snd_devices) == 0) {
1525 for (i = 0; i < num_devices; i++) {
1526 adev->snd_dev_ref_cnt[new_snd_devices[i]]--;
1527 }
1528 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001529 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -07001530
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001531 return 0;
1532}
1533
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001534/*
1535 legend:
1536 uc - existing usecase
1537 new_uc - new usecase
1538 d1, d11, d2 - SND_DEVICE enums
1539 a1, a2 - corresponding ANDROID device enums
1540 B1, B2 - backend strings
1541
1542case 1
1543 uc->dev d1 (a1) B1
1544 new_uc->dev d1 (a1), d2 (a2) B1, B2
1545
1546 resolution: disable and enable uc->dev on d1
1547
1548case 2
1549 uc->dev d1 (a1) B1
1550 new_uc->dev d11 (a1) B1
1551
1552 resolution: need to switch uc since d1 and d11 are related
1553 (e.g. speaker and voice-speaker)
1554 use ANDROID_DEVICE_OUT enums to match devices since SND_DEVICE enums may vary
1555
1556case 3
1557 uc->dev d1 (a1) B1
1558 new_uc->dev d2 (a2) B2
1559
1560 resolution: no need to switch uc
1561
1562case 4
1563 uc->dev d1 (a1) B1
1564 new_uc->dev d2 (a2) B1
1565
1566 resolution: disable enable uc-dev on d2 since backends match
1567 we cannot enable two streams on two different devices if they
1568 share the same backend. e.g. if offload is on speaker device using
1569 QUAD_MI2S backend and a low-latency stream is started on voice-handset
1570 using the same backend, offload must also be switched to voice-handset.
1571
1572case 5
1573 uc->dev d1 (a1) B1
1574 new_uc->dev d1 (a1), d2 (a2) B1
1575
1576 resolution: disable enable uc-dev on d2 since backends match
1577 we cannot enable two streams on two different devices if they
1578 share the same backend.
1579
1580case 6
1581 uc->dev d1 (a1) B1
1582 new_uc->dev d2 (a1) B2
1583
1584 resolution: no need to switch
1585
1586case 7
1587 uc->dev d1 (a1), d2 (a2) B1, B2
1588 new_uc->dev d1 (a1) B1
1589
1590 resolution: no need to switch
1591
Zhou Song4ba65882018-07-09 14:48:07 +08001592case 8
1593 uc->dev d1 (a1) B1
1594 new_uc->dev d11 (a1), d2 (a2) B1, B2
1595 resolution: compared to case 1, for this case, d1 and d11 are related
1596 then need to do the same as case 2 to siwtch to new uc
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001597*/
1598static snd_device_t derive_playback_snd_device(void * platform,
1599 struct audio_usecase *uc,
1600 struct audio_usecase *new_uc,
1601 snd_device_t new_snd_device)
1602{
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001603 struct listnode a1, a2;
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001604
1605 snd_device_t d1 = uc->out_snd_device;
1606 snd_device_t d2 = new_snd_device;
1607
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001608 list_init(&a1);
1609 list_init(&a2);
1610
Siddartha Shaik31b530e2017-05-19 15:26:33 +05301611 switch (uc->type) {
Surendar Karka93cd25a2018-08-28 14:21:37 +05301612 case TRANSCODE_LOOPBACK_RX :
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001613 assign_devices(&a1, &uc->stream.inout->out_config.device_list);
1614 assign_devices(&a2, &new_uc->stream.inout->out_config.device_list);
Siddartha Shaik31b530e2017-05-19 15:26:33 +05301615 break;
1616 default :
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001617 assign_devices(&a1, &uc->stream.out->device_list);
1618 assign_devices(&a2, &new_uc->stream.out->device_list);
Siddartha Shaik31b530e2017-05-19 15:26:33 +05301619 break;
1620 }
1621
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001622 // Treat as a special case when a1 and a2 are not disjoint
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001623 if (!compare_devices(&a1, &a2) &&
1624 compare_devices_for_any_match(&a1 ,&a2)) {
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001625 snd_device_t d3[2];
1626 int num_devices = 0;
1627 int ret = platform_split_snd_device(platform,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001628 list_length(&a1) > 1 ? d1 : d2,
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001629 &num_devices,
1630 d3);
1631 if (ret < 0) {
1632 if (ret != -ENOSYS) {
1633 ALOGW("%s failed to split snd_device %d",
1634 __func__,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001635 list_length(&a1) > 1 ? d1 : d2);
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001636 }
1637 goto end;
1638 }
1639
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001640 if (platform_check_backends_match(d3[0], d3[1])) {
1641 return d2; // case 5
1642 } else {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001643 if (list_length(&a1) > 1)
Samyak Jaind826b502019-07-17 16:16:42 +05301644 return d1; //case 7
Garmond Leungb9eeba42018-09-18 11:10:41 -07001645 // check if d1 is related to any of d3's
1646 if (d1 == d3[0] || d1 == d3[1])
Zhou Song4ba65882018-07-09 14:48:07 +08001647 return d1; // case 1
1648 else
1649 return d3[1]; // case 8
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -07001650 }
1651 } else {
1652 if (platform_check_backends_match(d1, d2)) {
1653 return d2; // case 2, 4
1654 } else {
1655 return d1; // case 6, 3
1656 }
1657 }
1658
1659end:
1660 return d2; // return whatever was calculated before.
1661}
1662
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001663static void check_usecases_codec_backend(struct audio_device *adev,
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301664 struct audio_usecase *uc_info,
1665 snd_device_t snd_device)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001666{
1667 struct listnode *node;
1668 struct audio_usecase *usecase;
1669 bool switch_device[AUDIO_USECASE_MAX];
Chaithanya Krishna Bacharaju49e7db02017-03-14 11:57:26 +05301670 snd_device_t uc_derive_snd_device;
1671 snd_device_t derive_snd_device[AUDIO_USECASE_MAX];
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001672 snd_device_t split_snd_devices[SND_DEVICE_OUT_END];
1673 int i, num_uc_to_switch = 0, num_devices = 0;
kunleiz5cd52b82016-11-07 17:22:52 +08001674 int status = 0;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301675 bool force_restart_session = false;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001676 /*
1677 * This function is to make sure that all the usecases that are active on
1678 * the hardware codec backend are always routed to any one device that is
1679 * handled by the hardware codec.
1680 * For example, if low-latency and deep-buffer usecases are currently active
1681 * on speaker and out_set_parameters(headset) is received on low-latency
1682 * output, then we have to make sure deep-buffer is also switched to headset,
1683 * because of the limitation that both the devices cannot be enabled
1684 * at the same time as they share the same backend.
1685 */
Mingming Yin3ee55c62014-08-04 14:23:35 -07001686 /*
1687 * This call is to check if we need to force routing for a particular stream
1688 * If there is a backend configuration change for the device when a
1689 * new stream starts, then ADM needs to be closed and re-opened with the new
1690 * configuraion. This call check if we need to re-route all the streams
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -08001691 * associated with the backend. Touch tone + 24 bit + native playback.
Mingming Yin3ee55c62014-08-04 14:23:35 -07001692 */
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -08001693 bool force_routing = platform_check_and_set_codec_backend_cfg(adev, uc_info,
1694 snd_device);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301695 /* For a2dp device reconfigure all active sessions
1696 * with new AFE encoder format based on a2dp state
1697 */
1698 if ((SND_DEVICE_OUT_BT_A2DP == snd_device ||
1699 SND_DEVICE_OUT_SPEAKER_AND_BT_A2DP == snd_device) &&
1700 audio_extn_a2dp_is_force_device_switch()) {
1701 force_routing = true;
1702 force_restart_session = true;
1703 }
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301704 ALOGD("%s:becf: force routing %d", __func__, force_routing);
1705
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001706 /* Disable all the usecases on the shared backend other than the
Apoorv Raghuvanshif59bb222015-02-18 12:23:23 -08001707 * specified usecase.
Apoorv Raghuvanshif59bb222015-02-18 12:23:23 -08001708 */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001709 for (i = 0; i < AUDIO_USECASE_MAX; i++)
1710 switch_device[i] = false;
1711
1712 list_for_each(node, &adev->usecase_list) {
1713 usecase = node_to_item(node, struct audio_usecase, list);
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -08001714
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301715 ALOGD("%s:becf: (%d) check_usecases curr device: %s, usecase device:%s "
1716 "backends match %d",__func__, i,
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301717 platform_get_snd_device_name(snd_device),
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301718 platform_get_snd_device_name(usecase->out_snd_device),
1719 platform_check_backends_match(snd_device, usecase->out_snd_device));
Rahul Sharma99770982019-03-06 17:05:26 +05301720 if ((usecase->type != PCM_CAPTURE) && (usecase != uc_info) &&
1721 (usecase->type != PCM_PASSTHROUGH)) {
Ashish Jain6a65b352017-03-21 17:24:40 +05301722 uc_derive_snd_device = derive_playback_snd_device(adev->platform,
1723 usecase, uc_info, snd_device);
1724 if (((uc_derive_snd_device != usecase->out_snd_device) || force_routing) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001725 (is_codec_backend_out_device_type(&usecase->device_list) ||
1726 compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_AUX_DIGITAL) ||
1727 compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_USB_DEVICE) ||
1728 compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_USB_HEADSET) ||
1729 is_a2dp_out_device_type(&usecase->device_list) ||
1730 is_sco_out_device_type(&usecase->device_list)) &&
Ashish Jain6a65b352017-03-21 17:24:40 +05301731 ((force_restart_session) ||
1732 (platform_check_backends_match(snd_device, usecase->out_snd_device)))) {
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301733 ALOGD("%s:becf: check_usecases (%s) is active on (%s) - disabling ..",
1734 __func__, use_case_table[usecase->id],
1735 platform_get_snd_device_name(usecase->out_snd_device));
1736 disable_audio_route(adev, usecase);
1737 switch_device[usecase->id] = true;
Chaithanya Krishna Bacharaju49e7db02017-03-14 11:57:26 +05301738 /* Enable existing usecase on derived playback device */
1739 derive_snd_device[usecase->id] = uc_derive_snd_device;
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +05301740 num_uc_to_switch++;
Ashish Jain6a65b352017-03-21 17:24:40 +05301741 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001742 }
1743 }
1744
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301745 ALOGD("%s:becf: check_usecases num.of Usecases to switch %d", __func__,
1746 num_uc_to_switch);
1747
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001748 if (num_uc_to_switch) {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -07001749 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001750
Venkata Narendra Kumar Gutta7610e632014-04-14 23:16:38 +05301751 /* Make sure the previous devices to be disabled first and then enable the
1752 selected devices */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001753 list_for_each(node, &adev->usecase_list) {
1754 usecase = node_to_item(node, struct audio_usecase, list);
1755 if (switch_device[usecase->id]) {
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001756 /* Check if output sound device to be switched can be split and if any
1757 of the split devices match with derived sound device */
1758 if (platform_split_snd_device(adev->platform, usecase->out_snd_device,
1759 &num_devices, split_snd_devices) == 0) {
1760 adev->snd_dev_ref_cnt[usecase->out_snd_device]--;
1761 for (i = 0; i < num_devices; i++) {
1762 /* Disable devices that do not match with derived sound device */
1763 if (split_snd_devices[i] != derive_snd_device[usecase->id])
1764 disable_snd_device(adev, split_snd_devices[i]);
1765 }
1766 } else {
1767 disable_snd_device(adev, usecase->out_snd_device);
1768 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001769 }
1770 }
1771
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -07001772 list_for_each(node, &adev->usecase_list) {
1773 usecase = node_to_item(node, struct audio_usecase, list);
1774 if (switch_device[usecase->id]) {
Weiyin Jiang0d84c8e2019-04-09 22:59:54 +08001775 if (platform_split_snd_device(adev->platform, usecase->out_snd_device,
1776 &num_devices, split_snd_devices) == 0) {
1777 /* Enable derived sound device only if it does not match with
1778 one of the split sound devices. This is because the matching
1779 sound device was not disabled */
1780 bool should_enable = true;
1781 for (i = 0; i < num_devices; i++) {
1782 if (derive_snd_device[usecase->id] == split_snd_devices[i]) {
1783 should_enable = false;
1784 break;
1785 }
1786 }
1787 if (should_enable)
1788 enable_snd_device(adev, derive_snd_device[usecase->id]);
1789 } else {
1790 enable_snd_device(adev, derive_snd_device[usecase->id]);
1791 }
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -07001792 }
1793 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001794
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001795 /* Re-route all the usecases on the shared backend other than the
1796 specified usecase to new snd devices */
1797 list_for_each(node, &adev->usecase_list) {
1798 usecase = node_to_item(node, struct audio_usecase, list);
Karthik Reddy Katta3abfee22016-02-23 10:55:27 +05301799 /* Update the out_snd_device only before enabling the audio route */
1800 if (switch_device[usecase->id]) {
Chaithanya Krishna Bacharaju49e7db02017-03-14 11:57:26 +05301801 usecase->out_snd_device = derive_snd_device[usecase->id];
Karthik Reddy Katta3abfee22016-02-23 10:55:27 +05301802 if (usecase->type != VOICE_CALL) {
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05301803 ALOGD("%s:becf: enabling usecase (%s) on (%s)", __func__,
Karthik Reddy Katta3abfee22016-02-23 10:55:27 +05301804 use_case_table[usecase->id],
1805 platform_get_snd_device_name(usecase->out_snd_device));
kunleiz5cd52b82016-11-07 17:22:52 +08001806 /* Update voc calibration before enabling VoIP route */
1807 if (usecase->type == VOIP_CALL)
1808 status = platform_switch_voice_call_device_post(adev->platform,
Eric Laurent637e2d42018-11-15 12:24:31 -08001809 usecase->out_snd_device,
1810 platform_get_input_snd_device(
1811 adev->platform, NULL,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001812 &uc_info->device_list));
Avinash Vaish71a8b972014-07-24 15:36:33 +05301813 enable_audio_route(adev, usecase);
Sujin Panicker390724d2019-04-26 10:43:36 +05301814 if (usecase->stream.out && usecase->id == USECASE_AUDIO_PLAYBACK_VOIP) {
kunleiz46c47dd2018-03-19 16:28:09 +08001815 out_set_voip_volume(&usecase->stream.out->stream,
1816 usecase->stream.out->volume_l,
1817 usecase->stream.out->volume_r);
1818 }
Karthik Reddy Katta3abfee22016-02-23 10:55:27 +05301819 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001820 }
1821 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001822 }
1823}
1824
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05301825static void check_usecases_capture_codec_backend(struct audio_device *adev,
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001826 struct audio_usecase *uc_info,
1827 snd_device_t snd_device)
1828{
1829 struct listnode *node;
1830 struct audio_usecase *usecase;
1831 bool switch_device[AUDIO_USECASE_MAX];
1832 int i, num_uc_to_switch = 0;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001833 int backend_check_cond = is_codec_backend_out_device_type(&uc_info->device_list);
kunleiz5cd52b82016-11-07 17:22:52 +08001834 int status = 0;
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001835
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05301836 bool force_routing = platform_check_and_set_capture_codec_backend_cfg(adev, uc_info,
1837 snd_device);
1838 ALOGD("%s:becf: force routing %d", __func__, force_routing);
Dhanalakshmi Siddanib678a802016-12-03 11:51:41 +05301839
1840 /*
1841 * Make sure out devices is checked against out codec backend device and
1842 * also in devices against in codec backend. Checking out device against in
1843 * codec backend or vice versa causes issues.
1844 */
1845 if (uc_info->type == PCM_CAPTURE)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001846 backend_check_cond = is_codec_backend_in_device_type(&uc_info->device_list);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001847 /*
1848 * This function is to make sure that all the active capture usecases
1849 * are always routed to the same input sound device.
1850 * For example, if audio-record and voice-call usecases are currently
1851 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
1852 * is received for voice call then we have to make sure that audio-record
1853 * usecase is also switched to earpiece i.e. voice-dmic-ef,
1854 * because of the limitation that two devices cannot be enabled
1855 * at the same time if they share the same backend.
1856 */
1857 for (i = 0; i < AUDIO_USECASE_MAX; i++)
1858 switch_device[i] = false;
1859
1860 list_for_each(node, &adev->usecase_list) {
1861 usecase = node_to_item(node, struct audio_usecase, list);
Dhanalakshmi Siddanib678a802016-12-03 11:51:41 +05301862 /*
1863 * TODO: Enhance below condition to handle BT sco/USB multi recording
1864 */
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -08001865 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001866 usecase != uc_info &&
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05301867 (usecase->in_snd_device != snd_device || force_routing) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001868 ((backend_check_cond &&
1869 (is_codec_backend_in_device_type(&usecase->device_list) ||
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -08001870 (usecase->type == VOIP_CALL))) ||
Carter Hsu1d2a0532018-10-04 09:24:36 +08001871 ((uc_info->type == VOICE_CALL &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001872 is_single_device_type_equal(&usecase->device_list,
1873 AUDIO_DEVICE_IN_VOICE_CALL)) ||
Carter Hsu1d2a0532018-10-04 09:24:36 +08001874 platform_check_backends_match(snd_device,\
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08001875 usecase->in_snd_device))) &&
Anish Kumara020a7c2014-10-17 11:13:22 -07001876 (usecase->id != USECASE_AUDIO_SPKR_CALIB_TX)) {
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001877 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
1878 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -07001879 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001880 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001881 switch_device[usecase->id] = true;
1882 num_uc_to_switch++;
1883 }
1884 }
1885
1886 if (num_uc_to_switch) {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -07001887 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001888
Venkata Narendra Kumar Gutta7610e632014-04-14 23:16:38 +05301889 /* Make sure the previous devices to be disabled first and then enable the
1890 selected devices */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001891 list_for_each(node, &adev->usecase_list) {
1892 usecase = node_to_item(node, struct audio_usecase, list);
1893 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001894 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -08001895 }
1896 }
1897
1898 list_for_each(node, &adev->usecase_list) {
1899 usecase = node_to_item(node, struct audio_usecase, list);
1900 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001901 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001902 }
1903 }
1904
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001905 /* Re-route all the usecases on the shared backend other than the
1906 specified usecase to new snd devices */
1907 list_for_each(node, &adev->usecase_list) {
1908 usecase = node_to_item(node, struct audio_usecase, list);
1909 /* Update the in_snd_device only before enabling the audio route */
1910 if (switch_device[usecase->id] ) {
1911 usecase->in_snd_device = snd_device;
kunleiz5cd52b82016-11-07 17:22:52 +08001912 if (usecase->type != VOICE_CALL) {
1913 /* Update voc calibration before enabling VoIP route */
1914 if (usecase->type == VOIP_CALL)
1915 status = platform_switch_voice_call_device_post(adev->platform,
Zhou Song557e7282017-05-05 17:18:18 +08001916 platform_get_output_snd_device(adev->platform, uc_info->stream.out),
kunleiz5cd52b82016-11-07 17:22:52 +08001917 usecase->in_snd_device);
Avinash Vaish71a8b972014-07-24 15:36:33 +05301918 enable_audio_route(adev, usecase);
kunleiz5cd52b82016-11-07 17:22:52 +08001919 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001920 }
1921 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07001922 }
1923}
1924
Mingming Yin3a941d42016-02-17 18:08:05 -08001925static void reset_hdmi_sink_caps(struct stream_out *out) {
1926 int i = 0;
1927
1928 for (i = 0; i<= MAX_SUPPORTED_CHANNEL_MASKS; i++) {
1929 out->supported_channel_masks[i] = 0;
1930 }
1931 for (i = 0; i<= MAX_SUPPORTED_FORMATS; i++) {
1932 out->supported_formats[i] = 0;
1933 }
1934 for (i = 0; i<= MAX_SUPPORTED_SAMPLE_RATES; i++) {
1935 out->supported_sample_rates[i] = 0;
1936 }
1937}
1938
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001939/* must be called with hw device mutex locked */
Mingming Yin3a941d42016-02-17 18:08:05 -08001940static int read_hdmi_sink_caps(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001941{
Mingming Yin3a941d42016-02-17 18:08:05 -08001942 int ret = 0, i = 0, j = 0;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07001943 int channels = platform_edid_get_max_channels_v2(out->dev->platform,
1944 out->extconn.cs.controller,
1945 out->extconn.cs.stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001946
Mingming Yin3a941d42016-02-17 18:08:05 -08001947 reset_hdmi_sink_caps(out);
1948
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07001949 /* Cache ext disp type */
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07001950 if (platform_get_ext_disp_type_v2(adev->platform,
1951 out->extconn.cs.controller,
1952 out->extconn.cs.stream <= 0)) {
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07001953 ALOGE("%s: Failed to query disp type, ret:%d", __func__, ret);
Garmond Leung37850ab2016-10-06 11:42:18 -07001954 return -EINVAL;
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07001955 }
1956
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001957 switch (channels) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001958 case 8:
Mingming Yin3a941d42016-02-17 18:08:05 -08001959 ALOGV("%s: HDMI supports 7.1 channels", __func__);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -07001960 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_7POINT1;
Mingming Yin3a941d42016-02-17 18:08:05 -08001961 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_6POINT1;
1962 case 6:
1963 ALOGV("%s: HDMI supports 5.1 channels", __func__);
1964 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_5POINT1;
1965 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_PENTA;
1966 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_QUAD;
1967 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_SURROUND;
1968 out->supported_channel_masks[i++] = AUDIO_CHANNEL_OUT_2POINT1;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001969 break;
1970 default:
Mingming Yin3a941d42016-02-17 18:08:05 -08001971 ALOGE("invalid/nonstandard channal count[%d]",channels);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001972 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001973 break;
1974 }
Mingming Yin3a941d42016-02-17 18:08:05 -08001975
1976 // check channel format caps
1977 i = 0;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07001978 if (platform_is_edid_supported_format_v2(out->dev->platform, AUDIO_FORMAT_AC3,
1979 out->extconn.cs.controller,
1980 out->extconn.cs.stream)) {
Mingming Yin3a941d42016-02-17 18:08:05 -08001981 ALOGV(":%s HDMI supports AC3/EAC3 formats", __func__);
1982 out->supported_formats[i++] = AUDIO_FORMAT_AC3;
1983 //Adding EAC3/EAC3_JOC formats if AC3 is supported by the sink.
1984 //EAC3/EAC3_JOC will be converted to AC3 for decoding if needed
1985 out->supported_formats[i++] = AUDIO_FORMAT_E_AC3;
1986 out->supported_formats[i++] = AUDIO_FORMAT_E_AC3_JOC;
1987 }
1988
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07001989 if (platform_is_edid_supported_format_v2(out->dev->platform, AUDIO_FORMAT_DOLBY_TRUEHD,
1990 out->extconn.cs.controller,
1991 out->extconn.cs.stream)) {
Ben Romberger1aaaf862017-04-06 17:49:46 -07001992 ALOGV(":%s HDMI supports TRUE HD format", __func__);
1993 out->supported_formats[i++] = AUDIO_FORMAT_DOLBY_TRUEHD;
1994 }
1995
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07001996 if (platform_is_edid_supported_format_v2(out->dev->platform, AUDIO_FORMAT_DTS,
1997 out->extconn.cs.controller,
1998 out->extconn.cs.stream)) {
Mingming Yin3a941d42016-02-17 18:08:05 -08001999 ALOGV(":%s HDMI supports DTS format", __func__);
2000 out->supported_formats[i++] = AUDIO_FORMAT_DTS;
2001 }
2002
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07002003 if (platform_is_edid_supported_format_v2(out->dev->platform, AUDIO_FORMAT_DTS_HD,
2004 out->extconn.cs.controller,
2005 out->extconn.cs.stream)) {
Mingming Yin3a941d42016-02-17 18:08:05 -08002006 ALOGV(":%s HDMI supports DTS HD format", __func__);
2007 out->supported_formats[i++] = AUDIO_FORMAT_DTS_HD;
2008 }
2009
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07002010 if (platform_is_edid_supported_format_v2(out->dev->platform, AUDIO_FORMAT_IEC61937,
2011 out->extconn.cs.controller,
2012 out->extconn.cs.stream)) {
Naresh Tanniru928f0862017-04-07 16:44:23 -07002013 ALOGV(":%s HDMI supports IEC61937 format", __func__);
2014 out->supported_formats[i++] = AUDIO_FORMAT_IEC61937;
2015 }
2016
Mingming Yin3a941d42016-02-17 18:08:05 -08002017
2018 // check sample rate caps
2019 i = 0;
2020 for (j = 0; j < MAX_SUPPORTED_SAMPLE_RATES; j++) {
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07002021 if (platform_is_edid_supported_sample_rate_v2(out->dev->platform, out_hdmi_sample_rates[j],
2022 out->extconn.cs.controller,
2023 out->extconn.cs.stream)) {
Mingming Yin3a941d42016-02-17 18:08:05 -08002024 ALOGV(":%s HDMI supports sample rate:%d", __func__, out_hdmi_sample_rates[j]);
2025 out->supported_sample_rates[i++] = out_hdmi_sample_rates[j];
2026 }
2027 }
2028
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002029 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002030}
2031
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002032static inline ssize_t read_usb_sup_sample_rates(bool is_playback __unused,
2033 uint32_t *supported_sample_rates __unused,
2034 uint32_t max_rates __unused)
2035{
2036 ssize_t count = audio_extn_usb_get_sup_sample_rates(is_playback,
2037 supported_sample_rates,
2038 max_rates);
Ashish Jain4847e9d2017-08-17 19:16:57 +05302039 ssize_t i = 0;
2040
2041 for (i=0; i<count; i++) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002042 ALOGV("%s %s %d", __func__, is_playback ? "P" : "C",
2043 supported_sample_rates[i]);
2044 }
2045 return count;
2046}
2047
2048static inline int read_usb_sup_channel_masks(bool is_playback,
2049 audio_channel_mask_t *supported_channel_masks,
2050 uint32_t max_masks)
2051{
2052 int channels = audio_extn_usb_get_max_channels(is_playback);
2053 int channel_count;
2054 uint32_t num_masks = 0;
2055 if (channels > MAX_HIFI_CHANNEL_COUNT)
2056 channels = MAX_HIFI_CHANNEL_COUNT;
2057
2058 if (is_playback) {
Eric Laurent68a87112019-05-01 18:07:29 -07002059 // start from 2 channels as framework currently doesn't support mono.
2060 if (channels >= FCC_2) {
2061 supported_channel_masks[num_masks++] = audio_channel_out_mask_from_count(FCC_2);
2062 }
2063 for (channel_count = FCC_2;
2064 channel_count <= channels && num_masks < max_masks;
2065 ++channel_count) {
2066 supported_channel_masks[num_masks++] =
2067 audio_channel_mask_for_index_assignment_from_count(channel_count);
2068 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002069 } else {
vincenttewf51c94e2019-05-07 10:28:53 +08002070 // For capture we report all supported channel masks from 1 channel up.
2071 channel_count = MIN_CHANNEL_COUNT;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002072 // audio_channel_in_mask_from_count() does the right conversion to either positional or
2073 // indexed mask
Eric Laurent68a87112019-05-01 18:07:29 -07002074 for ( ; channel_count <= channels && num_masks < max_masks; channel_count++) {
2075 audio_channel_mask_t mask = AUDIO_CHANNEL_NONE;
2076 if (channel_count <= FCC_2) {
2077 mask = audio_channel_in_mask_from_count(channel_count);
2078 supported_channel_masks[num_masks++] = mask;
2079 }
2080 const audio_channel_mask_t index_mask =
2081 audio_channel_mask_for_index_assignment_from_count(channel_count);
2082 if (mask != index_mask && num_masks < max_masks) { // ensure index mask added.
2083 supported_channel_masks[num_masks++] = index_mask;
2084 }
2085 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002086 }
Lakshman Chaluvarajub79fafd2018-11-21 10:24:37 +05302087
vincenttewf51c94e2019-05-07 10:28:53 +08002088 for (size_t i = 0; i < num_masks; ++i) {
2089 ALOGV("%s: %s supported ch %d supported_channel_masks[%zu] %08x num_masks %d", __func__,
2090 is_playback ? "P" : "C", channels, i, supported_channel_masks[i], num_masks);
Lakshman Chaluvarajub79fafd2018-11-21 10:24:37 +05302091 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07002092 return num_masks;
2093}
2094
2095static inline int read_usb_sup_formats(bool is_playback __unused,
2096 audio_format_t *supported_formats,
2097 uint32_t max_formats __unused)
2098{
2099 int bitwidth = audio_extn_usb_get_max_bit_width(is_playback);
2100 switch (bitwidth) {
2101 case 24:
2102 // XXX : usb.c returns 24 for s24 and s24_le?
2103 supported_formats[0] = AUDIO_FORMAT_PCM_24_BIT_PACKED;
2104 break;
2105 case 32:
2106 supported_formats[0] = AUDIO_FORMAT_PCM_32_BIT;
2107 break;
2108 case 16:
2109 default :
2110 supported_formats[0] = AUDIO_FORMAT_PCM_16_BIT;
2111 break;
2112 }
2113 ALOGV("%s: %s supported format %d", __func__,
2114 is_playback ? "P" : "C", bitwidth);
2115 return 1;
2116}
2117
2118static inline int read_usb_sup_params_and_compare(bool is_playback,
2119 audio_format_t *format,
2120 audio_format_t *supported_formats,
2121 uint32_t max_formats,
2122 audio_channel_mask_t *mask,
2123 audio_channel_mask_t *supported_channel_masks,
2124 uint32_t max_masks,
2125 uint32_t *rate,
2126 uint32_t *supported_sample_rates,
2127 uint32_t max_rates) {
2128 int ret = 0;
2129 int num_formats;
2130 int num_masks;
2131 int num_rates;
2132 int i;
2133
2134 num_formats = read_usb_sup_formats(is_playback, supported_formats,
2135 max_formats);
2136 num_masks = read_usb_sup_channel_masks(is_playback, supported_channel_masks,
2137 max_masks);
2138
2139 num_rates = read_usb_sup_sample_rates(is_playback,
2140 supported_sample_rates, max_rates);
2141
2142#define LUT(table, len, what, dflt) \
2143 for (i=0; i<len && (table[i] != what); i++); \
2144 if (i==len) { ret |= (what == dflt ? 0 : -1); what=table[0]; }
2145
2146 LUT(supported_formats, num_formats, *format, AUDIO_FORMAT_DEFAULT);
2147 LUT(supported_channel_masks, num_masks, *mask, AUDIO_CHANNEL_NONE);
2148 LUT(supported_sample_rates, num_rates, *rate, 0);
2149
2150#undef LUT
2151 return ret < 0 ? -EINVAL : 0; // HACK TBD
2152}
2153
Alexy Josephb1379942016-01-29 15:49:38 -08002154audio_usecase_t get_usecase_id_from_usecase_type(const struct audio_device *adev,
Narsinga Rao Chellaf928a982015-03-06 14:57:35 -08002155 usecase_type_t type)
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002156{
2157 struct audio_usecase *usecase;
2158 struct listnode *node;
2159
2160 list_for_each(node, &adev->usecase_list) {
2161 usecase = node_to_item(node, struct audio_usecase, list);
Narsinga Rao Chellaf928a982015-03-06 14:57:35 -08002162 if (usecase->type == type) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002163 ALOGV("%s: usecase id %d", __func__, usecase->id);
2164 return usecase->id;
2165 }
2166 }
2167 return USECASE_INVALID;
2168}
2169
Alexy Josephb1379942016-01-29 15:49:38 -08002170struct audio_usecase *get_usecase_from_list(const struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002171 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002172{
2173 struct audio_usecase *usecase;
2174 struct listnode *node;
2175
2176 list_for_each(node, &adev->usecase_list) {
2177 usecase = node_to_item(node, struct audio_usecase, list);
2178 if (usecase->id == uc_id)
2179 return usecase;
2180 }
2181 return NULL;
2182}
2183
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302184/*
2185 * is a true native playback active
2186 */
2187bool audio_is_true_native_stream_active(struct audio_device *adev)
2188{
2189 bool active = false;
2190 int i = 0;
2191 struct listnode *node;
2192
2193 if (NATIVE_AUDIO_MODE_TRUE_44_1 != platform_get_native_support()) {
2194 ALOGV("%s:napb: not in true mode or non hdphones device",
2195 __func__);
2196 active = false;
2197 goto exit;
2198 }
2199
2200 list_for_each(node, &adev->usecase_list) {
2201 struct audio_usecase *uc;
2202 uc = node_to_item(node, struct audio_usecase, list);
2203 struct stream_out *curr_out =
2204 (struct stream_out*) uc->stream.out;
2205
2206 if (curr_out && PCM_PLAYBACK == uc->type) {
2207 ALOGD("%s:napb: (%d) (%s)id (%d) sr %d bw "
2208 "(%d) device %s", __func__, i++, use_case_table[uc->id],
2209 uc->id, curr_out->sample_rate,
2210 curr_out->bit_width,
2211 platform_get_snd_device_name(uc->out_snd_device));
2212
2213 if (is_offload_usecase(uc->id) &&
2214 (curr_out->sample_rate == OUTPUT_SAMPLING_RATE_44100)) {
2215 active = true;
2216 ALOGD("%s:napb:native stream detected", __func__);
2217 }
2218 }
2219 }
2220exit:
2221 return active;
2222}
2223
Xiaojun Sang785b5da2017-08-03 15:52:29 +08002224uint32_t adev_get_dsp_bit_width_enforce_mode()
2225{
2226 if (adev == NULL) {
2227 ALOGE("%s: adev is null. Disable DSP bit width enforce mode.\n", __func__);
2228 return 0;
2229 }
2230 return adev->dsp_bit_width_enforce_mode;
2231}
2232
2233static uint32_t adev_init_dsp_bit_width_enforce_mode(struct mixer *mixer)
2234{
2235 char value[PROPERTY_VALUE_MAX];
2236 int trial;
2237 uint32_t dsp_bit_width_enforce_mode = 0;
2238
2239 if (!mixer) {
2240 ALOGE("%s: adev mixer is null. cannot update DSP bitwidth.\n",
2241 __func__);
2242 return 0;
2243 }
2244
2245 if (property_get("persist.vendor.audio_hal.dsp_bit_width_enforce_mode",
2246 value, NULL) > 0) {
2247 trial = atoi(value);
2248 switch (trial) {
2249 case 16:
2250 dsp_bit_width_enforce_mode = 16;
2251 break;
2252 case 24:
2253 dsp_bit_width_enforce_mode = 24;
2254 break;
2255 case 32:
2256 dsp_bit_width_enforce_mode = 32;
2257 break;
2258 default:
2259 dsp_bit_width_enforce_mode = 0;
2260 ALOGD("%s Dynamic DSP bitwidth config is disabled.", __func__);
2261 break;
2262 }
2263 }
2264
2265 return dsp_bit_width_enforce_mode;
2266}
2267
2268static void audio_enable_asm_bit_width_enforce_mode(struct mixer *mixer,
2269 uint32_t enforce_mode,
2270 bool enable)
2271{
2272 struct mixer_ctl *ctl = NULL;
2273 const char *mixer_ctl_name = "ASM Bit Width";
2274 uint32_t asm_bit_width_mode = 0;
2275
2276 if (enforce_mode == 0) {
2277 ALOGD("%s: DSP bitwidth feature is disabled.", __func__);
2278 return;
2279 }
2280
2281 ctl = mixer_get_ctl_by_name(mixer, mixer_ctl_name);
2282 if (!ctl) {
2283 ALOGE("%s: Could not get ctl for mixer cmd - %s",
2284 __func__, mixer_ctl_name);
2285 return;
2286 }
2287
2288 if (enable)
2289 asm_bit_width_mode = enforce_mode;
2290 else
2291 asm_bit_width_mode = 0;
2292
2293 ALOGV("%s DSP bit width feature status is %d width=%d",
2294 __func__, enable, asm_bit_width_mode);
2295 if (mixer_ctl_set_value(ctl, 0, asm_bit_width_mode) < 0)
2296 ALOGE("%s: Could not set ASM biwidth %d", __func__,
2297 asm_bit_width_mode);
2298
2299 return;
2300}
2301
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05302302/*
2303 * if native DSD playback active
2304 */
2305bool audio_is_dsd_native_stream_active(struct audio_device *adev)
2306{
2307 bool active = false;
2308 struct listnode *node = NULL;
2309 struct audio_usecase *uc = NULL;
2310 struct stream_out *curr_out = NULL;
2311
2312 list_for_each(node, &adev->usecase_list) {
2313 uc = node_to_item(node, struct audio_usecase, list);
2314 curr_out = (struct stream_out*) uc->stream.out;
2315
2316 if (curr_out && PCM_PLAYBACK == uc->type &&
2317 (DSD_NATIVE_BACKEND == platform_get_backend_index(uc->out_snd_device))) {
2318 active = true;
2319 ALOGV("%s:DSD playback is active", __func__);
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05302320 break;
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05302321 }
2322 }
2323 return active;
2324}
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302325
2326static bool force_device_switch(struct audio_usecase *usecase)
2327{
2328 bool ret = false;
2329 bool is_it_true_mode = false;
2330
Zhou Song30f2c3e2018-02-08 14:02:15 +08002331 if (usecase->type == PCM_CAPTURE ||
Surendar Karka93cd25a2018-08-28 14:21:37 +05302332 usecase->type == TRANSCODE_LOOPBACK_RX ||
2333 usecase->type == TRANSCODE_LOOPBACK_TX) {
Zhou Song30f2c3e2018-02-08 14:02:15 +08002334 return false;
2335 }
2336
Aalique Grahamecbc46a22017-10-05 10:30:23 -07002337 if(usecase->stream.out == NULL) {
2338 ALOGE("%s: stream.out is NULL", __func__);
2339 return false;
2340 }
2341
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302342 if (is_offload_usecase(usecase->id) &&
Xiaojun Sang869f2012016-02-23 16:33:07 +08002343 (usecase->stream.out->sample_rate == OUTPUT_SAMPLING_RATE_44100) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002344 (compare_device_type(&usecase->stream.out->device_list, AUDIO_DEVICE_OUT_WIRED_HEADSET) ||
2345 compare_device_type(&usecase->stream.out->device_list, AUDIO_DEVICE_OUT_WIRED_HEADPHONE))) {
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302346 is_it_true_mode = (NATIVE_AUDIO_MODE_TRUE_44_1 == platform_get_native_support()? true : false);
2347 if ((is_it_true_mode && !adev->native_playback_enabled) ||
2348 (!is_it_true_mode && adev->native_playback_enabled)){
2349 ret = true;
2350 ALOGD("napb: time to toggle native mode");
2351 }
2352 }
2353
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302354 // Force all a2dp output devices to reconfigure for proper AFE encode format
Ashish Jainc597d102016-12-12 10:31:34 +05302355 //Also handle a case where in earlier a2dp start failed as A2DP stream was
2356 //in suspended state, hence try to trigger a retry when we again get a routing request.
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002357 if(is_a2dp_out_device_type(&usecase->stream.out->device_list) &&
Ashish Jainc597d102016-12-12 10:31:34 +05302358 audio_extn_a2dp_is_force_device_switch()) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302359 ALOGD("Force a2dp device switch to update new encoder config");
2360 ret = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02002361 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302362
Florian Pfister1a84f312018-07-19 14:38:18 +02002363 if (usecase->stream.out->stream_config_changed) {
Manish Dewangan671a4202017-08-18 17:30:46 +05302364 ALOGD("Force stream_config_changed to update iec61937 transmission config");
2365 return true;
Florian Pfister1a84f312018-07-19 14:38:18 +02002366 }
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302367 return ret;
2368}
2369
Aalique Grahame22e49102018-12-18 14:23:57 -08002370static void stream_app_type_cfg_init(struct stream_app_type_cfg *cfg)
2371{
2372 cfg->gain[0] = cfg->gain[1] = APP_TYPE_GAIN_DEFAULT;
2373}
2374
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302375bool is_btsco_device(snd_device_t out_snd_device, snd_device_t in_snd_device)
2376{
2377 bool ret=false;
2378 if ((out_snd_device == SND_DEVICE_OUT_BT_SCO ||
Zhou Song5657f492019-08-07 11:30:39 +08002379 out_snd_device == SND_DEVICE_OUT_BT_SCO_WB ||
2380 out_snd_device == SND_DEVICE_OUT_BT_SCO_SWB) ||
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302381 in_snd_device == SND_DEVICE_IN_BT_SCO_MIC_WB_NREC ||
2382 in_snd_device == SND_DEVICE_IN_BT_SCO_MIC_WB ||
Zhou Song5657f492019-08-07 11:30:39 +08002383 in_snd_device == SND_DEVICE_IN_BT_SCO_MIC_SWB ||
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302384 in_snd_device == SND_DEVICE_IN_BT_SCO_MIC_NREC ||
2385 in_snd_device == SND_DEVICE_IN_BT_SCO_MIC)
2386 ret = true;
2387
2388 return ret;
2389}
2390
2391bool is_a2dp_device(snd_device_t out_snd_device)
2392{
2393 bool ret=false;
2394 if (out_snd_device == SND_DEVICE_OUT_BT_A2DP)
2395 ret = true;
2396
2397 return ret;
2398}
2399
2400bool is_bt_soc_on(struct audio_device *adev)
2401{
2402 struct mixer_ctl *ctl;
2403 char *mixer_ctl_name = "BT SOC status";
2404 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
2405 bool bt_soc_status = true;
2406 if (!ctl) {
2407 ALOGE("%s: Could not get ctl for mixer cmd - %s",
2408 __func__, mixer_ctl_name);
2409 /*This is to ensure we dont break targets which dont have the kernel change*/
2410 return true;
2411 }
2412 bt_soc_status = mixer_ctl_get_value(ctl, 0);
2413 ALOGD("BT SOC status: %d",bt_soc_status);
2414 return bt_soc_status;
2415}
2416
Zhou Song331c8e52019-08-26 14:16:12 +08002417static int configure_btsco_sample_rate(snd_device_t snd_device)
2418{
2419 struct mixer_ctl *ctl = NULL;
2420 struct mixer_ctl *ctl_sr_rx = NULL, *ctl_sr_tx = NULL, *ctl_sr = NULL;
2421 char *rate_str = NULL;
2422 bool is_rx_dev = true;
2423
2424 if (is_btsco_device(snd_device, snd_device)) {
2425 ctl_sr_tx = mixer_get_ctl_by_name(adev->mixer, "BT SampleRate TX");
2426 ctl_sr_rx = mixer_get_ctl_by_name(adev->mixer, "BT SampleRate RX");
2427 if (!ctl_sr_tx || !ctl_sr_rx) {
2428 ctl_sr = mixer_get_ctl_by_name(adev->mixer, "BT SampleRate");
2429 if (!ctl_sr)
2430 return -ENOSYS;
2431 }
2432
2433 switch (snd_device) {
2434 case SND_DEVICE_OUT_BT_SCO:
2435 rate_str = "KHZ_8";
2436 break;
2437 case SND_DEVICE_IN_BT_SCO_MIC_NREC:
2438 case SND_DEVICE_IN_BT_SCO_MIC:
2439 rate_str = "KHZ_8";
2440 is_rx_dev = false;
2441 break;
2442 case SND_DEVICE_OUT_BT_SCO_WB:
2443 rate_str = "KHZ_16";
2444 break;
2445 case SND_DEVICE_IN_BT_SCO_MIC_WB_NREC:
2446 case SND_DEVICE_IN_BT_SCO_MIC_WB:
2447 rate_str = "KHZ_16";
2448 is_rx_dev = false;
2449 break;
2450 default:
2451 return 0;
2452 }
2453
2454 ctl = (ctl_sr == NULL) ? (is_rx_dev ? ctl_sr_rx : ctl_sr_tx) : ctl_sr;
2455 if (mixer_ctl_set_enum_by_string(ctl, rate_str) != 0)
2456 return -ENOSYS;
2457 }
2458 return 0;
2459}
2460
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302461int out_standby_l(struct audio_stream *stream);
2462
Eric Laurent637e2d42018-11-15 12:24:31 -08002463struct stream_in *adev_get_active_input(const struct audio_device *adev)
2464{
2465 struct listnode *node;
2466 struct stream_in *last_active_in = NULL;
2467
2468 /* Get last added active input.
2469 * TODO: We may use a priority mechanism to pick highest priority active source */
2470 list_for_each(node, &adev->usecase_list)
2471 {
2472 struct audio_usecase *usecase = node_to_item(node, struct audio_usecase, list);
2473 if (usecase->type == PCM_CAPTURE && usecase->stream.in != NULL)
2474 last_active_in = usecase->stream.in;
2475 }
2476
2477 return last_active_in;
2478}
2479
2480struct stream_in *get_voice_communication_input(const struct audio_device *adev)
2481{
2482 struct listnode *node;
2483
2484 /* First check active inputs with voice communication source and then
2485 * any input if audio mode is in communication */
2486 list_for_each(node, &adev->usecase_list)
2487 {
2488 struct audio_usecase *usecase = node_to_item(node, struct audio_usecase, list);
2489 if (usecase->type == PCM_CAPTURE && usecase->stream.in != NULL &&
2490 usecase->stream.in->source == AUDIO_SOURCE_VOICE_COMMUNICATION)
2491 return usecase->stream.in;
2492 }
2493 if (adev->mode == AUDIO_MODE_IN_COMMUNICATION)
2494 return adev_get_active_input(adev);
2495
2496 return NULL;
2497}
2498
Carter Hsu2e429db2019-05-14 18:50:52 +08002499/*
2500 * Aligned with policy.h
2501 */
2502static inline int source_priority(int inputSource)
2503{
2504 switch (inputSource) {
2505 case AUDIO_SOURCE_VOICE_COMMUNICATION:
2506 return 9;
2507 case AUDIO_SOURCE_CAMCORDER:
2508 return 8;
2509 case AUDIO_SOURCE_VOICE_PERFORMANCE:
2510 return 7;
2511 case AUDIO_SOURCE_UNPROCESSED:
2512 return 6;
2513 case AUDIO_SOURCE_MIC:
2514 return 5;
2515 case AUDIO_SOURCE_ECHO_REFERENCE:
2516 return 4;
2517 case AUDIO_SOURCE_FM_TUNER:
2518 return 3;
2519 case AUDIO_SOURCE_VOICE_RECOGNITION:
2520 return 2;
2521 case AUDIO_SOURCE_HOTWORD:
2522 return 1;
2523 default:
2524 break;
2525 }
2526 return 0;
2527}
2528
2529static struct stream_in *get_priority_input(struct audio_device *adev)
2530{
2531 struct listnode *node;
2532 struct audio_usecase *usecase;
2533 int last_priority = 0, priority;
2534 struct stream_in *priority_in = NULL;
2535 struct stream_in *in;
2536
2537 list_for_each(node, &adev->usecase_list) {
2538 usecase = node_to_item(node, struct audio_usecase, list);
2539 if (usecase->type == PCM_CAPTURE) {
2540 in = usecase->stream.in;
2541 if (!in)
2542 continue;
2543 priority = source_priority(in->source);
2544
2545 if (priority > last_priority) {
2546 last_priority = priority;
2547 priority_in = in;
2548 }
2549 }
2550 }
2551 return priority_in;
2552}
2553
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002554int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002555{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002556 snd_device_t out_snd_device = SND_DEVICE_NONE;
2557 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002558 struct audio_usecase *usecase = NULL;
2559 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002560 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -08002561 struct audio_usecase *hfp_usecase = NULL;
Siddartha Shaik44dd7702017-06-14 12:13:25 +05302562 struct stream_out stream_out;
Vimal Puthanveed41fcff22014-01-23 15:56:53 -08002563 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002564 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002565
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302566 ALOGD("%s for use case (%s)", __func__, use_case_table[uc_id]);
2567
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002568 usecase = get_usecase_from_list(adev, uc_id);
2569 if (usecase == NULL) {
2570 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
2571 return -EINVAL;
2572 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002573
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002574 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -08002575 (usecase->type == VOIP_CALL) ||
2576 (usecase->type == PCM_HFP_CALL)) {
Aditya Bavanaribdda2f22016-10-19 15:02:05 +05302577 if(usecase->stream.out == NULL) {
2578 ALOGE("%s: stream.out is NULL", __func__);
2579 return -EINVAL;
2580 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002581 if (compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_BUS)) {
Guodong Hu267bdf82019-08-12 19:22:32 +08002582 out_snd_device = audio_extn_auto_hal_get_output_snd_device(adev,
2583 uc_id);
2584 in_snd_device = audio_extn_auto_hal_get_input_snd_device(adev,
2585 uc_id);
2586 } else {
2587 out_snd_device = platform_get_output_snd_device(adev->platform,
2588 usecase->stream.out);
2589 in_snd_device = platform_get_input_snd_device(adev->platform,
2590 NULL,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002591 &usecase->stream.out->device_list);
Guodong Hu267bdf82019-08-12 19:22:32 +08002592 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002593 assign_devices(&usecase->device_list, &usecase->stream.out->device_list);
Surendar Karka93cd25a2018-08-28 14:21:37 +05302594 } else if (usecase->type == TRANSCODE_LOOPBACK_RX) {
Siddartha Shaik31b530e2017-05-19 15:26:33 +05302595 if (usecase->stream.inout == NULL) {
2596 ALOGE("%s: stream.inout is NULL", __func__);
2597 return -EINVAL;
2598 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002599 assign_devices(&stream_out.device_list, &usecase->stream.inout->out_config.device_list);
Siddartha Shaik44dd7702017-06-14 12:13:25 +05302600 stream_out.sample_rate = usecase->stream.inout->out_config.sample_rate;
2601 stream_out.format = usecase->stream.inout->out_config.format;
2602 stream_out.channel_mask = usecase->stream.inout->out_config.channel_mask;
2603 out_snd_device = platform_get_output_snd_device(adev->platform,
2604 &stream_out);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002605 assign_devices(&usecase->device_list,
2606 &usecase->stream.inout->out_config.device_list);
Surendar Karka93cd25a2018-08-28 14:21:37 +05302607 } else if (usecase->type == TRANSCODE_LOOPBACK_TX ) {
2608 if (usecase->stream.inout == NULL) {
2609 ALOGE("%s: stream.inout is NULL", __func__);
2610 return -EINVAL;
2611 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002612 in_snd_device = platform_get_input_snd_device(adev->platform, NULL, NULL);
2613 assign_devices(&usecase->device_list,
2614 &usecase->stream.inout->in_config.device_list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002615 } else {
2616 /*
2617 * If the voice call is active, use the sound devices of voice call usecase
2618 * so that it would not result any device switch. All the usecases will
2619 * be switched to new device when select_devices() is called for voice call
2620 * usecase. This is to avoid switching devices for voice call when
2621 * check_usecases_codec_backend() is called below.
Alexy Joseph79dfa3c2016-04-20 18:44:56 -07002622 * choose voice call device only if the use case device is
2623 * also using the codec backend
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002624 */
Shiv Maliyappanahallibb4cf0b2016-01-21 11:30:06 -08002625 if (voice_is_in_call(adev) && adev->mode != AUDIO_MODE_NORMAL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002626 vc_usecase = get_usecase_from_list(adev,
Narsinga Rao Chellaf928a982015-03-06 14:57:35 -08002627 get_usecase_id_from_usecase_type(adev, VOICE_CALL));
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002628 if ((vc_usecase) && ((is_codec_backend_out_device_type(&vc_usecase->device_list) &&
2629 is_codec_backend_out_device_type(&usecase->device_list)) ||
2630 (is_codec_backend_out_device_type(&vc_usecase->device_list) &&
2631 is_codec_backend_in_device_type(&usecase->device_list)) ||
2632 is_single_device_type_equal(&vc_usecase->device_list,
2633 AUDIO_DEVICE_OUT_HEARING_AID) ||
2634 is_single_device_type_equal(&usecase->device_list,
2635 AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002636 in_snd_device = vc_usecase->in_snd_device;
2637 out_snd_device = vc_usecase->out_snd_device;
2638 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002639 } else if (voice_extn_compress_voip_is_active(adev)) {
yidongh02ef86f2017-04-21 15:36:04 +08002640 bool out_snd_device_backend_match = true;
yidongh47785a82017-05-08 19:29:29 +08002641 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
yidongh6261d8e2017-05-15 17:04:02 +08002642 if ((voip_usecase != NULL) &&
2643 (usecase->type == PCM_PLAYBACK) &&
2644 (usecase->stream.out != NULL)) {
yidongh02ef86f2017-04-21 15:36:04 +08002645 out_snd_device_backend_match = platform_check_backends_match(
2646 voip_usecase->out_snd_device,
2647 platform_get_output_snd_device(
2648 adev->platform,
2649 usecase->stream.out));
2650 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002651 if ((voip_usecase) && (is_codec_backend_out_device_type(&voip_usecase->device_list) &&
2652 (is_codec_backend_out_device_type(&usecase->device_list) ||
2653 is_codec_backend_in_device_type(&usecase->device_list)) &&
yidongh02ef86f2017-04-21 15:36:04 +08002654 out_snd_device_backend_match &&
Mingming Yin2d8aa2e2014-08-14 00:00:51 -07002655 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002656 in_snd_device = voip_usecase->in_snd_device;
2657 out_snd_device = voip_usecase->out_snd_device;
2658 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -08002659 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed41fcff22014-01-23 15:56:53 -08002660 hfp_ucid = audio_extn_hfp_get_usecase();
2661 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002662 if ((hfp_usecase) && is_codec_backend_out_device_type(&hfp_usecase->device_list)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -08002663 in_snd_device = hfp_usecase->in_snd_device;
2664 out_snd_device = hfp_usecase->out_snd_device;
2665 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002666 }
2667 if (usecase->type == PCM_PLAYBACK) {
Aditya Bavanaribdda2f22016-10-19 15:02:05 +05302668 if (usecase->stream.out == NULL) {
2669 ALOGE("%s: stream.out is NULL", __func__);
2670 return -EINVAL;
2671 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002672 assign_devices(&usecase->device_list, &usecase->stream.out->device_list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002673 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07002674 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurent637e2d42018-11-15 12:24:31 -08002675 struct stream_out *voip_out = adev->primary_output;
2676 struct stream_in *voip_in = get_voice_communication_input(adev);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002677 if (compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_BUS))
Guodong Hu267bdf82019-08-12 19:22:32 +08002678 out_snd_device = audio_extn_auto_hal_get_output_snd_device(adev, uc_id);
2679 else
2680 out_snd_device = platform_get_output_snd_device(adev->platform,
2681 usecase->stream.out);
kunleizdcf967a2018-08-07 17:09:11 +08002682 voip_usecase = get_usecase_from_list(adev, USECASE_AUDIO_PLAYBACK_VOIP);
kunleizdcf967a2018-08-07 17:09:11 +08002683
Eric Laurent637e2d42018-11-15 12:24:31 -08002684 if (voip_usecase)
2685 voip_out = voip_usecase->stream.out;
2686
2687 if (usecase->stream.out == voip_out && voip_in != NULL)
2688 select_devices(adev, voip_in->usecase);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07002689 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002690 } else if (usecase->type == PCM_CAPTURE) {
Aditya Bavanaribdda2f22016-10-19 15:02:05 +05302691 if (usecase->stream.in == NULL) {
2692 ALOGE("%s: stream.in is NULL", __func__);
2693 return -EINVAL;
2694 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002695 assign_devices(&usecase->device_list, &usecase->stream.in->device_list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002696 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07002697 if (in_snd_device == SND_DEVICE_NONE) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002698 struct listnode out_devices;
Eric Laurent637e2d42018-11-15 12:24:31 -08002699 struct stream_in *voip_in = get_voice_communication_input(adev);
Carter Hsu2e429db2019-05-14 18:50:52 +08002700 struct stream_in *priority_in = NULL;
Eric Laurent637e2d42018-11-15 12:24:31 -08002701
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002702 list_init(&out_devices);
Eric Laurent637e2d42018-11-15 12:24:31 -08002703 if (voip_in != NULL) {
Eric Laurent637e2d42018-11-15 12:24:31 -08002704 struct audio_usecase *voip_usecase = get_usecase_from_list(adev,
2705 USECASE_AUDIO_PLAYBACK_VOIP);
2706
Carter Hsu2e429db2019-05-14 18:50:52 +08002707 usecase->stream.in->enable_ec_port = false;
2708
Eric Laurent637e2d42018-11-15 12:24:31 -08002709 if (usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002710 reassign_device_list(&out_devices, AUDIO_DEVICE_OUT_TELEPHONY_TX, "");
Eric Laurent637e2d42018-11-15 12:24:31 -08002711 } else if (voip_usecase) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002712 assign_devices(&out_devices, &voip_usecase->stream.out->device_list);
Eric Laurent637e2d42018-11-15 12:24:31 -08002713 } else if (adev->primary_output &&
2714 !adev->primary_output->standby) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002715 assign_devices(&out_devices, &adev->primary_output->device_list);
Eric Laurent637e2d42018-11-15 12:24:31 -08002716 } else {
2717 /* forcing speaker o/p device to get matching i/p pair
2718 in case o/p is not routed from same primary HAL */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002719 reassign_device_list(&out_devices, AUDIO_DEVICE_OUT_SPEAKER, "");
Eric Laurent637e2d42018-11-15 12:24:31 -08002720 }
Carter Hsu2e429db2019-05-14 18:50:52 +08002721 priority_in = voip_in;
2722 } else {
2723 /* get the input with the highest priority source*/
2724 priority_in = get_priority_input(adev);
2725
2726 if (!priority_in)
2727 priority_in = usecase->stream.in;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07002728 }
Carter Hsu2e429db2019-05-14 18:50:52 +08002729
Eric Laurent637e2d42018-11-15 12:24:31 -08002730 in_snd_device = platform_get_input_snd_device(adev->platform,
Carter Hsu2e429db2019-05-14 18:50:52 +08002731 priority_in,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002732 &out_devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07002733 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002734 }
2735 }
2736
2737 if (out_snd_device == usecase->out_snd_device &&
2738 in_snd_device == usecase->in_snd_device) {
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +05302739
2740 if (!force_device_switch(usecase))
2741 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002742 }
2743
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002744 if (!compare_device_type(&usecase->device_list, AUDIO_DEVICE_OUT_BUS) &&
Guodong Hu267bdf82019-08-12 19:22:32 +08002745 ((is_btsco_device(out_snd_device,in_snd_device) && !adev->bt_sco_on) ||
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002746 (is_a2dp_device(out_snd_device) && !audio_extn_a2dp_source_is_ready()))) {
Guodong Hu267bdf82019-08-12 19:22:32 +08002747 ALOGD("SCO/A2DP is selected but they are not connected/ready hence dont route");
2748 return 0;
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302749 }
2750
Aalique Grahame22e49102018-12-18 14:23:57 -08002751 if (out_snd_device != SND_DEVICE_NONE &&
2752 out_snd_device != adev->last_logged_snd_device[uc_id][0]) {
2753 ALOGD("%s: changing use case %s output device from(%d: %s, acdb %d) to (%d: %s, acdb %d)",
2754 __func__,
2755 use_case_table[uc_id],
2756 adev->last_logged_snd_device[uc_id][0],
2757 platform_get_snd_device_name(adev->last_logged_snd_device[uc_id][0]),
2758 adev->last_logged_snd_device[uc_id][0] != SND_DEVICE_NONE ?
2759 platform_get_snd_device_acdb_id(adev->last_logged_snd_device[uc_id][0]) :
2760 -1,
2761 out_snd_device,
2762 platform_get_snd_device_name(out_snd_device),
2763 platform_get_snd_device_acdb_id(out_snd_device));
2764 adev->last_logged_snd_device[uc_id][0] = out_snd_device;
2765 }
2766 if (in_snd_device != SND_DEVICE_NONE &&
2767 in_snd_device != adev->last_logged_snd_device[uc_id][1]) {
2768 ALOGD("%s: changing use case %s input device from(%d: %s, acdb %d) to (%d: %s, acdb %d)",
2769 __func__,
2770 use_case_table[uc_id],
2771 adev->last_logged_snd_device[uc_id][1],
2772 platform_get_snd_device_name(adev->last_logged_snd_device[uc_id][1]),
2773 adev->last_logged_snd_device[uc_id][1] != SND_DEVICE_NONE ?
2774 platform_get_snd_device_acdb_id(adev->last_logged_snd_device[uc_id][1]) :
2775 -1,
2776 in_snd_device,
2777 platform_get_snd_device_name(in_snd_device),
2778 platform_get_snd_device_acdb_id(in_snd_device));
2779 adev->last_logged_snd_device[uc_id][1] = in_snd_device;
2780 }
2781
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002782
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002783 /*
2784 * Limitation: While in call, to do a device switch we need to disable
2785 * and enable both RX and TX devices though one of them is same as current
2786 * device.
2787 */
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -07002788 if ((usecase->type == VOICE_CALL) &&
2789 (usecase->in_snd_device != SND_DEVICE_NONE) &&
2790 (usecase->out_snd_device != SND_DEVICE_NONE)) {
Eric Laurentb23d5282013-05-14 15:27:20 -07002791 status = platform_switch_voice_call_device_pre(adev->platform);
Narsinga Rao Chella116142b2015-08-14 18:00:08 -07002792 }
2793
2794 if (((usecase->type == VOICE_CALL) ||
2795 (usecase->type == VOIP_CALL)) &&
2796 (usecase->out_snd_device != SND_DEVICE_NONE)) {
2797 /* Disable sidetone only if voice/voip call already exists */
2798 if (voice_is_call_state_active(adev) ||
2799 voice_extn_compress_voip_is_started(adev))
Bhalchandra Gajare45fee282015-06-09 22:23:45 -07002800 voice_set_sidetone(adev, usecase->out_snd_device, false);
Vidyakumar Athotaea269c62016-10-31 09:05:59 -07002801
2802 /* Disable aanc only if voice call exists */
2803 if (voice_is_call_state_active(adev))
2804 voice_check_and_update_aanc_path(adev, usecase->out_snd_device, false);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -08002805 }
2806
Aalique Grahame22e49102018-12-18 14:23:57 -08002807 if ((out_snd_device == SND_DEVICE_OUT_SPEAKER_AND_BT_A2DP ||
2808 out_snd_device == SND_DEVICE_OUT_SPEAKER_SAFE_AND_BT_A2DP) &&
Florian Pfister1a84f312018-07-19 14:38:18 +02002809 (!audio_extn_a2dp_source_is_ready())) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302810 ALOGW("%s: A2DP profile is not ready, routing to speaker only", __func__);
Aalique Grahame22e49102018-12-18 14:23:57 -08002811 if (out_snd_device == SND_DEVICE_OUT_SPEAKER_SAFE_AND_BT_A2DP)
2812 out_snd_device = SND_DEVICE_OUT_SPEAKER_SAFE;
2813 else
2814 out_snd_device = SND_DEVICE_OUT_SPEAKER;
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302815 }
2816
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002817 /* Disable current sound devices */
2818 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002819 disable_audio_route(adev, usecase);
2820 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002821 }
2822
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002823 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002824 disable_audio_route(adev, usecase);
2825 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002826 }
2827
Vidyakumar Athota545dbd32013-11-13 17:30:53 -08002828 /* Applicable only on the targets that has external modem.
2829 * New device information should be sent to modem before enabling
2830 * the devices to reduce in-call device switch time.
2831 */
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -07002832 if ((usecase->type == VOICE_CALL) &&
2833 (usecase->in_snd_device != SND_DEVICE_NONE) &&
2834 (usecase->out_snd_device != SND_DEVICE_NONE)) {
Vidyakumar Athota545dbd32013-11-13 17:30:53 -08002835 status = platform_switch_voice_call_enable_device_config(adev->platform,
2836 out_snd_device,
2837 in_snd_device);
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -07002838 }
Vidyakumar Athota545dbd32013-11-13 17:30:53 -08002839
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002840 /* Enable new sound devices */
2841 if (out_snd_device != SND_DEVICE_NONE) {
Kuirong Wanga9f7cee2016-03-07 11:21:52 -08002842 check_usecases_codec_backend(adev, usecase, out_snd_device);
Preetam Singh Ranawat43eac682017-03-07 18:19:02 +05302843 if (platform_check_codec_asrc_support(adev->platform))
2844 check_and_set_asrc_mode(adev, usecase, out_snd_device);
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002845 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002846 }
2847
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07002848 if (in_snd_device != SND_DEVICE_NONE) {
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05302849 check_usecases_capture_codec_backend(adev, usecase, in_snd_device);
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002850 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -07002851 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002852
Avinash Vaish71a8b972014-07-24 15:36:33 +05302853 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -07002854 status = platform_switch_voice_call_device_post(adev->platform,
2855 out_snd_device,
2856 in_snd_device);
Avinash Vaish71a8b972014-07-24 15:36:33 +05302857 enable_audio_route_for_voice_usecases(adev, usecase);
2858 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -08002859
sangwoo170731f2013-06-08 15:36:36 +09002860 usecase->in_snd_device = in_snd_device;
2861 usecase->out_snd_device = out_snd_device;
2862
Dhananjay Kumard6d32152016-10-13 16:11:03 +05302863 audio_extn_utils_update_stream_app_type_cfg_for_usecase(adev,
2864 usecase);
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +05302865 if (usecase->type == PCM_PLAYBACK) {
Weiyin Jiang6f4c8062016-11-23 15:30:29 +08002866 if ((24 == usecase->stream.out->bit_width) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002867 compare_device_type(&usecase->stream.out->device_list, AUDIO_DEVICE_OUT_SPEAKER)) {
Weiyin Jiang6f4c8062016-11-23 15:30:29 +08002868 usecase->stream.out->app_type_cfg.sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2869 } else if ((out_snd_device == SND_DEVICE_OUT_HDMI ||
2870 out_snd_device == SND_DEVICE_OUT_USB_HEADSET ||
2871 out_snd_device == SND_DEVICE_OUT_DISPLAY_PORT) &&
2872 (usecase->stream.out->sample_rate >= OUTPUT_SAMPLING_RATE_44100)) {
2873 /*
2874 * To best utlize DSP, check if the stream sample rate is supported/multiple of
2875 * configured device sample rate, if not update the COPP rate to be equal to the
2876 * device sample rate, else open COPP at stream sample rate
2877 */
2878 platform_check_and_update_copp_sample_rate(adev->platform, out_snd_device,
2879 usecase->stream.out->sample_rate,
2880 &usecase->stream.out->app_type_cfg.sample_rate);
Ashish Jain4826f6c2017-02-06 13:33:20 +05302881 } else if (((out_snd_device != SND_DEVICE_OUT_HEADPHONES_44_1 &&
Preetam Singh Ranawat590d0432019-09-30 14:39:47 +05302882 out_snd_device != SND_DEVICE_OUT_HEADPHONES &&
2883 out_snd_device != SND_DEVICE_OUT_HEADPHONES_HIFI_FILTER &&
Ashish Jain4826f6c2017-02-06 13:33:20 +05302884 !audio_is_true_native_stream_active(adev)) &&
Weiyin Jiang6f4c8062016-11-23 15:30:29 +08002885 usecase->stream.out->sample_rate == OUTPUT_SAMPLING_RATE_44100) ||
2886 (usecase->stream.out->sample_rate < OUTPUT_SAMPLING_RATE_44100)) {
2887 usecase->stream.out->app_type_cfg.sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2888 }
Weiyin Jiangcdece202019-07-08 16:13:16 +08002889 }
2890 enable_audio_route(adev, usecase);
Weiyin Jiang6f4c8062016-11-23 15:30:29 +08002891
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002892 audio_extn_qdsp_set_device(usecase);
Aalique Grahame22e49102018-12-18 14:23:57 -08002893
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07002894 /* If input stream is already running then effect needs to be
2895 applied on the new input device that's being enabled here. */
Eric Laurent637e2d42018-11-15 12:24:31 -08002896 if (in_snd_device != SND_DEVICE_NONE)
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07002897 check_and_enable_effect(adev);
2898
Vidyakumar Athota493f2892016-08-14 11:56:55 -07002899 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Vidyakumar Athotaea269c62016-10-31 09:05:59 -07002900 /* Enable aanc only if voice call exists */
2901 if (voice_is_call_state_active(adev))
2902 voice_check_and_update_aanc_path(adev, out_snd_device, true);
2903
Vidyakumar Athota493f2892016-08-14 11:56:55 -07002904 /* Enable sidetone only if other voice/voip call already exists */
2905 if (voice_is_call_state_active(adev) ||
2906 voice_extn_compress_voip_is_started(adev))
2907 voice_set_sidetone(adev, out_snd_device, true);
2908 }
2909
Vidyakumar Athota1fd21792013-11-15 14:50:57 -08002910 /* Applicable only on the targets that has external modem.
2911 * Enable device command should be sent to modem only after
2912 * enabling voice call mixer controls
2913 */
Vidyakumar Athota339342f2014-07-01 15:30:57 -07002914 if (usecase->type == VOICE_CALL)
Vidyakumar Athota1fd21792013-11-15 14:50:57 -08002915 status = platform_switch_voice_call_usecase_route_post(adev->platform,
2916 out_snd_device,
2917 in_snd_device);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302918
2919 if (is_btsco_device(out_snd_device, in_snd_device) || is_a2dp_device(out_snd_device)) {
Eric Laurent637e2d42018-11-15 12:24:31 -08002920 struct stream_in *in = adev_get_active_input(adev);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302921 if (usecase->type == VOIP_CALL) {
Eric Laurent637e2d42018-11-15 12:24:31 -08002922 if (in != NULL && !in->standby) {
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302923 if (is_bt_soc_on(adev) == false){
2924 ALOGD("BT SCO MIC disconnected while in connection");
Eric Laurent637e2d42018-11-15 12:24:31 -08002925 if (in->pcm != NULL)
2926 pcm_stop(in->pcm);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302927 }
2928 }
2929 if ((usecase->stream.out != NULL) && (usecase->stream.out != adev->primary_output)
2930 && usecase->stream.out->started) {
2931 if (is_bt_soc_on(adev) == false) {
2932 ALOGD("BT SCO/A2DP disconnected while in connection");
2933 out_standby_l(&usecase->stream.out->stream.common);
2934 }
2935 }
2936 } else if ((usecase->stream.out != NULL) &&
2937 !(usecase->stream.out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
Surendar Karkae1dc8742018-11-19 16:23:14 +05302938 (usecase->type != TRANSCODE_LOOPBACK_TX) &&
2939 (usecase->type != TRANSCODE_LOOPBACK_RX) &&
Weiyin Jiang0d373242019-07-25 13:18:17 +08002940 (usecase->type != PCM_CAPTURE) &&
Ashish Jain1b9b30c2017-05-18 20:57:40 +05302941 usecase->stream.out->started) {
2942 if (is_bt_soc_on(adev) == false) {
2943 ALOGD("BT SCO/A2dp disconnected while in connection");
2944 out_standby_l(&usecase->stream.out->stream.common);
2945 }
2946 }
2947 }
2948
Yung Ti Su70cb8242018-06-22 17:38:47 +08002949 if (usecase->type != PCM_CAPTURE && usecase == voip_usecase) {
Aalique Grahame22e49102018-12-18 14:23:57 -08002950 struct stream_out *voip_out = voip_usecase->stream.out;
2951 audio_extn_utils_send_app_type_gain(adev,
2952 voip_out->app_type_cfg.app_type,
2953 &voip_out->app_type_cfg.gain[0]);
2954 }
2955
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302956 ALOGD("%s: done",__func__);
2957
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002958 return status;
2959}
2960
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002961static int stop_input_stream(struct stream_in *in)
2962{
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +05302963 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002964 struct audio_usecase *uc_info;
Pallavid7c7a272018-01-16 11:22:55 +05302965
2966 if (in == NULL) {
2967 ALOGE("%s: stream_in ptr is NULL", __func__);
2968 return -EINVAL;
2969 }
2970
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002971 struct audio_device *adev = in->dev;
Carter Hsu2e429db2019-05-14 18:50:52 +08002972 struct stream_in *priority_in = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002973
Eric Laurent994a6932013-07-17 11:51:42 -07002974 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002975 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002976 uc_info = get_usecase_from_list(adev, in->usecase);
2977 if (uc_info == NULL) {
2978 ALOGE("%s: Could not find the usecase (%d) in the list",
2979 __func__, in->usecase);
2980 return -EINVAL;
2981 }
2982
Carter Hsu2e429db2019-05-14 18:50:52 +08002983 priority_in = get_priority_input(adev);
2984
Derek Chenea197282019-01-07 17:35:01 -08002985 if (audio_extn_ext_hw_plugin_usecase_stop(adev->ext_hw_plugin, uc_info))
2986 ALOGE("%s: failed to stop ext hw plugin", __func__);
Derek Chend2530072014-11-24 12:39:14 -08002987
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002988 /* Close in-call recording streams */
2989 voice_check_and_stop_incall_rec_usecase(adev, in);
2990
Eric Laurent150dbfe2013-02-27 14:31:02 -08002991 /* 1. Disable stream specific mixer controls */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002992 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002993
2994 /* 2. Disable the tx device */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07002995 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002996
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08002997 if (is_loopback_input_device(get_device_types(&in->device_list)))
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05302998 audio_extn_keep_alive_stop(KEEP_ALIVE_OUT_PRIMARY);
2999
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003000 list_remove(&uc_info->list);
3001 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003002
Carter Hsu2e429db2019-05-14 18:50:52 +08003003 if (priority_in == in) {
3004 priority_in = get_priority_input(adev);
3005 if (priority_in)
3006 select_devices(adev, priority_in->usecase);
3007 }
3008
Vatsal Buchac09ae062018-11-14 13:25:08 +05303009 enable_gcov();
Eric Laurent994a6932013-07-17 11:51:42 -07003010 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003011 return ret;
3012}
3013
3014int start_input_stream(struct stream_in *in)
3015{
3016 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -08003017 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003018 struct audio_usecase *uc_info;
Preetam Singh Ranawata87e9742018-02-13 16:52:53 +05303019
3020 if (in == NULL) {
3021 ALOGE("%s: stream_in ptr is NULL", __func__);
3022 return -EINVAL;
3023 }
3024
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003025 struct audio_device *adev = in->dev;
Garmond Leunge2433c32017-09-28 21:51:22 -07003026 struct pcm_config config = in->config;
Garmond Leung438932f2017-10-04 19:35:18 -07003027 int usecase = platform_update_usecase_from_source(in->source,in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003028
Mingming Yin2664a5b2015-09-03 10:53:11 -07003029 if (get_usecase_from_list(adev, usecase) == NULL)
3030 in->usecase = usecase;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05303031 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
3032 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -07003033
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05303034 if (CARD_STATUS_OFFLINE == in->card_status||
3035 CARD_STATUS_OFFLINE == adev->card_status) {
3036 ALOGW("in->card_status or adev->card_status offline, try again");
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05303037 ret = -EIO;
Naresh Tanniru4c630392014-05-12 01:05:52 +05303038 goto error_config;
3039 }
Naresh Tanniru4c630392014-05-12 01:05:52 +05303040
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003041 if (is_sco_in_device_type(&in->device_list)) {
Ashish Jain1b9b30c2017-05-18 20:57:40 +05303042 if (!adev->bt_sco_on) {
3043 ALOGE("%s: SCO profile is not ready, return error", __func__);
3044 ret = -EIO;
3045 goto error_config;
3046 }
3047 }
3048
Shiv Maliyappanahallida107642013-10-17 11:16:13 -07003049 /* Check if source matches incall recording usecase criteria */
3050 ret = voice_check_and_set_incall_rec_usecase(adev, in);
3051 if (ret)
3052 goto error_config;
3053 else
Mingming Yin2664a5b2015-09-03 10:53:11 -07003054 ALOGV("%s: usecase(%d)", __func__, in->usecase);
3055
3056 if (get_usecase_from_list(adev, in->usecase) != NULL) {
3057 ALOGE("%s: use case assigned already in use, stream(%p)usecase(%d: %s)",
3058 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Zhou Song4e0704d2016-04-20 13:00:14 +08003059 return -EINVAL;
Mingming Yin2664a5b2015-09-03 10:53:11 -07003060 }
Shiv Maliyappanahallida107642013-10-17 11:16:13 -07003061
Eric Laurentb23d5282013-05-14 15:27:20 -07003062 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003063 if (in->pcm_device_id < 0) {
3064 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
3065 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -08003066 ret = -EINVAL;
3067 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003068 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003069
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003070 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003071
3072 if (!uc_info) {
3073 ret = -ENOMEM;
3074 goto error_config;
3075 }
3076
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003077 uc_info->id = in->usecase;
3078 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003079 uc_info->stream.in = in;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003080 list_init(&uc_info->device_list);
3081 assign_devices(&uc_info->device_list, &in->device_list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003082 uc_info->in_snd_device = SND_DEVICE_NONE;
3083 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003084
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003085 list_add_tail(&adev->usecase_list, &uc_info->list);
Wei Wangf7ca6c92017-11-21 14:51:20 -08003086 audio_streaming_hint_start();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05303087 audio_extn_perf_lock_acquire(&adev->perf_lock_handle, 0,
3088 adev->perf_lock_opts,
3089 adev->perf_lock_opts_size);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003090 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003091
Derek Chenea197282019-01-07 17:35:01 -08003092 if (audio_extn_ext_hw_plugin_usecase_start(adev->ext_hw_plugin, uc_info))
3093 ALOGE("%s: failed to start ext hw plugin", __func__);
Derek Chend2530072014-11-24 12:39:14 -08003094
Deeraj Soman30cc7ae2019-03-18 16:26:55 +05303095 android_atomic_acquire_cas(true, false, &(in->capture_stopped));
3096
Haynes Mathew George16081042017-05-31 17:16:49 -07003097 if (audio_extn_cin_attached_usecase(in->usecase)) {
Manish Dewangan46e07982018-12-13 18:18:59 +05303098 ret = audio_extn_cin_open_input_stream(in);
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05303099 if (ret)
3100 goto error_open;
3101 else
3102 goto done_open;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003103 }
3104
Haynes Mathew George16081042017-05-31 17:16:49 -07003105 if (in->usecase == USECASE_AUDIO_RECORD_MMAP) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003106 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
Haynes Mathew George16081042017-05-31 17:16:49 -07003107 ALOGE("%s: pcm stream not ready", __func__);
3108 goto error_open;
3109 }
3110 ret = pcm_start(in->pcm);
3111 if (ret < 0) {
3112 ALOGE("%s: MMAP pcm_start failed ret %d", __func__, ret);
3113 goto error_open;
3114 }
3115 } else {
3116 unsigned int flags = PCM_IN | PCM_MONOTONIC;
3117 unsigned int pcm_open_retry_count = 0;
3118
3119 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
3120 flags |= PCM_MMAP | PCM_NOIRQ;
3121 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
3122 } else if (in->realtime) {
3123 flags |= PCM_MMAP | PCM_NOIRQ;
3124 }
3125
Garmond Leunge2433c32017-09-28 21:51:22 -07003126 if (audio_extn_ffv_get_stream() == in) {
3127 ALOGD("%s: ffv stream, update pcm config", __func__);
3128 audio_extn_ffv_update_pcm_config(&config);
3129 }
Haynes Mathew George16081042017-05-31 17:16:49 -07003130 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
3131 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
3132
3133 while (1) {
Haynes Mathew George380745d2017-10-04 15:27:45 -07003134 ATRACE_BEGIN("pcm_in_open");
Haynes Mathew George16081042017-05-31 17:16:49 -07003135 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
Garmond Leung438932f2017-10-04 19:35:18 -07003136 flags, &config);
Haynes Mathew George380745d2017-10-04 15:27:45 -07003137 ATRACE_END();
Satish Babu Patakokila54ce83d2018-07-06 18:00:37 +05303138 if (errno == ENETRESET && !pcm_is_ready(in->pcm)) {
Sharad Sanglec6f32552018-05-04 16:15:38 +05303139 ALOGE("%s: pcm_open failed errno:%d\n", __func__, errno);
3140 adev->card_status = CARD_STATUS_OFFLINE;
3141 in->card_status = CARD_STATUS_OFFLINE;
3142 ret = -EIO;
3143 goto error_open;
3144 }
3145
Haynes Mathew George16081042017-05-31 17:16:49 -07003146 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
3147 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
3148 if (in->pcm != NULL) {
3149 pcm_close(in->pcm);
3150 in->pcm = NULL;
3151 }
Weiyin Jiang72197252019-10-09 11:49:32 +08003152 if (pcm_open_retry_count == 0) {
Haynes Mathew George16081042017-05-31 17:16:49 -07003153 ret = -EIO;
3154 goto error_open;
3155 }
Weiyin Jiang72197252019-10-09 11:49:32 +08003156 pcm_open_retry_count--;
Haynes Mathew George16081042017-05-31 17:16:49 -07003157 usleep(PROXY_OPEN_WAIT_TIME * 1000);
3158 continue;
3159 }
3160 break;
3161 }
3162
3163 ALOGV("%s: pcm_prepare", __func__);
Haynes Mathew George380745d2017-10-04 15:27:45 -07003164 ATRACE_BEGIN("pcm_in_prepare");
Haynes Mathew George16081042017-05-31 17:16:49 -07003165 ret = pcm_prepare(in->pcm);
Haynes Mathew George380745d2017-10-04 15:27:45 -07003166 ATRACE_END();
Haynes Mathew George16081042017-05-31 17:16:49 -07003167 if (ret < 0) {
3168 ALOGE("%s: pcm_prepare returned %d", __func__, ret);
3169 pcm_close(in->pcm);
3170 in->pcm = NULL;
3171 goto error_open;
3172 }
3173 register_in_stream(in);
3174 if (in->realtime) {
Haynes Mathew George380745d2017-10-04 15:27:45 -07003175 ATRACE_BEGIN("pcm_in_start");
Haynes Mathew George16081042017-05-31 17:16:49 -07003176 ret = pcm_start(in->pcm);
Haynes Mathew George380745d2017-10-04 15:27:45 -07003177 ATRACE_END();
Haynes Mathew George16081042017-05-31 17:16:49 -07003178 if (ret < 0) {
3179 ALOGE("%s: RT pcm_start failed ret %d", __func__, ret);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003180 pcm_close(in->pcm);
3181 in->pcm = NULL;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003182 goto error_open;
3183 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003184 }
Haynes Mathew George5beddd42016-06-27 18:33:40 -07003185 }
3186
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07003187 check_and_enable_effect(adev);
justinweng20fb6d82019-02-21 18:49:00 -07003188 audio_extn_audiozoom_set_microphone_direction(in, in->zoom);
3189 audio_extn_audiozoom_set_microphone_field_dimension(in, in->direction);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07003190
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003191 if (is_loopback_input_device(get_device_types(&in->device_list)))
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05303192 audio_extn_keep_alive_start(KEEP_ALIVE_OUT_PRIMARY);
3193
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05303194done_open:
Wei Wangf7ca6c92017-11-21 14:51:20 -08003195 audio_streaming_hint_end();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05303196 audio_extn_perf_lock_release(&adev->perf_lock_handle);
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07003197 ALOGD("%s: exit", __func__);
Vatsal Buchac09ae062018-11-14 13:25:08 +05303198 enable_gcov();
Eric Laurentc8400632013-02-14 19:04:54 -08003199 return ret;
3200
3201error_open:
Wei Wangf7ca6c92017-11-21 14:51:20 -08003202 audio_streaming_hint_end();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05303203 audio_extn_perf_lock_release(&adev->perf_lock_handle);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003204 stop_input_stream(in);
Wei Wangf7ca6c92017-11-21 14:51:20 -08003205
Eric Laurentc8400632013-02-14 19:04:54 -08003206error_config:
Laxminath Kasam2cb4b752015-09-24 03:59:15 +05303207 /*
3208 * sleep 50ms to allow sufficient time for kernel
3209 * drivers to recover incases like SSR.
3210 */
3211 usleep(50000);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003212 ALOGD("%s: exit: status(%d)", __func__, ret);
Vatsal Buchac09ae062018-11-14 13:25:08 +05303213 enable_gcov();
Eric Laurentc8400632013-02-14 19:04:54 -08003214 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003215}
3216
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07003217void lock_input_stream(struct stream_in *in)
3218{
3219 pthread_mutex_lock(&in->pre_lock);
3220 pthread_mutex_lock(&in->lock);
3221 pthread_mutex_unlock(&in->pre_lock);
3222}
3223
3224void lock_output_stream(struct stream_out *out)
3225{
3226 pthread_mutex_lock(&out->pre_lock);
3227 pthread_mutex_lock(&out->lock);
3228 pthread_mutex_unlock(&out->pre_lock);
3229}
3230
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003231/* must be called with out->lock locked */
3232static int send_offload_cmd_l(struct stream_out* out, int command)
3233{
3234 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
3235
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003236 if (!cmd) {
3237 ALOGE("failed to allocate mem for command 0x%x", command);
3238 return -ENOMEM;
3239 }
3240
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003241 ALOGVV("%s %d", __func__, command);
3242
3243 cmd->cmd = command;
3244 list_add_tail(&out->offload_cmd_list, &cmd->node);
3245 pthread_cond_signal(&out->offload_cond);
3246 return 0;
3247}
3248
3249/* must be called iwth out->lock locked */
3250static void stop_compressed_output_l(struct stream_out *out)
3251{
3252 out->offload_state = OFFLOAD_STATE_IDLE;
3253 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07003254 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003255 if (out->compr != NULL) {
3256 compress_stop(out->compr);
3257 while (out->offload_thread_blocked) {
3258 pthread_cond_wait(&out->cond, &out->lock);
3259 }
3260 }
3261}
3262
Varun Balaraje49253e2017-07-06 19:48:56 +05303263bool is_interactive_usecase(audio_usecase_t uc_id)
3264{
3265 unsigned int i;
3266 for (i = 0; i < sizeof(interactive_usecases)/sizeof(interactive_usecases[0]); i++) {
3267 if (uc_id == interactive_usecases[i])
3268 return true;
3269 }
3270 return false;
3271}
3272
3273static audio_usecase_t get_interactive_usecase(struct audio_device *adev)
3274{
3275 audio_usecase_t ret_uc = USECASE_INVALID;
3276 unsigned int intract_uc_index;
3277 unsigned int num_usecase = sizeof(interactive_usecases)/sizeof(interactive_usecases[0]);
3278
3279 ALOGV("%s: num_usecase: %d", __func__, num_usecase);
3280 for (intract_uc_index = 0; intract_uc_index < num_usecase; intract_uc_index++) {
3281 if (!(adev->interactive_usecase_state & (0x1 << intract_uc_index))) {
3282 adev->interactive_usecase_state |= 0x1 << intract_uc_index;
3283 ret_uc = interactive_usecases[intract_uc_index];
3284 break;
3285 }
3286 }
3287
3288 ALOGV("%s: Interactive usecase is %d", __func__, ret_uc);
3289 return ret_uc;
3290}
3291
3292static void free_interactive_usecase(struct audio_device *adev,
3293 audio_usecase_t uc_id)
3294{
3295 unsigned int interact_uc_index;
3296 unsigned int num_usecase = sizeof(interactive_usecases)/sizeof(interactive_usecases[0]);
3297
3298 for (interact_uc_index = 0; interact_uc_index < num_usecase; interact_uc_index++) {
3299 if (interactive_usecases[interact_uc_index] == uc_id) {
3300 adev->interactive_usecase_state &= ~(0x1 << interact_uc_index);
3301 break;
3302 }
3303 }
3304 ALOGV("%s: free Interactive usecase %d", __func__, uc_id);
3305}
3306
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003307bool is_offload_usecase(audio_usecase_t uc_id)
3308{
3309 unsigned int i;
3310 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
3311 if (uc_id == offload_usecases[i])
3312 return true;
3313 }
3314 return false;
3315}
3316
Dhananjay Kumarac341582017-02-23 23:42:25 +05303317static audio_usecase_t get_offload_usecase(struct audio_device *adev, bool is_compress)
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003318{
vivek mehta446c3962015-09-14 10:57:35 -07003319 audio_usecase_t ret_uc = USECASE_INVALID;
3320 unsigned int offload_uc_index;
Alexy Josephb1379942016-01-29 15:49:38 -08003321 unsigned int num_usecase = sizeof(offload_usecases)/sizeof(offload_usecases[0]);
vivek mehta446c3962015-09-14 10:57:35 -07003322 if (!adev->multi_offload_enable) {
Dhananjay Kumarac341582017-02-23 23:42:25 +05303323 if (!is_compress)
vivek mehta446c3962015-09-14 10:57:35 -07003324 ret_uc = USECASE_AUDIO_PLAYBACK_OFFLOAD2;
3325 else
3326 ret_uc = USECASE_AUDIO_PLAYBACK_OFFLOAD;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003327
vivek mehta446c3962015-09-14 10:57:35 -07003328 pthread_mutex_lock(&adev->lock);
3329 if (get_usecase_from_list(adev, ret_uc) != NULL)
3330 ret_uc = USECASE_INVALID;
3331 pthread_mutex_unlock(&adev->lock);
3332
3333 return ret_uc;
3334 }
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003335
3336 ALOGV("%s: num_usecase: %d", __func__, num_usecase);
vivek mehta446c3962015-09-14 10:57:35 -07003337 for (offload_uc_index = 0; offload_uc_index < num_usecase; offload_uc_index++) {
3338 if (!(adev->offload_usecases_state & (0x1 << offload_uc_index))) {
3339 adev->offload_usecases_state |= 0x1 << offload_uc_index;
3340 ret_uc = offload_usecases[offload_uc_index];
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003341 break;
3342 }
3343 }
vivek mehta446c3962015-09-14 10:57:35 -07003344
3345 ALOGV("%s: offload usecase is %d", __func__, ret_uc);
3346 return ret_uc;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003347}
3348
3349static void free_offload_usecase(struct audio_device *adev,
3350 audio_usecase_t uc_id)
3351{
vivek mehta446c3962015-09-14 10:57:35 -07003352 unsigned int offload_uc_index;
Alexy Josephb1379942016-01-29 15:49:38 -08003353 unsigned int num_usecase = sizeof(offload_usecases)/sizeof(offload_usecases[0]);
vivek mehta446c3962015-09-14 10:57:35 -07003354
3355 if (!adev->multi_offload_enable)
3356 return;
3357
3358 for (offload_uc_index = 0; offload_uc_index < num_usecase; offload_uc_index++) {
3359 if (offload_usecases[offload_uc_index] == uc_id) {
3360 adev->offload_usecases_state &= ~(0x1 << offload_uc_index);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003361 break;
3362 }
3363 }
3364 ALOGV("%s: free offload usecase %d", __func__, uc_id);
3365}
3366
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003367static void *offload_thread_loop(void *context)
3368{
3369 struct stream_out *out = (struct stream_out *) context;
3370 struct listnode *item;
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08003371 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003372
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003373 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
Weiyin Jiangd9b5a4e2019-07-18 17:24:21 +08003374 set_sched_policy(0, SP_FOREGROUND);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003375 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
3376
3377 ALOGV("%s", __func__);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07003378 lock_output_stream(out);
juyuchen391b5fa2018-12-12 17:58:09 +08003379 out->offload_state = OFFLOAD_STATE_IDLE;
3380 out->playback_started = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003381 for (;;) {
3382 struct offload_cmd *cmd = NULL;
3383 stream_callback_event_t event;
3384 bool send_callback = false;
3385
3386 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
3387 __func__, list_empty(&out->offload_cmd_list),
3388 out->offload_state);
3389 if (list_empty(&out->offload_cmd_list)) {
3390 ALOGV("%s SLEEPING", __func__);
3391 pthread_cond_wait(&out->offload_cond, &out->lock);
3392 ALOGV("%s RUNNING", __func__);
3393 continue;
3394 }
3395
3396 item = list_head(&out->offload_cmd_list);
3397 cmd = node_to_item(item, struct offload_cmd, node);
3398 list_remove(item);
3399
3400 ALOGVV("%s STATE %d CMD %d out->compr %p",
3401 __func__, out->offload_state, cmd->cmd, out->compr);
3402
3403 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
3404 free(cmd);
3405 break;
3406 }
3407
Haynes Mathew Georgeee5836f2017-11-21 18:02:10 -08003408 // allow OFFLOAD_CMD_ERROR reporting during standby
3409 // this is needed to handle failures during compress_open
3410 // Note however that on a pause timeout, the stream is closed
3411 // and no offload usecase will be active. Therefore this
3412 // special case is needed for compress_open failures alone
3413 if (cmd->cmd != OFFLOAD_CMD_ERROR &&
3414 out->compr == NULL) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003415 ALOGE("%s: Compress handle is NULL", __func__);
Haynes Mathew Georgea9abb202016-06-02 14:13:20 -07003416 free(cmd);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003417 pthread_cond_signal(&out->cond);
3418 continue;
3419 }
3420 out->offload_thread_blocked = true;
3421 pthread_mutex_unlock(&out->lock);
3422 send_callback = false;
3423 switch(cmd->cmd) {
3424 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07003425 ALOGD("copl(%p):calling compress_wait", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003426 compress_wait(out->compr, -1);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07003427 ALOGD("copl(%p):out of compress_wait", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003428 send_callback = true;
3429 event = STREAM_CBK_EVENT_WRITE_READY;
3430 break;
3431 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08003432 ret = compress_next_track(out->compr);
Sidipotu Ashok55820562014-02-10 16:16:38 +05303433 if(ret == 0) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07003434 ALOGD("copl(%p):calling compress_partial_drain", out);
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05303435 ret = compress_partial_drain(out->compr);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07003436 ALOGD("copl(%p):out of compress_partial_drain", out);
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05303437 if (ret < 0)
3438 ret = -errno;
Sidipotu Ashok55820562014-02-10 16:16:38 +05303439 }
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05303440 else if (ret == -ETIMEDOUT)
Aniket Kumar Lata3570fb12017-11-08 15:53:44 -08003441 ret = compress_drain(out->compr);
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08003442 else
3443 ALOGE("%s: Next track returned error %d",__func__, ret);
Aniket Kumar Lata3570fb12017-11-08 15:53:44 -08003444 if (-ENETRESET != ret && !(-EINTR == ret &&
3445 CARD_STATUS_OFFLINE == out->card_status)) {
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05303446 send_callback = true;
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05303447 pthread_mutex_lock(&out->lock);
3448 out->send_new_metadata = 1;
3449 out->send_next_track_params = true;
3450 pthread_mutex_unlock(&out->lock);
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05303451 event = STREAM_CBK_EVENT_DRAIN_READY;
3452 ALOGV("copl(%p):send drain callback, ret %d", out, ret);
3453 } else
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05303454 ALOGI("%s: Block drain ready event during SSR", __func__);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003455 break;
3456 case OFFLOAD_CMD_DRAIN:
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07003457 ALOGD("copl(%p):calling compress_drain", out);
Aniket Kumar Lata3570fb12017-11-08 15:53:44 -08003458 ret = compress_drain(out->compr);
3459 ALOGD("copl(%p):out of compress_drain", out);
3460 // EINTR check avoids drain interruption due to SSR
3461 if (-ENETRESET != ret && !(-EINTR == ret &&
3462 CARD_STATUS_OFFLINE == out->card_status)) {
3463 send_callback = true;
3464 event = STREAM_CBK_EVENT_DRAIN_READY;
3465 } else
3466 ALOGI("%s: Block drain ready event during SSR", __func__);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003467 break;
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05303468 case OFFLOAD_CMD_ERROR:
3469 ALOGD("copl(%p): sending error callback to AF", out);
3470 send_callback = true;
3471 event = STREAM_CBK_EVENT_ERROR;
3472 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003473 default:
3474 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
3475 break;
3476 }
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07003477 lock_output_stream(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003478 out->offload_thread_blocked = false;
3479 pthread_cond_signal(&out->cond);
Ben Rombergerd771a7c2017-02-22 18:05:17 -08003480 if (send_callback && out->client_callback) {
3481 ALOGVV("%s: sending client_callback event %d", __func__, event);
3482 out->client_callback(event, NULL, out->client_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07003483 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003484 free(cmd);
3485 }
3486
3487 pthread_cond_signal(&out->cond);
3488 while (!list_empty(&out->offload_cmd_list)) {
3489 item = list_head(&out->offload_cmd_list);
3490 list_remove(item);
3491 free(node_to_item(item, struct offload_cmd, node));
3492 }
3493 pthread_mutex_unlock(&out->lock);
3494
3495 return NULL;
3496}
3497
3498static int create_offload_callback_thread(struct stream_out *out)
3499{
3500 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
3501 list_init(&out->offload_cmd_list);
3502 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
3503 offload_thread_loop, out);
3504 return 0;
3505}
3506
3507static int destroy_offload_callback_thread(struct stream_out *out)
3508{
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07003509 lock_output_stream(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003510 stop_compressed_output_l(out);
3511 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
3512
3513 pthread_mutex_unlock(&out->lock);
3514 pthread_join(out->offload_thread, (void **) NULL);
3515 pthread_cond_destroy(&out->offload_cond);
3516
3517 return 0;
3518}
3519
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003520static int stop_output_stream(struct stream_out *out)
3521{
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +05303522 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003523 struct audio_usecase *uc_info;
3524 struct audio_device *adev = out->dev;
Aalique Grahame22e49102018-12-18 14:23:57 -08003525 bool has_voip_usecase =
3526 get_usecase_from_list(adev, USECASE_AUDIO_PLAYBACK_VOIP) != NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003527
Eric Laurent994a6932013-07-17 11:51:42 -07003528 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003529 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003530 uc_info = get_usecase_from_list(adev, out->usecase);
3531 if (uc_info == NULL) {
3532 ALOGE("%s: Could not find the usecase (%d) in the list",
3533 __func__, out->usecase);
3534 return -EINVAL;
3535 }
3536
Derek Chenea197282019-01-07 17:35:01 -08003537 if (audio_extn_ext_hw_plugin_usecase_stop(adev->ext_hw_plugin, uc_info))
3538 ALOGE("%s: failed to stop ext hw plugin", __func__);
Derek Chend2530072014-11-24 12:39:14 -08003539
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003540 if (is_offload_usecase(out->usecase) &&
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05303541 !(audio_extn_passthru_is_passthrough_stream(out))) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003542 if (adev->visualizer_stop_output != NULL)
3543 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08003544
3545 audio_extn_dts_remove_state_notifier_node(out->usecase);
3546
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003547 if (adev->offload_effects_stop_output != NULL)
3548 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
vivek mehtad15d2bf2019-05-17 13:35:10 -07003549 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_ULL ||
3550 out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
3551 audio_low_latency_hint_end();
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003552 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003553
Arun Mirpuri2ce92a62018-09-12 18:36:10 -07003554 if (out->usecase == USECASE_INCALL_MUSIC_UPLINK ||
3555 out->usecase == USECASE_INCALL_MUSIC_UPLINK2) {
Arun Mirpurief53ce52018-09-11 18:00:09 -07003556 voice_set_device_mute_flag(adev, false);
Arun Mirpuri2ce92a62018-09-12 18:36:10 -07003557 }
Arun Mirpurief53ce52018-09-11 18:00:09 -07003558
Eric Laurent150dbfe2013-02-27 14:31:02 -08003559 /* 1. Get and set stream specific mixer controls */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07003560 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003561
3562 /* 2. Disable the rx device */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07003563 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003564
Aalique Grahame22e49102018-12-18 14:23:57 -08003565 audio_extn_extspk_update(adev->extspk);
3566
Xiaojun Sang785b5da2017-08-03 15:52:29 +08003567 if (is_offload_usecase(out->usecase)) {
3568 audio_enable_asm_bit_width_enforce_mode(adev->mixer,
3569 adev->dsp_bit_width_enforce_mode,
3570 false);
3571 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003572 if (is_usb_out_device_type(&out->device_list)) {
Garmond Leung5fd0b552018-04-17 11:56:12 -07003573 ret = audio_extn_usb_check_and_set_svc_int(uc_info,
3574 false);
3575
3576 if (ret != 0)
3577 check_usecases_codec_backend(adev, uc_info, uc_info->out_snd_device);
3578 /* default service interval was successfully updated,
3579 reopen USB backend with new service interval */
3580 ret = 0;
3581 }
Xiaojun Sang785b5da2017-08-03 15:52:29 +08003582
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003583 list_remove(&uc_info->list);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05303584 out->started = 0;
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003585 if (is_offload_usecase(out->usecase) &&
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05303586 (audio_extn_passthru_is_passthrough_stream(out))) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003587 ALOGV("Disable passthrough , reset mixer to pcm");
3588 /* NO_PASSTHROUGH */
Meng Wang4c32fb42020-01-16 17:57:11 +08003589#ifdef AUDIO_GKI_ENABLED
3590 /* out->compr_config.codec->reserved[0] is for compr_passthr */
3591 out->compr_config.codec->reserved[0] = 0;
3592#else
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003593 out->compr_config.codec->compr_passthr = 0;
Meng Wang4c32fb42020-01-16 17:57:11 +08003594#endif
Mingming Yin21854652016-04-13 11:54:02 -07003595 audio_extn_passthru_on_stop(out);
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003596 audio_extn_dolby_set_dap_bypass(adev, DAP_STATE_ON);
3597 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07003598
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05303599 /* Must be called after removing the usecase from list */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003600 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_AUX_DIGITAL))
Md Mansoor Ahmeddb1b4f92018-01-25 18:56:31 +05303601 audio_extn_keep_alive_start(KEEP_ALIVE_OUT_HDMI);
Ashish Jaind84fd6a2016-07-27 12:33:25 +05303602
Manish Dewangan21a850a2017-08-14 12:03:55 +05303603 if (out->ip_hdlr_handle) {
Naresh Tanniru85819452017-05-04 18:55:45 -07003604 ret = audio_extn_ip_hdlr_intf_close(out->ip_hdlr_handle, true, out);
3605 if (ret < 0)
3606 ALOGE("%s: audio_extn_ip_hdlr_intf_close failed %d",__func__, ret);
3607 }
3608
juyuchen2d415992018-11-16 14:15:16 +08003609 /* 1) media + voip output routing to handset must route media back to
3610 speaker when voip stops.
3611 2) trigger voip input to reroute when voip output changes to
3612 hearing aid. */
Aalique Grahame22e49102018-12-18 14:23:57 -08003613 if (has_voip_usecase ||
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003614 compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER_SAFE)) {
Aalique Grahame22e49102018-12-18 14:23:57 -08003615 struct listnode *node;
3616 struct audio_usecase *usecase;
3617 list_for_each(node, &adev->usecase_list) {
3618 usecase = node_to_item(node, struct audio_usecase, list);
juyuchen2d415992018-11-16 14:15:16 +08003619 if ((usecase->type == PCM_CAPTURE &&
3620 usecase->id != USECASE_AUDIO_RECORD_VOIP)
3621 || usecase == uc_info)
Aalique Grahame22e49102018-12-18 14:23:57 -08003622 continue;
3623
3624 ALOGD("%s: select_devices at usecase(%d: %s) after removing the usecase(%d: %s)",
3625 __func__, usecase->id, use_case_table[usecase->id],
3626 out->usecase, use_case_table[out->usecase]);
3627 select_devices(adev, usecase->id);
3628 }
3629 }
3630
Garmond Leung5fd0b552018-04-17 11:56:12 -07003631 free(uc_info);
Eric Laurent994a6932013-07-17 11:51:42 -07003632 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003633 return ret;
3634}
3635
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003636struct pcm* pcm_open_prepare_helper(unsigned int snd_card, unsigned int pcm_device_id,
3637 unsigned int flags, unsigned int pcm_open_retry_count,
3638 struct pcm_config *config)
3639{
3640 struct pcm* pcm = NULL;
3641
3642 while (1) {
3643 pcm = pcm_open(snd_card, pcm_device_id, flags, config);
3644 if (pcm == NULL || !pcm_is_ready(pcm)) {
3645 ALOGE("%s: %s", __func__, pcm_get_error(pcm));
3646 if (pcm != NULL) {
3647 pcm_close(pcm);
3648 pcm = NULL;
3649 }
Weiyin Jiang72197252019-10-09 11:49:32 +08003650 if (pcm_open_retry_count == 0)
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003651 return NULL;
3652
Weiyin Jiang72197252019-10-09 11:49:32 +08003653 pcm_open_retry_count--;
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003654 usleep(PROXY_OPEN_WAIT_TIME * 1000);
3655 continue;
3656 }
3657 break;
3658 }
3659
3660 if (pcm_is_ready(pcm)) {
3661 int ret = pcm_prepare(pcm);
3662 if (ret < 0) {
3663 ALOGE("%s: pcm_prepare returned %d", __func__, ret);
3664 pcm_close(pcm);
3665 pcm = NULL;
3666 }
3667 }
3668
3669 return pcm;
3670}
3671
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003672int start_output_stream(struct stream_out *out)
3673{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003674 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003675 struct audio_usecase *uc_info;
3676 struct audio_device *adev = out->dev;
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08003677 char mixer_ctl_name[128];
3678 struct mixer_ctl *ctl = NULL;
3679 char* perf_mode[] = {"ULL", "ULL_PP", "LL"};
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303680 bool a2dp_combo = false;
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003681 bool is_haptic_usecase = (out->usecase == USECASE_AUDIO_PLAYBACK_WITH_HAPTICS) ? true: false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003682
Haynes Mathew George380745d2017-10-04 15:27:45 -07003683 ATRACE_BEGIN("start_output_stream");
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003684 if ((out->usecase < 0) || (out->usecase >= AUDIO_USECASE_MAX)) {
3685 ret = -EINVAL;
3686 goto error_config;
3687 }
3688
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003689 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x) is_haptic_usecase(%d)",
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05303690 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003691 get_device_types(&out->device_list), is_haptic_usecase);
3692
3693 bool is_speaker_active = compare_device_type(&out->device_list,
3694 AUDIO_DEVICE_OUT_SPEAKER);
3695 bool is_speaker_safe_active = compare_device_type(&out->device_list,
3696 AUDIO_DEVICE_OUT_SPEAKER_SAFE);
Naresh Tanniru4c630392014-05-12 01:05:52 +05303697
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05303698 if (CARD_STATUS_OFFLINE == out->card_status ||
3699 CARD_STATUS_OFFLINE == adev->card_status) {
3700 ALOGW("out->card_status or adev->card_status offline, try again");
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05303701 ret = -EIO;
Naresh Tanniru4c630392014-05-12 01:05:52 +05303702 goto error_config;
3703 }
Naresh Tanniru4c630392014-05-12 01:05:52 +05303704
Arun Mirpuri2ce92a62018-09-12 18:36:10 -07003705 //Update incall music usecase to reflect correct voice session
3706 if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
3707 ret = voice_extn_check_and_set_incall_music_usecase(adev, out);
3708 if (ret != 0) {
3709 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
3710 __func__, ret);
3711 goto error_config;
3712 }
3713 }
3714
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003715 if (is_a2dp_out_device_type(&out->device_list)) {
Florian Pfister1a84f312018-07-19 14:38:18 +02003716 if (!audio_extn_a2dp_source_is_ready()) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003717 if (is_speaker_active || is_speaker_safe_active) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303718 a2dp_combo = true;
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05303719 } else {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303720 if (!(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
3721 ALOGE("%s: A2DP profile is not ready, return error", __func__);
3722 ret = -EAGAIN;
3723 goto error_config;
3724 }
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05303725 }
3726 }
3727 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003728 if (is_sco_out_device_type(&out->device_list)) {
Ashish Jain1b9b30c2017-05-18 20:57:40 +05303729 if (!adev->bt_sco_on) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003730 if (is_speaker_active) {
Ashish Jain1b9b30c2017-05-18 20:57:40 +05303731 //combo usecase just by pass a2dp
3732 ALOGW("%s: SCO is not connected, route it to speaker", __func__);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003733 reassign_device_list(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER, "");
Ashish Jain1b9b30c2017-05-18 20:57:40 +05303734 } else {
3735 ALOGE("%s: SCO profile is not ready, return error", __func__);
3736 ret = -EAGAIN;
3737 goto error_config;
3738 }
3739 }
3740 }
3741
Eric Laurentb23d5282013-05-14 15:27:20 -07003742 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003743 if (out->pcm_device_id < 0) {
3744 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
3745 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003746 ret = -EINVAL;
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003747 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003748 }
3749
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003750 if (is_haptic_usecase) {
3751 adev->haptic_pcm_device_id = platform_get_haptics_pcm_device_id();
3752 if (adev->haptic_pcm_device_id < 0) {
3753 ALOGE("%s: Invalid Haptics pcm device id(%d) for the usecase(%d)",
3754 __func__, adev->haptic_pcm_device_id, out->usecase);
3755 ret = -EINVAL;
3756 goto error_config;
3757 }
3758 }
3759
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003760 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003761
3762 if (!uc_info) {
3763 ret = -ENOMEM;
3764 goto error_config;
3765 }
3766
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003767 uc_info->id = out->usecase;
3768 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003769 uc_info->stream.out = out;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003770 list_init(&uc_info->device_list);
3771 assign_devices(&uc_info->device_list, &out->device_list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003772 uc_info->in_snd_device = SND_DEVICE_NONE;
3773 uc_info->out_snd_device = SND_DEVICE_NONE;
Garmond Leung5fd0b552018-04-17 11:56:12 -07003774
3775 /* This must be called before adding this usecase to the list */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003776 if (is_usb_out_device_type(&out->device_list)) {
Garmond Leung5fd0b552018-04-17 11:56:12 -07003777 audio_extn_usb_check_and_set_svc_int(uc_info, true);
3778 /* USB backend is not reopened immediately.
3779 This is eventually done as part of select_devices */
3780 }
3781
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003782 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003783
Wei Wangf7ca6c92017-11-21 14:51:20 -08003784 audio_streaming_hint_start();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05303785 audio_extn_perf_lock_acquire(&adev->perf_lock_handle, 0,
3786 adev->perf_lock_opts,
3787 adev->perf_lock_opts_size);
Ashish Jaind84fd6a2016-07-27 12:33:25 +05303788
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003789 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Md Mansoor Ahmeddb1b4f92018-01-25 18:56:31 +05303790 audio_extn_keep_alive_stop(KEEP_ALIVE_OUT_HDMI);
Ashish Jaind84fd6a2016-07-27 12:33:25 +05303791 if (audio_extn_passthru_is_enabled() &&
3792 audio_extn_passthru_is_passthrough_stream(out)) {
3793 audio_extn_passthru_on_start(out);
Ashish Jaind84fd6a2016-07-27 12:33:25 +05303794 }
3795 }
3796
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003797 if (is_a2dp_out_device_type(&out->device_list) &&
Florian Pfister1a84f312018-07-19 14:38:18 +02003798 (!audio_extn_a2dp_source_is_ready())) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303799 if (!a2dp_combo) {
3800 check_a2dp_restore_l(adev, out, false);
3801 } else {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003802 struct listnode dev;
3803 list_init(&dev);
3804 assign_devices(&dev, &out->device_list);
3805 if (compare_device_type(&dev, AUDIO_DEVICE_OUT_SPEAKER_SAFE))
3806 reassign_device_list(&out->device_list,
3807 AUDIO_DEVICE_OUT_SPEAKER_SAFE, "");
Aalique Grahame22e49102018-12-18 14:23:57 -08003808 else
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003809 reassign_device_list(&out->device_list,
3810 AUDIO_DEVICE_OUT_SPEAKER, "");
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303811 select_devices(adev, out->usecase);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003812 assign_devices(&out->device_list, &dev);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05303813 }
3814 } else {
3815 select_devices(adev, out->usecase);
3816 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003817
Arun Mirpuri2ce92a62018-09-12 18:36:10 -07003818 if (out->usecase == USECASE_INCALL_MUSIC_UPLINK ||
3819 out->usecase == USECASE_INCALL_MUSIC_UPLINK2) {
Arun Mirpurief53ce52018-09-11 18:00:09 -07003820 voice_set_device_mute_flag(adev, true);
Arun Mirpuri2ce92a62018-09-12 18:36:10 -07003821 }
Arun Mirpurief53ce52018-09-11 18:00:09 -07003822
Derek Chenea197282019-01-07 17:35:01 -08003823 if (audio_extn_ext_hw_plugin_usecase_start(adev->ext_hw_plugin, uc_info))
3824 ALOGE("%s: failed to start ext hw plugin", __func__);
Derek Chend2530072014-11-24 12:39:14 -08003825
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003826 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d) format(%#x)",
3827 __func__, adev->snd_card, out->pcm_device_id, out->config.format);
Haynes Mathew George16081042017-05-31 17:16:49 -07003828
3829 if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
Arun Mirpuri5d170872019-03-26 13:21:31 -07003830 ALOGD("%s: Starting MMAP stream", __func__);
Haynes Mathew George16081042017-05-31 17:16:49 -07003831 if (out->pcm == NULL || !pcm_is_ready(out->pcm)) {
3832 ALOGE("%s: pcm stream not ready", __func__);
3833 goto error_open;
3834 }
3835 ret = pcm_start(out->pcm);
3836 if (ret < 0) {
3837 ALOGE("%s: MMAP pcm_start failed ret %d", __func__, ret);
3838 goto error_open;
3839 }
Arun Mirpuri5d170872019-03-26 13:21:31 -07003840 out_set_mmap_volume(&out->stream, out->volume_l, out->volume_r);
Haynes Mathew George16081042017-05-31 17:16:49 -07003841 } else if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003842 unsigned int flags = PCM_OUT;
3843 unsigned int pcm_open_retry_count = 0;
3844 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
3845 flags |= PCM_MMAP | PCM_NOIRQ;
3846 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
Haynes Mathew George5beddd42016-06-27 18:33:40 -07003847 } else if (out->realtime) {
Haynes Mathew George4ab3ba92017-12-11 14:49:43 -08003848 flags |= PCM_MMAP | PCM_NOIRQ | PCM_MONOTONIC;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003849 } else
3850 flags |= PCM_MONOTONIC;
3851
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08003852 if ((adev->vr_audio_mode_enabled) &&
3853 (out->flags & AUDIO_OUTPUT_FLAG_RAW)) {
3854 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
3855 "PCM_Dev %d Topology", out->pcm_device_id);
3856 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
3857 if (!ctl) {
3858 ALOGI("%s: Could not get ctl for mixer cmd might be ULL - %s",
3859 __func__, mixer_ctl_name);
3860 } else {
3861 //if success use ULLPP
3862 ALOGI("%s: mixer ctrl %s succeeded setting up ULL for %d",
3863 __func__, mixer_ctl_name, out->pcm_device_id);
3864 //There is a still a possibility that some sessions
3865 // that request for FAST|RAW when 3D audio is active
3866 //can go through ULLPP. Ideally we expects apps to
3867 //listen to audio focus and stop concurrent playback
3868 //Also, we will look for mode flag (voice_in_communication)
3869 //before enabling the realtime flag.
3870 mixer_ctl_set_enum_by_string(ctl, perf_mode[1]);
3871 }
3872 }
3873
Surendar Karka91fa3682018-07-02 18:12:12 +05303874 if (out->realtime)
3875 platform_set_stream_channel_map(adev->platform, out->channel_mask,
3876 out->pcm_device_id, &out->channel_map_param.channel_map[0]);
3877
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003878 out->pcm = pcm_open_prepare_helper(adev->snd_card, out->pcm_device_id,
3879 flags, pcm_open_retry_count,
3880 &(out->config));
3881 if (out->pcm == NULL) {
3882 ret = -EIO;
3883 goto error_open;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003884 }
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003885
3886 if (is_haptic_usecase) {
3887 adev->haptic_pcm = pcm_open_prepare_helper(adev->snd_card,
3888 adev->haptic_pcm_device_id,
3889 flags, pcm_open_retry_count,
3890 &(adev->haptics_config));
3891 // failure to open haptics pcm shouldnt stop audio,
3892 // so do not close audio pcm in case of error
Vignesh Kulothungane4039c12019-05-07 15:51:39 -07003893
3894 if (property_get_bool("vendor.audio.enable_haptic_audio_sync", false)) {
3895 ALOGD("%s: enable haptic audio synchronization", __func__);
3896 platform_set_qtime(adev->platform, out->pcm_device_id, adev->haptic_pcm_device_id);
3897 }
Vignesh Kulothungana6927272019-02-20 15:17:07 -08003898 }
3899
Surendar Karka91fa3682018-07-02 18:12:12 +05303900 if (!out->realtime)
3901 platform_set_stream_channel_map(adev->platform, out->channel_mask,
Surendar Karkaf51b5842018-04-26 11:28:38 +05303902 out->pcm_device_id, &out->channel_map_param.channel_map[0]);
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07003903
Zhou Song2b8f28f2017-09-11 10:51:38 +08003904 // apply volume for voip playback after path is set up
3905 if (out->usecase == USECASE_AUDIO_PLAYBACK_VOIP)
3906 out_set_voip_volume(&out->stream, out->volume_l, out->volume_r);
Ramu Gottipati36547092018-12-28 11:32:09 +05303907 else if ((out->usecase == USECASE_AUDIO_PLAYBACK_LOW_LATENCY || out->usecase == USECASE_AUDIO_PLAYBACK_DEEP_BUFFER ||
3908 out->usecase == USECASE_AUDIO_PLAYBACK_ULL) && (out->apply_volume)) {
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +05303909 out_set_pcm_volume(&out->stream, out->volume_l, out->volume_r);
3910 out->apply_volume = false;
Derek Chenf13dd492018-11-13 14:53:51 -08003911 } else if (audio_extn_auto_hal_is_bus_device_usecase(out->usecase)) {
3912 out_set_pcm_volume(&out->stream, out->volume_l, out->volume_r);
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +05303913 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003914 } else {
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -07003915 platform_set_stream_channel_map(adev->platform, out->channel_mask,
Naresh Tanniru29bce4e2017-04-27 17:54:30 +05303916 out->pcm_device_id, &out->channel_map_param.channel_map[0]);
Xiaojun Sang785b5da2017-08-03 15:52:29 +08003917 audio_enable_asm_bit_width_enforce_mode(adev->mixer,
3918 adev->dsp_bit_width_enforce_mode,
3919 true);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003920 out->pcm = NULL;
Haynes Mathew George380745d2017-10-04 15:27:45 -07003921 ATRACE_BEGIN("compress_open");
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003922 out->compr = compress_open(adev->snd_card,
3923 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003924 COMPRESS_IN, &out->compr_config);
Haynes Mathew George380745d2017-10-04 15:27:45 -07003925 ATRACE_END();
Satish Babu Patakokila54ce83d2018-07-06 18:00:37 +05303926 if (errno == ENETRESET && !is_compress_ready(out->compr)) {
Sharad Sanglec6f32552018-05-04 16:15:38 +05303927 ALOGE("%s: compress_open failed errno:%d\n", __func__, errno);
3928 adev->card_status = CARD_STATUS_OFFLINE;
3929 out->card_status = CARD_STATUS_OFFLINE;
3930 ret = -EIO;
3931 goto error_open;
3932 }
3933
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003934 if (out->compr && !is_compress_ready(out->compr)) {
Haynes Mathew Georgeee5836f2017-11-21 18:02:10 -08003935 ALOGE("%s: failed /w error %s", __func__, compress_get_error(out->compr));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003936 compress_close(out->compr);
3937 out->compr = NULL;
3938 ret = -EIO;
3939 goto error_open;
3940 }
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05303941 /* compress_open sends params of the track, so reset the flag here */
3942 out->is_compr_metadata_avail = false;
3943
Ben Rombergerd771a7c2017-02-22 18:05:17 -08003944 if (out->client_callback)
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07003945 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07003946
Fred Oh3f43e742015-03-04 18:42:34 -08003947 /* Since small bufs uses blocking writes, a write will be blocked
3948 for the default max poll time (20s) in the event of an SSR.
3949 Reduce the poll time to observe and deal with SSR faster.
3950 */
Ashish Jain5106d362016-05-11 19:23:33 +05303951 if (!out->non_blocking) {
Fred Oh3f43e742015-03-04 18:42:34 -08003952 compress_set_max_poll_wait(out->compr, 1000);
3953 }
3954
Manish Dewangan69426c82017-01-30 17:35:36 +05303955 audio_extn_utils_compress_set_render_mode(out);
Manish Dewangan58229382017-02-02 15:48:41 +05303956 audio_extn_utils_compress_set_clk_rec_mode(uc_info);
Manish Dewangan69426c82017-01-30 17:35:36 +05303957
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08003958 audio_extn_dts_create_state_notifier_node(out->usecase);
3959 audio_extn_dts_notify_playback_state(out->usecase, 0, out->sample_rate,
3960 popcount(out->channel_mask),
3961 out->playback_started);
3962
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08003963#ifdef DS1_DOLBY_DDP_ENABLED
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05303964 if (audio_extn_utils_is_dolby_format(out->format))
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08003965 audio_extn_dolby_send_ddp_endp_params(adev);
3966#endif
Preetam Singh Ranawatd18d8832017-02-08 17:34:54 +05303967 if (!(audio_extn_passthru_is_passthrough_stream(out)) &&
3968 (out->sample_rate != 176400 && out->sample_rate <= 192000)) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003969 if (adev->visualizer_start_output != NULL)
3970 adev->visualizer_start_output(out->handle, out->pcm_device_id);
3971 if (adev->offload_effects_start_output != NULL)
Ashish Jain5106d362016-05-11 19:23:33 +05303972 adev->offload_effects_start_output(out->handle, out->pcm_device_id, adev->mixer);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08003973 audio_extn_check_and_set_dts_hpx_state(adev);
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07003974 }
Derek Chenf13dd492018-11-13 14:53:51 -08003975
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08003976 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_BUS)) {
Derek Chenf13dd492018-11-13 14:53:51 -08003977 /* Update cached volume from media to offload/direct stream */
3978 struct listnode *node = NULL;
3979 list_for_each(node, &adev->active_outputs_list) {
3980 streams_output_ctxt_t *out_ctxt = node_to_item(node,
3981 streams_output_ctxt_t,
3982 list);
3983 if (out_ctxt->output->usecase == USECASE_AUDIO_PLAYBACK_MEDIA) {
3984 out->volume_l = out_ctxt->output->volume_l;
3985 out->volume_r = out_ctxt->output->volume_r;
3986 }
3987 }
3988 out_set_compr_volume(&out->stream,
3989 out->volume_l, out->volume_r);
3990 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003991 }
Haynes Mathew George5beddd42016-06-27 18:33:40 -07003992
3993 if (ret == 0) {
3994 register_out_stream(out);
3995 if (out->realtime) {
Aniket Kumar Lataf9f246e2017-09-15 15:20:16 -07003996 if (out->pcm == NULL || !pcm_is_ready(out->pcm)) {
3997 ALOGE("%s: pcm stream not ready", __func__);
3998 goto error_open;
3999 }
Haynes Mathew George380745d2017-10-04 15:27:45 -07004000 ATRACE_BEGIN("pcm_start");
Haynes Mathew George5beddd42016-06-27 18:33:40 -07004001 ret = pcm_start(out->pcm);
Haynes Mathew George380745d2017-10-04 15:27:45 -07004002 ATRACE_END();
Haynes Mathew George5beddd42016-06-27 18:33:40 -07004003 if (ret < 0)
4004 goto error_open;
4005 }
4006 }
Wei Wangf7ca6c92017-11-21 14:51:20 -08004007 audio_streaming_hint_end();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05304008 audio_extn_perf_lock_release(&adev->perf_lock_handle);
Ravi Kumar Alamandac7d9bef2015-09-30 22:27:26 -07004009 ALOGD("%s: exit", __func__);
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07004010
vivek mehtad15d2bf2019-05-17 13:35:10 -07004011 if (out->usecase == USECASE_AUDIO_PLAYBACK_ULL ||
4012 out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
4013 audio_low_latency_hint_start();
4014 }
4015
Manish Dewangan21a850a2017-08-14 12:03:55 +05304016 if (out->ip_hdlr_handle) {
Vidyakumar Athota6d655882017-05-22 18:26:24 -07004017 ret = audio_extn_ip_hdlr_intf_open(out->ip_hdlr_handle, true, out, out->usecase);
Naresh Tanniru85819452017-05-04 18:55:45 -07004018 if (ret < 0)
4019 ALOGE("%s: audio_extn_ip_hdlr_intf_open failed %d",__func__, ret);
4020 }
4021
Vignesh Kulothungan3b5fae52017-09-25 12:16:30 -07004022 // consider a scenario where on pause lower layers are tear down.
4023 // so on resume, swap mixer control need to be sent only when
4024 // backend is active, hence rather than sending from enable device
4025 // sending it from start of streamtream
4026
4027 platform_set_swap_channels(adev, true);
4028
Haynes Mathew George380745d2017-10-04 15:27:45 -07004029 ATRACE_END();
Vatsal Buchac09ae062018-11-14 13:25:08 +05304030 enable_gcov();
Haynes Mathew George5beddd42016-06-27 18:33:40 -07004031 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004032error_open:
Vignesh Kulothungana6927272019-02-20 15:17:07 -08004033 if (adev->haptic_pcm) {
4034 pcm_close(adev->haptic_pcm);
4035 adev->haptic_pcm = NULL;
4036 }
Wei Wangf7ca6c92017-11-21 14:51:20 -08004037 audio_streaming_hint_end();
Sudheer Papothifa9d2282015-09-17 01:53:25 +05304038 audio_extn_perf_lock_release(&adev->perf_lock_handle);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004039 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08004040error_config:
Laxminath Kasam2cb4b752015-09-24 03:59:15 +05304041 /*
4042 * sleep 50ms to allow sufficient time for kernel
4043 * drivers to recover incases like SSR.
4044 */
4045 usleep(50000);
Haynes Mathew George380745d2017-10-04 15:27:45 -07004046 ATRACE_END();
Vatsal Buchac09ae062018-11-14 13:25:08 +05304047 enable_gcov();
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08004048 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004049}
4050
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004051static int check_input_parameters(uint32_t sample_rate,
4052 audio_format_t format,
Aalique Grahame22e49102018-12-18 14:23:57 -08004053 int channel_count,
4054 bool is_usb_hifi)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004055{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004056 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004057
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05304058 if (((format != AUDIO_FORMAT_PCM_16_BIT) && (format != AUDIO_FORMAT_PCM_8_24_BIT) &&
4059 (format != AUDIO_FORMAT_PCM_24_BIT_PACKED) && (format != AUDIO_FORMAT_PCM_32_BIT) &&
4060 (format != AUDIO_FORMAT_PCM_FLOAT)) &&
Mingming Yine62d7842013-10-25 16:26:03 -07004061 !voice_extn_compress_voip_is_format_supported(format) &&
Ralf Herzaec80262018-07-03 07:08:49 +02004062 !audio_extn_compr_cap_format_supported(format) &&
4063 !audio_extn_cin_format_supported(format))
Haynes Mathew George484e8d22017-07-31 18:55:17 -07004064 ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004065
Aalique Grahame22e49102018-12-18 14:23:57 -08004066 int max_channel_count = is_usb_hifi ? MAX_HIFI_CHANNEL_COUNT : MAX_CHANNEL_COUNT;
4067 if ((channel_count < MIN_CHANNEL_COUNT) || (channel_count > max_channel_count)) {
4068 ALOGE("%s: unsupported channel count (%d) passed Min / Max (%d / %d)", __func__,
4069 channel_count, MIN_CHANNEL_COUNT, max_channel_count);
4070 return -EINVAL;
4071 }
4072
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004073 switch (channel_count) {
4074 case 1:
4075 case 2:
Chaithanya Krishna Bacharaju9955b162016-05-25 16:25:53 +05304076 case 3:
4077 case 4:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004078 case 6:
Karthikeyan Mani07faa602018-08-20 11:01:32 -07004079 case 8:
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05304080 case 10:
4081 case 12:
4082 case 14:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004083 break;
4084 default:
4085 ret = -EINVAL;
4086 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004087
4088 switch (sample_rate) {
4089 case 8000:
4090 case 11025:
4091 case 12000:
4092 case 16000:
4093 case 22050:
4094 case 24000:
4095 case 32000:
4096 case 44100:
4097 case 48000:
Haynes Mathew Georgec9253d12017-12-13 15:58:28 -08004098 case 88200:
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05304099 case 96000:
Haynes Mathew Georgec9253d12017-12-13 15:58:28 -08004100 case 176400:
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05304101 case 192000:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004102 break;
4103 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004104 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004105 }
4106
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08004107 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004108}
4109
Naresh Tanniru04f71882018-06-26 17:46:22 +05304110
4111/** Add a value in a list if not already present.
4112 * @return true if value was successfully inserted or already present,
4113 * false if the list is full and does not contain the value.
4114 */
4115static bool register_uint(uint32_t value, uint32_t* list, size_t list_length) {
4116 for (size_t i = 0; i < list_length; i++) {
4117 if (list[i] == value) return true; // value is already present
4118 if (list[i] == 0) { // no values in this slot
4119 list[i] = value;
4120 return true; // value inserted
4121 }
4122 }
4123 return false; // could not insert value
4124}
4125
4126/** Add channel_mask in supported_channel_masks if not already present.
4127 * @return true if channel_mask was successfully inserted or already present,
4128 * false if supported_channel_masks is full and does not contain channel_mask.
4129 */
4130static void register_channel_mask(audio_channel_mask_t channel_mask,
4131 audio_channel_mask_t supported_channel_masks[static MAX_SUPPORTED_CHANNEL_MASKS]) {
4132 ALOGE_IF(!register_uint(channel_mask, supported_channel_masks, MAX_SUPPORTED_CHANNEL_MASKS),
4133 "%s: stream can not declare supporting its channel_mask %x", __func__, channel_mask);
4134}
4135
4136/** Add format in supported_formats if not already present.
4137 * @return true if format was successfully inserted or already present,
4138 * false if supported_formats is full and does not contain format.
4139 */
4140static void register_format(audio_format_t format,
4141 audio_format_t supported_formats[static MAX_SUPPORTED_FORMATS]) {
4142 ALOGE_IF(!register_uint(format, supported_formats, MAX_SUPPORTED_FORMATS),
4143 "%s: stream can not declare supporting its format %x", __func__, format);
4144}
4145/** Add sample_rate in supported_sample_rates if not already present.
4146 * @return true if sample_rate was successfully inserted or already present,
4147 * false if supported_sample_rates is full and does not contain sample_rate.
4148 */
4149static void register_sample_rate(uint32_t sample_rate,
4150 uint32_t supported_sample_rates[static MAX_SUPPORTED_SAMPLE_RATES]) {
4151 ALOGE_IF(!register_uint(sample_rate, supported_sample_rates, MAX_SUPPORTED_SAMPLE_RATES),
4152 "%s: stream can not declare supporting its sample rate %x", __func__, sample_rate);
4153}
4154
Karthikeyan Manib38769c2018-11-07 15:44:13 -08004155static inline uint32_t lcm(uint32_t num1, uint32_t num2)
4156{
4157 uint32_t high = num1, low = num2, temp = 0;
4158
4159 if (!num1 || !num2)
4160 return 0;
4161
4162 if (num1 < num2) {
4163 high = num2;
4164 low = num1;
4165 }
4166
4167 while (low != 0) {
4168 temp = low;
4169 low = high % low;
4170 high = temp;
4171 }
4172 return (num1 * num2)/high;
4173}
4174
4175static inline uint32_t nearest_multiple(uint32_t num, uint32_t multiplier)
4176{
4177 uint32_t remainder = 0;
4178
4179 if (!multiplier)
4180 return num;
4181
4182 remainder = num % multiplier;
4183 if (remainder)
4184 num += (multiplier - remainder);
4185
4186 return num;
4187}
4188
Aalique Grahame22e49102018-12-18 14:23:57 -08004189static size_t get_stream_buffer_size(size_t duration_ms,
4190 uint32_t sample_rate,
4191 audio_format_t format,
4192 int channel_count,
4193 bool is_low_latency)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004194{
4195 size_t size = 0;
Karthikeyan Manib38769c2018-11-07 15:44:13 -08004196 uint32_t bytes_per_period_sample = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004197
Aalique Grahame22e49102018-12-18 14:23:57 -08004198 size = (sample_rate * duration_ms) / 1000;
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07004199 if (is_low_latency)
4200 size = configured_low_latency_capture_period_size;
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05304201
Karthikeyan Manib38769c2018-11-07 15:44:13 -08004202 bytes_per_period_sample = audio_bytes_per_sample(format) * channel_count;
Aalique Grahame22e49102018-12-18 14:23:57 -08004203 size *= audio_bytes_per_sample(format) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004204
Ralf Herzbd08d632018-09-28 15:50:49 +02004205 /* make sure the size is multiple of 32 bytes and additionally multiple of
4206 * the frame_size (required for 24bit samples and non-power-of-2 channel counts)
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07004207 * At 48 kHz mono 16-bit PCM:
4208 * 5.000 ms = 240 frames = 15*16*1*2 = 480, a whole multiple of 32 (15)
4209 * 3.333 ms = 160 frames = 10*16*1*2 = 320, a whole multiple of 32 (10)
Karthikeyan Manib38769c2018-11-07 15:44:13 -08004210 * Also, make sure the size is multiple of bytes per period sample
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07004211 */
Karthikeyan Manib38769c2018-11-07 15:44:13 -08004212 size = nearest_multiple(size, lcm(32, bytes_per_period_sample));
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07004213
4214 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004215}
4216
Aalique Grahame22e49102018-12-18 14:23:57 -08004217static size_t get_input_buffer_size(uint32_t sample_rate,
4218 audio_format_t format,
4219 int channel_count,
4220 bool is_low_latency)
4221{
4222 /* Don't know if USB HIFI in this context so use true to be conservative */
4223 if (check_input_parameters(sample_rate, format, channel_count,
4224 true /*is_usb_hifi */) != 0)
4225 return 0;
4226
4227 return get_stream_buffer_size(AUDIO_CAPTURE_PERIOD_DURATION_MSEC,
4228 sample_rate,
4229 format,
4230 channel_count,
4231 is_low_latency);
4232}
4233
Derek Chenf6318be2017-06-12 17:16:24 -04004234size_t get_output_period_size(uint32_t sample_rate,
4235 audio_format_t format,
4236 int channel_count,
4237 int duration /*in millisecs*/)
Ashish Jain058165c2016-09-28 23:18:48 +05304238{
4239 size_t size = 0;
4240 uint32_t bytes_per_sample = audio_bytes_per_sample(format);
4241
4242 if ((duration == 0) || (sample_rate == 0) ||
4243 (bytes_per_sample == 0) || (channel_count == 0)) {
4244 ALOGW("Invalid config duration %d sr %d bps %d ch %d", duration, sample_rate,
4245 bytes_per_sample, channel_count);
4246 return -EINVAL;
4247 }
4248
4249 size = (sample_rate *
4250 duration *
4251 bytes_per_sample *
4252 channel_count) / 1000;
4253 /*
4254 * To have same PCM samples for all channels, the buffer size requires to
4255 * be multiple of (number of channels * bytes per sample)
4256 * For writes to succeed, the buffer must be written at address which is multiple of 32
4257 */
4258 size = ALIGN(size, (bytes_per_sample * channel_count * 32));
4259
4260 return (size/(channel_count * bytes_per_sample));
4261}
4262
Zhou Song48453a02018-01-10 17:50:59 +08004263static uint64_t get_actual_pcm_frames_rendered(struct stream_out *out, struct timespec *timestamp)
Ashish Jain5106d362016-05-11 19:23:33 +05304264{
4265 uint64_t actual_frames_rendered = 0;
4266 size_t kernel_buffer_size = out->compr_config.fragment_size * out->compr_config.fragments;
4267
4268 /* This adjustment accounts for buffering after app processor.
4269 * It is based on estimated DSP latency per use case, rather than exact.
4270 */
4271 int64_t platform_latency = platform_render_latency(out->usecase) *
4272 out->sample_rate / 1000000LL;
4273
Zhou Song48453a02018-01-10 17:50:59 +08004274 pthread_mutex_lock(&out->position_query_lock);
Ashish Jain5106d362016-05-11 19:23:33 +05304275 /* not querying actual state of buffering in kernel as it would involve an ioctl call
4276 * which then needs protection, this causes delay in TS query for pcm_offload usecase
4277 * hence only estimate.
4278 */
George Gao62ebc722019-07-29 16:29:44 -07004279 uint64_t signed_frames = 0;
4280 if (out->written >= kernel_buffer_size)
4281 signed_frames = out->written - kernel_buffer_size;
Ashish Jain5106d362016-05-11 19:23:33 +05304282
George Gao62ebc722019-07-29 16:29:44 -07004283 signed_frames = signed_frames / (audio_bytes_per_sample(out->format) * popcount(out->channel_mask));
4284 if (signed_frames >= platform_latency)
4285 signed_frames = signed_frames - platform_latency;
Ashish Jain5106d362016-05-11 19:23:33 +05304286
Zhou Song48453a02018-01-10 17:50:59 +08004287 if (signed_frames > 0) {
Ashish Jain5106d362016-05-11 19:23:33 +05304288 actual_frames_rendered = signed_frames;
Zhou Song48453a02018-01-10 17:50:59 +08004289 if (timestamp != NULL )
4290 *timestamp = out->writeAt;
4291 } else if (timestamp != NULL) {
4292 clock_gettime(CLOCK_MONOTONIC, timestamp);
4293 }
4294 pthread_mutex_unlock(&out->position_query_lock);
Ashish Jain5106d362016-05-11 19:23:33 +05304295
4296 ALOGVV("%s signed frames %lld out_written %lld kernel_buffer_size %d"
George Gao62ebc722019-07-29 16:29:44 -07004297 "bytes/sample %zu channel count %d", __func__, signed_frames,
Ashish Jain5106d362016-05-11 19:23:33 +05304298 (long long int)out->written, (int)kernel_buffer_size,
4299 audio_bytes_per_sample(out->compr_config.codec->format),
4300 popcount(out->channel_mask));
4301
4302 return actual_frames_rendered;
4303}
4304
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004305static uint32_t out_get_sample_rate(const struct audio_stream *stream)
4306{
4307 struct stream_out *out = (struct stream_out *)stream;
4308
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004309 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004310}
4311
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07004312static int out_set_sample_rate(struct audio_stream *stream __unused,
4313 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004314{
4315 return -ENOSYS;
4316}
4317
4318static size_t out_get_buffer_size(const struct audio_stream *stream)
4319{
4320 struct stream_out *out = (struct stream_out *)stream;
4321
Varun Balaraje49253e2017-07-06 19:48:56 +05304322 if (is_interactive_usecase(out->usecase)) {
Sri Karri27279e12017-08-07 16:05:20 +05304323 return out->config.period_size * out->config.period_count;
Varun Balaraje49253e2017-07-06 19:48:56 +05304324 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
Naresh Tanniruee3499a2017-01-05 14:05:35 +05304325 if (out->flags & AUDIO_OUTPUT_FLAG_TIMESTAMP)
4326 return out->compr_config.fragment_size - sizeof(struct snd_codec_metadata);
4327 else
4328 return out->compr_config.fragment_size;
4329 } else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08004330 return voice_extn_compress_voip_out_get_buffer_size(out);
Dhananjay Kumarac341582017-02-23 23:42:25 +05304331 else if (is_offload_usecase(out->usecase) &&
4332 out->flags == AUDIO_OUTPUT_FLAG_DIRECT)
Ashish Jain83a6cc22016-06-28 14:34:17 +05304333 return out->hal_fragment_size;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004334
Haynes Mathew George5beddd42016-06-27 18:33:40 -07004335 return out->config.period_size * out->af_period_multiplier *
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07004336 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004337}
4338
4339static uint32_t out_get_channels(const struct audio_stream *stream)
4340{
4341 struct stream_out *out = (struct stream_out *)stream;
4342
4343 return out->channel_mask;
4344}
4345
4346static audio_format_t out_get_format(const struct audio_stream *stream)
4347{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004348 struct stream_out *out = (struct stream_out *)stream;
4349
4350 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004351}
4352
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07004353static int out_set_format(struct audio_stream *stream __unused,
4354 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004355{
4356 return -ENOSYS;
4357}
4358
4359static int out_standby(struct audio_stream *stream)
4360{
4361 struct stream_out *out = (struct stream_out *)stream;
4362 struct audio_device *adev = out->dev;
Haynes Mathew George16081042017-05-31 17:16:49 -07004363 bool do_stop = true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004364
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05304365 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
4366 stream, out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004367
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07004368 lock_output_stream(out);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004369 if (!out->standby) {
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07004370 if (adev->adm_deregister_stream)
4371 adev->adm_deregister_stream(adev->adm_data, out->handle);
4372
Haynes Mathew George7fce0a52016-06-23 18:22:27 -07004373 if (is_offload_usecase(out->usecase))
4374 stop_compressed_output_l(out);
4375
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08004376 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004377 out->standby = true;
Zhou Songa8895042016-07-05 17:54:22 +08004378 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
4379 voice_extn_compress_voip_close_output_stream(stream);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304380 out->started = 0;
Zhou Songa8895042016-07-05 17:54:22 +08004381 pthread_mutex_unlock(&adev->lock);
4382 pthread_mutex_unlock(&out->lock);
4383 ALOGD("VOIP output entered standby");
4384 return 0;
4385 } else if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004386 if (out->pcm) {
4387 pcm_close(out->pcm);
4388 out->pcm = NULL;
4389 }
Haynes Mathew George16081042017-05-31 17:16:49 -07004390 if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
4391 do_stop = out->playback_started;
4392 out->playback_started = false;
Phil Burkd898ba62019-06-20 12:49:01 -07004393
4394 if (out->mmap_shared_memory_fd >= 0) {
4395 ALOGV("%s: closing mmap_shared_memory_fd = %d",
4396 __func__, out->mmap_shared_memory_fd);
4397 close(out->mmap_shared_memory_fd);
4398 out->mmap_shared_memory_fd = -1;
4399 }
Haynes Mathew George16081042017-05-31 17:16:49 -07004400 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004401 } else {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07004402 ALOGD("copl(%p):standby", out);
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05304403 out->send_next_track_params = false;
4404 out->is_compr_metadata_avail = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004405 out->gapless_mdata.encoder_delay = 0;
4406 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07004407 if (out->compr != NULL) {
4408 compress_close(out->compr);
4409 out->compr = NULL;
4410 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08004411 }
Haynes Mathew George16081042017-05-31 17:16:49 -07004412 if (do_stop) {
4413 stop_output_stream(out);
4414 }
Lakshman Chaluvaraju06677b42019-06-24 10:04:52 +05304415 // if fm is active route on selected device in UI
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004416 audio_extn_fm_route_on_selected_device(adev, &out->device_list);
Eric Laurent150dbfe2013-02-27 14:31:02 -08004417 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004418 }
4419 pthread_mutex_unlock(&out->lock);
Ashish Jainbbce4322016-02-16 13:25:27 +05304420 ALOGD("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004421 return 0;
4422}
4423
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304424static int out_on_error(struct audio_stream *stream)
4425{
4426 struct stream_out *out = (struct stream_out *)stream;
Ben Rombergerfd02a2f2018-09-17 10:23:23 -07004427 int status = 0;
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304428
4429 lock_output_stream(out);
Haynes Mathew Georgeee5836f2017-11-21 18:02:10 -08004430 // always send CMD_ERROR for offload streams, this
4431 // is needed e.g. when SSR happens within compress_open
4432 // since the stream is active, offload_callback_thread is also active.
4433 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
4434 stop_compressed_output_l(out);
Ben Rombergerfd02a2f2018-09-17 10:23:23 -07004435 }
4436 pthread_mutex_unlock(&out->lock);
4437
4438 status = out_standby(&out->stream.common);
4439
4440 lock_output_stream(out);
4441 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
Haynes Mathew Georgeee5836f2017-11-21 18:02:10 -08004442 send_offload_cmd_l(out, OFFLOAD_CMD_ERROR);
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304443 }
Manisha Agarwal7b3e3772019-02-20 14:33:45 +05304444
4445 if (is_offload_usecase(out->usecase) && out->card_status == CARD_STATUS_OFFLINE) {
4446 ALOGD("Setting previous card status if offline");
4447 out->prev_card_status_offline = true;
4448 }
4449
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304450 pthread_mutex_unlock(&out->lock);
4451
Ben Rombergerfd02a2f2018-09-17 10:23:23 -07004452 return status;
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304453}
4454
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304455/*
4456 *standby implementation without locks, assumes that the callee already
4457 *has taken adev and out lock.
4458 */
4459int out_standby_l(struct audio_stream *stream)
4460{
4461 struct stream_out *out = (struct stream_out *)stream;
4462 struct audio_device *adev = out->dev;
4463
4464 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
4465 stream, out->usecase, use_case_table[out->usecase]);
4466
4467 if (!out->standby) {
Haynes Mathew George380745d2017-10-04 15:27:45 -07004468 ATRACE_BEGIN("out_standby_l");
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304469 if (adev->adm_deregister_stream)
4470 adev->adm_deregister_stream(adev->adm_data, out->handle);
4471
4472 if (is_offload_usecase(out->usecase))
4473 stop_compressed_output_l(out);
4474
4475 out->standby = true;
4476 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
4477 voice_extn_compress_voip_close_output_stream(stream);
4478 out->started = 0;
4479 ALOGD("VOIP output entered standby");
Haynes Mathew George380745d2017-10-04 15:27:45 -07004480 ATRACE_END();
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304481 return 0;
4482 } else if (!is_offload_usecase(out->usecase)) {
4483 if (out->pcm) {
4484 pcm_close(out->pcm);
4485 out->pcm = NULL;
4486 }
Vignesh Kulothungana6927272019-02-20 15:17:07 -08004487 if (out->usecase == USECASE_AUDIO_PLAYBACK_WITH_HAPTICS) {
4488 if (adev->haptic_pcm) {
4489 pcm_close(adev->haptic_pcm);
4490 adev->haptic_pcm = NULL;
4491 }
4492
4493 if (adev->haptic_buffer != NULL) {
4494 free(adev->haptic_buffer);
4495 adev->haptic_buffer = NULL;
4496 adev->haptic_buffer_size = 0;
4497 }
4498 adev->haptic_pcm_device_id = 0;
4499 }
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304500 } else {
4501 ALOGD("copl(%p):standby", out);
4502 out->send_next_track_params = false;
4503 out->is_compr_metadata_avail = false;
4504 out->gapless_mdata.encoder_delay = 0;
4505 out->gapless_mdata.encoder_padding = 0;
4506 if (out->compr != NULL) {
4507 compress_close(out->compr);
4508 out->compr = NULL;
4509 }
4510 }
4511 stop_output_stream(out);
Haynes Mathew George380745d2017-10-04 15:27:45 -07004512 ATRACE_END();
Ashish Jain1b9b30c2017-05-18 20:57:40 +05304513 }
4514 ALOGD("%s: exit", __func__);
4515 return 0;
4516}
4517
Aalique Grahame22e49102018-12-18 14:23:57 -08004518static int out_dump(const struct audio_stream *stream, int fd)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004519{
Aalique Grahame22e49102018-12-18 14:23:57 -08004520 struct stream_out *out = (struct stream_out *)stream;
4521
4522 // We try to get the lock for consistency,
4523 // but it isn't necessary for these variables.
4524 // If we're not in standby, we may be blocked on a write.
4525 const bool locked = (pthread_mutex_trylock(&out->lock) == 0);
4526 dprintf(fd, " Standby: %s\n", out->standby ? "yes" : "no");
4527 dprintf(fd, " Frames written: %lld\n", (long long)out->written);
4528
4529 if (locked) {
4530 pthread_mutex_unlock(&out->lock);
4531 }
4532
4533 // dump error info
4534 (void)error_log_dump(
4535 out->error_log, fd, " " /* prefix */, 0 /* lines */, 0 /* limit_ns */);
4536
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004537 return 0;
4538}
4539
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004540static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
4541{
4542 int ret = 0;
4543 char value[32];
ApurupaPattapu2e084df2013-12-18 15:47:59 -08004544
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004545 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08004546 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004547 return -EINVAL;
4548 }
4549
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +05304550 ret = audio_extn_parse_compress_metadata(out, parms);
Weiyin Jiang18ac4e92015-03-15 15:03:40 +08004551
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004552 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
4553 if (ret >= 0) {
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +05304554 out->gapless_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004555 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004556 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
4557 if (ret >= 0) {
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +05304558 out->gapless_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004559 }
4560
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004561 ALOGV("%s new encoder delay %u and padding %u", __func__,
4562 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
4563
4564 return 0;
4565}
4566
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07004567static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
4568{
4569 return out == adev->primary_output || out == adev->voice_tx_output;
4570}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004571
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304572// note: this call is safe only if the stream_cb is
4573// removed first in close_output_stream (as is done now).
4574static void out_snd_mon_cb(void * stream, struct str_parms * parms)
4575{
4576 if (!stream || !parms)
4577 return;
4578
4579 struct stream_out *out = (struct stream_out *)stream;
4580 struct audio_device *adev = out->dev;
4581
4582 card_status_t status;
4583 int card;
4584 if (parse_snd_card_status(parms, &card, &status) < 0)
4585 return;
4586
4587 pthread_mutex_lock(&adev->lock);
4588 bool valid_cb = (card == adev->snd_card);
4589 pthread_mutex_unlock(&adev->lock);
4590
4591 if (!valid_cb)
4592 return;
4593
4594 lock_output_stream(out);
4595 if (out->card_status != status)
4596 out->card_status = status;
4597 pthread_mutex_unlock(&out->lock);
4598
4599 ALOGI("out_snd_mon_cb for card %d usecase %s, status %s", card,
4600 use_case_table[out->usecase],
4601 status == CARD_STATUS_OFFLINE ? "offline" : "online");
4602
Aditya Bavanari59ebed42019-02-05 17:44:57 +05304603 if (status == CARD_STATUS_OFFLINE) {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304604 out_on_error(stream);
Aditya Bavanari59ebed42019-02-05 17:44:57 +05304605 if (voice_is_call_state_active(adev) &&
4606 out == adev->primary_output) {
4607 ALOGD("%s: SSR/PDR occurred, end all calls\n", __func__);
4608 pthread_mutex_lock(&adev->lock);
4609 voice_stop_call(adev);
4610 adev->mode = AUDIO_MODE_NORMAL;
4611 pthread_mutex_unlock(&adev->lock);
4612 }
4613 }
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05304614 return;
4615}
4616
Kevin Rocardfce19002017-08-07 19:21:36 -07004617static int get_alive_usb_card(struct str_parms* parms) {
4618 int card;
4619 if ((str_parms_get_int(parms, "card", &card) >= 0) &&
4620 !audio_extn_usb_alive(card)) {
4621 return card;
4622 }
4623 return -ENODEV;
4624}
4625
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004626int route_output_stream(struct stream_out *out,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004627 struct listnode *devices)
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004628{
4629 struct audio_device *adev = out->dev;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004630 int ret = 0;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004631 struct listnode new_devices;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004632 bool bypass_a2dp = false;
4633 bool reconfig = false;
4634 unsigned long service_interval = 0;
4635
4636 ALOGD("%s: enter: usecase(%d: %s) devices %x",
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004637 __func__, out->usecase, use_case_table[out->usecase], get_device_types(devices));
4638
4639 list_init(&new_devices);
4640 assign_devices(&new_devices, devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004641
4642 lock_output_stream(out);
4643 pthread_mutex_lock(&adev->lock);
4644
4645 /*
4646 * When HDMI cable is unplugged the music playback is paused and
4647 * the policy manager sends routing=0. But the audioflinger continues
4648 * to write data until standby time (3sec). As the HDMI core is
4649 * turned off, the write gets blocked.
4650 * Avoid this by routing audio to speaker until standby.
4651 */
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -08004652 if (is_single_device_type_equal(&out->device_list,
4653 AUDIO_DEVICE_OUT_AUX_DIGITAL) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004654 list_empty(&new_devices) &&
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004655 !audio_extn_passthru_is_passthrough_stream(out) &&
4656 (platform_get_edid_info(adev->platform) != 0) /* HDMI disconnected */) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004657 reassign_device_list(&new_devices, AUDIO_DEVICE_OUT_SPEAKER, "");
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004658 }
4659 /*
4660 * When A2DP is disconnected the
4661 * music playback is paused and the policy manager sends routing=0
4662 * But the audioflinger continues to write data until standby time
4663 * (3sec). As BT is turned off, the write gets blocked.
4664 * Avoid this by routing audio to speaker until standby.
4665 */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004666 if (is_a2dp_out_device_type(&out->device_list) &&
4667 list_empty(&new_devices) &&
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004668 !audio_extn_a2dp_source_is_ready() &&
4669 !adev->bt_sco_on) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004670 reassign_device_list(&new_devices, AUDIO_DEVICE_OUT_SPEAKER, "");
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004671 }
4672 /*
4673 * When USB headset is disconnected the music platback paused
4674 * and the policy manager send routing=0. But if the USB is connected
4675 * back before the standby time, AFE is not closed and opened
4676 * when USB is connected back. So routing to speker will guarantee
4677 * AFE reconfiguration and AFE will be opend once USB is connected again
4678 */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004679 if (is_usb_out_device_type(&out->device_list) &&
4680 list_empty(&new_devices) &&
4681 !audio_extn_usb_connected(NULL)) {
4682 reassign_device_list(&new_devices, AUDIO_DEVICE_OUT_SPEAKER, "");
4683 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004684 /* To avoid a2dp to sco overlapping / BT device improper state
4685 * check with BT lib about a2dp streaming support before routing
4686 */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004687 if (is_a2dp_out_device_type(&new_devices)) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004688 if (!audio_extn_a2dp_source_is_ready()) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004689 if (compare_device_type(&new_devices, AUDIO_DEVICE_OUT_SPEAKER) ||
4690 compare_device_type(&new_devices, AUDIO_DEVICE_OUT_SPEAKER_SAFE)) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004691 //combo usecase just by pass a2dp
4692 ALOGW("%s: A2DP profile is not ready,routing to speaker only", __func__);
4693 bypass_a2dp = true;
4694 } else {
4695 ALOGE("%s: A2DP profile is not ready,ignoring routing request", __func__);
4696 /* update device to a2dp and don't route as BT returned error
4697 * However it is still possible a2dp routing called because
4698 * of current active device disconnection (like wired headset)
4699 */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004700 assign_devices(&out->device_list, &new_devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004701 pthread_mutex_unlock(&adev->lock);
4702 pthread_mutex_unlock(&out->lock);
4703 goto error;
4704 }
4705 }
4706 }
4707
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004708 // Workaround: If routing to an non existing usb device, fail gracefully
4709 // The routing request will otherwise block during 10 second
4710 int card;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004711 if (is_usb_out_device_type(&new_devices)) {
4712 struct str_parms *parms =
4713 str_parms_create_str(get_usb_device_address(&new_devices));
4714 if (!parms)
4715 goto error;
4716 if ((card = get_alive_usb_card(parms)) >= 0) {
4717 ALOGW("%s: ignoring rerouting to non existing USB card %d", __func__, card);
4718 pthread_mutex_unlock(&adev->lock);
4719 pthread_mutex_unlock(&out->lock);
4720 str_parms_destroy(parms);
4721 ret = -ENOSYS;
4722 goto error;
4723 }
4724 str_parms_destroy(parms);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004725 }
4726
Weiyin Jiang80c8f9a2020-01-10 20:42:08 +08004727 // Workaround: If routing to an non existing hdmi device, fail gracefully
4728 if (compare_device_type(&new_devices, AUDIO_DEVICE_OUT_AUX_DIGITAL) &&
4729 (platform_get_edid_info_v2(adev->platform,
4730 out->extconn.cs.controller,
4731 out->extconn.cs.stream) != 0)) {
4732 ALOGW("out_set_parameters() ignoring rerouting to non existing HDMI/DP");
4733 pthread_mutex_unlock(&adev->lock);
4734 pthread_mutex_unlock(&out->lock);
4735 ret = -ENOSYS;
4736 goto error;
4737 }
4738
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004739 /*
4740 * select_devices() call below switches all the usecases on the same
4741 * backend to the new device. Refer to check_usecases_codec_backend() in
4742 * the select_devices(). But how do we undo this?
4743 *
4744 * For example, music playback is active on headset (deep-buffer usecase)
4745 * and if we go to ringtones and select a ringtone, low-latency usecase
4746 * will be started on headset+speaker. As we can't enable headset+speaker
4747 * and headset devices at the same time, select_devices() switches the music
4748 * playback to headset+speaker while starting low-lateny usecase for ringtone.
4749 * So when the ringtone playback is completed, how do we undo the same?
4750 *
4751 * We are relying on the out_set_parameters() call on deep-buffer output,
4752 * once the ringtone playback is ended.
4753 * NOTE: We should not check if the current devices are same as new devices.
4754 * Because select_devices() must be called to switch back the music
4755 * playback to headset.
4756 */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004757 if (!list_empty(&new_devices)) {
4758 bool same_dev = compare_devices(&out->device_list, &new_devices);
4759 assign_devices(&out->device_list, &new_devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004760
4761 if (output_drives_call(adev, out)) {
4762 if (!voice_is_call_state_active(adev)) {
4763 if (adev->mode == AUDIO_MODE_IN_CALL) {
4764 adev->current_call_output = out;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004765 if (is_usb_out_device_type(&out->device_list)) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004766 service_interval =
4767 audio_extn_usb_find_service_interval(true, true /*playback*/);
4768 audio_extn_usb_set_service_interval(true /*playback*/,
4769 service_interval,
4770 &reconfig);
4771 ALOGD("%s, svc_int(%ld),reconfig(%d)",__func__,service_interval, reconfig);
4772 }
4773 ret = voice_start_call(adev);
4774 }
4775 } else {
4776 adev->current_call_output = out;
4777 voice_update_devices_for_all_voice_usecases(adev);
4778 }
4779 }
4780
4781 if (!out->standby) {
4782 if (!same_dev) {
4783 ALOGV("update routing change");
4784 audio_extn_perf_lock_acquire(&adev->perf_lock_handle, 0,
4785 adev->perf_lock_opts,
4786 adev->perf_lock_opts_size);
4787 if (adev->adm_on_routing_change)
4788 adev->adm_on_routing_change(adev->adm_data,
4789 out->handle);
4790 }
4791 if (!bypass_a2dp) {
4792 select_devices(adev, out->usecase);
4793 } else {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004794 if (compare_device_type(&new_devices, AUDIO_DEVICE_OUT_SPEAKER_SAFE))
4795 reassign_device_list(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER_SAFE, "");
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004796 else
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004797 reassign_device_list(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER, "");
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004798 select_devices(adev, out->usecase);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004799 assign_devices(&out->device_list, &new_devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004800 }
4801
4802 if (!same_dev) {
4803 // on device switch force swap, lower functions will make sure
4804 // to check if swap is allowed or not.
4805 platform_set_swap_channels(adev, true);
4806 audio_extn_perf_lock_release(&adev->perf_lock_handle);
4807 }
4808 if ((out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
4809 out->a2dp_compress_mute &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004810 (!is_a2dp_out_device_type(&out->device_list) || audio_extn_a2dp_source_is_ready())) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004811 pthread_mutex_lock(&out->compr_mute_lock);
4812 out->a2dp_compress_mute = false;
4813 out_set_compr_volume(&out->stream, out->volume_l, out->volume_r);
4814 pthread_mutex_unlock(&out->compr_mute_lock);
4815 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_VOIP) {
4816 out_set_voip_volume(&out->stream, out->volume_l, out->volume_r);
4817 }
4818 }
4819 }
4820
4821 pthread_mutex_unlock(&adev->lock);
4822 pthread_mutex_unlock(&out->lock);
4823
4824 /*handles device and call state changes*/
4825 audio_extn_extspk_update(adev->extspk);
4826
4827error:
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004828 ALOGV("%s: exit: code(%d)", __func__, ret);
4829 return ret;
4830}
4831
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004832static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
4833{
4834 struct stream_out *out = (struct stream_out *)stream;
4835 struct audio_device *adev = out->dev;
4836 struct str_parms *parms;
4837 char value[32];
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07004838 int ret = 0, err;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07004839 int ext_controller = -1;
4840 int ext_stream = -1;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004841
sangwoobc677242013-08-08 16:53:43 +09004842 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07004843 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004844 parms = str_parms_create_str(kvpairs);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05304845 if (!parms)
4846 goto error;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07004847
4848 err = platform_get_controller_stream_from_params(parms, &ext_controller,
4849 &ext_stream);
4850 if (err >= 0) {
4851 out->extconn.cs.controller = ext_controller;
4852 out->extconn.cs.stream = ext_stream;
4853 ALOGD("%s: usecase(%s) new controller/stream (%d/%d)", __func__,
4854 use_case_table[out->usecase], out->extconn.cs.controller,
4855 out->extconn.cs.stream);
4856 }
4857
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07004858 if (out == adev->primary_output) {
4859 pthread_mutex_lock(&adev->lock);
4860 audio_extn_set_parameters(adev, parms);
4861 pthread_mutex_unlock(&adev->lock);
4862 }
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07004863 if (is_offload_usecase(out->usecase)) {
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07004864 lock_output_stream(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004865 parse_compress_metadata(out, parms);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08004866
4867 audio_extn_dts_create_state_notifier_node(out->usecase);
4868 audio_extn_dts_notify_playback_state(out->usecase, 0, out->sample_rate,
4869 popcount(out->channel_mask),
4870 out->playback_started);
4871
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08004872 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07004873 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07004874
Surendar Karkaf51b5842018-04-26 11:28:38 +05304875 err = str_parms_get_str(parms, AUDIO_PARAMETER_DUAL_MONO, value,
4876 sizeof(value));
4877 if (err >= 0) {
4878 if (!strncmp("true", value, sizeof("true")) || atoi(value))
4879 audio_extn_send_dual_mono_mixing_coefficients(out);
4880 }
4881
Dhananjay Kumar4d91c1a2016-12-01 23:27:29 +05304882 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_PROFILE, value, sizeof(value));
4883 if (err >= 0) {
4884 strlcpy(out->profile, value, sizeof(out->profile));
4885 ALOGV("updating stream profile with value '%s'", out->profile);
4886 lock_output_stream(out);
4887 audio_extn_utils_update_stream_output_app_type_cfg(adev->platform,
4888 &adev->streams_output_cfg_list,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08004889 &out->device_list, out->flags,
4890 out->hal_op_format,
Dhananjay Kumar4d91c1a2016-12-01 23:27:29 +05304891 out->sample_rate, out->bit_width,
4892 out->channel_mask, out->profile,
4893 &out->app_type_cfg);
4894 pthread_mutex_unlock(&out->lock);
4895 }
4896
Alexy Joseph98988832017-01-13 14:56:59 -08004897 //suspend, resume handling block
Aniket Kumar Lata932f4872017-11-06 18:29:44 -08004898 //remove QOS only if vendor.audio.hal.dynamic.qos.config.supported is set to true
4899 // and vendor.audio.hal.output.suspend.supported is set to true
4900 if (out->hal_output_suspend_supported && out->dynamic_pm_qos_config_supported) {
Alexy Joseph98988832017-01-13 14:56:59 -08004901 //check suspend parameter only for low latency and if the property
4902 //is enabled
4903 if (str_parms_get_str(parms, "suspend_playback", value, sizeof(value)) >= 0) {
4904 ALOGI("%s: got suspend_playback %s", __func__, value);
4905 lock_output_stream(out);
4906 if (!strncmp(value, "false", 5)) {
4907 //suspend_playback=false is supposed to set QOS value back to 75%
4908 //the mixer control sent with value Enable will achieve that
4909 ret = audio_route_apply_and_update_path(adev->audio_route, out->pm_qos_mixer_path);
4910 } else if (!strncmp (value, "true", 4)) {
4911 //suspend_playback=true is supposed to remove QOS value
4912 //resetting the mixer control will set the default value
4913 //for the mixer control which is Disable and this removes the QOS vote
4914 ret = audio_route_reset_and_update_path(adev->audio_route, out->pm_qos_mixer_path);
4915 } else {
4916 ALOGE("%s: Wrong value sent for suspend_playback, expected true/false,"
4917 " got %s", __func__, value);
4918 ret = -1;
4919 }
4920
4921 if (ret != 0) {
4922 ALOGE("%s: %s mixer ctl failed with %d, ignore suspend/resume setparams",
4923 __func__, out->pm_qos_mixer_path, ret);
4924 }
4925
4926 pthread_mutex_unlock(&out->lock);
4927 }
4928 }
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07004929
Alexy Joseph98988832017-01-13 14:56:59 -08004930 //end suspend, resume handling block
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004931 str_parms_destroy(parms);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05304932error:
Eric Laurent994a6932013-07-17 11:51:42 -07004933 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08004934 return ret;
4935}
4936
Paul McLeana50b7332018-12-17 08:24:21 -07004937static int in_set_microphone_direction(const struct audio_stream_in *stream,
4938 audio_microphone_direction_t dir) {
justinweng20fb6d82019-02-21 18:49:00 -07004939 struct stream_in *in = (struct stream_in *)stream;
4940
4941 ALOGVV("%s: standby %d source %d dir %d", __func__, in->standby, in->source, dir);
4942
4943 in->direction = dir;
4944
4945 if (in->standby)
4946 return 0;
4947
4948 return audio_extn_audiozoom_set_microphone_direction(in, dir);
Paul McLeana50b7332018-12-17 08:24:21 -07004949}
4950
4951static int in_set_microphone_field_dimension(const struct audio_stream_in *stream, float zoom) {
justinweng20fb6d82019-02-21 18:49:00 -07004952 struct stream_in *in = (struct stream_in *)stream;
4953
4954 ALOGVV("%s: standby %d source %d zoom %f", __func__, in->standby, in->source, zoom);
4955
4956 if (zoom > 1.0 || zoom < -1.0)
4957 return -EINVAL;
4958
4959 in->zoom = zoom;
4960
4961 if (in->standby)
4962 return 0;
4963
4964 return audio_extn_audiozoom_set_microphone_field_dimension(in, zoom);
Paul McLeana50b7332018-12-17 08:24:21 -07004965}
4966
4967
Haynes Mathew George484e8d22017-07-31 18:55:17 -07004968static bool stream_get_parameter_channels(struct str_parms *query,
4969 struct str_parms *reply,
4970 audio_channel_mask_t *supported_channel_masks) {
4971 int ret = -1;
4972 char value[512];
4973 bool first = true;
4974 size_t i, j;
4975
4976 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS)) {
4977 ret = 0;
4978 value[0] = '\0';
4979 i = 0;
4980 while (supported_channel_masks[i] != 0) {
4981 for (j = 0; j < ARRAY_SIZE(channels_name_to_enum_table); j++) {
4982 if (channels_name_to_enum_table[j].value == supported_channel_masks[i]) {
4983 if (!first)
Satya Krishna Pindiprolib22ac722017-10-09 15:44:16 +05304984 strlcat(value, "|", sizeof(value));
Haynes Mathew George484e8d22017-07-31 18:55:17 -07004985
Satya Krishna Pindiprolib22ac722017-10-09 15:44:16 +05304986 strlcat(value, channels_name_to_enum_table[j].name, sizeof(value));
Haynes Mathew George484e8d22017-07-31 18:55:17 -07004987 first = false;
4988 break;
4989 }
4990 }
4991 i++;
4992 }
4993 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
4994 }
4995 return ret == 0;
4996}
4997
4998static bool stream_get_parameter_formats(struct str_parms *query,
4999 struct str_parms *reply,
5000 audio_format_t *supported_formats) {
5001 int ret = -1;
5002 char value[256];
5003 size_t i, j;
5004 bool first = true;
5005
5006 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS)) {
5007 ret = 0;
5008 value[0] = '\0';
5009 i = 0;
5010 while (supported_formats[i] != 0) {
5011 for (j = 0; j < ARRAY_SIZE(formats_name_to_enum_table); j++) {
5012 if (formats_name_to_enum_table[j].value == supported_formats[i]) {
5013 if (!first) {
Satya Krishna Pindiprolib22ac722017-10-09 15:44:16 +05305014 strlcat(value, "|", sizeof(value));
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005015 }
Satya Krishna Pindiprolib22ac722017-10-09 15:44:16 +05305016 strlcat(value, formats_name_to_enum_table[j].name, sizeof(value));
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005017 first = false;
5018 break;
5019 }
5020 }
5021 i++;
5022 }
5023 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_FORMATS, value);
5024 }
5025 return ret == 0;
5026}
5027
5028static bool stream_get_parameter_rates(struct str_parms *query,
5029 struct str_parms *reply,
5030 uint32_t *supported_sample_rates) {
5031
5032 int i;
5033 char value[256];
5034 int ret = -1;
5035 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_SAMPLING_RATES)) {
5036 ret = 0;
5037 value[0] = '\0';
5038 i=0;
5039 int cursor = 0;
5040 while (supported_sample_rates[i]) {
5041 int avail = sizeof(value) - cursor;
5042 ret = snprintf(value + cursor, avail, "%s%d",
5043 cursor > 0 ? "|" : "",
5044 supported_sample_rates[i]);
5045 if (ret < 0 || ret >= avail) {
5046 // if cursor is at the last element of the array
5047 // overwrite with \0 is duplicate work as
5048 // snprintf already put a \0 in place.
5049 // else
5050 // we had space to write the '|' at value[cursor]
5051 // (which will be overwritten) or no space to fill
5052 // the first element (=> cursor == 0)
5053 value[cursor] = '\0';
5054 break;
5055 }
5056 cursor += ret;
5057 ++i;
5058 }
5059 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_SAMPLING_RATES,
5060 value);
5061 }
5062 return ret >= 0;
5063}
5064
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005065static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
5066{
5067 struct stream_out *out = (struct stream_out *)stream;
5068 struct str_parms *query = str_parms_create_str(keys);
Alexy Josephaee4fdd2016-01-29 13:02:07 -08005069 char *str = (char*) NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005070 char value[256];
5071 struct str_parms *reply = str_parms_create();
5072 size_t i, j;
5073 int ret;
5074 bool first = true;
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07005075
5076 if (!query || !reply) {
Alexy Josephaee4fdd2016-01-29 13:02:07 -08005077 if (reply) {
5078 str_parms_destroy(reply);
5079 }
5080 if (query) {
5081 str_parms_destroy(query);
5082 }
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07005083 ALOGE("out_get_parameters: failed to allocate mem for query or reply");
5084 return NULL;
5085 }
5086
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005087 ALOGV("%s: %s enter: keys - %s", __func__, use_case_table[out->usecase], keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005088 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
5089 if (ret >= 0) {
5090 value[0] = '\0';
5091 i = 0;
5092 while (out->supported_channel_masks[i] != 0) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005093 for (j = 0; j < ARRAY_SIZE(channels_name_to_enum_table); j++) {
5094 if (channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005095 if (!first) {
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -08005096 strlcat(value, "|", sizeof(value));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005097 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005098 strlcat(value, channels_name_to_enum_table[j].name, sizeof(value));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005099 first = false;
5100 break;
5101 }
5102 }
5103 i++;
5104 }
5105 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
5106 str = str_parms_to_str(reply);
5107 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08005108 voice_extn_out_get_parameters(out, query, reply);
5109 str = str_parms_to_str(reply);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005110 }
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005111
Alexy Joseph62142aa2015-11-16 15:10:34 -08005112
5113 ret = str_parms_get_str(query, "is_direct_pcm_track", value, sizeof(value));
5114 if (ret >= 0) {
5115 value[0] = '\0';
Dhananjay Kumarac341582017-02-23 23:42:25 +05305116 if (out->flags & AUDIO_OUTPUT_FLAG_DIRECT &&
5117 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
Alexy Joseph62142aa2015-11-16 15:10:34 -08005118 ALOGV("in direct_pcm");
Satya Krishna Pindiprolib6655542017-07-03 19:38:19 +05305119 strlcat(value, "true", sizeof(value));
Alexy Joseph62142aa2015-11-16 15:10:34 -08005120 } else {
5121 ALOGV("not in direct_pcm");
Sharad Sangle3dd5a4a2015-12-10 18:39:17 +05305122 strlcat(value, "false", sizeof(value));
Alexy Joseph62142aa2015-11-16 15:10:34 -08005123 }
5124 str_parms_add_str(reply, "is_direct_pcm_track", value);
Alexy Josephaee4fdd2016-01-29 13:02:07 -08005125 if (str)
5126 free(str);
Alexy Joseph62142aa2015-11-16 15:10:34 -08005127 str = str_parms_to_str(reply);
5128 }
5129
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005130 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS, value, sizeof(value));
5131 if (ret >= 0) {
5132 value[0] = '\0';
5133 i = 0;
5134 first = true;
5135 while (out->supported_formats[i] != 0) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005136 for (j = 0; j < ARRAY_SIZE(formats_name_to_enum_table); j++) {
5137 if (formats_name_to_enum_table[j].value == out->supported_formats[i]) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005138 if (!first) {
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -08005139 strlcat(value, "|", sizeof(value));
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005140 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005141 strlcat(value, formats_name_to_enum_table[j].name, sizeof(value));
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005142 first = false;
5143 break;
5144 }
5145 }
5146 i++;
5147 }
5148 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_FORMATS, value);
Alexy Josephaee4fdd2016-01-29 13:02:07 -08005149 if (str)
5150 free(str);
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005151 str = str_parms_to_str(reply);
5152 }
Mingming Yin3a941d42016-02-17 18:08:05 -08005153
5154 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_SAMPLING_RATES, value, sizeof(value));
5155 if (ret >= 0) {
5156 value[0] = '\0';
5157 i = 0;
5158 first = true;
5159 while (out->supported_sample_rates[i] != 0) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005160 for (j = 0; j < ARRAY_SIZE(out_sample_rates_name_to_enum_table); j++) {
5161 if (out_sample_rates_name_to_enum_table[j].value == out->supported_sample_rates[i]) {
Mingming Yin3a941d42016-02-17 18:08:05 -08005162 if (!first) {
5163 strlcat(value, "|", sizeof(value));
5164 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07005165 strlcat(value, out_sample_rates_name_to_enum_table[j].name, sizeof(value));
Mingming Yin3a941d42016-02-17 18:08:05 -08005166 first = false;
5167 break;
5168 }
5169 }
5170 i++;
5171 }
5172 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_SAMPLING_RATES, value);
5173 if (str)
5174 free(str);
5175 str = str_parms_to_str(reply);
5176 }
5177
Alexy Joseph98988832017-01-13 14:56:59 -08005178 if (str_parms_get_str(query, "supports_hw_suspend", value, sizeof(value)) >= 0) {
5179 //only low latency track supports suspend_resume
5180 str_parms_add_int(reply, "supports_hw_suspend",
Aniket Kumar Lata932f4872017-11-06 18:29:44 -08005181 (out->hal_output_suspend_supported));
Alexy Joseph98988832017-01-13 14:56:59 -08005182 if (str)
5183 free(str);
5184 str = str_parms_to_str(reply);
5185 }
5186
5187
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005188 str_parms_destroy(query);
5189 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07005190 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005191 return str;
5192}
5193
5194static uint32_t out_get_latency(const struct audio_stream_out *stream)
5195{
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005196 uint32_t period_ms;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005197 struct stream_out *out = (struct stream_out *)stream;
Alexy Josephaa54c872014-12-03 02:46:47 -08005198 uint32_t latency = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005199
Alexy Josephaa54c872014-12-03 02:46:47 -08005200 if (is_offload_usecase(out->usecase)) {
Manish Dewangan07de2142017-02-27 19:27:20 +05305201 lock_output_stream(out);
5202 latency = audio_extn_utils_compress_get_dsp_latency(out);
5203 pthread_mutex_unlock(&out->lock);
Haynes Mathew George16081042017-05-31 17:16:49 -07005204 } else if ((out->realtime) ||
5205 (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP)) {
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005206 // since the buffer won't be filled up faster than realtime,
5207 // return a smaller number
5208 if (out->config.rate)
5209 period_ms = (out->af_period_multiplier * out->config.period_size *
5210 1000) / (out->config.rate);
5211 else
5212 period_ms = 0;
5213 latency = period_ms + platform_render_latency(out->usecase)/1000;
Alexy Josephaa54c872014-12-03 02:46:47 -08005214 } else {
5215 latency = (out->config.period_count * out->config.period_size * 1000) /
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005216 (out->config.rate);
Alexy Josephaa54c872014-12-03 02:46:47 -08005217 }
5218
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005219 if (is_a2dp_out_device_type(&out->device_list))
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08005220 latency += audio_extn_a2dp_get_encoder_latency();
5221
Anish Kumar50ebcbf2014-12-09 04:01:39 +05305222 ALOGV("%s: Latency %d", __func__, latency);
Alexy Josephaa54c872014-12-03 02:46:47 -08005223 return latency;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005224}
5225
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05305226static float AmpToDb(float amplification)
5227{
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05305228 float db = DSD_VOLUME_MIN_DB;
5229 if (amplification > 0) {
5230 db = 20 * log10(amplification);
5231 if(db < DSD_VOLUME_MIN_DB)
5232 return DSD_VOLUME_MIN_DB;
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05305233 }
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05305234 return db;
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05305235}
5236
Arun Mirpuri5d170872019-03-26 13:21:31 -07005237static int out_set_mmap_volume(struct audio_stream_out *stream, float left,
5238 float right)
5239{
5240 struct stream_out *out = (struct stream_out *)stream;
5241 long volume = 0;
5242 char mixer_ctl_name[128] = "";
5243 struct audio_device *adev = out->dev;
5244 struct mixer_ctl *ctl = NULL;
5245 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
5246 PCM_PLAYBACK);
5247
5248 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
5249 "Playback %d Volume", pcm_device_id);
5250 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
5251 if (!ctl) {
5252 ALOGE("%s: Could not get ctl for mixer cmd - %s",
5253 __func__, mixer_ctl_name);
5254 return -EINVAL;
5255 }
5256 if (left != right)
5257 ALOGW("%s: Left and right channel volume mismatch:%f,%f",
5258 __func__, left, right);
5259 volume = (long)(left * (MMAP_PLAYBACK_VOLUME_MAX*1.0));
5260 if (mixer_ctl_set_value(ctl, 0, volume) < 0){
5261 ALOGE("%s:ctl for mixer cmd - %s, volume %ld returned error",
5262 __func__, mixer_ctl_name, volume);
5263 return -EINVAL;
5264 }
5265 return 0;
5266}
5267
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305268static int out_set_compr_volume(struct audio_stream_out *stream, float left,
5269 float right)
5270{
5271 struct stream_out *out = (struct stream_out *)stream;
Manish Dewangan338c50a2017-09-12 15:22:03 +05305272 long volume[2];
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305273 char mixer_ctl_name[128];
5274 struct audio_device *adev = out->dev;
5275 struct mixer_ctl *ctl;
5276 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
5277 PCM_PLAYBACK);
5278
5279 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
5280 "Compress Playback %d Volume", pcm_device_id);
5281 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
5282 if (!ctl) {
5283 ALOGE("%s: Could not get ctl for mixer cmd - %s",
5284 __func__, mixer_ctl_name);
5285 return -EINVAL;
5286 }
5287 ALOGE("%s:ctl for mixer cmd - %s, left %f, right %f",
5288 __func__, mixer_ctl_name, left, right);
5289 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
5290 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
5291 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
5292
5293 return 0;
5294}
5295
Zhou Song2b8f28f2017-09-11 10:51:38 +08005296static int out_set_voip_volume(struct audio_stream_out *stream, float left,
5297 float right)
5298{
5299 struct stream_out *out = (struct stream_out *)stream;
5300 char mixer_ctl_name[] = "App Type Gain";
5301 struct audio_device *adev = out->dev;
5302 struct mixer_ctl *ctl;
Manish Dewangan338c50a2017-09-12 15:22:03 +05305303 long set_values[4];
Zhou Song2b8f28f2017-09-11 10:51:38 +08005304
Aniket Kumar Lata8426d1f2019-06-10 15:25:53 -07005305 if (!is_valid_volume(left, right)) {
5306 ALOGE("%s: Invalid stream volume for left=%f, right=%f",
5307 __func__, left, right);
5308 return -EINVAL;
5309 }
5310
Zhou Song2b8f28f2017-09-11 10:51:38 +08005311 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
5312 if (!ctl) {
5313 ALOGE("%s: Could not get ctl for mixer cmd - %s",
5314 __func__, mixer_ctl_name);
5315 return -EINVAL;
5316 }
5317
5318 set_values[0] = 0; //0: Rx Session 1:Tx Session
5319 set_values[1] = out->app_type_cfg.app_type;
Manish Dewangan338c50a2017-09-12 15:22:03 +05305320 set_values[2] = (long)(left * VOIP_PLAYBACK_VOLUME_MAX);
5321 set_values[3] = (long)(right * VOIP_PLAYBACK_VOLUME_MAX);
Zhou Song2b8f28f2017-09-11 10:51:38 +08005322
5323 mixer_ctl_set_array(ctl, set_values, ARRAY_SIZE(set_values));
5324 return 0;
5325}
5326
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +05305327static int out_set_pcm_volume(struct audio_stream_out *stream, float left,
5328 float right)
5329{
5330 struct stream_out *out = (struct stream_out *)stream;
5331 /* Volume control for pcm playback */
5332 if (left != right) {
5333 return -EINVAL;
5334 } else {
5335 char mixer_ctl_name[128];
5336 struct audio_device *adev = out->dev;
5337 struct mixer_ctl *ctl;
5338 int pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
5339 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name), "Playback %d Volume", pcm_device_id);
5340 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
5341 if (!ctl) {
5342 ALOGE("%s : Could not get ctl for mixer cmd - %s", __func__, mixer_ctl_name);
5343 return -EINVAL;
5344 }
5345
5346 int volume = (int) (left * PCM_PLAYBACK_VOLUME_MAX);
5347 int ret = mixer_ctl_set_value(ctl, 0, volume);
5348 if (ret < 0) {
5349 ALOGE("%s: Could not set ctl, error:%d ", __func__, ret);
5350 return -EINVAL;
5351 }
5352
5353 ALOGV("%s : Pcm set volume value %d left %f", __func__, volume, left);
5354
5355 return 0;
5356 }
5357}
5358
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005359static int out_set_volume(struct audio_stream_out *stream, float left,
5360 float right)
5361{
Eric Laurenta9024de2013-04-04 09:19:12 -07005362 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005363 int volume[2];
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305364 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005365
Arun Mirpuri5d170872019-03-26 13:21:31 -07005366 ALOGD("%s: called with left_vol=%f, right_vol=%f", __func__, left, right);
Eric Laurenta9024de2013-04-04 09:19:12 -07005367 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
5368 /* only take left channel into account: the API is for stereo anyway */
5369 out->muted = (left == 0.0f);
5370 return 0;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07005371 } else if (is_offload_usecase(out->usecase)) {
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05305372 if (audio_extn_passthru_is_passthrough_stream(out)) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005373 /*
5374 * Set mute or umute on HDMI passthrough stream.
5375 * Only take left channel into account.
5376 * Mute is 0 and unmute 1
5377 */
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05305378 audio_extn_passthru_set_volume(out, (left == 0.0f));
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05305379 } else if (out->format == AUDIO_FORMAT_DSD){
5380 char mixer_ctl_name[128] = "DSD Volume";
5381 struct audio_device *adev = out->dev;
5382 struct mixer_ctl *ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
5383
5384 if (!ctl) {
5385 ALOGE("%s: Could not get ctl for mixer cmd - %s",
5386 __func__, mixer_ctl_name);
5387 return -EINVAL;
5388 }
Manish Dewangan338c50a2017-09-12 15:22:03 +05305389 volume[0] = (long)(AmpToDb(left));
5390 volume[1] = (long)(AmpToDb(right));
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05305391 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
5392 return 0;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005393 } else if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_BUS) &&
Derek Chendf05eea2019-08-01 13:57:49 -07005394 (out->car_audio_stream == CAR_AUDIO_STREAM_MEDIA)) {
Philippe Gravel1c9ac352019-05-28 16:08:37 -07005395 ALOGD("%s: Overriding offload set volume for media bus stream", __func__);
5396 struct listnode *node = NULL;
5397 list_for_each(node, &adev->active_outputs_list) {
5398 streams_output_ctxt_t *out_ctxt = node_to_item(node,
5399 streams_output_ctxt_t,
5400 list);
5401 if (out_ctxt->output->usecase == USECASE_AUDIO_PLAYBACK_MEDIA) {
5402 out->volume_l = out_ctxt->output->volume_l;
5403 out->volume_r = out_ctxt->output->volume_r;
5404 }
5405 }
5406 if (!out->a2dp_compress_mute) {
5407 ret = out_set_compr_volume(&out->stream, out->volume_l, out->volume_r);
5408 }
5409 return ret;
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07005410 } else {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305411 pthread_mutex_lock(&out->compr_mute_lock);
Arun Mirpuri5d170872019-03-26 13:21:31 -07005412 ALOGV("%s: compress mute %d", __func__, out->a2dp_compress_mute);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305413 if (!out->a2dp_compress_mute)
5414 ret = out_set_compr_volume(stream, left, right);
5415 out->volume_l = left;
5416 out->volume_r = right;
5417 pthread_mutex_unlock(&out->compr_mute_lock);
5418 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005419 }
Vikram Panduranga93f080e2017-06-07 18:16:14 -07005420 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_VOIP) {
Aalique Grahame22e49102018-12-18 14:23:57 -08005421 out->app_type_cfg.gain[0] = (int)(left * VOIP_PLAYBACK_VOLUME_MAX);
5422 out->app_type_cfg.gain[1] = (int)(right * VOIP_PLAYBACK_VOLUME_MAX);
5423 if (!out->standby) {
5424 audio_extn_utils_send_app_type_gain(out->dev,
5425 out->app_type_cfg.app_type,
5426 &out->app_type_cfg.gain[0]);
Zhou Song2b8f28f2017-09-11 10:51:38 +08005427 ret = out_set_voip_volume(stream, left, right);
Aalique Grahame22e49102018-12-18 14:23:57 -08005428 }
Zhou Song2b8f28f2017-09-11 10:51:38 +08005429 out->volume_l = left;
5430 out->volume_r = right;
5431 return ret;
Arun Mirpuri5d170872019-03-26 13:21:31 -07005432 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
5433 ALOGV("%s: MMAP set volume called", __func__);
5434 if (!out->standby)
5435 ret = out_set_mmap_volume(stream, left, right);
5436 out->volume_l = left;
5437 out->volume_r = right;
5438 return ret;
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +05305439 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_LOW_LATENCY ||
Ramu Gottipati36547092018-12-28 11:32:09 +05305440 out->usecase == USECASE_AUDIO_PLAYBACK_DEEP_BUFFER ||
5441 out->usecase == USECASE_AUDIO_PLAYBACK_ULL) {
Ramu Gottipati97bdcfb2018-04-13 17:58:24 +05305442 /* Volume control for pcm playback */
5443 if (!out->standby)
5444 ret = out_set_pcm_volume(stream, left, right);
5445 else
5446 out->apply_volume = true;
5447
5448 out->volume_l = left;
5449 out->volume_r = right;
5450 return ret;
Derek Chenf13dd492018-11-13 14:53:51 -08005451 } else if (audio_extn_auto_hal_is_bus_device_usecase(out->usecase)) {
5452 ALOGV("%s: bus device set volume called", __func__);
5453 if (!out->standby)
5454 ret = out_set_pcm_volume(stream, left, right);
5455 out->volume_l = left;
5456 out->volume_r = right;
5457 return ret;
Eric Laurenta9024de2013-04-04 09:19:12 -07005458 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005459
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005460 return -ENOSYS;
5461}
5462
Zhou Songc9672822017-08-16 16:01:39 +08005463static void update_frames_written(struct stream_out *out, size_t bytes)
5464{
5465 size_t bpf = 0;
5466
5467 if (is_offload_usecase(out->usecase) && !out->non_blocking &&
5468 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD))
5469 bpf = 1;
5470 else if (!is_offload_usecase(out->usecase))
5471 bpf = audio_bytes_per_sample(out->format) *
5472 audio_channel_count_from_out_mask(out->channel_mask);
Zhou Song48453a02018-01-10 17:50:59 +08005473
5474 pthread_mutex_lock(&out->position_query_lock);
5475 if (bpf != 0) {
Zhou Songc9672822017-08-16 16:01:39 +08005476 out->written += bytes / bpf;
Zhou Song48453a02018-01-10 17:50:59 +08005477 clock_gettime(CLOCK_MONOTONIC, &out->writeAt);
5478 }
5479 pthread_mutex_unlock(&out->position_query_lock);
Zhou Songc9672822017-08-16 16:01:39 +08005480}
5481
Vignesh Kulothungana6927272019-02-20 15:17:07 -08005482int split_and_write_audio_haptic_data(struct stream_out *out,
5483 const void *buffer, size_t bytes_to_write)
5484{
5485 struct audio_device *adev = out->dev;
5486
5487 int ret = 0;
5488 size_t channel_count = audio_channel_count_from_out_mask(out->channel_mask);
5489 size_t bytes_per_sample = audio_bytes_per_sample(out->format);
5490 size_t frame_size = channel_count * bytes_per_sample;
5491 size_t frame_count = bytes_to_write / frame_size;
5492
5493 bool force_haptic_path =
5494 property_get_bool("vendor.audio.test_haptic", false);
5495
5496 // extract Haptics data from Audio buffer
5497 bool alloc_haptic_buffer = false;
5498 int haptic_channel_count = adev->haptics_config.channels;
5499 size_t haptic_frame_size = bytes_per_sample * haptic_channel_count;
5500 size_t audio_frame_size = frame_size - haptic_frame_size;
5501 size_t total_haptic_buffer_size = frame_count * haptic_frame_size;
5502
5503 if (adev->haptic_buffer == NULL) {
5504 alloc_haptic_buffer = true;
5505 } else if (adev->haptic_buffer_size < total_haptic_buffer_size) {
5506 free(adev->haptic_buffer);
5507 adev->haptic_buffer_size = 0;
5508 alloc_haptic_buffer = true;
5509 }
5510
5511 if (alloc_haptic_buffer) {
5512 adev->haptic_buffer = (uint8_t *)calloc(1, total_haptic_buffer_size);
Mingshu Pang1513f972019-05-24 12:43:51 +08005513 if(adev->haptic_buffer == NULL) {
5514 ALOGE("%s: failed to allocate mem for dev->haptic_buffer", __func__);
5515 return -ENOMEM;
5516 }
Vignesh Kulothungana6927272019-02-20 15:17:07 -08005517 adev->haptic_buffer_size = total_haptic_buffer_size;
5518 }
5519
5520 size_t src_index = 0, aud_index = 0, hap_index = 0;
5521 uint8_t *audio_buffer = (uint8_t *)buffer;
5522 uint8_t *haptic_buffer = adev->haptic_buffer;
5523
5524 // This is required for testing only. This works for stereo data only.
5525 // One channel is fed to audio stream and other to haptic stream for testing.
5526 if (force_haptic_path)
5527 audio_frame_size = haptic_frame_size = bytes_per_sample;
5528
5529 for (size_t i = 0; i < frame_count; i++) {
5530 memcpy(audio_buffer + aud_index, audio_buffer + src_index,
5531 audio_frame_size);
5532 aud_index += audio_frame_size;
5533 src_index += audio_frame_size;
5534
5535 if (adev->haptic_pcm)
5536 memcpy(haptic_buffer + hap_index, audio_buffer + src_index,
5537 haptic_frame_size);
5538 hap_index += haptic_frame_size;
5539 src_index += haptic_frame_size;
5540
5541 // This is required for testing only.
5542 // Discard haptic channel data.
5543 if (force_haptic_path)
5544 src_index += haptic_frame_size;
5545 }
5546
5547 // write to audio pipeline
5548 ret = pcm_write(out->pcm, (void *)audio_buffer,
5549 frame_count * audio_frame_size);
5550
5551 // write to haptics pipeline
5552 if (adev->haptic_pcm)
5553 ret = pcm_write(adev->haptic_pcm, (void *)adev->haptic_buffer,
5554 frame_count * haptic_frame_size);
5555
5556 return ret;
5557}
5558
Aalique Grahame22e49102018-12-18 14:23:57 -08005559#ifdef NO_AUDIO_OUT
5560static ssize_t out_write_for_no_output(struct audio_stream_out *stream,
5561 const void *buffer __unused, size_t bytes)
5562{
5563 struct stream_out *out = (struct stream_out *)stream;
5564
5565 /* No Output device supported other than BT for playback.
5566 * Sleep for the amount of buffer duration
5567 */
5568 lock_output_stream(out);
5569 usleep(bytes * 1000000 / audio_stream_out_frame_size(
5570 (const struct audio_stream_out *)&out->stream) /
5571 out_get_sample_rate(&out->stream.common));
5572 pthread_mutex_unlock(&out->lock);
5573 return bytes;
5574}
5575#endif
5576
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005577static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
5578 size_t bytes)
5579{
5580 struct stream_out *out = (struct stream_out *)stream;
5581 struct audio_device *adev = out->dev;
Eric Laurent6e895242013-09-05 16:10:57 -07005582 ssize_t ret = 0;
Satish Babu Patakokila715b1422017-08-22 14:33:21 +05305583 int channels = 0;
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005584 const size_t frame_size = audio_stream_out_frame_size(stream);
5585 const size_t frames = (frame_size != 0) ? bytes / frame_size : bytes;
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +05305586 struct audio_usecase *usecase = NULL;
Meng Wang4c32fb42020-01-16 17:57:11 +08005587 uint32_t compr_passthr = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005588
Haynes Mathew George380745d2017-10-04 15:27:45 -07005589 ATRACE_BEGIN("out_write");
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07005590 lock_output_stream(out);
Naresh Tanniru4c630392014-05-12 01:05:52 +05305591
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05305592 if (CARD_STATUS_OFFLINE == out->card_status) {
Zhou Song0b2e5dc2015-03-16 14:41:38 +08005593
Dhananjay Kumarac341582017-02-23 23:42:25 +05305594 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
Ashish Jainbbce4322016-02-16 13:25:27 +05305595 /*during SSR for compress usecase we should return error to flinger*/
Naresh Tanniru80659832014-06-04 18:17:56 +05305596 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
5597 pthread_mutex_unlock(&out->lock);
Haynes Mathew George380745d2017-10-04 15:27:45 -07005598 ATRACE_END();
Naresh Tanniru80659832014-06-04 18:17:56 +05305599 return -ENETRESET;
Ashish Jainbbce4322016-02-16 13:25:27 +05305600 } else {
Ashish Jainbbce4322016-02-16 13:25:27 +05305601 ALOGD(" %s: sound card is not active/SSR state", __func__);
5602 ret= -EIO;
5603 goto exit;
Naresh Tanniru4c630392014-05-12 01:05:52 +05305604 }
5605 }
5606
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05305607 if (audio_extn_passthru_should_drop_data(out)) {
Ashish Jaind84fd6a2016-07-27 12:33:25 +05305608 ALOGV(" %s : Drop data as compress passthrough session is going on", __func__);
Ashish Jaind84fd6a2016-07-27 12:33:25 +05305609 ret = -EIO;
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05305610 goto exit;
5611 }
5612
Haynes Mathew George16081042017-05-31 17:16:49 -07005613 if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP) {
5614 ret = -EINVAL;
5615 goto exit;
5616 }
5617
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005618 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_AUX_DIGITAL) &&
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05305619 !out->is_iec61937_info_available) {
5620
5621 if (!audio_extn_passthru_is_passthrough_stream(out)) {
5622 out->is_iec61937_info_available = true;
5623 } else if (audio_extn_passthru_is_enabled()) {
5624 audio_extn_passthru_update_stream_configuration(adev, out, buffer, bytes);
Manish Dewangan37864bc2017-06-09 12:28:37 +05305625 out->is_iec61937_info_available = true;
Manish Dewangan671a4202017-08-18 17:30:46 +05305626
5627 if((out->format == AUDIO_FORMAT_DTS) ||
5628 (out->format == AUDIO_FORMAT_DTS_HD)) {
5629 ret = audio_extn_passthru_update_dts_stream_configuration(out,
5630 buffer, bytes);
5631 if (ret) {
5632 if (ret != -ENOSYS) {
5633 out->is_iec61937_info_available = false;
5634 ALOGD("iec61937 transmission info not yet updated retry");
5635 }
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05305636 } else if (!out->standby) {
Manish Dewangan671a4202017-08-18 17:30:46 +05305637 /* if stream has started and after that there is
5638 * stream config change (iec transmission config)
5639 * then trigger select_device to update backend configuration.
5640 */
5641 out->stream_config_changed = true;
5642 pthread_mutex_lock(&adev->lock);
5643 select_devices(adev, out->usecase);
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05305644 if (!audio_extn_passthru_is_supported_backend_edid_cfg(adev, out)) {
Weiyin Jiang29c08a42019-04-30 17:11:10 +08005645 pthread_mutex_unlock(&adev->lock);
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05305646 ret = -EINVAL;
5647 goto exit;
5648 }
Manish Dewangan671a4202017-08-18 17:30:46 +05305649 pthread_mutex_unlock(&adev->lock);
5650 out->stream_config_changed = false;
5651 out->is_iec61937_info_available = true;
5652 }
5653 }
Satish Babu Patakokila715b1422017-08-22 14:33:21 +05305654
Meng Wang4c32fb42020-01-16 17:57:11 +08005655#ifdef AUDIO_GKI_ENABLED
5656 /* out->compr_config.codec->reserved[0] is for compr_passthr */
5657 compr_passthr = out->compr_config.codec->reserved[0];
5658#else
5659 compr_passthr = out->compr_config.codec->compr_passthr;
5660#endif
5661
Garmond Leung317cbf12017-09-13 16:20:50 -07005662 if ((channels < (int)audio_channel_count_from_out_mask(out->channel_mask)) &&
Meng Wang4c32fb42020-01-16 17:57:11 +08005663 (compr_passthr == PASSTHROUGH) &&
Satish Babu Patakokila715b1422017-08-22 14:33:21 +05305664 (out->is_iec61937_info_available == true)) {
5665 ALOGE("%s: ERROR: Unsupported channel config in passthrough mode", __func__);
5666 ret = -EINVAL;
5667 goto exit;
5668 }
Manish Dewangan37864bc2017-06-09 12:28:37 +05305669 }
5670 }
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305671
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005672 if (is_a2dp_out_device_type(&out->device_list) &&
Florian Pfister1a84f312018-07-19 14:38:18 +02005673 (audio_extn_a2dp_source_is_suspended())) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005674 if (!(compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER) ||
5675 compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER_SAFE))) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305676 if (!(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05305677 ret = -EIO;
5678 goto exit;
5679 }
5680 }
5681 }
5682
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005683 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07005684 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08005685 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08005686 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
5687 ret = voice_extn_compress_voip_start_output_stream(out);
5688 else
5689 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08005690 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005691 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005692 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07005693 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005694 goto exit;
5695 }
Ashish Jain1b9b30c2017-05-18 20:57:40 +05305696 out->started = 1;
vivek mehtab72d08d2016-04-29 03:16:47 -07005697 if (last_known_cal_step != -1) {
5698 ALOGD("%s: retry previous failed cal level set", __func__);
5699 audio_hw_send_gain_dep_calibration(last_known_cal_step);
Preetam Singh Ranawatf4ae0222017-05-31 17:07:28 +05305700 last_known_cal_step = -1;
vivek mehtab72d08d2016-04-29 03:16:47 -07005701 }
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05305702
5703 if ((out->is_iec61937_info_available == true) &&
5704 (audio_extn_passthru_is_passthrough_stream(out))&&
5705 (!audio_extn_passthru_is_supported_backend_edid_cfg(adev, out))) {
5706 ret = -EINVAL;
5707 goto exit;
5708 }
Surendar Karkaf51b5842018-04-26 11:28:38 +05305709 if (out->set_dual_mono)
5710 audio_extn_send_dual_mono_mixing_coefficients(out);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005711 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005712
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08005713 if (adev->is_channel_status_set == false &&
5714 compare_device_type(&out->device_list,
5715 AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Alexy Josephb1379942016-01-29 15:49:38 -08005716 audio_utils_set_hdmi_channel_status(out, (void *)buffer, bytes);
Ashish Jain81eb2a82015-05-13 10:52:34 +05305717 adev->is_channel_status_set = true;
5718 }
5719
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +05305720 if ((adev->use_old_pspd_mix_ctrl == true) &&
5721 (out->pspd_coeff_sent == false)) {
5722 /*
5723 * Need to resend pspd coefficients after stream started for
5724 * older kernel version as it does not save the coefficients
5725 * and also stream has to be started for coeff to apply.
5726 */
5727 usecase = get_usecase_from_list(adev, out->usecase);
5728 if (usecase != NULL) {
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +05305729 audio_extn_set_custom_mtmx_params_v2(adev, usecase, true);
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +05305730 out->pspd_coeff_sent = true;
5731 }
5732 }
5733
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07005734 if (is_offload_usecase(out->usecase)) {
Alexy Joseph01e54e62015-03-03 19:01:03 -08005735 ALOGVV("copl(%p): writing buffer (%zu bytes) to compress device", out, bytes);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07005736 if (out->send_new_metadata) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07005737 ALOGD("copl(%p):send new gapless metadata", out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07005738 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
5739 out->send_new_metadata = 0;
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05305740 if (out->send_next_track_params && out->is_compr_metadata_avail) {
5741 ALOGD("copl(%p):send next track params in gapless", out);
Weiyin Jiangd9b5a4e2019-07-18 17:24:21 +08005742 compress_set_next_track_param(out->compr, &(out->compr_config.codec->options));
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05305743 out->send_next_track_params = false;
5744 out->is_compr_metadata_avail = false;
5745 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07005746 }
Dhananjay Kumarac341582017-02-23 23:42:25 +05305747 if (!(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
Ashish Jain83a6cc22016-06-28 14:34:17 +05305748 (out->convert_buffer) != NULL) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07005749
Ashish Jain83a6cc22016-06-28 14:34:17 +05305750 if ((bytes > out->hal_fragment_size)) {
Ashish Jainf1eaa582016-05-23 20:54:24 +05305751 ALOGW("Error written bytes %zu > %d (fragment_size)",
Ashish Jain83a6cc22016-06-28 14:34:17 +05305752 bytes, out->hal_fragment_size);
Ashish Jainf1eaa582016-05-23 20:54:24 +05305753 pthread_mutex_unlock(&out->lock);
Haynes Mathew George380745d2017-10-04 15:27:45 -07005754 ATRACE_END();
Ashish Jainf1eaa582016-05-23 20:54:24 +05305755 return -EINVAL;
5756 } else {
Ashish Jain83a6cc22016-06-28 14:34:17 +05305757 audio_format_t dst_format = out->hal_op_format;
5758 audio_format_t src_format = out->hal_ip_format;
Ashish Jainf1eaa582016-05-23 20:54:24 +05305759
Dieter Luecking5d57def2018-09-07 14:23:37 +02005760 /* prevent division-by-zero */
5761 uint32_t bitwidth_src = format_to_bitwidth_table[src_format];
5762 uint32_t bitwidth_dst = format_to_bitwidth_table[dst_format];
5763 if ((bitwidth_src == 0) || (bitwidth_dst == 0)) {
5764 ALOGE("%s: Error bitwidth == 0", __func__);
Ramu Gottipati02809682018-12-19 16:46:12 +05305765 pthread_mutex_unlock(&out->lock);
Dieter Luecking5d57def2018-09-07 14:23:37 +02005766 ATRACE_END();
5767 return -EINVAL;
5768 }
5769
Ashish Jainf1eaa582016-05-23 20:54:24 +05305770 uint32_t frames = bytes / format_to_bitwidth_table[src_format];
5771 uint32_t bytes_to_write = frames * format_to_bitwidth_table[dst_format];
5772
Ashish Jain83a6cc22016-06-28 14:34:17 +05305773 memcpy_by_audio_format(out->convert_buffer,
Ashish Jainf1eaa582016-05-23 20:54:24 +05305774 dst_format,
5775 buffer,
5776 src_format,
5777 frames);
5778
Ashish Jain83a6cc22016-06-28 14:34:17 +05305779 ret = compress_write(out->compr, out->convert_buffer,
Ashish Jainf1eaa582016-05-23 20:54:24 +05305780 bytes_to_write);
5781
5782 /*Convert written bytes in audio flinger format*/
5783 if (ret > 0)
5784 ret = ((ret * format_to_bitwidth_table[out->format]) /
5785 format_to_bitwidth_table[dst_format]);
5786 }
5787 } else
5788 ret = compress_write(out->compr, buffer, bytes);
5789
Zhou Songc9672822017-08-16 16:01:39 +08005790 if ((ret < 0 || ret == (ssize_t)bytes) && !out->non_blocking)
5791 update_frames_written(out, bytes);
5792
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05305793 if (ret < 0)
5794 ret = -errno;
Weiyin Jiangcc60dbb2018-08-21 13:12:03 +08005795 ALOGVV("%s: writing buffer (%zu bytes) to compress device returned %d", __func__, bytes, (int)ret);
Ashish Jainb26edfb2016-08-25 00:10:11 +05305796 /*msg to cb thread only if non blocking write is enabled*/
5797 if (ret >= 0 && ret < (ssize_t)bytes && out->non_blocking) {
Sidipotu Ashok55820562014-02-10 16:16:38 +05305798 ALOGD("No space available in compress driver, post msg to cb thread");
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005799 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tanniru80659832014-06-04 18:17:56 +05305800 } else if (-ENETRESET == ret) {
5801 ALOGE("copl %s: received sound card offline state on compress write", __func__);
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05305802 out->card_status = CARD_STATUS_OFFLINE;
Naresh Tanniru80659832014-06-04 18:17:56 +05305803 pthread_mutex_unlock(&out->lock);
Dhananjay Kumar1248dd82017-07-28 21:22:16 +05305804 out_on_error(&out->stream.common);
Haynes Mathew George380745d2017-10-04 15:27:45 -07005805 ATRACE_END();
Naresh Tanniru80659832014-06-04 18:17:56 +05305806 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005807 }
Ashish Jain5106d362016-05-11 19:23:33 +05305808
Dhanalakshmi Siddania6b76c72016-09-09 18:10:31 +05305809 /* Call compr start only when non-zero bytes of data is there to be rendered */
5810 if (!out->playback_started && ret > 0) {
5811 int status = compress_start(out->compr);
5812 if (status < 0) {
5813 ret = status;
5814 ALOGE("%s: compr start failed with err %d", __func__, errno);
5815 goto exit;
5816 }
Alexy Joseph7de344d2015-03-30 10:40:03 -07005817 audio_extn_dts_eagle_fade(adev, true, out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005818 out->playback_started = 1;
5819 out->offload_state = OFFLOAD_STATE_PLAYING;
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08005820
5821 audio_extn_dts_notify_playback_state(out->usecase, 0, out->sample_rate,
5822 popcount(out->channel_mask),
5823 out->playback_started);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005824 }
5825 pthread_mutex_unlock(&out->lock);
Haynes Mathew George380745d2017-10-04 15:27:45 -07005826 ATRACE_END();
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005827 return ret;
5828 } else {
5829 if (out->pcm) {
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005830 size_t bytes_to_write = bytes;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005831 if (out->muted)
5832 memset((void *)buffer, 0, bytes);
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005833 ALOGV("%s: frames=%zu, frame_size=%zu, bytes_to_write=%zu",
5834 __func__, frames, frame_size, bytes_to_write);
5835
Aalique Grahame22e49102018-12-18 14:23:57 -08005836 if (out->usecase == USECASE_INCALL_MUSIC_UPLINK ||
Aniket Kumar Lata4f9a2a52019-05-09 18:44:09 -07005837 out->usecase == USECASE_INCALL_MUSIC_UPLINK2 ||
5838 (out->usecase == USECASE_AUDIO_PLAYBACK_VOIP &&
5839 !audio_extn_utils_is_vendor_enhanced_fwk())) {
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005840 size_t channel_count = audio_channel_count_from_out_mask(out->channel_mask);
5841 int16_t *src = (int16_t *)buffer;
5842 int16_t *dst = (int16_t *)buffer;
5843
Yunfei Zhanga6cd66d2019-07-22 16:15:36 +08005844 LOG_ALWAYS_FATAL_IF(channel_count > 2 ||
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005845 out->format != AUDIO_FORMAT_PCM_16_BIT,
Aalique Grahame22e49102018-12-18 14:23:57 -08005846 "out_write called for %s use case with wrong properties",
5847 use_case_table[out->usecase]);
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005848
5849 /*
5850 * FIXME: this can be removed once audio flinger mixer supports
5851 * mono output
5852 */
5853
5854 /*
5855 * Code below goes over each frame in the buffer and adds both
5856 * L and R samples and then divides by 2 to convert to mono
5857 */
Yunfei Zhanga6cd66d2019-07-22 16:15:36 +08005858 if (channel_count == 2) {
5859 for (size_t i = 0; i < frames ; i++, dst++, src += 2) {
5860 *dst = (int16_t)(((int32_t)src[0] + (int32_t)src[1]) >> 1);
5861 }
5862 bytes_to_write /= 2;
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005863 }
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005864 }
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +05305865 ALOGVV("%s: writing buffer (%zu bytes) to pcm device", __func__, bytes);
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07005866
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005867 long ns = 0;
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07005868
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005869 if (out->config.rate)
5870 ns = pcm_bytes_to_frames(out->pcm, bytes)*1000000000LL/
5871 out->config.rate;
5872
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005873 request_out_focus(out, ns);
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005874 bool use_mmap = is_mmap_usecase(out->usecase) || out->realtime;
5875
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005876 if (use_mmap)
Arun Mirpuri7da752a2018-09-11 18:01:15 -07005877 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes_to_write);
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005878 else if (out->hal_op_format != out->hal_ip_format &&
Ashish Jain83a6cc22016-06-28 14:34:17 +05305879 out->convert_buffer != NULL) {
5880
5881 memcpy_by_audio_format(out->convert_buffer,
5882 out->hal_op_format,
5883 buffer,
5884 out->hal_ip_format,
5885 out->config.period_size * out->config.channels);
5886
5887 ret = pcm_write(out->pcm, out->convert_buffer,
5888 (out->config.period_size *
5889 out->config.channels *
5890 format_to_bitwidth_table[out->hal_op_format]));
5891 } else {
Aditya Bavanarid4db8ee2017-05-29 21:08:03 +05305892 /*
5893 * To avoid underrun in DSP when the application is not pumping
5894 * data at required rate, check for the no. of bytes and ignore
5895 * pcm_write if it is less than actual buffer size.
5896 * It is a work around to a change in compress VOIP driver.
5897 */
5898 if ((out->flags & AUDIO_OUTPUT_FLAG_VOIP_RX) &&
5899 bytes < (out->config.period_size * out->config.channels *
5900 audio_bytes_per_sample(out->format))) {
5901 size_t voip_buf_size =
5902 out->config.period_size * out->config.channels *
5903 audio_bytes_per_sample(out->format);
5904 ALOGE("%s:VOIP underrun: bytes received %zu, required:%zu\n",
5905 __func__, bytes, voip_buf_size);
5906 usleep(((uint64_t)voip_buf_size - bytes) *
5907 1000000 / audio_stream_out_frame_size(stream) /
5908 out_get_sample_rate(&out->stream.common));
5909 ret = 0;
Vignesh Kulothungana6927272019-02-20 15:17:07 -08005910 } else {
5911 if (out->usecase == USECASE_AUDIO_PLAYBACK_WITH_HAPTICS)
5912 ret = split_and_write_audio_haptic_data(out, buffer, bytes);
5913 else
5914 ret = pcm_write(out->pcm, (void *)buffer, bytes_to_write);
5915 }
Ashish Jain83a6cc22016-06-28 14:34:17 +05305916 }
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07005917
Haynes Mathew George5beddd42016-06-27 18:33:40 -07005918 release_out_focus(out);
5919
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05305920 if (ret < 0)
5921 ret = -errno;
Zhou Songc9672822017-08-16 16:01:39 +08005922 else if (ret > 0)
Ashish Jain83a6cc22016-06-28 14:34:17 +05305923 ret = -EINVAL;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005924 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005925 }
5926
5927exit:
Zhou Songc9672822017-08-16 16:01:39 +08005928 update_frames_written(out, bytes);
Naresh Tanniru4c630392014-05-12 01:05:52 +05305929 if (-ENETRESET == ret) {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05305930 out->card_status = CARD_STATUS_OFFLINE;
Naresh Tanniru4c630392014-05-12 01:05:52 +05305931 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005932 pthread_mutex_unlock(&out->lock);
5933
5934 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07005935 if (out->pcm)
Alexy Josephb1379942016-01-29 15:49:38 -08005936 ALOGE("%s: error %d, %s", __func__, (int)ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05305937 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05305938 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05305939 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05305940 out->started = 0;
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05305941 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05305942 out->standby = true;
5943 }
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05305944 out_on_error(&out->stream.common);
Dieter Luecking5d57def2018-09-07 14:23:37 +02005945 if (!(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
5946 /* prevent division-by-zero */
5947 uint32_t stream_size = audio_stream_out_frame_size(stream);
5948 uint32_t srate = out_get_sample_rate(&out->stream.common);
Vidyakumar Athotaa9d3a5f2017-08-09 12:13:05 -07005949
Dieter Luecking5d57def2018-09-07 14:23:37 +02005950 if ((stream_size == 0) || (srate == 0)) {
5951 ALOGE("%s: stream_size= %d, srate = %d", __func__, stream_size, srate);
5952 ATRACE_END();
5953 return -EINVAL;
5954 }
5955 usleep((uint64_t)bytes * 1000000 / stream_size / srate);
5956 }
Vidyakumar Athotaa9d3a5f2017-08-09 12:13:05 -07005957 if (audio_extn_passthru_is_passthrough_stream(out)) {
Rajshekar Eashwarappa88834522018-04-02 17:20:15 +05305958 //ALOGE("%s: write error, ret = %zd", __func__, ret);
Haynes Mathew George380745d2017-10-04 15:27:45 -07005959 ATRACE_END();
Vidyakumar Athotaa9d3a5f2017-08-09 12:13:05 -07005960 return ret;
5961 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005962 }
Haynes Mathew George380745d2017-10-04 15:27:45 -07005963 ATRACE_END();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08005964 return bytes;
5965}
5966
5967static int out_get_render_position(const struct audio_stream_out *stream,
5968 uint32_t *dsp_frames)
5969{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005970 struct stream_out *out = (struct stream_out *)stream;
Zhou Song32a556e2015-05-05 10:46:56 +08005971
5972 if (dsp_frames == NULL)
5973 return -EINVAL;
5974
5975 *dsp_frames = 0;
5976 if (is_offload_usecase(out->usecase)) {
Mingming Yin9e348b52014-11-19 16:18:55 -08005977 ssize_t ret = 0;
Ashish Jain5106d362016-05-11 19:23:33 +05305978
5979 /* Below piece of code is not guarded against any lock beacuse audioFliner serializes
5980 * this operation and adev_close_output_stream(where out gets reset).
5981 */
Dhananjay Kumarac341582017-02-23 23:42:25 +05305982 if (!out->non_blocking && !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
Zhou Song48453a02018-01-10 17:50:59 +08005983 *dsp_frames = get_actual_pcm_frames_rendered(out, NULL);
Ashish Jain5106d362016-05-11 19:23:33 +05305984 ALOGVV("dsp_frames %d sampleRate %d",(int)*dsp_frames,out->sample_rate);
Haynes Mathew Georgeb0f5dc32017-10-06 18:35:12 -07005985 adjust_frames_for_device_delay(out, dsp_frames);
Ashish Jain5106d362016-05-11 19:23:33 +05305986 return 0;
5987 }
5988
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07005989 lock_output_stream(out);
Ashish Jain5106d362016-05-11 19:23:33 +05305990 if (out->compr != NULL && out->non_blocking) {
Naresh Tanniru80659832014-06-04 18:17:56 +05305991 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005992 &out->sample_rate);
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05305993 if (ret < 0)
5994 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005995 ALOGVV("%s rendered frames %d sample_rate %d",
Ashish Jain5106d362016-05-11 19:23:33 +05305996 __func__, *dsp_frames, out->sample_rate);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07005997 }
Naresh Tanniru80659832014-06-04 18:17:56 +05305998 if (-ENETRESET == ret) {
5999 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306000 out->card_status = CARD_STATUS_OFFLINE;
6001 ret = -EINVAL;
Naresh Tanniru80659832014-06-04 18:17:56 +05306002 } else if(ret < 0) {
6003 ALOGE(" ERROR: Unable to get time stamp from compress driver");
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306004 ret = -EINVAL;
6005 } else if (out->card_status == CARD_STATUS_OFFLINE) {
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +05306006 /*
6007 * Handle corner case where compress session is closed during SSR
6008 * and timestamp is queried
6009 */
6010 ALOGE(" ERROR: sound card not active, return error");
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306011 ret = -EINVAL;
Manisha Agarwal7b3e3772019-02-20 14:33:45 +05306012 } else if (out->prev_card_status_offline) {
6013 ALOGE("ERROR: previously sound card was offline,return error");
6014 ret = -EINVAL;
Naresh Tanniru80659832014-06-04 18:17:56 +05306015 } else {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306016 ret = 0;
Haynes Mathew Georgeb0f5dc32017-10-06 18:35:12 -07006017 adjust_frames_for_device_delay(out, dsp_frames);
Naresh Tanniru80659832014-06-04 18:17:56 +05306018 }
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306019 pthread_mutex_unlock(&out->lock);
6020 return ret;
Zhou Song32a556e2015-05-05 10:46:56 +08006021 } else if (audio_is_linear_pcm(out->format)) {
6022 *dsp_frames = out->written;
Haynes Mathew Georgeb0f5dc32017-10-06 18:35:12 -07006023 adjust_frames_for_device_delay(out, dsp_frames);
Zhou Song32a556e2015-05-05 10:46:56 +08006024 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006025 } else
6026 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006027}
6028
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006029static int out_add_audio_effect(const struct audio_stream *stream __unused,
6030 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006031{
6032 return 0;
6033}
6034
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006035static int out_remove_audio_effect(const struct audio_stream *stream __unused,
6036 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006037{
6038 return 0;
6039}
6040
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006041static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
6042 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006043{
Satya Krishna Pindiprolib6655542017-07-03 19:38:19 +05306044 return -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006045}
6046
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006047static int out_get_presentation_position(const struct audio_stream_out *stream,
6048 uint64_t *frames, struct timespec *timestamp)
6049{
6050 struct stream_out *out = (struct stream_out *)stream;
pavance65c2fe2017-10-18 17:52:01 +05306051 int ret = -ENODATA;
Eric Laurent949a0892013-09-20 09:20:13 -07006052 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006053
Ashish Jain5106d362016-05-11 19:23:33 +05306054 /* below piece of code is not guarded against any lock because audioFliner serializes
6055 * this operation and adev_close_output_stream( where out gets reset).
6056 */
6057 if (is_offload_usecase(out->usecase) && !out->non_blocking &&
Dhananjay Kumarac341582017-02-23 23:42:25 +05306058 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
Zhou Song48453a02018-01-10 17:50:59 +08006059 *frames = get_actual_pcm_frames_rendered(out, timestamp);
Ashish Jain5106d362016-05-11 19:23:33 +05306060 ALOGVV("frames %lld playedat %lld",(long long int)*frames,
6061 timestamp->tv_sec * 1000000LL + timestamp->tv_nsec / 1000);
6062 return 0;
6063 }
6064
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006065 lock_output_stream(out);
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006066
Ashish Jain5106d362016-05-11 19:23:33 +05306067 if (is_offload_usecase(out->usecase) && out->compr != NULL && out->non_blocking) {
6068 ret = compress_get_tstamp(out->compr, &dsp_frames,
6069 &out->sample_rate);
yidongh0515e042017-07-06 15:00:34 +08006070 // Adjustment accounts for A2dp encoder latency with offload usecases
6071 // Note: Encoder latency is returned in ms.
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006072 if (is_a2dp_out_device_type(&out->device_list)) {
yidongh0515e042017-07-06 15:00:34 +08006073 unsigned long offset =
6074 (audio_extn_a2dp_get_encoder_latency() * out->sample_rate / 1000);
6075 dsp_frames = (dsp_frames > offset) ? (dsp_frames - offset) : 0;
6076 }
Ashish Jain5106d362016-05-11 19:23:33 +05306077 ALOGVV("%s rendered frames %ld sample_rate %d",
6078 __func__, dsp_frames, out->sample_rate);
6079 *frames = dsp_frames;
6080 if (ret < 0)
6081 ret = -errno;
6082 if (-ENETRESET == ret) {
6083 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306084 out->card_status = CARD_STATUS_OFFLINE;
Ashish Jain5106d362016-05-11 19:23:33 +05306085 ret = -EINVAL;
6086 } else
6087 ret = 0;
6088 /* this is the best we can do */
6089 clock_gettime(CLOCK_MONOTONIC, timestamp);
Eric Laurent949a0892013-09-20 09:20:13 -07006090 } else {
6091 if (out->pcm) {
Weiyin Jiangd4633762018-03-16 12:05:03 +08006092 unsigned int avail;
6093 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
6094 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
George Gao62ebc722019-07-29 16:29:44 -07006095
6096 uint64_t signed_frames = 0;
Weiyin Jiang0d25bcf2019-08-30 15:27:23 +08006097 uint64_t frames_temp = 0;
George Gao62ebc722019-07-29 16:29:44 -07006098
Weiyin Jiang0d25bcf2019-08-30 15:27:23 +08006099 frames_temp = (kernel_buffer_size > avail) ? (kernel_buffer_size - avail) : 0;
6100 if (out->written >= frames_temp)
6101 signed_frames = out->written - frames_temp;
George Gao62ebc722019-07-29 16:29:44 -07006102
Weiyin Jiangd4633762018-03-16 12:05:03 +08006103 // This adjustment accounts for buffering after app processor.
6104 // It is based on estimated DSP latency per use case, rather than exact.
Weiyin Jiang0d25bcf2019-08-30 15:27:23 +08006105 frames_temp = platform_render_latency(out->usecase) * out->sample_rate / 1000000LL;
6106 if (signed_frames >= frames_temp)
6107 signed_frames -= frames_temp;
Aniket Kumar Lataff613152017-07-18 18:19:21 -07006108
Weiyin Jiangd4633762018-03-16 12:05:03 +08006109 // Adjustment accounts for A2dp encoder latency with non offload usecases
6110 // Note: Encoder latency is returned in ms, while platform_render_latency in us.
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006111 if (is_a2dp_out_device_type(&out->device_list)) {
Weiyin Jiang0d25bcf2019-08-30 15:27:23 +08006112 frames_temp = audio_extn_a2dp_get_encoder_latency() * out->sample_rate / 1000;
6113 if (signed_frames >= frames_temp)
6114 signed_frames -= frames_temp;
Weiyin Jiangd4633762018-03-16 12:05:03 +08006115 }
6116
6117 // It would be unusual for this value to be negative, but check just in case ...
George Gao62ebc722019-07-29 16:29:44 -07006118 *frames = signed_frames;
6119 ret = 0;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006120 }
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306121 } else if (out->card_status == CARD_STATUS_OFFLINE) {
Ashish Jainbbce4322016-02-16 13:25:27 +05306122 *frames = out->written;
6123 clock_gettime(CLOCK_MONOTONIC, timestamp);
Manisha Agarwal7b3e3772019-02-20 14:33:45 +05306124 if (is_offload_usecase(out->usecase))
6125 ret = -EINVAL;
6126 else
6127 ret = 0;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006128 }
6129 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006130 pthread_mutex_unlock(&out->lock);
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07006131 return ret;
6132}
6133
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006134static int out_set_callback(struct audio_stream_out *stream,
6135 stream_callback_t callback, void *cookie)
6136{
6137 struct stream_out *out = (struct stream_out *)stream;
Ben Rombergerd771a7c2017-02-22 18:05:17 -08006138 int ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006139
6140 ALOGV("%s", __func__);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006141 lock_output_stream(out);
Ben Rombergerd771a7c2017-02-22 18:05:17 -08006142 out->client_callback = callback;
6143 out->client_cookie = cookie;
6144 if (out->adsp_hdlr_stream_handle) {
6145 ret = audio_extn_adsp_hdlr_stream_set_callback(
6146 out->adsp_hdlr_stream_handle,
6147 callback,
6148 cookie);
6149 if (ret)
6150 ALOGW("%s:adsp hdlr callback registration failed %d",
6151 __func__, ret);
6152 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006153 pthread_mutex_unlock(&out->lock);
6154 return 0;
6155}
6156
6157static int out_pause(struct audio_stream_out* stream)
6158{
6159 struct stream_out *out = (struct stream_out *)stream;
6160 int status = -ENOSYS;
6161 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07006162 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07006163 ALOGD("copl(%p):pause compress driver", out);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006164 lock_output_stream(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006165 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306166 if (out->card_status != CARD_STATUS_OFFLINE)
Naresh Tanniru80659832014-06-04 18:17:56 +05306167 status = compress_pause(out->compr);
6168
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006169 out->offload_state = OFFLOAD_STATE_PAUSED;
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08006170
Mingming Yin21854652016-04-13 11:54:02 -07006171 if (audio_extn_passthru_is_active()) {
6172 ALOGV("offload use case, pause passthru");
6173 audio_extn_passthru_on_pause(out);
6174 }
6175
Dhanalakshmi Siddani79415e72015-03-23 11:54:47 +05306176 audio_extn_dts_eagle_fade(adev, false, out);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08006177 audio_extn_dts_notify_playback_state(out->usecase, 0,
6178 out->sample_rate, popcount(out->channel_mask),
6179 0);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006180 }
6181 pthread_mutex_unlock(&out->lock);
6182 }
6183 return status;
6184}
6185
6186static int out_resume(struct audio_stream_out* stream)
6187{
6188 struct stream_out *out = (struct stream_out *)stream;
6189 int status = -ENOSYS;
6190 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07006191 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07006192 ALOGD("copl(%p):resume compress driver", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006193 status = 0;
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006194 lock_output_stream(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006195 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306196 if (out->card_status != CARD_STATUS_OFFLINE) {
Naresh Tanniru80659832014-06-04 18:17:56 +05306197 status = compress_resume(out->compr);
Mingming Yin21854652016-04-13 11:54:02 -07006198 }
6199 if (!status) {
6200 out->offload_state = OFFLOAD_STATE_PLAYING;
6201 }
Dhanalakshmi Siddani79415e72015-03-23 11:54:47 +05306202 audio_extn_dts_eagle_fade(adev, true, out);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08006203 audio_extn_dts_notify_playback_state(out->usecase, 0, out->sample_rate,
6204 popcount(out->channel_mask), 1);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006205 }
6206 pthread_mutex_unlock(&out->lock);
6207 }
6208 return status;
6209}
6210
6211static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
6212{
6213 struct stream_out *out = (struct stream_out *)stream;
6214 int status = -ENOSYS;
6215 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07006216 if (is_offload_usecase(out->usecase)) {
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006217 lock_output_stream(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006218 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
6219 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
6220 else
6221 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
6222 pthread_mutex_unlock(&out->lock);
6223 }
6224 return status;
6225}
6226
6227static int out_flush(struct audio_stream_out* stream)
6228{
6229 struct stream_out *out = (struct stream_out *)stream;
6230 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07006231 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07006232 ALOGD("copl(%p):calling compress flush", out);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006233 lock_output_stream(out);
Haynes Mathew Georgeafe54d82016-09-21 14:39:19 -07006234 if (out->offload_state == OFFLOAD_STATE_PAUSED) {
6235 stop_compressed_output_l(out);
Haynes Mathew Georgeafe54d82016-09-21 14:39:19 -07006236 } else {
6237 ALOGW("%s called in invalid state %d", __func__, out->offload_state);
6238 }
Weiyin Jiang547e4152017-09-14 17:24:18 +08006239 out->written = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006240 pthread_mutex_unlock(&out->lock);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07006241 ALOGD("copl(%p):out of compress flush", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07006242 return 0;
6243 }
6244 return -ENOSYS;
6245}
6246
Haynes Mathew George16081042017-05-31 17:16:49 -07006247static int out_stop(const struct audio_stream_out* stream)
6248{
6249 struct stream_out *out = (struct stream_out *)stream;
6250 struct audio_device *adev = out->dev;
6251 int ret = -ENOSYS;
6252
6253 ALOGV("%s", __func__);
6254 pthread_mutex_lock(&adev->lock);
6255 if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP && !out->standby &&
6256 out->playback_started && out->pcm != NULL) {
6257 pcm_stop(out->pcm);
6258 ret = stop_output_stream(out);
6259 out->playback_started = false;
6260 }
6261 pthread_mutex_unlock(&adev->lock);
6262 return ret;
6263}
6264
6265static int out_start(const struct audio_stream_out* stream)
6266{
6267 struct stream_out *out = (struct stream_out *)stream;
6268 struct audio_device *adev = out->dev;
6269 int ret = -ENOSYS;
6270
6271 ALOGV("%s", __func__);
6272 pthread_mutex_lock(&adev->lock);
6273 if (out->usecase == USECASE_AUDIO_PLAYBACK_MMAP && !out->standby &&
6274 !out->playback_started && out->pcm != NULL) {
6275 ret = start_output_stream(out);
6276 if (ret == 0) {
6277 out->playback_started = true;
6278 }
6279 }
6280 pthread_mutex_unlock(&adev->lock);
6281 return ret;
6282}
6283
6284/*
6285 * Modify config->period_count based on min_size_frames
6286 */
6287static void adjust_mmap_period_count(struct pcm_config *config, int32_t min_size_frames)
6288{
6289 int periodCountRequested = (min_size_frames + config->period_size - 1)
6290 / config->period_size;
6291 int periodCount = MMAP_PERIOD_COUNT_MIN;
6292
6293 ALOGV("%s original config.period_size = %d config.period_count = %d",
6294 __func__, config->period_size, config->period_count);
6295
6296 while (periodCount < periodCountRequested && (periodCount * 2) < MMAP_PERIOD_COUNT_MAX) {
6297 periodCount *= 2;
6298 }
6299 config->period_count = periodCount;
6300
6301 ALOGV("%s requested config.period_count = %d", __func__, config->period_count);
6302}
6303
Phil Burkfe17efd2019-03-25 10:23:35 -07006304// Read offset for the positional timestamp from a persistent vendor property.
6305// This is to workaround apparent inaccuracies in the timing information that
6306// is used by the AAudio timing model. The inaccuracies can cause glitches.
6307static int64_t get_mmap_out_time_offset() {
6308 const int32_t kDefaultOffsetMicros = 0;
6309 int32_t mmap_time_offset_micros = property_get_int32(
Weiyin Jiangbd68b4d2019-05-17 16:29:50 +08006310 "persist.vendor.audio.out_mmap_delay_micros", kDefaultOffsetMicros);
Phil Burkfe17efd2019-03-25 10:23:35 -07006311 ALOGI("mmap_time_offset_micros = %d for output", mmap_time_offset_micros);
6312 return mmap_time_offset_micros * (int64_t)1000;
6313}
6314
Haynes Mathew George16081042017-05-31 17:16:49 -07006315static int out_create_mmap_buffer(const struct audio_stream_out *stream,
6316 int32_t min_size_frames,
6317 struct audio_mmap_buffer_info *info)
6318{
6319 struct stream_out *out = (struct stream_out *)stream;
6320 struct audio_device *adev = out->dev;
6321 int ret = 0;
Aalique Grahame1f123102017-10-12 10:38:32 -07006322 unsigned int offset1 = 0;
6323 unsigned int frames1 = 0;
Haynes Mathew George16081042017-05-31 17:16:49 -07006324 const char *step = "";
Haynes Mathew Georgeef514882017-05-01 17:46:23 -07006325 uint32_t mmap_size;
Arun Mirpuri5d170872019-03-26 13:21:31 -07006326 uint32_t buffer_size;
Haynes Mathew George16081042017-05-31 17:16:49 -07006327
Arun Mirpuri5d170872019-03-26 13:21:31 -07006328 ALOGD("%s", __func__);
Sharad Sanglec6f32552018-05-04 16:15:38 +05306329 lock_output_stream(out);
Haynes Mathew George16081042017-05-31 17:16:49 -07006330 pthread_mutex_lock(&adev->lock);
6331
Sharad Sanglec6f32552018-05-04 16:15:38 +05306332 if (CARD_STATUS_OFFLINE == out->card_status ||
6333 CARD_STATUS_OFFLINE == adev->card_status) {
6334 ALOGW("out->card_status or adev->card_status offline, try again");
6335 ret = -EIO;
6336 goto exit;
6337 }
Haynes Mathew George16081042017-05-31 17:16:49 -07006338 if (info == NULL || min_size_frames == 0) {
6339 ALOGE("%s: info = %p, min_size_frames = %d", __func__, info, min_size_frames);
6340 ret = -EINVAL;
6341 goto exit;
6342 }
6343 if (out->usecase != USECASE_AUDIO_PLAYBACK_MMAP || !out->standby) {
6344 ALOGE("%s: usecase = %d, standby = %d", __func__, out->usecase, out->standby);
6345 ret = -ENOSYS;
6346 goto exit;
6347 }
6348 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
6349 if (out->pcm_device_id < 0) {
6350 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
6351 __func__, out->pcm_device_id, out->usecase);
6352 ret = -EINVAL;
6353 goto exit;
6354 }
6355
6356 adjust_mmap_period_count(&out->config, min_size_frames);
6357
Arun Mirpuri5d170872019-03-26 13:21:31 -07006358 ALOGD("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Haynes Mathew George16081042017-05-31 17:16:49 -07006359 __func__, adev->snd_card, out->pcm_device_id, out->config.channels);
6360 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
6361 (PCM_OUT | PCM_MMAP | PCM_NOIRQ | PCM_MONOTONIC), &out->config);
Satish Babu Patakokila54ce83d2018-07-06 18:00:37 +05306362 if (errno == ENETRESET && !pcm_is_ready(out->pcm)) {
Sharad Sanglec6f32552018-05-04 16:15:38 +05306363 ALOGE("%s: pcm_open failed errno:%d\n", __func__, errno);
6364 out->card_status = CARD_STATUS_OFFLINE;
6365 adev->card_status = CARD_STATUS_OFFLINE;
6366 ret = -EIO;
6367 goto exit;
6368 }
6369
Haynes Mathew George16081042017-05-31 17:16:49 -07006370 if (out->pcm == NULL || !pcm_is_ready(out->pcm)) {
6371 step = "open";
6372 ret = -ENODEV;
6373 goto exit;
6374 }
6375 ret = pcm_mmap_begin(out->pcm, &info->shared_memory_address, &offset1, &frames1);
6376 if (ret < 0) {
6377 step = "begin";
6378 goto exit;
6379 }
6380 info->buffer_size_frames = pcm_get_buffer_size(out->pcm);
Arun Mirpuri5d170872019-03-26 13:21:31 -07006381 buffer_size = pcm_frames_to_bytes(out->pcm, info->buffer_size_frames);
Haynes Mathew George16081042017-05-31 17:16:49 -07006382 info->burst_size_frames = out->config.period_size;
Haynes Mathew Georgeef514882017-05-01 17:46:23 -07006383 ret = platform_get_mmap_data_fd(adev->platform,
6384 out->pcm_device_id, 0 /*playback*/,
6385 &info->shared_memory_fd,
6386 &mmap_size);
6387 if (ret < 0) {
Arun Mirpuri5d170872019-03-26 13:21:31 -07006388 // Fall back to non exclusive mode
6389 info->shared_memory_fd = pcm_get_poll_fd(out->pcm);
6390 } else {
Phil Burkd898ba62019-06-20 12:49:01 -07006391 out->mmap_shared_memory_fd = info->shared_memory_fd; // for closing later
6392 ALOGV("%s: opened mmap_shared_memory_fd = %d", __func__, out->mmap_shared_memory_fd);
6393
Arun Mirpuri5d170872019-03-26 13:21:31 -07006394 if (mmap_size < buffer_size) {
6395 step = "mmap";
6396 goto exit;
6397 }
6398 // FIXME: indicate exclusive mode support by returning a negative buffer size
6399 info->buffer_size_frames *= -1;
Haynes Mathew Georgeef514882017-05-01 17:46:23 -07006400 }
Haynes Mathew George16081042017-05-31 17:16:49 -07006401 memset(info->shared_memory_address, 0, pcm_frames_to_bytes(out->pcm,
Haynes Mathew Georgeef514882017-05-01 17:46:23 -07006402 info->buffer_size_frames));
Haynes Mathew George16081042017-05-31 17:16:49 -07006403
6404 ret = pcm_mmap_commit(out->pcm, 0, MMAP_PERIOD_SIZE);
6405 if (ret < 0) {
6406 step = "commit";
6407 goto exit;
6408 }
6409
Phil Burkfe17efd2019-03-25 10:23:35 -07006410 out->mmap_time_offset_nanos = get_mmap_out_time_offset();
6411
Haynes Mathew George16081042017-05-31 17:16:49 -07006412 out->standby = false;
6413 ret = 0;
6414
Arun Mirpuri5d170872019-03-26 13:21:31 -07006415 ALOGD("%s: got mmap buffer address %p info->buffer_size_frames %d",
Haynes Mathew George16081042017-05-31 17:16:49 -07006416 __func__, info->shared_memory_address, info->buffer_size_frames);
6417
6418exit:
6419 if (ret != 0) {
6420 if (out->pcm == NULL) {
6421 ALOGE("%s: %s - %d", __func__, step, ret);
6422 } else {
6423 ALOGE("%s: %s %s", __func__, step, pcm_get_error(out->pcm));
6424 pcm_close(out->pcm);
6425 out->pcm = NULL;
6426 }
6427 }
6428 pthread_mutex_unlock(&adev->lock);
Sharad Sanglec6f32552018-05-04 16:15:38 +05306429 pthread_mutex_unlock(&out->lock);
Haynes Mathew George16081042017-05-31 17:16:49 -07006430 return ret;
6431}
6432
6433static int out_get_mmap_position(const struct audio_stream_out *stream,
6434 struct audio_mmap_position *position)
6435{
6436 struct stream_out *out = (struct stream_out *)stream;
6437 ALOGVV("%s", __func__);
6438 if (position == NULL) {
6439 return -EINVAL;
6440 }
6441 if (out->usecase != USECASE_AUDIO_PLAYBACK_MMAP) {
Haynes Mathew George4ab3ba92017-12-11 14:49:43 -08006442 ALOGE("%s: called on %s", __func__, use_case_table[out->usecase]);
Haynes Mathew George16081042017-05-31 17:16:49 -07006443 return -ENOSYS;
6444 }
6445 if (out->pcm == NULL) {
6446 return -ENOSYS;
6447 }
6448
6449 struct timespec ts = { 0, 0 };
6450 int ret = pcm_mmap_get_hw_ptr(out->pcm, (unsigned int *)&position->position_frames, &ts);
6451 if (ret < 0) {
6452 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
6453 return ret;
6454 }
Phil Burkfe17efd2019-03-25 10:23:35 -07006455 position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec
6456 + out->mmap_time_offset_nanos;
Haynes Mathew George16081042017-05-31 17:16:49 -07006457 return 0;
6458}
6459
6460
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006461/** audio_stream_in implementation **/
6462static uint32_t in_get_sample_rate(const struct audio_stream *stream)
6463{
6464 struct stream_in *in = (struct stream_in *)stream;
6465
6466 return in->config.rate;
6467}
6468
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006469static int in_set_sample_rate(struct audio_stream *stream __unused,
6470 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006471{
6472 return -ENOSYS;
6473}
6474
6475static size_t in_get_buffer_size(const struct audio_stream *stream)
6476{
6477 struct stream_in *in = (struct stream_in *)stream;
6478
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006479 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
6480 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07006481 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
6482 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306483 else if(audio_extn_cin_attached_usecase(in->usecase))
6484 return audio_extn_cin_get_buffer_size(in);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006485
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006486 return in->config.period_size * in->af_period_multiplier *
6487 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006488}
6489
6490static uint32_t in_get_channels(const struct audio_stream *stream)
6491{
6492 struct stream_in *in = (struct stream_in *)stream;
6493
6494 return in->channel_mask;
6495}
6496
6497static audio_format_t in_get_format(const struct audio_stream *stream)
6498{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006499 struct stream_in *in = (struct stream_in *)stream;
6500
6501 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006502}
6503
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006504static int in_set_format(struct audio_stream *stream __unused,
6505 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006506{
6507 return -ENOSYS;
6508}
6509
6510static int in_standby(struct audio_stream *stream)
6511{
6512 struct stream_in *in = (struct stream_in *)stream;
6513 struct audio_device *adev = in->dev;
6514 int status = 0;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05306515 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
6516 stream, in->usecase, use_case_table[in->usecase]);
Haynes Mathew George16081042017-05-31 17:16:49 -07006517 bool do_stop = true;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05306518
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006519 lock_input_stream(in);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07006520 if (!in->standby && in->is_st_session) {
6521 ALOGD("%s: sound trigger pcm stop lab", __func__);
6522 audio_extn_sound_trigger_stop_lab(in);
George Gao3018ede2019-10-23 13:23:00 -07006523 if (adev->num_va_sessions > 0)
6524 adev->num_va_sessions--;
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07006525 in->standby = 1;
6526 }
6527
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006528 if (!in->standby) {
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07006529 if (adev->adm_deregister_stream)
6530 adev->adm_deregister_stream(adev->adm_data, in->capture_handle);
6531
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08006532 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006533 in->standby = true;
Zhou Songa8895042016-07-05 17:54:22 +08006534 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
kunleizbecba2d2017-09-07 13:37:16 +08006535 do_stop = false;
Zhou Songa8895042016-07-05 17:54:22 +08006536 voice_extn_compress_voip_close_input_stream(stream);
6537 ALOGD("VOIP input entered standby");
Haynes Mathew George16081042017-05-31 17:16:49 -07006538 } else if (in->usecase == USECASE_AUDIO_RECORD_MMAP) {
6539 do_stop = in->capture_started;
6540 in->capture_started = false;
Phil Burkd898ba62019-06-20 12:49:01 -07006541 if (in->mmap_shared_memory_fd >= 0) {
6542 ALOGV("%s: closing mmap_shared_memory_fd = %d",
6543 __func__, in->mmap_shared_memory_fd);
6544 close(in->mmap_shared_memory_fd);
6545 in->mmap_shared_memory_fd = -1;
6546 }
Zhou Songa8895042016-07-05 17:54:22 +08006547 } else {
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306548 if (audio_extn_cin_attached_usecase(in->usecase))
Manish Dewangan46e07982018-12-13 18:18:59 +05306549 audio_extn_cin_close_input_stream(in);
kunleizbecba2d2017-09-07 13:37:16 +08006550 }
6551
Arun Mirpuri5d170872019-03-26 13:21:31 -07006552 if (in->pcm) {
6553 ATRACE_BEGIN("pcm_in_close");
6554 pcm_close(in->pcm);
6555 ATRACE_END();
6556 in->pcm = NULL;
6557 }
6558
Carter Hsu2e429db2019-05-14 18:50:52 +08006559 if (in->source == AUDIO_SOURCE_VOICE_COMMUNICATION)
Aalique Grahame22e49102018-12-18 14:23:57 -08006560 adev->enable_voicerx = false;
Carter Hsu2e429db2019-05-14 18:50:52 +08006561
6562 if (do_stop)
Zhou Songa8895042016-07-05 17:54:22 +08006563 status = stop_input_stream(in);
Quinn Malef6050362019-01-30 15:55:40 -08006564
George Gao3018ede2019-10-23 13:23:00 -07006565 if (in->source == AUDIO_SOURCE_VOICE_RECOGNITION) {
6566 if (adev->num_va_sessions > 0)
6567 adev->num_va_sessions--;
6568 }
Quinn Malef6050362019-01-30 15:55:40 -08006569
Eric Laurent150dbfe2013-02-27 14:31:02 -08006570 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006571 }
6572 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07006573 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006574 return status;
6575}
6576
Aalique Grahame22e49102018-12-18 14:23:57 -08006577static int in_dump(const struct audio_stream *stream,
6578 int fd)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006579{
Aalique Grahame22e49102018-12-18 14:23:57 -08006580 struct stream_in *in = (struct stream_in *)stream;
6581
6582 // We try to get the lock for consistency,
6583 // but it isn't necessary for these variables.
6584 // If we're not in standby, we may be blocked on a read.
6585 const bool locked = (pthread_mutex_trylock(&in->lock) == 0);
6586 dprintf(fd, " Standby: %s\n", in->standby ? "yes" : "no");
6587 dprintf(fd, " Frames read: %lld\n", (long long)in->frames_read);
6588 dprintf(fd, " Frames muted: %lld\n", (long long)in->frames_muted);
6589
6590 if (locked) {
6591 pthread_mutex_unlock(&in->lock);
6592 }
6593
6594 // dump error info
6595 (void)error_log_dump(
6596 in->error_log, fd, " " /* prefix */, 0 /* lines */, 0 /* limit_ns */);
6597
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006598 return 0;
6599}
6600
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306601static void in_snd_mon_cb(void * stream, struct str_parms * parms)
6602{
6603 if (!stream || !parms)
6604 return;
6605
6606 struct stream_in *in = (struct stream_in *)stream;
6607 struct audio_device *adev = in->dev;
6608
6609 card_status_t status;
6610 int card;
6611 if (parse_snd_card_status(parms, &card, &status) < 0)
6612 return;
6613
6614 pthread_mutex_lock(&adev->lock);
6615 bool valid_cb = (card == adev->snd_card);
6616 pthread_mutex_unlock(&adev->lock);
6617
6618 if (!valid_cb)
6619 return;
6620
6621 lock_input_stream(in);
6622 if (in->card_status != status)
6623 in->card_status = status;
6624 pthread_mutex_unlock(&in->lock);
6625
6626 ALOGW("in_snd_mon_cb for card %d usecase %s, status %s", card,
6627 use_case_table[in->usecase],
6628 status == CARD_STATUS_OFFLINE ? "offline" : "online");
6629
6630 // a better solution would be to report error back to AF and let
6631 // it put the stream to standby
6632 if (status == CARD_STATUS_OFFLINE)
6633 in_standby(&in->stream.common);
6634
6635 return;
6636}
6637
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006638int route_input_stream(struct stream_in *in,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006639 struct listnode *devices,
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006640 audio_source_t source)
6641{
6642 struct audio_device *adev = in->dev;
6643 int ret = 0;
6644
6645 lock_input_stream(in);
6646 pthread_mutex_lock(&adev->lock);
6647
6648 /* no audio source uses val == 0 */
6649 if ((in->source != source) && (source != AUDIO_SOURCE_DEFAULT)) {
6650 in->source = source;
6651 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
6652 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
6653 (voice_extn_compress_voip_is_format_supported(in->format)) &&
6654 (in->config.rate == 8000 || in->config.rate == 16000 ||
6655 in->config.rate == 32000 || in->config.rate == 48000 ) &&
6656 (audio_channel_count_from_in_mask(in->channel_mask) == 1)) {
6657 ret = voice_extn_compress_voip_open_input_stream(in);
6658 if (ret != 0) {
6659 ALOGE("%s: Compress voip input cannot be opened, error:%d",
6660 __func__, ret);
6661 }
6662 }
6663 }
6664
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006665 if (!compare_devices(&in->device_list, devices) && !list_empty(devices) &&
6666 is_audio_in_device_type(devices)) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006667 // Workaround: If routing to an non existing usb device, fail gracefully
6668 // The routing request will otherwise block during 10 second
6669 int card;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006670 struct str_parms *usb_addr =
6671 str_parms_create_str(get_usb_device_address(devices));
6672 if (is_usb_in_device_type(devices) && usb_addr &&
6673 (card = get_alive_usb_card(usb_addr)) >= 0) {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006674 ALOGW("%s: ignoring rerouting to non existing USB card %d", __func__, card);
6675 ret = -ENOSYS;
6676 } else {
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006677 /* If recording is in progress, change the tx device to new device */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006678 assign_devices(&in->device_list, devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006679 if (!in->standby && !in->is_st_session) {
6680 ALOGV("update input routing change");
6681 // inform adm before actual routing to prevent glitches.
6682 if (adev->adm_on_routing_change) {
6683 adev->adm_on_routing_change(adev->adm_data,
6684 in->capture_handle);
6685 ret = select_devices(adev, in->usecase);
6686 if (in->usecase == USECASE_AUDIO_RECORD_LOW_LATENCY)
6687 adev->adm_routing_changed = true;
6688 }
6689 }
6690 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006691 if (usb_addr)
6692 str_parms_destroy(usb_addr);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006693 }
6694 pthread_mutex_unlock(&adev->lock);
6695 pthread_mutex_unlock(&in->lock);
6696
6697 ALOGD("%s: exit: status(%d)", __func__, ret);
6698 return ret;
6699}
6700
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006701static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
6702{
6703 struct stream_in *in = (struct stream_in *)stream;
6704 struct audio_device *adev = in->dev;
6705 struct str_parms *parms;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006706 char value[32];
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006707 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006708
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05306709 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006710 parms = str_parms_create_str(kvpairs);
6711
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05306712 if (!parms)
6713 goto error;
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006714 lock_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08006715 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08006716
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07006717 ret = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_PROFILE, value, sizeof(value));
6718 if (ret >= 0) {
Dhananjay Kumar4d91c1a2016-12-01 23:27:29 +05306719 strlcpy(in->profile, value, sizeof(in->profile));
6720 ALOGV("updating stream profile with value '%s'", in->profile);
6721 audio_extn_utils_update_stream_input_app_type_cfg(adev->platform,
6722 &adev->streams_input_cfg_list,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08006723 &in->device_list, in->flags, in->format,
Dhananjay Kumar4d91c1a2016-12-01 23:27:29 +05306724 in->sample_rate, in->bit_width,
6725 in->profile, &in->app_type_cfg);
6726 }
6727
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006728 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08006729 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006730
6731 str_parms_destroy(parms);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05306732error:
Eric Laurent994a6932013-07-17 11:51:42 -07006733 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006734 return ret;
6735}
6736
6737static char* in_get_parameters(const struct audio_stream *stream,
6738 const char *keys)
6739{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006740 struct stream_in *in = (struct stream_in *)stream;
6741 struct str_parms *query = str_parms_create_str(keys);
6742 char *str;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006743 struct str_parms *reply = str_parms_create();
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07006744
6745 if (!query || !reply) {
Alexy Josephaee4fdd2016-01-29 13:02:07 -08006746 if (reply) {
6747 str_parms_destroy(reply);
6748 }
6749 if (query) {
6750 str_parms_destroy(query);
6751 }
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07006752 ALOGE("in_get_parameters: failed to create query or reply");
6753 return NULL;
6754 }
6755
Haynes Mathew George484e8d22017-07-31 18:55:17 -07006756 ALOGV("%s: enter: keys - %s %s ", __func__, use_case_table[in->usecase], keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006757
6758 voice_extn_in_get_parameters(in, query, reply);
6759
Haynes Mathew George484e8d22017-07-31 18:55:17 -07006760 stream_get_parameter_channels(query, reply,
6761 &in->supported_channel_masks[0]);
6762 stream_get_parameter_formats(query, reply,
6763 &in->supported_formats[0]);
6764 stream_get_parameter_rates(query, reply,
6765 &in->supported_sample_rates[0]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08006766 str = str_parms_to_str(reply);
6767 str_parms_destroy(query);
6768 str_parms_destroy(reply);
6769
6770 ALOGV("%s: exit: returns - %s", __func__, str);
6771 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006772}
6773
Aalique Grahame22e49102018-12-18 14:23:57 -08006774static int in_set_gain(struct audio_stream_in *stream,
6775 float gain)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006776{
Aalique Grahame22e49102018-12-18 14:23:57 -08006777 struct stream_in *in = (struct stream_in *)stream;
6778 char mixer_ctl_name[128];
6779 struct mixer_ctl *ctl;
6780 int ctl_value;
6781
6782 ALOGV("%s: gain %f", __func__, gain);
6783
6784 if (stream == NULL)
6785 return -EINVAL;
6786
6787 /* in_set_gain() only used to silence MMAP capture for now */
6788 if (in->usecase != USECASE_AUDIO_RECORD_MMAP)
6789 return -ENOSYS;
6790
6791 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name), "Capture %d Volume", in->pcm_device_id);
6792
6793 ctl = mixer_get_ctl_by_name(in->dev->mixer, mixer_ctl_name);
6794 if (!ctl) {
6795 ALOGW("%s: Could not get ctl for mixer cmd - %s",
6796 __func__, mixer_ctl_name);
6797 return -ENOSYS;
6798 }
6799
6800 if (gain < RECORD_GAIN_MIN)
6801 gain = RECORD_GAIN_MIN;
6802 else if (gain > RECORD_GAIN_MAX)
6803 gain = RECORD_GAIN_MAX;
6804 ctl_value = (int)(RECORD_VOLUME_CTL_MAX * gain);
6805
6806 mixer_ctl_set_value(ctl, 0, ctl_value);
6807
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006808 return 0;
6809}
6810
6811static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
6812 size_t bytes)
6813{
6814 struct stream_in *in = (struct stream_in *)stream;
Pallavid7c7a272018-01-16 11:22:55 +05306815
6816 if (in == NULL) {
6817 ALOGE("%s: stream_in ptr is NULL", __func__);
6818 return -EINVAL;
6819 }
6820
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006821 struct audio_device *adev = in->dev;
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +05306822 int ret = -1;
Dhananjay Kumar97b81e32019-05-15 21:00:21 +05306823 size_t bytes_read = 0, frame_size = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006824
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07006825 lock_input_stream(in);
Naresh Tanniru4c630392014-05-12 01:05:52 +05306826
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07006827 if (in->is_st_session) {
6828 ALOGVV(" %s: reading on st session bytes=%zu", __func__, bytes);
6829 /* Read from sound trigger HAL */
6830 audio_extn_sound_trigger_read(in, buffer, bytes);
Quinn Malef6050362019-01-30 15:55:40 -08006831 if (in->standby) {
George Gao3018ede2019-10-23 13:23:00 -07006832 if (adev->num_va_sessions < UINT_MAX)
6833 adev->num_va_sessions++;
Quinn Malef6050362019-01-30 15:55:40 -08006834 in->standby = 0;
6835 }
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07006836 pthread_mutex_unlock(&in->lock);
6837 return bytes;
6838 }
6839
Haynes Mathew George16081042017-05-31 17:16:49 -07006840 if (in->usecase == USECASE_AUDIO_RECORD_MMAP) {
6841 ret = -ENOSYS;
6842 goto exit;
6843 }
6844
Aniket Kumar Lata60586a92019-05-22 22:18:55 -07006845 if (in->usecase == USECASE_AUDIO_RECORD_LOW_LATENCY &&
6846 !in->standby && adev->adm_routing_changed) {
6847 ret = -ENOSYS;
6848 goto exit;
6849 }
6850
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006851 if (in->standby) {
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07006852 pthread_mutex_lock(&adev->lock);
6853 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
6854 ret = voice_extn_compress_voip_start_input_stream(in);
6855 else
6856 ret = start_input_stream(in);
George Gao3018ede2019-10-23 13:23:00 -07006857 if (!ret && in->source == AUDIO_SOURCE_VOICE_RECOGNITION) {
6858 if (adev->num_va_sessions < UINT_MAX)
6859 adev->num_va_sessions++;
6860 }
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07006861 pthread_mutex_unlock(&adev->lock);
6862 if (ret != 0) {
6863 goto exit;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006864 }
6865 in->standby = 0;
6866 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006867
Deeraj Soman30cc7ae2019-03-18 16:26:55 +05306868 /* Avoid read if capture_stopped is set */
6869 if (android_atomic_acquire_load(&(in->capture_stopped)) > 0) {
6870 ALOGD("%s: force stopped catpure session, ignoring read request", __func__);
6871 ret = -EINVAL;
6872 goto exit;
6873 }
6874
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006875 // what's the duration requested by the client?
6876 long ns = 0;
6877
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306878 if (in->pcm && in->config.rate)
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006879 ns = pcm_bytes_to_frames(in->pcm, bytes)*1000000000LL/
6880 in->config.rate;
6881
Aniket Kumar Lata60586a92019-05-22 22:18:55 -07006882 ret = request_in_focus(in, ns);
6883 if (ret != 0)
6884 goto exit;
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006885 bool use_mmap = is_mmap_usecase(in->usecase) || in->realtime;
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07006886
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306887 if (audio_extn_cin_attached_usecase(in->usecase)) {
6888 ret = audio_extn_cin_read(in, buffer, bytes, &bytes_read);
6889 } else if (in->pcm) {
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05306890 if (audio_extn_ssr_get_stream() == in) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07006891 ret = audio_extn_ssr_read(stream, buffer, bytes);
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05306892 } else if (audio_extn_compr_cap_usecase_supported(in->usecase)) {
Mingming Yine62d7842013-10-25 16:26:03 -07006893 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006894 } else if (use_mmap) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07006895 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Garmond Leunge2433c32017-09-28 21:51:22 -07006896 } else if (audio_extn_ffv_get_stream() == in) {
6897 ret = audio_extn_ffv_read(stream, buffer, bytes);
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05306898 } else {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07006899 ret = pcm_read(in->pcm, buffer, bytes);
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306900 /* data from DSP comes in 24_8 format, convert it to 8_24 */
6901 if (!ret && bytes > 0 && (in->format == AUDIO_FORMAT_PCM_8_24_BIT)) {
6902 if (audio_extn_utils_convert_format_24_8_to_8_24(buffer, bytes)
6903 != bytes) {
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05306904 ret = -EINVAL;
6905 goto exit;
6906 }
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306907 } else if (ret < 0) {
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05306908 ret = -errno;
6909 }
6910 }
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306911 /* bytes read is always set to bytes for non compress usecases */
6912 bytes_read = bytes;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006913 }
6914
Haynes Mathew George5beddd42016-06-27 18:33:40 -07006915 release_in_focus(in);
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07006916
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006917 /*
Quinn Malef6050362019-01-30 15:55:40 -08006918 * Instead of writing zeroes here, we could trust the hardware to always
6919 * provide zeroes when muted. This is also muted with voice recognition
6920 * usecases so that other clients do not have access to voice recognition
6921 * data.
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006922 */
Quinn Malef6050362019-01-30 15:55:40 -08006923 if ((ret == 0 && voice_get_mic_mute(adev) &&
6924 !voice_is_in_call_rec_stream(in) &&
6925 in->usecase != USECASE_AUDIO_RECORD_AFE_PROXY) ||
6926 (adev->num_va_sessions &&
6927 in->source != AUDIO_SOURCE_VOICE_RECOGNITION &&
6928 property_get_bool("persist.vendor.audio.va_concurrency_mute_enabled",
6929 false)))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006930 memset(buffer, 0, bytes);
6931
6932exit:
Dhananjay Kumar97b81e32019-05-15 21:00:21 +05306933 frame_size = audio_stream_in_frame_size(stream);
6934 if (frame_size > 0)
6935 in->frames_read += bytes_read/frame_size;
6936
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07006937 if (-ENETRESET == ret)
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05306938 in->card_status = CARD_STATUS_OFFLINE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006939 pthread_mutex_unlock(&in->lock);
6940
6941 if (ret != 0) {
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05306942 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05306943 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05306944 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05306945 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05306946 in->standby = true;
6947 }
Sharad Sangled17c9122017-03-20 15:58:52 +05306948 if (!audio_extn_cin_attached_usecase(in->usecase)) {
6949 bytes_read = bytes;
6950 memset(buffer, 0, bytes);
6951 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006952 in_standby(&in->stream.common);
Aniket Kumar Lata60586a92019-05-22 22:18:55 -07006953 if (in->usecase == USECASE_AUDIO_RECORD_LOW_LATENCY)
6954 adev->adm_routing_changed = false;
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07006955 ALOGV("%s: read failed status %d- sleeping for buffer duration", __func__, ret);
Ashish Jainbbce4322016-02-16 13:25:27 +05306956 usleep((uint64_t)bytes * 1000000 / audio_stream_in_frame_size(stream) /
Naresh Tanniru4c630392014-05-12 01:05:52 +05306957 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006958 }
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05306959 return bytes_read;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006960}
6961
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07006962static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08006963{
6964 return 0;
6965}
6966
Aalique Grahame22e49102018-12-18 14:23:57 -08006967static int in_get_capture_position(const struct audio_stream_in *stream,
6968 int64_t *frames, int64_t *time)
6969{
6970 if (stream == NULL || frames == NULL || time == NULL) {
6971 return -EINVAL;
6972 }
6973 struct stream_in *in = (struct stream_in *)stream;
6974 int ret = -ENOSYS;
6975
6976 lock_input_stream(in);
6977 // note: ST sessions do not close the alsa pcm driver synchronously
6978 // on standby. Therefore, we may return an error even though the
6979 // pcm stream is still opened.
6980 if (in->standby) {
6981 ALOGE_IF(in->pcm != NULL && !in->is_st_session,
6982 "%s stream in standby but pcm not NULL for non ST session", __func__);
6983 goto exit;
6984 }
6985 if (in->pcm) {
6986 struct timespec timestamp;
6987 unsigned int avail;
6988 if (pcm_get_htimestamp(in->pcm, &avail, &timestamp) == 0) {
6989 *frames = in->frames_read + avail;
6990 *time = timestamp.tv_sec * 1000000000LL + timestamp.tv_nsec;
6991 ret = 0;
6992 }
6993 }
6994exit:
6995 pthread_mutex_unlock(&in->lock);
6996 return ret;
6997}
6998
Carter Hsu2e429db2019-05-14 18:50:52 +08006999static int in_update_effect_list(bool add, effect_handle_t effect,
7000 struct listnode *head)
7001{
7002 struct listnode *node;
7003 struct in_effect_list *elist = NULL;
7004 struct in_effect_list *target = NULL;
7005 int ret = 0;
7006
7007 if (!head)
7008 return ret;
7009
7010 list_for_each(node, head) {
7011 elist = node_to_item(node, struct in_effect_list, list);
7012 if (elist->handle == effect) {
7013 target = elist;
7014 break;
7015 }
7016 }
7017
7018 if (add) {
7019 if (target) {
7020 ALOGD("effect %p already exist", effect);
7021 return ret;
7022 }
7023
7024 target = (struct in_effect_list *)
7025 calloc(1, sizeof(struct in_effect_list));
7026
7027 if (!target) {
7028 ALOGE("%s:fail to allocate memory", __func__);
7029 return -ENOMEM;
7030 }
7031
7032 target->handle = effect;
7033 list_add_tail(head, &target->list);
7034 } else {
7035 if (target) {
7036 list_remove(&target->list);
7037 free(target);
7038 }
7039 }
7040
7041 return ret;
7042}
7043
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007044static int add_remove_audio_effect(const struct audio_stream *stream,
7045 effect_handle_t effect,
7046 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007047{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007048 struct stream_in *in = (struct stream_in *)stream;
7049 int status = 0;
7050 effect_descriptor_t desc;
7051
7052 status = (*effect)->get_descriptor(effect, &desc);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07007053 ALOGV("%s: status %d in->standby %d enable:%d", __func__, status, in->standby, enable);
7054
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007055 if (status != 0)
7056 return status;
7057
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07007058 lock_input_stream(in);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007059 pthread_mutex_lock(&in->dev->lock);
kunleizd96526c2018-04-09 11:12:32 +08007060 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
Carter Hsu2e429db2019-05-14 18:50:52 +08007061 in->source == AUDIO_SOURCE_VOICE_RECOGNITION ||
7062 adev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007063 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
Carter Hsu2e429db2019-05-14 18:50:52 +08007064
7065 in_update_effect_list(enable, effect, &in->aec_list);
7066 enable = !list_empty(&in->aec_list);
7067 if (enable == in->enable_aec)
7068 goto exit;
7069
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007070 in->enable_aec = enable;
Carter Hsu2e429db2019-05-14 18:50:52 +08007071 ALOGD("AEC enable %d", enable);
7072
Aalique Grahame22e49102018-12-18 14:23:57 -08007073 if (in->source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
7074 in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) {
7075 in->dev->enable_voicerx = enable;
7076 struct audio_usecase *usecase;
7077 struct listnode *node;
7078 list_for_each(node, &in->dev->usecase_list) {
7079 usecase = node_to_item(node, struct audio_usecase, list);
7080 if (usecase->type == PCM_PLAYBACK)
7081 select_devices(in->dev, usecase->id);
7082 }
7083 }
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07007084 if (!in->standby) {
7085 if (enable_disable_effect(in->dev, EFFECT_AEC, enable) == ENOSYS)
7086 select_devices(in->dev, in->usecase);
7087 }
7088
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007089 }
Carter Hsu2e429db2019-05-14 18:50:52 +08007090 if (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0) {
7091
7092 in_update_effect_list(enable, effect, &in->ns_list);
7093 enable = !list_empty(&in->ns_list);
7094 if (enable == in->enable_ns)
7095 goto exit;
7096
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08007097 in->enable_ns = enable;
Carter Hsu2e429db2019-05-14 18:50:52 +08007098 ALOGD("NS enable %d", enable);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07007099 if (!in->standby) {
kunleizd96526c2018-04-09 11:12:32 +08007100 if (in->source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
7101 in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) {
Vikram Pandurangadf59cae2017-08-03 18:04:55 -07007102 if (enable_disable_effect(in->dev, EFFECT_NS, enable) == ENOSYS)
7103 select_devices(in->dev, in->usecase);
7104 } else
7105 select_devices(in->dev, in->usecase);
7106 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08007107 }
Carter Hsu2e429db2019-05-14 18:50:52 +08007108exit:
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007109 pthread_mutex_unlock(&in->dev->lock);
7110 pthread_mutex_unlock(&in->lock);
7111
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007112 return 0;
7113}
7114
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007115static int in_add_audio_effect(const struct audio_stream *stream,
7116 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007117{
Eric Laurent994a6932013-07-17 11:51:42 -07007118 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007119 return add_remove_audio_effect(stream, effect, true);
7120}
7121
7122static int in_remove_audio_effect(const struct audio_stream *stream,
7123 effect_handle_t effect)
7124{
Eric Laurent994a6932013-07-17 11:51:42 -07007125 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07007126 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007127}
7128
Derek Chenf939fb72018-11-13 13:34:41 -08007129streams_input_ctxt_t *in_get_stream(struct audio_device *dev,
7130 audio_io_handle_t input)
7131{
7132 struct listnode *node;
7133
7134 list_for_each(node, &dev->active_inputs_list) {
7135 streams_input_ctxt_t *in_ctxt = node_to_item(node,
7136 streams_input_ctxt_t,
7137 list);
7138 if (in_ctxt->input->capture_handle == input) {
7139 return in_ctxt;
7140 }
7141 }
7142 return NULL;
7143}
7144
7145streams_output_ctxt_t *out_get_stream(struct audio_device *dev,
7146 audio_io_handle_t output)
7147{
7148 struct listnode *node;
7149
7150 list_for_each(node, &dev->active_outputs_list) {
7151 streams_output_ctxt_t *out_ctxt = node_to_item(node,
7152 streams_output_ctxt_t,
7153 list);
7154 if (out_ctxt->output->handle == output) {
7155 return out_ctxt;
7156 }
7157 }
7158 return NULL;
7159}
7160
Haynes Mathew George16081042017-05-31 17:16:49 -07007161static int in_stop(const struct audio_stream_in* stream)
7162{
7163 struct stream_in *in = (struct stream_in *)stream;
7164 struct audio_device *adev = in->dev;
7165
7166 int ret = -ENOSYS;
7167 ALOGV("%s", __func__);
7168 pthread_mutex_lock(&adev->lock);
7169 if (in->usecase == USECASE_AUDIO_RECORD_MMAP && !in->standby &&
7170 in->capture_started && in->pcm != NULL) {
7171 pcm_stop(in->pcm);
7172 ret = stop_input_stream(in);
7173 in->capture_started = false;
7174 }
7175 pthread_mutex_unlock(&adev->lock);
7176 return ret;
7177}
7178
7179static int in_start(const struct audio_stream_in* stream)
7180{
7181 struct stream_in *in = (struct stream_in *)stream;
7182 struct audio_device *adev = in->dev;
7183 int ret = -ENOSYS;
7184
7185 ALOGV("%s in %p", __func__, in);
7186 pthread_mutex_lock(&adev->lock);
7187 if (in->usecase == USECASE_AUDIO_RECORD_MMAP && !in->standby &&
7188 !in->capture_started && in->pcm != NULL) {
7189 if (!in->capture_started) {
7190 ret = start_input_stream(in);
7191 if (ret == 0) {
7192 in->capture_started = true;
7193 }
7194 }
7195 }
7196 pthread_mutex_unlock(&adev->lock);
7197 return ret;
7198}
7199
Phil Burke0a86d12019-02-16 22:28:11 -08007200// Read offset for the positional timestamp from a persistent vendor property.
7201// This is to workaround apparent inaccuracies in the timing information that
7202// is used by the AAudio timing model. The inaccuracies can cause glitches.
7203static int64_t in_get_mmap_time_offset() {
7204 const int32_t kDefaultOffsetMicros = 0;
7205 int32_t mmap_time_offset_micros = property_get_int32(
Weiyin Jiangbd68b4d2019-05-17 16:29:50 +08007206 "persist.vendor.audio.in_mmap_delay_micros", kDefaultOffsetMicros);
Phil Burke0a86d12019-02-16 22:28:11 -08007207 ALOGI("mmap_time_offset_micros = %d for input", mmap_time_offset_micros);
7208 return mmap_time_offset_micros * (int64_t)1000;
7209}
7210
Haynes Mathew George16081042017-05-31 17:16:49 -07007211static int in_create_mmap_buffer(const struct audio_stream_in *stream,
7212 int32_t min_size_frames,
7213 struct audio_mmap_buffer_info *info)
7214{
7215 struct stream_in *in = (struct stream_in *)stream;
7216 struct audio_device *adev = in->dev;
7217 int ret = 0;
Aniket Kumar Lataf9f246e2017-09-15 15:20:16 -07007218 unsigned int offset1 = 0;
7219 unsigned int frames1 = 0;
Haynes Mathew George16081042017-05-31 17:16:49 -07007220 const char *step = "";
Arun Mirpuri5d170872019-03-26 13:21:31 -07007221 uint32_t mmap_size = 0;
7222 uint32_t buffer_size = 0;
Haynes Mathew George16081042017-05-31 17:16:49 -07007223
7224 pthread_mutex_lock(&adev->lock);
7225 ALOGV("%s in %p", __func__, in);
7226
Sharad Sanglec6f32552018-05-04 16:15:38 +05307227 if (CARD_STATUS_OFFLINE == in->card_status||
7228 CARD_STATUS_OFFLINE == adev->card_status) {
7229 ALOGW("in->card_status or adev->card_status offline, try again");
7230 ret = -EIO;
7231 goto exit;
7232 }
7233
Haynes Mathew George16081042017-05-31 17:16:49 -07007234 if (info == NULL || min_size_frames == 0) {
7235 ALOGE("%s invalid argument info %p min_size_frames %d", __func__, info, min_size_frames);
7236 ret = -EINVAL;
7237 goto exit;
7238 }
7239 if (in->usecase != USECASE_AUDIO_RECORD_MMAP || !in->standby) {
7240 ALOGE("%s: usecase = %d, standby = %d", __func__, in->usecase, in->standby);
7241 ALOGV("%s in %p", __func__, in);
7242 ret = -ENOSYS;
7243 goto exit;
7244 }
7245 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
7246 if (in->pcm_device_id < 0) {
7247 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
7248 __func__, in->pcm_device_id, in->usecase);
7249 ret = -EINVAL;
7250 goto exit;
7251 }
7252
7253 adjust_mmap_period_count(&in->config, min_size_frames);
7254
7255 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
7256 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
7257 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
7258 (PCM_IN | PCM_MMAP | PCM_NOIRQ | PCM_MONOTONIC), &in->config);
Satish Babu Patakokila54ce83d2018-07-06 18:00:37 +05307259 if (errno == ENETRESET && !pcm_is_ready(in->pcm)) {
Sharad Sanglec6f32552018-05-04 16:15:38 +05307260 ALOGE("%s: pcm_open failed errno:%d\n", __func__, errno);
7261 in->card_status = CARD_STATUS_OFFLINE;
7262 adev->card_status = CARD_STATUS_OFFLINE;
7263 ret = -EIO;
7264 goto exit;
7265 }
7266
Haynes Mathew George16081042017-05-31 17:16:49 -07007267 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
7268 step = "open";
7269 ret = -ENODEV;
7270 goto exit;
7271 }
7272
7273 ret = pcm_mmap_begin(in->pcm, &info->shared_memory_address, &offset1, &frames1);
7274 if (ret < 0) {
7275 step = "begin";
7276 goto exit;
7277 }
Haynes Mathew George16081042017-05-31 17:16:49 -07007278
Arun Mirpuri5d170872019-03-26 13:21:31 -07007279 info->buffer_size_frames = pcm_get_buffer_size(in->pcm);
7280 buffer_size = pcm_frames_to_bytes(in->pcm, info->buffer_size_frames);
7281 info->burst_size_frames = in->config.period_size;
7282 ret = platform_get_mmap_data_fd(adev->platform,
7283 in->pcm_device_id, 1 /*capture*/,
7284 &info->shared_memory_fd,
7285 &mmap_size);
7286 if (ret < 0) {
7287 // Fall back to non exclusive mode
7288 info->shared_memory_fd = pcm_get_poll_fd(in->pcm);
7289 } else {
Phil Burkd898ba62019-06-20 12:49:01 -07007290 in->mmap_shared_memory_fd = info->shared_memory_fd; // for closing later
7291 ALOGV("%s: opened mmap_shared_memory_fd = %d", __func__, in->mmap_shared_memory_fd);
7292
Arun Mirpuri5d170872019-03-26 13:21:31 -07007293 if (mmap_size < buffer_size) {
7294 step = "mmap";
7295 goto exit;
7296 }
7297 // FIXME: indicate exclusive mode support by returning a negative buffer size
7298 info->buffer_size_frames *= -1;
7299 }
7300
7301 memset(info->shared_memory_address, 0, buffer_size);
Haynes Mathew George16081042017-05-31 17:16:49 -07007302
7303 ret = pcm_mmap_commit(in->pcm, 0, MMAP_PERIOD_SIZE);
7304 if (ret < 0) {
7305 step = "commit";
7306 goto exit;
7307 }
7308
Phil Burke0a86d12019-02-16 22:28:11 -08007309 in->mmap_time_offset_nanos = in_get_mmap_time_offset();
7310
Haynes Mathew George16081042017-05-31 17:16:49 -07007311 in->standby = false;
7312 ret = 0;
7313
7314 ALOGV("%s: got mmap buffer address %p info->buffer_size_frames %d",
7315 __func__, info->shared_memory_address, info->buffer_size_frames);
7316
7317exit:
7318 if (ret != 0) {
7319 if (in->pcm == NULL) {
7320 ALOGE("%s: %s - %d", __func__, step, ret);
7321 } else {
7322 ALOGE("%s: %s %s", __func__, step, pcm_get_error(in->pcm));
7323 pcm_close(in->pcm);
7324 in->pcm = NULL;
7325 }
7326 }
7327 pthread_mutex_unlock(&adev->lock);
7328 return ret;
7329}
7330
7331static int in_get_mmap_position(const struct audio_stream_in *stream,
7332 struct audio_mmap_position *position)
7333{
7334 struct stream_in *in = (struct stream_in *)stream;
7335 ALOGVV("%s", __func__);
7336 if (position == NULL) {
7337 return -EINVAL;
7338 }
7339 if (in->usecase != USECASE_AUDIO_RECORD_MMAP) {
7340 return -ENOSYS;
7341 }
7342 if (in->pcm == NULL) {
7343 return -ENOSYS;
7344 }
7345 struct timespec ts = { 0, 0 };
7346 int ret = pcm_mmap_get_hw_ptr(in->pcm, (unsigned int *)&position->position_frames, &ts);
7347 if (ret < 0) {
7348 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
7349 return ret;
7350 }
Phil Burke0a86d12019-02-16 22:28:11 -08007351 position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec
7352 + in->mmap_time_offset_nanos;
Haynes Mathew George16081042017-05-31 17:16:49 -07007353 return 0;
7354}
7355
Naresh Tannirudcb47c52018-06-25 16:23:32 +05307356static int in_get_active_microphones(const struct audio_stream_in *stream,
7357 struct audio_microphone_characteristic_t *mic_array,
7358 size_t *mic_count) {
7359 struct stream_in *in = (struct stream_in *)stream;
7360 struct audio_device *adev = in->dev;
7361 ALOGVV("%s", __func__);
7362
7363 lock_input_stream(in);
7364 pthread_mutex_lock(&adev->lock);
7365 int ret = platform_get_active_microphones(adev->platform,
7366 audio_channel_count_from_in_mask(in->channel_mask),
7367 in->usecase, mic_array, mic_count);
7368 pthread_mutex_unlock(&adev->lock);
7369 pthread_mutex_unlock(&in->lock);
7370
7371 return ret;
7372}
7373
7374static int adev_get_microphones(const struct audio_hw_device *dev,
7375 struct audio_microphone_characteristic_t *mic_array,
7376 size_t *mic_count) {
7377 struct audio_device *adev = (struct audio_device *)dev;
7378 ALOGVV("%s", __func__);
7379
7380 pthread_mutex_lock(&adev->lock);
7381 int ret = platform_get_microphones(adev->platform, mic_array, mic_count);
7382 pthread_mutex_unlock(&adev->lock);
7383
7384 return ret;
7385}
juyuchendb308c22019-01-21 11:57:17 -07007386
7387static void in_update_sink_metadata(struct audio_stream_in *stream,
7388 const struct sink_metadata *sink_metadata) {
7389
7390 if (stream == NULL
7391 || sink_metadata == NULL
7392 || sink_metadata->tracks == NULL) {
7393 return;
7394 }
7395
7396 int error = 0;
7397 struct stream_in *in = (struct stream_in *)stream;
7398 struct audio_device *adev = in->dev;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007399 struct listnode devices;
7400
7401 list_init(&devices);
juyuchendb308c22019-01-21 11:57:17 -07007402
7403 if (sink_metadata->track_count != 0)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007404 reassign_device_list(&devices, sink_metadata->tracks->dest_device, "");
juyuchendb308c22019-01-21 11:57:17 -07007405
7406 lock_input_stream(in);
7407 pthread_mutex_lock(&adev->lock);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007408 ALOGV("%s: in->usecase: %d, device: %x", __func__, in->usecase, get_device_types(&devices));
juyuchendb308c22019-01-21 11:57:17 -07007409
7410 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007411 && !list_empty(&devices)
juyuchendb308c22019-01-21 11:57:17 -07007412 && adev->voice_tx_output != NULL) {
7413 /* Use the rx device from afe-proxy record to route voice call because
7414 there is no routing if tx device is on primary hal and rx device
7415 is on other hal during voice call. */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007416 assign_devices(&adev->voice_tx_output->device_list, &devices);
juyuchendb308c22019-01-21 11:57:17 -07007417
7418 if (!voice_is_call_state_active(adev)) {
7419 if (adev->mode == AUDIO_MODE_IN_CALL) {
7420 adev->current_call_output = adev->voice_tx_output;
7421 error = voice_start_call(adev);
7422 if (error != 0)
7423 ALOGE("%s: start voice call failed %d", __func__, error);
7424 }
7425 } else {
7426 adev->current_call_output = adev->voice_tx_output;
7427 voice_update_devices_for_all_voice_usecases(adev);
7428 }
7429 }
7430
7431 pthread_mutex_unlock(&adev->lock);
7432 pthread_mutex_unlock(&in->lock);
7433}
7434
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +05307435int adev_open_output_stream(struct audio_hw_device *dev,
Haynes Mathew George16081042017-05-31 17:16:49 -07007436 audio_io_handle_t handle,
7437 audio_devices_t devices,
7438 audio_output_flags_t flags,
7439 struct audio_config *config,
7440 struct audio_stream_out **stream_out,
Derek Chenf6318be2017-06-12 17:16:24 -04007441 const char *address)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007442{
7443 struct audio_device *adev = (struct audio_device *)dev;
7444 struct stream_out *out;
Gangadhar Sb0210342019-02-22 17:39:41 +05307445 int ret = 0, ip_hdlr_stream = 0, ip_hdlr_dev = 0;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07007446 audio_format_t format;
Ben Rombergerd771a7c2017-02-22 18:05:17 -08007447 struct adsp_hdlr_stream_cfg hdlr_stream_cfg;
Manish Dewangan21a850a2017-08-14 12:03:55 +05307448 bool is_direct_passthough = false;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007449 bool is_hdmi = devices & AUDIO_DEVICE_OUT_AUX_DIGITAL;
7450 bool is_usb_dev = audio_is_usb_out_device(devices) &&
7451 (devices != AUDIO_DEVICE_OUT_USB_ACCESSORY);
7452 bool direct_dev = is_hdmi || is_usb_dev;
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007453 bool use_db_as_primary =
vivek mehtaae1018c2019-05-09 12:19:57 -07007454 property_get_bool("vendor.audio.feature.deepbuffer_as_primary.enable",
7455 false);
Vignesh Kulothungana6927272019-02-20 15:17:07 -08007456 bool force_haptic_path =
7457 property_get_bool("vendor.audio.test_haptic", false);
Aniket Kumar Lata23d8cbf2019-04-10 19:54:46 -07007458 bool is_voip_rx = flags & AUDIO_OUTPUT_FLAG_VOIP_RX;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007459
kunleizdff872d2018-08-20 14:40:33 +08007460 if (is_usb_dev && (!audio_extn_usb_connected(NULL))) {
kunleizd6a9e0c2018-07-30 15:38:52 +08007461 is_usb_dev = false;
7462 devices = AUDIO_DEVICE_OUT_SPEAKER;
7463 ALOGW("%s: ignore set device to non existing USB card, use output device(%#x)",
7464 __func__, devices);
7465 }
7466
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007467 *stream_out = NULL;
Naresh Tanniru80659832014-06-04 18:17:56 +05307468
Rahul Sharma99770982019-03-06 17:05:26 +05307469 pthread_mutex_lock(&adev->lock);
7470 if (out_get_stream(adev, handle) != NULL) {
7471 ALOGW("%s, output stream already opened", __func__);
7472 ret = -EEXIST;
7473 }
7474 pthread_mutex_unlock(&adev->lock);
7475 if (ret)
7476 return ret;
7477
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007478 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
7479
Mingming Yin3a941d42016-02-17 18:08:05 -08007480 ALOGD("%s: enter: format(%#x) sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
Derek Chenf6318be2017-06-12 17:16:24 -04007481 stream_handle(%p) address(%s)", __func__, config->format, config->sample_rate, config->channel_mask,
7482 devices, flags, &out->stream, address);
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05307483
7484
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08007485 if (!out) {
7486 return -ENOMEM;
7487 }
7488
Haynes Mathew George204045b2015-02-25 20:32:03 -08007489 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07007490 pthread_mutex_init(&out->pre_lock, (const pthread_mutexattr_t *) NULL);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05307491 pthread_mutex_init(&out->compr_mute_lock, (const pthread_mutexattr_t *) NULL);
Zhou Song48453a02018-01-10 17:50:59 +08007492 pthread_mutex_init(&out->position_query_lock, (const pthread_mutexattr_t *) NULL);
Haynes Mathew George204045b2015-02-25 20:32:03 -08007493 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
7494
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007495 if (devices == AUDIO_DEVICE_NONE)
7496 devices = AUDIO_DEVICE_OUT_SPEAKER;
7497
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007498 out->flags = flags;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007499 list_init(&out->device_list);
7500 update_device_list(&out->device_list, devices, address, true /* add devices */);
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07007501 out->dev = adev;
Aalique Grahame65780b52017-09-27 14:59:56 -07007502 out->hal_op_format = out->hal_ip_format = format = out->format = config->format;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007503 out->sample_rate = config->sample_rate;
Sachin Mohan Gadag3d09acd2017-06-19 12:43:44 +05307504 out->channel_mask = config->channel_mask;
Ramjee Singh5857aeb2017-08-03 19:18:50 +05307505 if (out->channel_mask == AUDIO_CHANNEL_NONE)
7506 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
7507 else
7508 out->supported_channel_masks[0] = out->channel_mask;
Eric Laurentc4aef752013-09-12 17:45:53 -07007509 out->handle = handle;
Mingming Yin3ee55c62014-08-04 14:23:35 -07007510 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Alexy Josephaa54c872014-12-03 02:46:47 -08007511 out->non_blocking = 0;
Ashish Jain83a6cc22016-06-28 14:34:17 +05307512 out->convert_buffer = NULL;
Ashish Jain1b9b30c2017-05-18 20:57:40 +05307513 out->started = 0;
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05307514 out->a2dp_compress_mute = false;
Aniket Kumar Lata932f4872017-11-06 18:29:44 -08007515 out->hal_output_suspend_supported = 0;
7516 out->dynamic_pm_qos_config_supported = 0;
Surendar Karkaf51b5842018-04-26 11:28:38 +05307517 out->set_dual_mono = false;
Manisha Agarwal7b3e3772019-02-20 14:33:45 +05307518 out->prev_card_status_offline = false;
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +05307519 out->pspd_coeff_sent = false;
Phil Burkd898ba62019-06-20 12:49:01 -07007520 out->mmap_shared_memory_fd = -1; // not open
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08007521
Nikhil Laturkar26b690b2017-07-25 11:06:14 +05307522 if ((flags & AUDIO_OUTPUT_FLAG_BD) &&
Satish Babu Patakokila37e7c482018-02-02 11:50:06 +05307523 (property_get_bool("vendor.audio.matrix.limiter.enable", false)))
Ben Romberger6c4d3812017-06-13 17:46:45 -07007524 platform_set_device_params(out, DEVICE_PARAM_LIMITER_ID, 1);
7525
Aalique Grahame22e49102018-12-18 14:23:57 -08007526 if (direct_dev &&
7527 (audio_is_linear_pcm(out->format) ||
7528 config->format == AUDIO_FORMAT_DEFAULT) &&
7529 out->flags == AUDIO_OUTPUT_FLAG_NONE) {
7530 audio_format_t req_format = config->format;
7531 audio_channel_mask_t req_channel_mask = config->channel_mask;
7532 uint32_t req_sample_rate = config->sample_rate;
7533
7534 pthread_mutex_lock(&adev->lock);
7535 if (is_hdmi) {
7536 ALOGV("AUDIO_DEVICE_OUT_AUX_DIGITAL and DIRECT|OFFLOAD, check hdmi caps");
7537 ret = read_hdmi_sink_caps(out);
7538 if (config->sample_rate == 0)
7539 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
7540 if (config->channel_mask == AUDIO_CHANNEL_NONE)
7541 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
7542 if (config->format == AUDIO_FORMAT_DEFAULT)
7543 config->format = AUDIO_FORMAT_PCM_16_BIT;
7544 } else if (is_usb_dev) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007545 ret = read_usb_sup_params_and_compare(true /*is_playback*/,
7546 &config->format,
7547 &out->supported_formats[0],
7548 MAX_SUPPORTED_FORMATS,
7549 &config->channel_mask,
7550 &out->supported_channel_masks[0],
7551 MAX_SUPPORTED_CHANNEL_MASKS,
7552 &config->sample_rate,
7553 &out->supported_sample_rates[0],
7554 MAX_SUPPORTED_SAMPLE_RATES);
7555 ALOGV("plugged dev USB ret %d", ret);
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007556 }
Aalique Grahame22e49102018-12-18 14:23:57 -08007557
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007558 pthread_mutex_unlock(&adev->lock);
7559 if (ret != 0) {
Mingming Yin3a941d42016-02-17 18:08:05 -08007560 if (ret == -ENOSYS) {
7561 /* ignore and go with default */
7562 ret = 0;
Aalique Grahame22e49102018-12-18 14:23:57 -08007563 }
7564 // For MMAP NO IRQ, allow conversions in ADSP
7565 else if (is_hdmi || (flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) == 0)
7566 goto error_open;
7567 else {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007568 ALOGE("error reading direct dev sink caps");
Mingming Yin3a941d42016-02-17 18:08:05 -08007569 goto error_open;
7570 }
Aalique Grahame22e49102018-12-18 14:23:57 -08007571
7572 if (req_sample_rate != 0 && config->sample_rate != req_sample_rate)
7573 config->sample_rate = req_sample_rate;
7574 if (req_channel_mask != AUDIO_CHANNEL_NONE && config->channel_mask != req_channel_mask)
7575 config->channel_mask = req_channel_mask;
7576 if (req_format != AUDIO_FORMAT_DEFAULT && config->format != req_format)
7577 config->format = req_format;
Mingming Yin3a941d42016-02-17 18:08:05 -08007578 }
Aalique Grahame22e49102018-12-18 14:23:57 -08007579
7580 out->sample_rate = config->sample_rate;
7581 out->channel_mask = config->channel_mask;
7582 out->format = config->format;
7583 if (is_hdmi) {
7584 out->usecase = USECASE_AUDIO_PLAYBACK_HIFI;
7585 out->config = pcm_config_hdmi_multi;
7586 } else if (flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) {
7587 out->usecase = USECASE_AUDIO_PLAYBACK_MMAP;
7588 out->config = pcm_config_mmap_playback;
7589 out->stream.start = out_start;
7590 out->stream.stop = out_stop;
7591 out->stream.create_mmap_buffer = out_create_mmap_buffer;
7592 out->stream.get_mmap_position = out_get_mmap_position;
7593 } else {
7594 out->usecase = USECASE_AUDIO_PLAYBACK_HIFI;
7595 out->config = pcm_config_hifi;
7596 }
7597
7598 out->config.rate = out->sample_rate;
7599 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
7600 if (is_hdmi) {
7601 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels *
7602 audio_bytes_per_sample(out->format));
7603 }
7604 out->config.format = pcm_format_from_audio_format(out->format);
Mingming Yin3a941d42016-02-17 18:08:05 -08007605 }
7606
Derek Chenf6318be2017-06-12 17:16:24 -04007607 /* validate bus device address */
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007608 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_BUS)) {
Derek Chenf6318be2017-06-12 17:16:24 -04007609 /* extract car audio stream index */
7610 out->car_audio_stream =
7611 audio_extn_auto_hal_get_car_audio_stream_from_address(address);
7612 if (out->car_audio_stream < 0) {
7613 ALOGE("%s: invalid car audio stream %x",
7614 __func__, out->car_audio_stream);
7615 ret = -EINVAL;
7616 goto error_open;
7617 }
7618 /* save car audio stream and address for bus device */
7619 strlcpy(out->address, address, AUDIO_DEVICE_MAX_ADDRESS_LEN);
7620 ALOGV("%s: address %s, car_audio_stream %x",
7621 __func__, out->address, out->car_audio_stream);
7622 }
7623
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007624 /* Check for VOIP usecase */
Aniket Kumar Lata23d8cbf2019-04-10 19:54:46 -07007625 if (is_voip_rx) {
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007626 if (!voice_extn_is_compress_voip_supported()) {
7627 if (out->sample_rate == 8000 || out->sample_rate == 16000 ||
7628 out->sample_rate == 32000 || out->sample_rate == 48000) {
Aniket Kumar Lata4f9a2a52019-05-09 18:44:09 -07007629 out->channel_mask = audio_extn_utils_is_vendor_enhanced_fwk() ?
7630 AUDIO_CHANNEL_OUT_MONO : AUDIO_CHANNEL_OUT_STEREO;
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007631 out->usecase = USECASE_AUDIO_PLAYBACK_VOIP;
7632 out->format = AUDIO_FORMAT_PCM_16_BIT;
Aniket Kumar Lata8426d1f2019-06-10 15:25:53 -07007633 out->volume_l = INVALID_OUT_VOLUME;
7634 out->volume_r = INVALID_OUT_VOLUME;
Vikram Panduranga93f080e2017-06-07 18:16:14 -07007635
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007636 out->config = default_pcm_config_voip_copp;
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007637 out->config.rate = out->sample_rate;
Aniket Kumar Lata1e344f22019-06-19 17:09:01 -07007638 uint32_t channel_count =
7639 audio_channel_count_from_out_mask(out->channel_mask);
7640 uint32_t buffer_size = get_stream_buffer_size(DEFAULT_VOIP_BUF_DURATION_MS,
7641 out->sample_rate, out->format,
7642 channel_count, false);
7643 uint32_t frame_size = audio_bytes_per_sample(out->format) * channel_count;
7644 if (frame_size != 0)
7645 out->config.period_size = buffer_size / frame_size;
7646 else
7647 ALOGW("%s: frame size is 0 for format %#x", __func__, out->format);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007648 }
7649 } else {
7650 if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION ||
7651 voice_extn_compress_voip_is_active(out->dev)) &&
7652 (voice_extn_compress_voip_is_config_supported(config))) {
7653 ret = voice_extn_compress_voip_open_output_stream(out);
7654 if (ret != 0) {
7655 ALOGE("%s: Compress voip output cannot be opened, error:%d",
7656 __func__, ret);
7657 goto error_open;
7658 }
Sujin Panicker19027262019-09-16 18:28:06 +05307659 } else {
7660 out->usecase = GET_USECASE_AUDIO_PLAYBACK_PRIMARY(use_db_as_primary);
7661 out->config = GET_PCM_CONFIG_AUDIO_PLAYBACK_PRIMARY(use_db_as_primary);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08007662 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08007663 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07007664 } else if (audio_is_linear_pcm(out->format) &&
7665 out->flags == AUDIO_OUTPUT_FLAG_NONE && is_usb_dev) {
7666 out->channel_mask = config->channel_mask;
7667 out->sample_rate = config->sample_rate;
7668 out->format = config->format;
7669 out->usecase = USECASE_AUDIO_PLAYBACK_HIFI;
7670 // does this change?
7671 out->config = is_hdmi ? pcm_config_hdmi_multi : pcm_config_hifi;
7672 out->config.rate = config->sample_rate;
7673 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
7674 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels *
7675 audio_bytes_per_sample(config->format));
7676 out->config.format = pcm_format_from_audio_format(out->format);
vivek mehta0ea887a2015-08-26 14:01:20 -07007677 } else if ((out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) ||
Dhananjay Kumarac341582017-02-23 23:42:25 +05307678 (out->flags == AUDIO_OUTPUT_FLAG_DIRECT)) {
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05307679 pthread_mutex_lock(&adev->lock);
7680 bool offline = (adev->card_status == CARD_STATUS_OFFLINE);
7681 pthread_mutex_unlock(&adev->lock);
7682
7683 // reject offload during card offline to allow
7684 // fallback to s/w paths
7685 if (offline) {
7686 ret = -ENODEV;
7687 goto error_open;
7688 }
vivek mehta0ea887a2015-08-26 14:01:20 -07007689
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007690 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
7691 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
7692 ALOGE("%s: Unsupported Offload information", __func__);
7693 ret = -EINVAL;
7694 goto error_open;
7695 }
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07007696
Atul Khare3fa6e542017-08-09 00:56:17 +05307697 if (config->offload_info.format == 0)
7698 config->offload_info.format = config->format;
7699 if (config->offload_info.sample_rate == 0)
7700 config->offload_info.sample_rate = config->sample_rate;
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07007701
Mingming Yin90310102013-11-13 16:57:00 -08007702 if (!is_supported_format(config->offload_info.format) &&
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05307703 !audio_extn_passthru_is_supported_format(config->offload_info.format)) {
vivek mehta0ea887a2015-08-26 14:01:20 -07007704 ALOGE("%s: Unsupported audio format %x " , __func__, config->offload_info.format);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007705 ret = -EINVAL;
7706 goto error_open;
7707 }
7708
Ben Romberger0f8c87b2017-05-24 17:41:11 -07007709 /* TrueHD only supported for 48k multiples (48k, 96k, 192k) */
7710 if ((config->offload_info.format == AUDIO_FORMAT_DOLBY_TRUEHD) &&
7711 (audio_extn_passthru_is_passthrough_stream(out)) &&
7712 !((config->sample_rate == 48000) ||
7713 (config->sample_rate == 96000) ||
7714 (config->sample_rate == 192000))) {
7715 ALOGE("%s: Unsupported sample rate %d for audio format %x",
7716 __func__, config->sample_rate, config->offload_info.format);
7717 ret = -EINVAL;
7718 goto error_open;
7719 }
7720
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007721 out->compr_config.codec = (struct snd_codec *)
7722 calloc(1, sizeof(struct snd_codec));
7723
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07007724 if (!out->compr_config.codec) {
7725 ret = -ENOMEM;
7726 goto error_open;
7727 }
7728
Dhananjay Kumarac341582017-02-23 23:42:25 +05307729 out->stream.pause = out_pause;
7730 out->stream.resume = out_resume;
7731 out->stream.flush = out_flush;
Ashish Jain4847e9d2017-08-17 19:16:57 +05307732 out->stream.set_callback = out_set_callback;
Dhananjay Kumarac341582017-02-23 23:42:25 +05307733 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
Mingming Yin21d60472015-09-30 13:56:25 -07007734 out->stream.drain = out_drain;
Dhananjay Kumarac341582017-02-23 23:42:25 +05307735 out->usecase = get_offload_usecase(adev, true /* is_compress */);
vivek mehta446c3962015-09-14 10:57:35 -07007736 ALOGV("Compress Offload usecase .. usecase selected %d", out->usecase);
Dhananjay Kumarac341582017-02-23 23:42:25 +05307737 } else {
7738 out->usecase = get_offload_usecase(adev, false /* is_compress */);
7739 ALOGV("non-offload DIRECT_usecase ... usecase selected %d ", out->usecase);
vivek mehta0ea887a2015-08-26 14:01:20 -07007740 }
vivek mehta446c3962015-09-14 10:57:35 -07007741
Deeraj Somanfa377bf2019-02-06 12:57:59 +05307742 if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
7743 ALOGD("%s: Setting latency mode to true", __func__);
Meng Wang4c32fb42020-01-16 17:57:11 +08007744#ifdef AUDIO_GKI_ENABLED
7745 /* out->compr_config.codec->reserved[1] is for flags */
7746 out->compr_config.codec->reserved[1] |= audio_extn_utils_get_perf_mode_flag();
7747#else
Deeraj Somanfa377bf2019-02-06 12:57:59 +05307748 out->compr_config.codec->flags |= audio_extn_utils_get_perf_mode_flag();
Meng Wang4c32fb42020-01-16 17:57:11 +08007749#endif
Deeraj Somanfa377bf2019-02-06 12:57:59 +05307750 }
7751
vivek mehta446c3962015-09-14 10:57:35 -07007752 if (out->usecase == USECASE_INVALID) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08007753 if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_AUX_DIGITAL) &&
Mingming Yin3a941d42016-02-17 18:08:05 -08007754 config->format == 0 && config->sample_rate == 0 &&
7755 config->channel_mask == 0) {
Mingming Yin21854652016-04-13 11:54:02 -07007756 ALOGI("%s dummy open to query sink capability",__func__);
Mingming Yin3a941d42016-02-17 18:08:05 -08007757 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
7758 } else {
7759 ALOGE("%s, Max allowed OFFLOAD usecase reached ... ", __func__);
7760 ret = -EEXIST;
7761 goto error_open;
7762 }
vivek mehta446c3962015-09-14 10:57:35 -07007763 }
7764
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007765 if (config->offload_info.channel_mask)
7766 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08007767 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007768 out->channel_mask = config->channel_mask;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08007769 config->offload_info.channel_mask = config->channel_mask;
Haynes Mathew Georgea99f7532016-08-24 16:01:21 -07007770 } else {
Dhananjay Kumarac341582017-02-23 23:42:25 +05307771 ALOGE("out->channel_mask not set for OFFLOAD/DIRECT usecase");
Haynes Mathew Georgea99f7532016-08-24 16:01:21 -07007772 ret = -EINVAL;
7773 goto error_open;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08007774 }
Haynes Mathew Georgea99f7532016-08-24 16:01:21 -07007775
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07007776 format = out->format = config->offload_info.format;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007777 out->sample_rate = config->offload_info.sample_rate;
7778
Mingming Yin3ee55c62014-08-04 14:23:35 -07007779 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007780
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05307781 out->compr_config.codec->id = get_snd_codec_id(config->offload_info.format);
Satish Babu Patakokila5933e972017-08-24 12:22:08 +05307782 if (audio_extn_utils_is_dolby_format(config->offload_info.format)) {
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05307783 audio_extn_dolby_send_ddp_endp_params(adev);
7784 audio_extn_dolby_set_dmid(adev);
7785 }
vivek mehta0ea887a2015-08-26 14:01:20 -07007786
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007787 out->compr_config.codec->sample_rate =
Ravi Kumar Alamandab91bff32014-11-14 12:05:54 -08007788 config->offload_info.sample_rate;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007789 out->compr_config.codec->bit_rate =
7790 config->offload_info.bit_rate;
7791 out->compr_config.codec->ch_in =
Dhanalakshmi Siddania15c6792016-08-10 15:33:53 +05307792 audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007793 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
Satish Babu Patakokilaa395a9e2016-11-01 12:18:49 +05307794 /* Update bit width only for non passthrough usecases.
7795 * For passthrough usecases, the output will always be opened @16 bit
7796 */
7797 if (!audio_extn_passthru_is_passthrough_stream(out))
7798 out->bit_width = AUDIO_OUTPUT_BIT_WIDTH;
Naresh Tanniruee3499a2017-01-05 14:05:35 +05307799
7800 if (out->flags & AUDIO_OUTPUT_FLAG_TIMESTAMP)
Meng Wang4c32fb42020-01-16 17:57:11 +08007801#ifdef AUDIO_GKI_ENABLED
7802 /* out->compr_config.codec->reserved[1] is for flags */
7803 out->compr_config.codec->reserved[1] |= COMPRESSED_TIMESTAMP_FLAG;
7804 ALOGVV("%s : out->compr_config.codec->flags -> (%#x) ", __func__, out->compr_config.codec->reserved[1]);
7805#else
Naresh Tanniruee3499a2017-01-05 14:05:35 +05307806 out->compr_config.codec->flags |= COMPRESSED_TIMESTAMP_FLAG;
7807 ALOGVV("%s : out->compr_config.codec->flags -> (%#x) ", __func__, out->compr_config.codec->flags);
Meng Wang4c32fb42020-01-16 17:57:11 +08007808#endif
Naresh Tanniruee3499a2017-01-05 14:05:35 +05307809
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07007810 /*TODO: Do we need to change it for passthrough */
7811 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007812
Manish Dewangana6fc5442015-08-24 20:30:31 +05307813 if ((config->offload_info.format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_AAC)
7814 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Arun Kumar Dasari3b174182016-12-27 13:01:14 +05307815 else if ((config->offload_info.format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_AAC_ADTS)
Manish Dewangana6fc5442015-08-24 20:30:31 +05307816 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
Arun Kumar Dasari3b174182016-12-27 13:01:14 +05307817 else if ((config->offload_info.format & AUDIO_FORMAT_MAIN_MASK) == AUDIO_FORMAT_AAC_LATM)
7818 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4LATM;
Ashish Jainf1eaa582016-05-23 20:54:24 +05307819
7820 if ((config->offload_info.format & AUDIO_FORMAT_MAIN_MASK) ==
7821 AUDIO_FORMAT_PCM) {
7822
7823 /*Based on platform support, configure appropriate alsa format for corresponding
7824 *hal input format.
7825 */
7826 out->compr_config.codec->format = hal_format_to_alsa(
7827 config->offload_info.format);
7828
Ashish Jain83a6cc22016-06-28 14:34:17 +05307829 out->hal_op_format = alsa_format_to_hal(
Ashish Jainf1eaa582016-05-23 20:54:24 +05307830 out->compr_config.codec->format);
Ashish Jain83a6cc22016-06-28 14:34:17 +05307831 out->hal_ip_format = out->format;
Ashish Jainf1eaa582016-05-23 20:54:24 +05307832
Dhananjay Kumarac341582017-02-23 23:42:25 +05307833 /*for direct non-compress playback populate bit_width based on selected alsa format as
Ashish Jainf1eaa582016-05-23 20:54:24 +05307834 *hal input format and alsa format might differ based on platform support.
7835 */
7836 out->bit_width = audio_bytes_per_sample(
Ashish Jain83a6cc22016-06-28 14:34:17 +05307837 out->hal_op_format) << 3;
Ashish Jainf1eaa582016-05-23 20:54:24 +05307838
7839 out->compr_config.fragments = DIRECT_PCM_NUM_FRAGMENTS;
7840
Deeraj Soman93155a62019-09-30 19:00:37 +05307841 if (property_get_bool("vendor.audio.offload.buffer.duration.enabled", false)) {
7842 if ((config->offload_info.duration_us >= MIN_OFFLOAD_BUFFER_DURATION_MS * 1000) &&
7843 (config->offload_info.duration_us <= MAX_OFFLOAD_BUFFER_DURATION_MS * 1000))
7844 out->info.duration_us = (int64_t)config->offload_info.duration_us;
7845 }
Deeraj Soman65358ab2019-02-07 15:40:49 +05307846
Ashish Jainf1eaa582016-05-23 20:54:24 +05307847 /* Check if alsa session is configured with the same format as HAL input format,
7848 * if not then derive correct fragment size needed to accomodate the
7849 * conversion of HAL input format to alsa format.
7850 */
7851 audio_extn_utils_update_direct_pcm_fragment_size(out);
7852
7853 /*if hal input and output fragment size is different this indicates HAL input format is
7854 *not same as the alsa format
7855 */
Ashish Jain83a6cc22016-06-28 14:34:17 +05307856 if (out->hal_fragment_size != out->compr_config.fragment_size) {
Ashish Jainf1eaa582016-05-23 20:54:24 +05307857 /*Allocate a buffer to convert input data to the alsa configured format.
7858 *size of convert buffer is equal to the size required to hold one fragment size
7859 *worth of pcm data, this is because flinger does not write more than fragment_size
7860 */
Ashish Jain83a6cc22016-06-28 14:34:17 +05307861 out->convert_buffer = calloc(1,out->compr_config.fragment_size);
7862 if (out->convert_buffer == NULL){
Ashish Jainf1eaa582016-05-23 20:54:24 +05307863 ALOGE("Allocation failed for convert buffer for size %d", out->compr_config.fragment_size);
7864 ret = -ENOMEM;
7865 goto error_open;
7866 }
7867 }
7868 } else if (audio_extn_passthru_is_passthrough_stream(out)) {
7869 out->compr_config.fragment_size =
7870 audio_extn_passthru_get_buffer_size(&config->offload_info);
7871 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
7872 } else {
7873 out->compr_config.fragment_size =
7874 platform_get_compress_offload_buffer_size(&config->offload_info);
7875 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
7876 }
Mingming Yin3ee55c62014-08-04 14:23:35 -07007877
Naresh Tanniruee3499a2017-01-05 14:05:35 +05307878 if (out->flags & AUDIO_OUTPUT_FLAG_TIMESTAMP) {
7879 out->compr_config.fragment_size += sizeof(struct snd_codec_metadata);
7880 }
Amit Shekhar6f461b12014-08-01 14:52:58 -07007881 if (config->offload_info.format == AUDIO_FORMAT_FLAC)
Satya Krishna Pindiproli5d82d012015-08-12 18:21:25 +05307882 out->compr_config.codec->options.flac_dec.sample_size = AUDIO_OUTPUT_BIT_WIDTH;
Mingming Yin3ee55c62014-08-04 14:23:35 -07007883
Dhanalakshmi Siddani18737932016-11-29 17:33:17 +05307884 if (config->offload_info.format == AUDIO_FORMAT_APTX) {
7885 audio_extn_send_aptx_dec_bt_addr_to_dsp(out);
7886 }
7887
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007888 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
7889 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07007890
Manish Dewangan69426c82017-01-30 17:35:36 +05307891 if ((flags & AUDIO_OUTPUT_FLAG_TIMESTAMP) &&
7892 (flags & AUDIO_OUTPUT_FLAG_HW_AV_SYNC)) {
7893 out->render_mode = RENDER_MODE_AUDIO_STC_MASTER;
7894 } else if(flags & AUDIO_OUTPUT_FLAG_TIMESTAMP) {
7895 out->render_mode = RENDER_MODE_AUDIO_MASTER;
7896 } else {
7897 out->render_mode = RENDER_MODE_AUDIO_NO_TIMESTAMP;
7898 }
Alexy Josephaa54c872014-12-03 02:46:47 -08007899
Naresh Tanniru29bce4e2017-04-27 17:54:30 +05307900 memset(&out->channel_map_param, 0,
7901 sizeof(struct audio_out_channel_map_param));
7902
Haynes Mathew George352f27b2013-07-26 00:00:15 -07007903 out->send_new_metadata = 1;
Chaithanya Krishna Bacharajua70cb6a2015-07-24 14:15:05 +05307904 out->send_next_track_params = false;
7905 out->is_compr_metadata_avail = false;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08007906 out->offload_state = OFFLOAD_STATE_IDLE;
7907 out->playback_started = 0;
Zhou Song48453a02018-01-10 17:50:59 +08007908 out->writeAt.tv_sec = 0;
7909 out->writeAt.tv_nsec = 0;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08007910
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08007911 audio_extn_dts_create_state_notifier_node(out->usecase);
7912
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07007913 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
7914 __func__, config->offload_info.version,
7915 config->offload_info.bit_rate);
Ashish Jain5106d362016-05-11 19:23:33 +05307916
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05307917 /* Check if DSD audio format is supported in codec
7918 * and there is no active native DSD use case
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05307919 */
7920
7921 if ((config->format == AUDIO_FORMAT_DSD) &&
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05307922 (!platform_check_codec_dsd_support(adev->platform) ||
7923 audio_is_dsd_native_stream_active(adev))) {
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05307924 ret = -EINVAL;
7925 goto error_open;
7926 }
7927
Ashish Jain5106d362016-05-11 19:23:33 +05307928 /* Disable gapless if any of the following is true
7929 * passthrough playback
7930 * AV playback
Dhananjay Kumarac341582017-02-23 23:42:25 +05307931 * non compressed Direct playback
Ashish Jain5106d362016-05-11 19:23:33 +05307932 */
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05307933 if (audio_extn_passthru_is_passthrough_stream(out) ||
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05307934 (config->format == AUDIO_FORMAT_DSD) ||
Naresh Tanniru928f0862017-04-07 16:44:23 -07007935 (config->format == AUDIO_FORMAT_IEC61937) ||
Preetam Singh Ranawatf5fbdd62016-09-29 18:38:31 +05307936 config->offload_info.has_video ||
Dhananjay Kumarac341582017-02-23 23:42:25 +05307937 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)) {
Ashish Jain5106d362016-05-11 19:23:33 +05307938 check_and_set_gapless_mode(adev, false);
7939 } else
7940 check_and_set_gapless_mode(adev, true);
Mingming Yin21854652016-04-13 11:54:02 -07007941
Satish Babu Patakokila1caa1b72016-05-24 13:47:08 +05307942 if (audio_extn_passthru_is_passthrough_stream(out)) {
Mingming Yin21854652016-04-13 11:54:02 -07007943 out->flags |= AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH;
7944 }
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05307945 if (config->format == AUDIO_FORMAT_DSD) {
7946 out->flags |= AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH;
Meng Wang4c32fb42020-01-16 17:57:11 +08007947#ifdef AUDIO_GKI_ENABLED
7948 /* out->compr_config.codec->reserved[0] is for compr_passthr */
7949 out->compr_config.codec->reserved[0] = PASSTHROUGH_DSD;
7950#else
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05307951 out->compr_config.codec->compr_passthr = PASSTHROUGH_DSD;
Meng Wang4c32fb42020-01-16 17:57:11 +08007952#endif
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +05307953 }
Aalique Grahame0359a1f2016-09-08 16:54:22 -07007954
7955 create_offload_callback_thread(out);
7956
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07007957 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
Arun Mirpuri7da752a2018-09-11 18:01:15 -07007958 switch (config->sample_rate) {
7959 case 0:
7960 out->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
7961 break;
7962 case 8000:
7963 case 16000:
7964 case 48000:
7965 out->sample_rate = config->sample_rate;
7966 break;
7967 default:
7968 ALOGE("%s: Unsupported sampling rate %d for Incall Music", __func__,
7969 config->sample_rate);
7970 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
7971 ret = -EINVAL;
7972 goto error_open;
7973 }
7974 //FIXME: add support for MONO stream configuration when audioflinger mixer supports it
7975 switch (config->channel_mask) {
7976 case AUDIO_CHANNEL_NONE:
7977 case AUDIO_CHANNEL_OUT_STEREO:
7978 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
7979 break;
7980 default:
7981 ALOGE("%s: Unsupported channel mask %#x for Incall Music", __func__,
7982 config->channel_mask);
7983 config->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
7984 ret = -EINVAL;
7985 goto error_open;
7986 }
7987 switch (config->format) {
7988 case AUDIO_FORMAT_DEFAULT:
7989 case AUDIO_FORMAT_PCM_16_BIT:
7990 out->format = AUDIO_FORMAT_PCM_16_BIT;
7991 break;
7992 default:
7993 ALOGE("%s: Unsupported format %#x for Incall Music", __func__,
7994 config->format);
7995 config->format = AUDIO_FORMAT_PCM_16_BIT;
7996 ret = -EINVAL;
7997 goto error_open;
7998 }
7999
Satya Krishna Pindiprolif1cd92b2016-04-14 19:05:23 +05308000 ret = voice_extn_check_and_set_incall_music_usecase(adev, out);
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07008001 if (ret != 0) {
8002 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
Arun Mirpuri7da752a2018-09-11 18:01:15 -07008003 __func__, ret);
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07008004 goto error_open;
8005 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008006 } else if (is_single_device_type_equal(&out->device_list,
8007 AUDIO_DEVICE_OUT_TELEPHONY_TX)) {
Aalique Grahame22e49102018-12-18 14:23:57 -08008008 switch (config->sample_rate) {
8009 case 0:
8010 out->sample_rate = AFE_PROXY_SAMPLING_RATE;
8011 break;
8012 case 8000:
8013 case 16000:
8014 case 48000:
8015 out->sample_rate = config->sample_rate;
8016 break;
8017 default:
8018 ALOGE("%s: Unsupported sampling rate %d for Telephony TX", __func__,
8019 config->sample_rate);
8020 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
8021 ret = -EINVAL;
8022 break;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008023 }
Aalique Grahame22e49102018-12-18 14:23:57 -08008024 //FIXME: add support for MONO stream configuration when audioflinger mixer supports it
8025 switch (config->channel_mask) {
8026 case AUDIO_CHANNEL_NONE:
8027 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
8028 break;
8029 case AUDIO_CHANNEL_OUT_STEREO:
8030 out->channel_mask = config->channel_mask;
8031 break;
8032 default:
8033 ALOGE("%s: Unsupported channel mask %#x for Telephony TX", __func__,
8034 config->channel_mask);
8035 config->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
8036 ret = -EINVAL;
8037 break;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008038 }
Aalique Grahame22e49102018-12-18 14:23:57 -08008039 switch (config->format) {
8040 case AUDIO_FORMAT_DEFAULT:
8041 out->format = AUDIO_FORMAT_PCM_16_BIT;
8042 break;
8043 case AUDIO_FORMAT_PCM_16_BIT:
8044 out->format = config->format;
8045 break;
8046 default:
8047 ALOGE("%s: Unsupported format %#x for Telephony TX", __func__,
8048 config->format);
8049 config->format = AUDIO_FORMAT_PCM_16_BIT;
8050 ret = -EINVAL;
8051 break;
8052 }
8053 if (ret != 0)
8054 goto error_open;
8055
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008056 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
8057 out->config = pcm_config_afe_proxy_playback;
Aalique Grahame22e49102018-12-18 14:23:57 -08008058 out->config.rate = out->sample_rate;
8059 out->config.channels =
8060 audio_channel_count_from_out_mask(out->channel_mask);
8061 out->config.format = pcm_format_from_audio_format(out->format);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008062 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07008063 } else {
Ashish Jain058165c2016-09-28 23:18:48 +05308064 unsigned int channels = 0;
8065 /*Update config params to default if not set by the caller*/
8066 if (config->sample_rate == 0)
8067 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
8068 if (config->channel_mask == AUDIO_CHANNEL_NONE)
8069 config->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
8070 if (config->format == AUDIO_FORMAT_DEFAULT)
8071 config->format = AUDIO_FORMAT_PCM_16_BIT;
8072
8073 channels = audio_channel_count_from_out_mask(out->channel_mask);
8074
Varun Balaraje49253e2017-07-06 19:48:56 +05308075 if (out->flags & AUDIO_OUTPUT_FLAG_INTERACTIVE) {
8076 out->usecase = get_interactive_usecase(adev);
8077 out->config = pcm_config_low_latency;
8078 } else if (out->flags & AUDIO_OUTPUT_FLAG_RAW) {
Ashish Jain83a6cc22016-06-28 14:34:17 +05308079 out->usecase = USECASE_AUDIO_PLAYBACK_ULL;
Haynes Mathew George5beddd42016-06-27 18:33:40 -07008080 out->realtime = may_use_noirq_mode(adev, USECASE_AUDIO_PLAYBACK_ULL,
8081 out->flags);
8082 out->config = out->realtime ? pcm_config_rt : pcm_config_low_latency;
Haynes Mathew George16081042017-05-31 17:16:49 -07008083 } else if (out->flags & AUDIO_OUTPUT_FLAG_MMAP_NOIRQ) {
8084 out->usecase = USECASE_AUDIO_PLAYBACK_MMAP;
8085 out->config = pcm_config_mmap_playback;
8086 out->stream.start = out_start;
8087 out->stream.stop = out_stop;
8088 out->stream.create_mmap_buffer = out_create_mmap_buffer;
8089 out->stream.get_mmap_position = out_get_mmap_position;
Ashish Jain83a6cc22016-06-28 14:34:17 +05308090 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
8091 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
Aniket Kumar Lata932f4872017-11-06 18:29:44 -08008092 out->hal_output_suspend_supported =
8093 property_get_bool("vendor.audio.hal.output.suspend.supported", false);
8094 out->dynamic_pm_qos_config_supported =
8095 property_get_bool("vendor.audio.hal.dynamic.qos.config.supported", false);
8096 if (!out->dynamic_pm_qos_config_supported) {
Alexy Joseph98988832017-01-13 14:56:59 -08008097 ALOGI("%s: dynamic qos voting not enabled for platform", __func__);
8098 } else {
8099 ALOGI("%s: dynamic qos voting enabled for platform", __func__);
8100 //the mixer path will be a string similar to "low-latency-playback resume"
8101 strlcpy(out->pm_qos_mixer_path, use_case_table[out->usecase], MAX_MIXER_PATH_LEN);
8102 strlcat(out->pm_qos_mixer_path,
8103 " resume", MAX_MIXER_PATH_LEN);
8104 ALOGI("%s: created %s pm_qos_mixer_path" , __func__,
8105 out->pm_qos_mixer_path);
8106 }
Ashish Jain83a6cc22016-06-28 14:34:17 +05308107 out->config = pcm_config_low_latency;
8108 } else if (out->flags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) {
8109 out->usecase = USECASE_AUDIO_PLAYBACK_DEEP_BUFFER;
8110 out->config = pcm_config_deep_buffer;
Ashish Jain058165c2016-09-28 23:18:48 +05308111 out->config.period_size = get_output_period_size(config->sample_rate, out->format,
8112 channels, DEEP_BUFFER_OUTPUT_PERIOD_DURATION);
8113 if (out->config.period_size <= 0) {
8114 ALOGE("Invalid configuration period size is not valid");
8115 ret = -EINVAL;
8116 goto error_open;
8117 }
Aalique Grahame22e49102018-12-18 14:23:57 -08008118 } else if (flags & AUDIO_OUTPUT_FLAG_TTS) {
8119 out->usecase = USECASE_AUDIO_PLAYBACK_TTS;
8120 out->config = pcm_config_deep_buffer;
Vignesh Kulothungana6927272019-02-20 15:17:07 -08008121 } else if (config->channel_mask & AUDIO_CHANNEL_HAPTIC_ALL) {
8122 out->usecase = USECASE_AUDIO_PLAYBACK_WITH_HAPTICS;
8123 out->config = pcm_config_haptics_audio;
8124 if (force_haptic_path)
8125 adev->haptics_config = pcm_config_haptics_audio;
8126 else
8127 adev->haptics_config = pcm_config_haptics;
8128
8129 out->config.channels =
8130 audio_channel_count_from_out_mask(out->channel_mask & ~AUDIO_CHANNEL_HAPTIC_ALL);
8131
8132 if (force_haptic_path) {
8133 out->config.channels = 1;
8134 adev->haptics_config.channels = 1;
8135 } else
8136 adev->haptics_config.channels = audio_channel_count_from_out_mask(out->channel_mask & AUDIO_CHANNEL_HAPTIC_ALL);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008137 } else if (compare_device_type(&out->device_list, AUDIO_DEVICE_OUT_BUS)) {
Derek Chenf6318be2017-06-12 17:16:24 -04008138 ret = audio_extn_auto_hal_open_output_stream(out);
8139 if (ret) {
8140 ALOGE("%s: Failed to open output stream for bus device", __func__);
8141 ret = -EINVAL;
8142 goto error_open;
8143 }
Ashish Jain83a6cc22016-06-28 14:34:17 +05308144 } else {
8145 /* primary path is the default path selected if no other outputs are available/suitable */
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008146 out->usecase = GET_USECASE_AUDIO_PLAYBACK_PRIMARY(use_db_as_primary);
8147 out->config = GET_PCM_CONFIG_AUDIO_PLAYBACK_PRIMARY(use_db_as_primary);
Ashish Jain83a6cc22016-06-28 14:34:17 +05308148 }
8149 out->hal_ip_format = format = out->format;
8150 out->config.format = hal_format_to_pcm(out->hal_ip_format);
8151 out->hal_op_format = pcm_format_to_hal(out->config.format);
8152 out->bit_width = format_to_bitwidth_table[out->hal_op_format] << 3;
8153 out->config.rate = config->sample_rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07008154 out->sample_rate = out->config.rate;
Ashish Jain058165c2016-09-28 23:18:48 +05308155 out->config.channels = channels;
Ashish Jain83a6cc22016-06-28 14:34:17 +05308156 if (out->hal_ip_format != out->hal_op_format) {
8157 uint32_t buffer_size = out->config.period_size *
8158 format_to_bitwidth_table[out->hal_op_format] *
8159 out->config.channels;
8160 out->convert_buffer = calloc(1, buffer_size);
8161 if (out->convert_buffer == NULL){
8162 ALOGE("Allocation failed for convert buffer for size %d",
8163 out->compr_config.fragment_size);
8164 ret = -ENOMEM;
8165 goto error_open;
8166 }
8167 ALOGD("Convert buffer allocated of size %d", buffer_size);
8168 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008169 }
8170
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08008171 ALOGV("%s devices:%d, format:%x, out->sample_rate:%d,out->bit_width:%d out->format:%d out->flags:%x, flags: %x usecase %d",
8172 __func__, devices, format, out->sample_rate, out->bit_width, out->format, out->flags, flags, out->usecase);
Ashish Jain83a6cc22016-06-28 14:34:17 +05308173
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -07008174 /* TODO remove this hardcoding and check why width is zero*/
8175 if (out->bit_width == 0)
8176 out->bit_width = 16;
Dhananjay Kumard6d32152016-10-13 16:11:03 +05308177 audio_extn_utils_update_stream_output_app_type_cfg(adev->platform,
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07008178 &adev->streams_output_cfg_list,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008179 &out->device_list, out->flags,
8180 out->hal_op_format, out->sample_rate,
Dhananjay Kumar4d91c1a2016-12-01 23:27:29 +05308181 out->bit_width, out->channel_mask, out->profile,
Manish Dewangan837dc462015-05-27 10:17:41 +05308182 &out->app_type_cfg);
Aalique Grahame6e763712019-01-31 16:18:17 -08008183 if ((out->usecase == (audio_usecase_t)(GET_USECASE_AUDIO_PLAYBACK_PRIMARY(use_db_as_primary))) ||
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08008184 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
8185 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08008186 if(adev->primary_output == NULL)
8187 adev->primary_output = out;
8188 else {
8189 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07008190 ret = -EEXIST;
8191 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08008192 }
8193 }
8194
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008195 /* Check if this usecase is already existing */
8196 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella7ce05352014-04-17 20:00:41 -07008197 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
8198 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008199 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008200 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07008201 ret = -EEXIST;
8202 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008203 }
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08008204
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008205 pthread_mutex_unlock(&adev->lock);
8206
8207 out->stream.common.get_sample_rate = out_get_sample_rate;
8208 out->stream.common.set_sample_rate = out_set_sample_rate;
8209 out->stream.common.get_buffer_size = out_get_buffer_size;
8210 out->stream.common.get_channels = out_get_channels;
8211 out->stream.common.get_format = out_get_format;
8212 out->stream.common.set_format = out_set_format;
8213 out->stream.common.standby = out_standby;
8214 out->stream.common.dump = out_dump;
8215 out->stream.common.set_parameters = out_set_parameters;
8216 out->stream.common.get_parameters = out_get_parameters;
8217 out->stream.common.add_audio_effect = out_add_audio_effect;
8218 out->stream.common.remove_audio_effect = out_remove_audio_effect;
8219 out->stream.get_latency = out_get_latency;
8220 out->stream.set_volume = out_set_volume;
Aalique Grahame22e49102018-12-18 14:23:57 -08008221#ifdef NO_AUDIO_OUT
8222 out->stream.write = out_write_for_no_output;
8223#else
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008224 out->stream.write = out_write;
Aalique Grahame22e49102018-12-18 14:23:57 -08008225#endif
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008226 out->stream.get_render_position = out_get_render_position;
8227 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07008228 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008229
Haynes Mathew George16081042017-05-31 17:16:49 -07008230 if (out->realtime)
8231 out->af_period_multiplier = af_period_multiplier;
8232 else
8233 out->af_period_multiplier = 1;
8234
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008235 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07008236 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07008237 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008238
8239 config->format = out->stream.common.get_format(&out->stream.common);
8240 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
8241 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
Naresh Tanniru04f71882018-06-26 17:46:22 +05308242 register_format(out->format, out->supported_formats);
8243 register_channel_mask(out->channel_mask, out->supported_channel_masks);
8244 register_sample_rate(out->sample_rate, out->supported_sample_rates);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008245
Aalique Grahame22e49102018-12-18 14:23:57 -08008246 out->error_log = error_log_create(
8247 ERROR_LOG_ENTRIES,
8248 1000000000 /* aggregate consecutive identical errors within one second in ns */);
8249
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05308250 /*
8251 By locking output stream before registering, we allow the callback
8252 to update stream's state only after stream's initial state is set to
8253 adev state.
8254 */
8255 lock_output_stream(out);
8256 audio_extn_snd_mon_register_listener(out, out_snd_mon_cb);
8257 pthread_mutex_lock(&adev->lock);
8258 out->card_status = adev->card_status;
8259 pthread_mutex_unlock(&adev->lock);
8260 pthread_mutex_unlock(&out->lock);
8261
Aalique Grahame22e49102018-12-18 14:23:57 -08008262 stream_app_type_cfg_init(&out->app_type_cfg);
8263
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008264 *stream_out = &out->stream;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05308265 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
vivek mehta0ea887a2015-08-26 14:01:20 -07008266 use_case_table[out->usecase]);
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08008267
8268 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD)
8269 audio_extn_dts_notify_playback_state(out->usecase, 0, out->sample_rate,
8270 popcount(out->channel_mask), out->playback_started);
Ben Rombergerd771a7c2017-02-22 18:05:17 -08008271 /* setup a channel for client <--> adsp communication for stream events */
Manish Dewangan21a850a2017-08-14 12:03:55 +05308272 is_direct_passthough = audio_extn_passthru_is_direct_passthrough(out);
Ben Rombergerd771a7c2017-02-22 18:05:17 -08008273 if ((out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) ||
Naresh Tanniru85819452017-05-04 18:55:45 -07008274 (out->flags & AUDIO_OUTPUT_FLAG_DIRECT_PCM) ||
Gangadhar Sb0210342019-02-22 17:39:41 +05308275 audio_extn_ip_hdlr_intf_supported_for_copp(adev->platform) ||
8276 (audio_extn_ip_hdlr_intf_supported(config->format, is_direct_passthough, false))) {
Ben Rombergerd771a7c2017-02-22 18:05:17 -08008277 hdlr_stream_cfg.pcm_device_id = platform_get_pcm_device_id(
8278 out->usecase, PCM_PLAYBACK);
8279 hdlr_stream_cfg.flags = out->flags;
8280 hdlr_stream_cfg.type = PCM_PLAYBACK;
8281 ret = audio_extn_adsp_hdlr_stream_open(&out->adsp_hdlr_stream_handle,
8282 &hdlr_stream_cfg);
8283 if (ret) {
8284 ALOGE("%s: adsp_hdlr_stream_open failed %d",__func__, ret);
8285 out->adsp_hdlr_stream_handle = NULL;
8286 }
8287 }
Gangadhar Sb0210342019-02-22 17:39:41 +05308288 ip_hdlr_stream = audio_extn_ip_hdlr_intf_supported(config->format,
8289 is_direct_passthough, false);
8290 ip_hdlr_dev = audio_extn_ip_hdlr_intf_supported_for_copp(adev->platform);
8291 if (ip_hdlr_stream || ip_hdlr_dev ) {
Vidyakumar Athota2062f912017-06-27 14:46:15 -07008292 ret = audio_extn_ip_hdlr_intf_init(&out->ip_hdlr_handle, NULL, NULL, adev, out->usecase);
Naresh Tanniru85819452017-05-04 18:55:45 -07008293 if (ret < 0) {
8294 ALOGE("%s: audio_extn_ip_hdlr_intf_init failed %d",__func__, ret);
8295 out->ip_hdlr_handle = NULL;
8296 }
8297 }
Derek Chenf939fb72018-11-13 13:34:41 -08008298
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07008299 ret = io_streams_map_insert(adev, &out->stream.common,
8300 out->handle, AUDIO_PATCH_HANDLE_NONE);
8301 if (ret != 0)
8302 goto error_open;
8303
Derek Chenf939fb72018-11-13 13:34:41 -08008304 streams_output_ctxt_t *out_ctxt = (streams_output_ctxt_t *)
8305 calloc(1, sizeof(streams_output_ctxt_t));
8306 if (out_ctxt == NULL) {
8307 ALOGE("%s fail to allocate output ctxt", __func__);
8308 ret = -ENOMEM;
8309 goto error_open;
8310 }
8311 out_ctxt->output = out;
8312
8313 pthread_mutex_lock(&adev->lock);
8314 list_add_tail(&adev->active_outputs_list, &out_ctxt->list);
8315 pthread_mutex_unlock(&adev->lock);
8316
Eric Laurent994a6932013-07-17 11:51:42 -07008317 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008318 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07008319
8320error_open:
Ashish Jain83a6cc22016-06-28 14:34:17 +05308321 if (out->convert_buffer)
8322 free(out->convert_buffer);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07008323 free(out);
8324 *stream_out = NULL;
8325 ALOGD("%s: exit: ret %d", __func__, ret);
8326 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008327}
8328
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +05308329void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008330 struct audio_stream_out *stream)
8331{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07008332 struct stream_out *out = (struct stream_out *)stream;
8333 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08008334 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07008335
Haynes Mathew George484e8d22017-07-31 18:55:17 -07008336 ALOGD("%s: enter:stream_handle(%s)",__func__, use_case_table[out->usecase]);
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05308337
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07008338 io_streams_map_remove(adev, out->handle);
8339
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05308340 // must deregister from sndmonitor first to prevent races
8341 // between the callback and close_stream
8342 audio_extn_snd_mon_unregister_listener(out);
8343
Ben Rombergerd771a7c2017-02-22 18:05:17 -08008344 /* close adsp hdrl session before standby */
8345 if (out->adsp_hdlr_stream_handle) {
8346 ret = audio_extn_adsp_hdlr_stream_close(out->adsp_hdlr_stream_handle);
8347 if (ret)
8348 ALOGE("%s: adsp_hdlr_stream_close failed %d",__func__, ret);
8349 out->adsp_hdlr_stream_handle = NULL;
8350 }
8351
Manish Dewangan21a850a2017-08-14 12:03:55 +05308352 if (out->ip_hdlr_handle) {
Naresh Tanniru85819452017-05-04 18:55:45 -07008353 audio_extn_ip_hdlr_intf_deinit(out->ip_hdlr_handle);
8354 out->ip_hdlr_handle = NULL;
8355 }
8356
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08008357 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05308358 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08008359 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05308360 out->started = 0;
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05308361 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08008362 if(ret != 0)
8363 ALOGE("%s: Compress voip output cannot be closed, error:%d",
8364 __func__, ret);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008365 } else
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08008366 out_standby(&stream->common);
8367
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07008368 if (is_offload_usecase(out->usecase)) {
Jitendra Naruka1b6513f2014-11-22 19:34:13 -08008369 audio_extn_dts_remove_state_notifier_node(out->usecase);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07008370 destroy_offload_callback_thread(out);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07008371 free_offload_usecase(adev, out->usecase);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07008372 if (out->compr_config.codec != NULL)
8373 free(out->compr_config.codec);
8374 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008375
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05308376 out->a2dp_compress_mute = false;
8377
Varun Balaraje49253e2017-07-06 19:48:56 +05308378 if (is_interactive_usecase(out->usecase))
8379 free_interactive_usecase(adev, out->usecase);
8380
Ashish Jain83a6cc22016-06-28 14:34:17 +05308381 if (out->convert_buffer != NULL) {
8382 free(out->convert_buffer);
8383 out->convert_buffer = NULL;
8384 }
8385
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008386 if (adev->voice_tx_output == out)
8387 adev->voice_tx_output = NULL;
8388
Aalique Grahame22e49102018-12-18 14:23:57 -08008389 error_log_destroy(out->error_log);
8390 out->error_log = NULL;
8391
Dhanalakshmi Siddani6c3d0992017-01-16 16:52:33 +05308392 if (adev->primary_output == out)
8393 adev->primary_output = NULL;
8394
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07008395 pthread_cond_destroy(&out->cond);
8396 pthread_mutex_destroy(&out->lock);
Derek Chenf939fb72018-11-13 13:34:41 -08008397
8398 pthread_mutex_lock(&adev->lock);
8399 streams_output_ctxt_t *out_ctxt = out_get_stream(adev, out->handle);
8400 if (out_ctxt != NULL) {
8401 list_remove(&out_ctxt->list);
8402 free(out_ctxt);
8403 } else {
8404 ALOGW("%s, output stream already closed", __func__);
8405 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008406 free(stream);
Derek Chenf939fb72018-11-13 13:34:41 -08008407 pthread_mutex_unlock(&adev->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07008408 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008409}
8410
8411static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
8412{
8413 struct audio_device *adev = (struct audio_device *)dev;
8414 struct str_parms *parms;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008415 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07008416 int val;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008417 int ret;
8418 int status = 0;
Aalique Grahame22e49102018-12-18 14:23:57 -08008419 bool a2dp_reconfig = false;
Zhou Songd6d71752019-05-21 18:08:51 +08008420 struct listnode *node;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07008421 int controller = -1, stream = -1;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008422
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008423 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008424 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008425
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05308426 if (!parms)
8427 goto error;
Naresh Tanniru4c630392014-05-12 01:05:52 +05308428
Derek Chen6f293672019-04-01 01:40:24 -07008429 /* notify adev and input/output streams on the snd card status */
8430 adev_snd_mon_cb((void *)adev, parms);
8431
8432 list_for_each(node, &adev->active_outputs_list) {
8433 streams_output_ctxt_t *out_ctxt = node_to_item(node,
8434 streams_output_ctxt_t,
8435 list);
8436 out_snd_mon_cb((void *)out_ctxt->output, parms);
8437 }
8438
8439 list_for_each(node, &adev->active_inputs_list) {
8440 streams_input_ctxt_t *in_ctxt = node_to_item(node,
8441 streams_input_ctxt_t,
8442 list);
8443 in_snd_mon_cb((void *)in_ctxt->input, parms);
8444 }
8445
Zhou Songd6d71752019-05-21 18:08:51 +08008446 pthread_mutex_lock(&adev->lock);
Ashish Jain1b9b30c2017-05-18 20:57:40 +05308447 ret = str_parms_get_str(parms, "BT_SCO", value, sizeof(value));
8448 if (ret >= 0) {
8449 /* When set to false, HAL should disable EC and NS */
Zhou Songd6d71752019-05-21 18:08:51 +08008450 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0){
Ashish Jain1b9b30c2017-05-18 20:57:40 +05308451 adev->bt_sco_on = true;
Zhou Songd6d71752019-05-21 18:08:51 +08008452 } else {
Ashish Jain1b9b30c2017-05-18 20:57:40 +05308453 adev->bt_sco_on = false;
Zhou Songd6d71752019-05-21 18:08:51 +08008454 audio_extn_sco_reset_configuration();
Kunlei Zhangd96af8f2019-08-27 16:33:29 +08008455 }
8456 }
8457
8458 ret = str_parms_get_str(parms, "A2dpSuspended", value, sizeof(value));
8459 if (ret>=0) {
8460 if (!strncmp(value, "false", 5) &&
8461 audio_extn_a2dp_source_is_suspended()) {
8462 struct audio_usecase *usecase;
8463 struct listnode *node;
Zhou Songd6d71752019-05-21 18:08:51 +08008464 list_for_each(node, &adev->usecase_list) {
8465 usecase = node_to_item(node, struct audio_usecase, list);
Kunlei Zhangd96af8f2019-08-27 16:33:29 +08008466 if (usecase->stream.in && (usecase->type == PCM_CAPTURE) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008467 is_sco_in_device_type(&usecase->stream.in->device_list)) {
Kunlei Zhangd96af8f2019-08-27 16:33:29 +08008468 ALOGD("a2dp resumed, switch bt sco mic to handset mic");
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008469 reassign_device_list(&usecase->stream.in->device_list,
8470 AUDIO_DEVICE_IN_BUILTIN_MIC, "");
Kunlei Zhangd96af8f2019-08-27 16:33:29 +08008471 select_devices(adev, usecase->id);
8472 }
Zhou Songd6d71752019-05-21 18:08:51 +08008473 }
8474 }
Ashish Jain1b9b30c2017-05-18 20:57:40 +05308475 }
8476
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008477 status = voice_set_parameters(adev, parms);
8478 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08008479 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008480
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008481 status = platform_set_parameters(adev->platform, parms);
8482 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08008483 goto done;
8484
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008485 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
8486 if (ret >= 0) {
Vicky Sehrawate240e5d2014-08-12 17:17:04 -07008487 /* When set to false, HAL should disable EC and NS */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008488 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
8489 adev->bluetooth_nrec = true;
8490 else
8491 adev->bluetooth_nrec = false;
8492 }
8493
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008494 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
8495 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008496 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
8497 adev->screen_off = false;
8498 else
8499 adev->screen_off = true;
Quinn Male70f20f32019-06-26 16:50:26 -07008500 audio_extn_sound_trigger_update_screen_status(adev->screen_off);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008501 }
8502
Eric Laurent4b084132018-10-19 17:33:43 -07008503 ret = str_parms_get_int(parms, "rotation", &val);
8504 if (ret >= 0) {
8505 bool reverse_speakers = false;
8506 int camera_rotation = CAMERA_ROTATION_LANDSCAPE;
8507 switch (val) {
8508 // FIXME: note that the code below assumes that the speakers are in the correct placement
8509 // relative to the user when the device is rotated 90deg from its default rotation. This
8510 // assumption is device-specific, not platform-specific like this code.
8511 case 270:
8512 reverse_speakers = true;
8513 camera_rotation = CAMERA_ROTATION_INVERT_LANDSCAPE;
8514 break;
8515 case 0:
8516 case 180:
8517 camera_rotation = CAMERA_ROTATION_PORTRAIT;
8518 break;
8519 case 90:
8520 camera_rotation = CAMERA_ROTATION_LANDSCAPE;
8521 break;
8522 default:
8523 ALOGE("%s: unexpected rotation of %d", __func__, val);
8524 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07008525 }
Eric Laurent4b084132018-10-19 17:33:43 -07008526 if (status == 0) {
8527 // check and set swap
8528 // - check if orientation changed and speaker active
8529 // - set rotation and cache the rotation value
8530 adev->camera_orientation =
8531 (adev->camera_orientation & ~CAMERA_ROTATION_MASK) | camera_rotation;
8532 if (!audio_extn_is_maxx_audio_enabled())
8533 platform_check_and_set_swap_lr_channels(adev, reverse_speakers);
8534 }
8535 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07008536
Mingming Yin514a8bc2014-07-29 15:22:21 -07008537 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_SCO_WB, value, sizeof(value));
8538 if (ret >= 0) {
8539 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
8540 adev->bt_wb_speech_enabled = true;
8541 else
8542 adev->bt_wb_speech_enabled = false;
8543 }
8544
Zhou Song12c29502019-03-16 10:37:18 +08008545 ret = str_parms_get_str(parms, "bt_swb", value, sizeof(value));
8546 if (ret >= 0) {
8547 val = atoi(value);
8548 adev->swb_speech_mode = val;
8549 }
8550
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -07008551 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_CONNECT, value, sizeof(value));
8552 if (ret >= 0) {
8553 val = atoi(value);
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308554 audio_devices_t device = (audio_devices_t) val;
Zhou Song681350a2017-10-19 16:28:42 +08008555 if (audio_is_output_device(val) &&
8556 (val & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07008557 ALOGV("cache new ext disp type and edid");
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07008558 platform_get_controller_stream_from_params(parms, &controller, &stream);
8559 platform_set_ext_display_device_v2(adev->platform, controller, stream);
8560 ret = platform_get_ext_disp_type_v2(adev->platform, controller, stream);
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07008561 if (ret < 0) {
8562 ALOGE("%s: Failed to query disp type, ret:%d", __func__, ret);
Manisha Agarwal2f5ff882018-08-08 17:09:29 +05308563 } else {
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -07008564 platform_cache_edid_v2(adev->platform, controller, stream);
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -07008565 }
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308566 } else if (audio_is_usb_out_device(device) || audio_is_usb_in_device(device)) {
vivek mehta344576a2016-04-12 18:56:03 -07008567 /*
8568 * Do not allow AFE proxy port usage by WFD source when USB headset is connected.
8569 * Per AudioPolicyManager, USB device is higher priority than WFD.
8570 * For Voice call over USB headset, voice call audio is routed to AFE proxy ports.
8571 * If WFD use case occupies AFE proxy, it may result unintended behavior while
8572 * starting voice call on USB
8573 */
Kuirong Wanga9f7cee2016-03-07 11:21:52 -08008574 ret = str_parms_get_str(parms, "card", value, sizeof(value));
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308575 if (ret >= 0)
8576 audio_extn_usb_add_device(device, atoi(value));
8577
Zhou Song6f862822017-11-06 17:27:57 +08008578 if (!audio_extn_usb_is_tunnel_supported()) {
8579 ALOGV("detected USB connect .. disable proxy");
8580 adev->allow_afe_proxy_usage = false;
8581 }
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -07008582 }
8583 }
8584
8585 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_DISCONNECT, value, sizeof(value));
8586 if (ret >= 0) {
8587 val = atoi(value);
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308588 audio_devices_t device = (audio_devices_t) val;
Garmond Leunge3b6d482016-10-25 16:48:01 -07008589 /*
8590 * The HDMI / Displayport disconnect handling has been moved to
8591 * audio extension to ensure that its parameters are not
8592 * invalidated prior to updating sysfs of the disconnect event
8593 * Invalidate will be handled by audio_extn_ext_disp_set_parameters()
8594 */
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308595 if (audio_is_usb_out_device(device) || audio_is_usb_in_device(device)) {
Kuirong Wanga9f7cee2016-03-07 11:21:52 -08008596 ret = str_parms_get_str(parms, "card", value, sizeof(value));
Satya Krishna Pindiprolice227962017-12-13 16:07:14 +05308597 if (ret >= 0)
8598 audio_extn_usb_remove_device(device, atoi(value));
8599
Zhou Song6f862822017-11-06 17:27:57 +08008600 if (!audio_extn_usb_is_tunnel_supported()) {
8601 ALOGV("detected USB disconnect .. enable proxy");
8602 adev->allow_afe_proxy_usage = true;
8603 }
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -07008604 }
8605 }
8606
Aalique Grahame22e49102018-12-18 14:23:57 -08008607 audio_extn_hfp_set_parameters(adev, parms);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008608 audio_extn_qdsp_set_parameters(adev, parms);
Aalique Grahame22e49102018-12-18 14:23:57 -08008609
8610 status = audio_extn_a2dp_set_parameters(parms, &a2dp_reconfig);
Aniket Kumar Lata23300322019-02-20 22:25:30 -08008611 if (status >= 0 && a2dp_reconfig) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05308612 struct audio_usecase *usecase;
8613 struct listnode *node;
8614 list_for_each(node, &adev->usecase_list) {
8615 usecase = node_to_item(node, struct audio_usecase, list);
Sujin Panicker390724d2019-04-26 10:43:36 +05308616 if (usecase->stream.out && (usecase->type == PCM_PLAYBACK) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008617 is_a2dp_out_device_type(&usecase->device_list)) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05308618 ALOGD("reconfigure a2dp... forcing device switch");
Weiyin Jiang425180d2017-06-05 16:40:23 +08008619 pthread_mutex_unlock(&adev->lock);
Naresh Tannirucd2353e2016-08-19 00:37:25 +05308620 lock_output_stream(usecase->stream.out);
Weiyin Jiang425180d2017-06-05 16:40:23 +08008621 pthread_mutex_lock(&adev->lock);
Naresh Tannirucd2353e2016-08-19 00:37:25 +05308622 audio_extn_a2dp_set_handoff_mode(true);
Manisha Agarwalf1c3b6b2019-06-25 13:00:33 +05308623 ALOGD("Switching to speaker and muting the stream before select_devices");
8624 check_a2dp_restore_l(adev, usecase->stream.out, false);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05308625 //force device switch to re configure encoder
8626 select_devices(adev, usecase->id);
Manisha Agarwalf1c3b6b2019-06-25 13:00:33 +05308627 ALOGD("Unmuting the stream after select_devices");
8628 usecase->stream.out->a2dp_compress_mute = false;
8629 out_set_compr_volume(&usecase->stream.out->stream, usecase->stream.out->volume_l, usecase->stream.out->volume_r);
Naresh Tannirucd2353e2016-08-19 00:37:25 +05308630 audio_extn_a2dp_set_handoff_mode(false);
8631 pthread_mutex_unlock(&usecase->stream.out->lock);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05308632 break;
Manisha Agarwal6a6fb9a2019-12-04 11:38:41 +05308633 } else if ((usecase->stream.out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
8634 usecase->stream.out->a2dp_compress_mute) {
8635 pthread_mutex_unlock(&adev->lock);
8636 lock_output_stream(usecase->stream.out);
8637 pthread_mutex_lock(&adev->lock);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008638 reassign_device_list(&usecase->stream.out->device_list,
8639 AUDIO_DEVICE_OUT_BLUETOOTH_A2DP, "");
Manisha Agarwal6a6fb9a2019-12-04 11:38:41 +05308640 check_a2dp_restore_l(adev, usecase->stream.out, true);
8641 pthread_mutex_unlock(&usecase->stream.out->lock);
8642 break;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05308643 }
8644 }
8645 }
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08008646
8647 //handle vr audio setparam
8648 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_VR_AUDIO_MODE,
8649 value, sizeof(value));
8650 if (ret >= 0) {
8651 ALOGI("Setting vr mode to be %s", value);
8652 if (!strncmp(value, "true", 4)) {
8653 adev->vr_audio_mode_enabled = true;
8654 ALOGI("Setting vr mode to true");
8655 } else if (!strncmp(value, "false", 5)) {
8656 adev->vr_audio_mode_enabled = false;
8657 ALOGI("Setting vr mode to false");
8658 } else {
8659 ALOGI("wrong vr mode set");
8660 }
8661 }
8662
Eric Laurent4b084132018-10-19 17:33:43 -07008663 //FIXME: to be replaced by proper video capture properties API
8664 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_CAMERA_FACING, value, sizeof(value));
8665 if (ret >= 0) {
8666 int camera_facing = CAMERA_FACING_BACK;
8667 if (strcmp(value, AUDIO_PARAMETER_VALUE_FRONT) == 0)
8668 camera_facing = CAMERA_FACING_FRONT;
8669 else if (strcmp(value, AUDIO_PARAMETER_VALUE_BACK) == 0)
8670 camera_facing = CAMERA_FACING_BACK;
8671 else {
8672 ALOGW("%s: invalid camera facing value: %s", __func__, value);
8673 goto done;
8674 }
8675 adev->camera_orientation =
8676 (adev->camera_orientation & ~CAMERA_FACING_MASK) | camera_facing;
8677 struct audio_usecase *usecase;
8678 struct listnode *node;
8679 list_for_each(node, &adev->usecase_list) {
8680 usecase = node_to_item(node, struct audio_usecase, list);
8681 struct stream_in *in = usecase->stream.in;
8682 if (usecase->type == PCM_CAPTURE && in != NULL &&
8683 in->source == AUDIO_SOURCE_CAMCORDER && !in->standby) {
8684 select_devices(adev, in->usecase);
8685 }
8686 }
8687 }
8688
Naresh Tannirucd2353e2016-08-19 00:37:25 +05308689 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08008690done:
8691 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008692 pthread_mutex_unlock(&adev->lock);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05308693error:
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008694 ALOGV("%s: exit with code(%d)", __func__, status);
8695 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008696}
8697
8698static char* adev_get_parameters(const struct audio_hw_device *dev,
8699 const char *keys)
8700{
Sidipotu Ashokaa4fa6a2018-12-21 09:19:26 +05308701 ALOGD("%s:%s", __func__, keys);
8702
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008703 struct audio_device *adev = (struct audio_device *)dev;
8704 struct str_parms *reply = str_parms_create();
8705 struct str_parms *query = str_parms_create_str(keys);
8706 char *str;
Naresh Tannirud7205b62014-06-20 02:54:48 +05308707 char value[256] = {0};
8708 int ret = 0;
8709
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07008710 if (!query || !reply) {
Alexy Josephaee4fdd2016-01-29 13:02:07 -08008711 if (reply) {
8712 str_parms_destroy(reply);
8713 }
8714 if (query) {
8715 str_parms_destroy(query);
8716 }
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07008717 ALOGE("adev_get_parameters: failed to create query or reply");
8718 return NULL;
8719 }
8720
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -08008721 //handle vr audio getparam
8722
8723 ret = str_parms_get_str(query,
8724 AUDIO_PARAMETER_KEY_VR_AUDIO_MODE,
8725 value, sizeof(value));
8726
8727 if (ret >= 0) {
8728 bool vr_audio_enabled = false;
8729 pthread_mutex_lock(&adev->lock);
8730 vr_audio_enabled = adev->vr_audio_mode_enabled;
8731 pthread_mutex_unlock(&adev->lock);
8732
8733 ALOGI("getting vr mode to %d", vr_audio_enabled);
8734
8735 if (vr_audio_enabled) {
8736 str_parms_add_str(reply, AUDIO_PARAMETER_KEY_VR_AUDIO_MODE,
8737 "true");
8738 goto exit;
8739 } else {
8740 str_parms_add_str(reply, AUDIO_PARAMETER_KEY_VR_AUDIO_MODE,
8741 "false");
8742 goto exit;
8743 }
8744 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008745
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008746 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008747 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08008748 voice_get_parameters(adev, query, reply);
Aalique Grahame22e49102018-12-18 14:23:57 -08008749 audio_extn_a2dp_get_parameters(query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008750 platform_get_parameters(adev->platform, query, reply);
Naresh Tanniru80659832014-06-04 18:17:56 +05308751 pthread_mutex_unlock(&adev->lock);
8752
Naresh Tannirud7205b62014-06-20 02:54:48 +05308753exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008754 str = str_parms_to_str(reply);
8755 str_parms_destroy(query);
8756 str_parms_destroy(reply);
8757
Sidipotu Ashokaa4fa6a2018-12-21 09:19:26 +05308758 ALOGD("%s: exit: returns - %s", __func__, str);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008759 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008760}
8761
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008762static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008763{
8764 return 0;
8765}
8766
8767static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
8768{
Haynes Mathew George5191a852013-09-11 14:19:36 -07008769 int ret;
8770 struct audio_device *adev = (struct audio_device *)dev;
Aalique Grahame22e49102018-12-18 14:23:57 -08008771
8772 audio_extn_extspk_set_voice_vol(adev->extspk, volume);
8773
Haynes Mathew George5191a852013-09-11 14:19:36 -07008774 pthread_mutex_lock(&adev->lock);
8775 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07008776 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07008777 pthread_mutex_unlock(&adev->lock);
8778 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008779}
8780
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008781static int adev_set_master_volume(struct audio_hw_device *dev __unused,
8782 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008783{
8784 return -ENOSYS;
8785}
8786
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008787static int adev_get_master_volume(struct audio_hw_device *dev __unused,
8788 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008789{
8790 return -ENOSYS;
8791}
8792
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008793static int adev_set_master_mute(struct audio_hw_device *dev __unused,
8794 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008795{
8796 return -ENOSYS;
8797}
8798
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008799static int adev_get_master_mute(struct audio_hw_device *dev __unused,
8800 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008801{
8802 return -ENOSYS;
8803}
8804
8805static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
8806{
8807 struct audio_device *adev = (struct audio_device *)dev;
Garmond Leung5fd0b552018-04-17 11:56:12 -07008808 struct listnode *node;
8809 struct audio_usecase *usecase = NULL;
8810 int ret = 0;
kunleizdc4af9d2017-05-04 12:15:35 +08008811
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008812 pthread_mutex_lock(&adev->lock);
8813 if (adev->mode != mode) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008814 ALOGD("%s: mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008815 adev->mode = mode;
Kunlei Zhang1d5c7f22019-05-21 14:25:57 +08008816 if (voice_is_in_call(adev) &&
8817 (mode == AUDIO_MODE_NORMAL ||
8818 (mode == AUDIO_MODE_IN_COMMUNICATION && !voice_is_call_state_active(adev)))) {
Garmond Leung5fd0b552018-04-17 11:56:12 -07008819 list_for_each(node, &adev->usecase_list) {
8820 usecase = node_to_item(node, struct audio_usecase, list);
8821 if (usecase->type == VOICE_CALL)
8822 break;
8823 }
8824 if (usecase &&
8825 audio_is_usb_out_device(usecase->out_snd_device & AUDIO_DEVICE_OUT_ALL_USB)) {
8826 ret = audio_extn_usb_check_and_set_svc_int(usecase,
8827 true);
8828 if (ret != 0) {
8829 /* default service interval was successfully updated,
8830 reopen USB backend with new service interval */
8831 check_usecases_codec_backend(adev,
8832 usecase,
8833 usecase->out_snd_device);
8834 }
8835 }
8836
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008837 voice_stop_call(adev);
Banajit Goswami20cdd212015-09-11 01:11:30 -07008838 platform_set_gsm_mode(adev->platform, false);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008839 adev->current_call_output = NULL;
kunleizdc4af9d2017-05-04 12:15:35 +08008840 // restore device for other active usecases after stop call
8841 list_for_each(node, &adev->usecase_list) {
8842 usecase = node_to_item(node, struct audio_usecase, list);
8843 select_devices(adev, usecase->id);
8844 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07008845 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008846 }
8847 pthread_mutex_unlock(&adev->lock);
8848 return 0;
8849}
8850
8851static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
8852{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008853 int ret;
Aalique Grahame22e49102018-12-18 14:23:57 -08008854 struct audio_device *adev = (struct audio_device *)dev;
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008855
8856 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08008857 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008858 ret = voice_set_mic_mute((struct audio_device *)dev, state);
Aalique Grahame22e49102018-12-18 14:23:57 -08008859
Derek Chend2530072014-11-24 12:39:14 -08008860 if (adev->ext_hw_plugin)
8861 ret = audio_extn_ext_hw_plugin_set_mic_mute(adev->ext_hw_plugin, state);
Aalique Grahame22e49102018-12-18 14:23:57 -08008862
8863 adev->mic_muted = state;
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08008864 pthread_mutex_unlock(&adev->lock);
8865
8866 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008867}
8868
8869static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
8870{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07008871 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008872 return 0;
8873}
8874
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07008875static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008876 const struct audio_config *config)
8877{
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008878 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008879
Aalique Grahame22e49102018-12-18 14:23:57 -08008880 /* Don't know if USB HIFI in this context so use true to be conservative */
8881 if (check_input_parameters(config->sample_rate, config->format, channel_count,
8882 true /*is_usb_hifi */) != 0)
8883 return 0;
8884
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07008885 return get_input_buffer_size(config->sample_rate, config->format, channel_count,
8886 false /* is_low_latency: since we don't know, be conservative */);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008887}
8888
Haynes Mathew George484e8d22017-07-31 18:55:17 -07008889static bool adev_input_allow_hifi_record(struct audio_device *adev,
8890 audio_devices_t devices,
8891 audio_input_flags_t flags,
8892 audio_source_t source) {
8893 const bool allowed = true;
8894
8895 if (!audio_is_usb_in_device(devices))
8896 return !allowed;
8897
8898 switch (flags) {
8899 case AUDIO_INPUT_FLAG_NONE:
Haynes Mathew George484e8d22017-07-31 18:55:17 -07008900 break;
Haynes Mathew George59862182017-10-24 16:23:57 -07008901 case AUDIO_INPUT_FLAG_FAST: // disallow hifi record for FAST as
8902 // it affects RTD numbers over USB
Haynes Mathew George484e8d22017-07-31 18:55:17 -07008903 default:
8904 return !allowed;
8905 }
8906
8907 switch (source) {
8908 case AUDIO_SOURCE_DEFAULT:
8909 case AUDIO_SOURCE_MIC:
8910 case AUDIO_SOURCE_UNPROCESSED:
8911 break;
8912 default:
8913 return !allowed;
8914 }
8915
8916 switch (adev->mode) {
8917 case 0:
8918 break;
8919 default:
8920 return !allowed;
8921 }
8922
8923 return allowed;
8924}
8925
Haynes Mathew George4ffef292017-11-21 15:08:02 -08008926static int adev_update_voice_comm_input_stream(struct stream_in *in,
8927 struct audio_config *config)
8928{
8929 bool valid_rate = (config->sample_rate == 8000 ||
8930 config->sample_rate == 16000 ||
8931 config->sample_rate == 32000 ||
8932 config->sample_rate == 48000);
8933 bool valid_ch = audio_channel_count_from_in_mask(in->channel_mask) == 1;
8934
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008935 if(!voice_extn_is_compress_voip_supported()) {
kunleiz28c73e72019-03-27 17:24:04 +08008936 if (valid_rate && valid_ch) {
Haynes Mathew George4ffef292017-11-21 15:08:02 -08008937 in->usecase = USECASE_AUDIO_RECORD_VOIP;
8938 in->config = default_pcm_config_voip_copp;
8939 in->config.period_size = VOIP_IO_BUF_SIZE(in->sample_rate,
8940 DEFAULT_VOIP_BUF_DURATION_MS,
8941 DEFAULT_VOIP_BIT_DEPTH_BYTE)/2;
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008942 } else {
8943 ALOGW("%s No valid input in voip, use defaults"
8944 "sample rate %u, channel mask 0x%X",
8945 __func__, config->sample_rate, in->channel_mask);
8946 }
Haynes Mathew George4ffef292017-11-21 15:08:02 -08008947 in->config.rate = config->sample_rate;
8948 in->sample_rate = config->sample_rate;
8949 } else {
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008950 //XXX needed for voice_extn_compress_voip_open_input_stream
8951 in->config.rate = config->sample_rate;
8952 if ((in->dev->mode == AUDIO_MODE_IN_COMMUNICATION ||
Shalini Manjunathaa763cc42019-08-23 15:13:46 +05308953 in->source == AUDIO_SOURCE_VOICE_COMMUNICATION ||
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08008954 voice_extn_compress_voip_is_active(in->dev)) &&
8955 (voice_extn_compress_voip_is_format_supported(in->format)) &&
8956 valid_rate && valid_ch) {
8957 voice_extn_compress_voip_open_input_stream(in);
8958 // update rate entries to match config from AF
8959 in->config.rate = config->sample_rate;
8960 in->sample_rate = config->sample_rate;
8961 } else {
8962 ALOGW("%s compress voip not active, use defaults", __func__);
8963 }
Haynes Mathew George4ffef292017-11-21 15:08:02 -08008964 }
Haynes Mathew George4ffef292017-11-21 15:08:02 -08008965 return 0;
8966}
8967
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008968static int adev_open_input_stream(struct audio_hw_device *dev,
Bharath Ramachandramurthy76d20892015-04-27 15:47:55 -07008969 audio_io_handle_t handle,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008970 audio_devices_t devices,
8971 struct audio_config *config,
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008972 struct audio_stream_in **stream_in,
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05308973 audio_input_flags_t flags,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08008974 const char *address,
Vidyakumar Athota5c398212015-03-31 21:53:21 -07008975 audio_source_t source)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08008976{
8977 struct audio_device *adev = (struct audio_device *)dev;
8978 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08008979 int ret = 0, buffer_size, frame_size;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07008980 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07008981 bool is_low_latency = false;
Divya Narayanan Poojary45f19192016-09-30 18:52:13 +05308982 bool channel_mask_updated = false;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07008983 bool is_usb_dev = audio_is_usb_in_device(devices);
8984 bool may_use_hifi_record = adev_input_allow_hifi_record(adev,
8985 devices,
8986 flags,
8987 source);
Andy Hung94320602018-10-29 18:31:12 -07008988 ALOGV("%s: enter: flags %#x, is_usb_dev %d, may_use_hifi_record %d,"
8989 " sample_rate %u, channel_mask %#x, format %#x",
8990 __func__, flags, is_usb_dev, may_use_hifi_record,
8991 config->sample_rate, config->channel_mask, config->format);
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05308992
kunleizdff872d2018-08-20 14:40:33 +08008993 if (is_usb_dev && (!audio_extn_usb_connected(NULL))) {
kunleizd6a9e0c2018-07-30 15:38:52 +08008994 is_usb_dev = false;
8995 devices = AUDIO_DEVICE_IN_BUILTIN_MIC;
8996 ALOGW("%s: ignore set device to non existing USB card, use input device(%#x)",
8997 __func__, devices);
8998 }
8999
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009000 *stream_in = NULL;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009001
9002 if (!(is_usb_dev && may_use_hifi_record)) {
9003 if (config->sample_rate == 0)
9004 config->sample_rate = 48000;
9005 if (config->channel_mask == AUDIO_CHANNEL_NONE)
9006 config->channel_mask = AUDIO_CHANNEL_IN_MONO;
9007 if (config->format == AUDIO_FORMAT_DEFAULT)
9008 config->format = AUDIO_FORMAT_PCM_16_BIT;
9009
9010 channel_count = audio_channel_count_from_in_mask(config->channel_mask);
9011
Aalique Grahame22e49102018-12-18 14:23:57 -08009012 if (check_input_parameters(config->sample_rate, config->format, channel_count,
9013 false) != 0)
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009014 return -EINVAL;
Chaithanya Krishna Bacharaju9955b162016-05-25 16:25:53 +05309015 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009016
Rahul Sharma99770982019-03-06 17:05:26 +05309017 pthread_mutex_lock(&adev->lock);
9018 if (in_get_stream(adev, handle) != NULL) {
9019 ALOGW("%s, input stream already opened", __func__);
9020 ret = -EEXIST;
9021 }
9022 pthread_mutex_unlock(&adev->lock);
9023 if (ret)
9024 return ret;
9025
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009026 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07009027
9028 if (!in) {
9029 ALOGE("failed to allocate input stream");
9030 return -ENOMEM;
9031 }
9032
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05309033 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
Manish Dewanganba9fcfa2016-03-24 16:20:06 +05309034 stream_handle(%p) io_handle(%d) source(%d) format %x",__func__, config->sample_rate,
9035 config->channel_mask, devices, &in->stream, handle, source, config->format);
Ravi Kumar Alamanda40703102014-04-24 10:34:41 -07009036 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
Shiv Maliyappanahalli736d4ce2015-09-28 15:23:06 -07009037 pthread_mutex_init(&in->pre_lock, (const pthread_mutexattr_t *) NULL);
Ravi Kumar Alamanda40703102014-04-24 10:34:41 -07009038
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009039 in->stream.common.get_sample_rate = in_get_sample_rate;
9040 in->stream.common.set_sample_rate = in_set_sample_rate;
9041 in->stream.common.get_buffer_size = in_get_buffer_size;
9042 in->stream.common.get_channels = in_get_channels;
9043 in->stream.common.get_format = in_get_format;
9044 in->stream.common.set_format = in_set_format;
9045 in->stream.common.standby = in_standby;
9046 in->stream.common.dump = in_dump;
9047 in->stream.common.set_parameters = in_set_parameters;
9048 in->stream.common.get_parameters = in_get_parameters;
9049 in->stream.common.add_audio_effect = in_add_audio_effect;
9050 in->stream.common.remove_audio_effect = in_remove_audio_effect;
9051 in->stream.set_gain = in_set_gain;
9052 in->stream.read = in_read;
9053 in->stream.get_input_frames_lost = in_get_input_frames_lost;
Aalique Grahame22e49102018-12-18 14:23:57 -08009054 in->stream.get_capture_position = in_get_capture_position;
Naresh Tannirudcb47c52018-06-25 16:23:32 +05309055 in->stream.get_active_microphones = in_get_active_microphones;
Paul McLeana50b7332018-12-17 08:24:21 -07009056 in->stream.set_microphone_direction = in_set_microphone_direction;
9057 in->stream.set_microphone_field_dimension = in_set_microphone_field_dimension;
juyuchendb308c22019-01-21 11:57:17 -07009058 in->stream.update_sink_metadata = in_update_sink_metadata;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009059
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009060 list_init(&in->device_list);
9061 update_device_list(&in->device_list, devices, address, true);
Vidyakumar Athota5c398212015-03-31 21:53:21 -07009062 in->source = source;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009063 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009064 in->standby = 1;
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07009065 in->capture_handle = handle;
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07009066 in->flags = flags;
Haynes Mathew George46740472017-10-27 18:40:12 -07009067 in->bit_width = 16;
9068 in->af_period_multiplier = 1;
justinweng20fb6d82019-02-21 18:49:00 -07009069 in->direction = MIC_DIRECTION_UNSPECIFIED;
9070 in->zoom = 0;
Carter Hsu2e429db2019-05-14 18:50:52 +08009071 list_init(&in->aec_list);
9072 list_init(&in->ns_list);
Phil Burkd898ba62019-06-20 12:49:01 -07009073 in->mmap_shared_memory_fd = -1; // not open
Haynes Mathew George46740472017-10-27 18:40:12 -07009074
Andy Hung94320602018-10-29 18:31:12 -07009075 ALOGV("%s: source %d, config->channel_mask %#x", __func__, source, config->channel_mask);
Aalique Grahame22e49102018-12-18 14:23:57 -08009076 if (source == AUDIO_SOURCE_VOICE_UPLINK ||
9077 source == AUDIO_SOURCE_VOICE_DOWNLINK) {
9078 /* Force channel config requested to mono if incall
9079 record is being requested for only uplink/downlink */
9080 if (config->channel_mask != AUDIO_CHANNEL_IN_MONO) {
9081 config->channel_mask = AUDIO_CHANNEL_IN_MONO;
9082 ret = -EINVAL;
9083 goto err_open;
9084 }
9085 }
9086
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009087 if (is_usb_dev && may_use_hifi_record) {
9088 /* HiFi record selects an appropriate format, channel, rate combo
9089 depending on sink capabilities*/
9090 ret = read_usb_sup_params_and_compare(false /*is_playback*/,
9091 &config->format,
9092 &in->supported_formats[0],
9093 MAX_SUPPORTED_FORMATS,
9094 &config->channel_mask,
9095 &in->supported_channel_masks[0],
9096 MAX_SUPPORTED_CHANNEL_MASKS,
9097 &config->sample_rate,
9098 &in->supported_sample_rates[0],
9099 MAX_SUPPORTED_SAMPLE_RATES);
9100 if (ret != 0) {
9101 ret = -EINVAL;
9102 goto err_open;
9103 }
9104 channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Haynes Mathew George4ffef292017-11-21 15:08:02 -08009105 } else if (config->format == AUDIO_FORMAT_DEFAULT) {
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309106 config->format = AUDIO_FORMAT_PCM_16_BIT;
Surendar karkaaca3d082017-11-09 15:18:37 +05309107 } else if (property_get_bool("vendor.audio.capture.pcm.32bit.enable", false)
9108 && config->format == AUDIO_FORMAT_PCM_32_BIT) {
9109 in->config.format = PCM_FORMAT_S32_LE;
9110 in->bit_width = 32;
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309111 } else if ((config->format == AUDIO_FORMAT_PCM_FLOAT) ||
9112 (config->format == AUDIO_FORMAT_PCM_32_BIT) ||
9113 (config->format == AUDIO_FORMAT_PCM_24_BIT_PACKED) ||
9114 (config->format == AUDIO_FORMAT_PCM_8_24_BIT)) {
9115 bool ret_error = false;
9116 in->bit_width = 24;
9117 /* 24 bit is restricted to UNPROCESSED source only,also format supported
9118 from HAL is 24_packed and 8_24
9119 *> In case of UNPROCESSED source, for 24 bit, if format requested is other than
9120 24_packed return error indicating supported format is 24_packed
9121 *> In case of any other source requesting 24 bit or float return error
9122 indicating format supported is 16 bit only.
9123
9124 on error flinger will retry with supported format passed
9125 */
9126 if ((source != AUDIO_SOURCE_UNPROCESSED) &&
9127 (source != AUDIO_SOURCE_CAMCORDER)) {
9128 config->format = AUDIO_FORMAT_PCM_16_BIT;
9129 if (config->sample_rate > 48000)
9130 config->sample_rate = 48000;
9131 ret_error = true;
Haynes Mathew George46740472017-10-27 18:40:12 -07009132 } else if (!(config->format == AUDIO_FORMAT_PCM_24_BIT_PACKED ||
9133 config->format == AUDIO_FORMAT_PCM_8_24_BIT)) {
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309134 config->format = AUDIO_FORMAT_PCM_24_BIT_PACKED;
9135 ret_error = true;
9136 }
9137
9138 if (ret_error) {
9139 ret = -EINVAL;
9140 goto err_open;
9141 }
9142 }
9143
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009144 in->channel_mask = config->channel_mask;
9145 in->format = config->format;
9146
9147 in->usecase = USECASE_AUDIO_RECORD;
Samyak Jain0aa07ab2019-04-04 14:36:32 +05309148
9149 if (in->source == AUDIO_SOURCE_FM_TUNER) {
9150 if(!get_usecase_from_list(adev, USECASE_AUDIO_RECORD_FM_VIRTUAL))
9151 in->usecase = USECASE_AUDIO_RECORD_FM_VIRTUAL;
9152 else {
9153 ret = -EINVAL;
9154 goto err_open;
9155 }
9156 }
9157
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009158 if (config->sample_rate == LOW_LATENCY_CAPTURE_SAMPLE_RATE &&
Deeraj Somanfa377bf2019-02-06 12:57:59 +05309159 (flags & AUDIO_INPUT_FLAG_TIMESTAMP) == 0 &&
9160 (flags & AUDIO_INPUT_FLAG_COMPRESS) == 0 &&
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009161 (flags & AUDIO_INPUT_FLAG_FAST) != 0) {
9162 is_low_latency = true;
9163#if LOW_LATENCY_CAPTURE_USE_CASE
9164 in->usecase = USECASE_AUDIO_RECORD_LOW_LATENCY;
9165#endif
9166 in->realtime = may_use_noirq_mode(adev, in->usecase, in->flags);
Aalique Grahame22e49102018-12-18 14:23:57 -08009167 if (!in->realtime) {
9168 in->config = pcm_config_audio_capture;
9169 frame_size = audio_stream_in_frame_size(&in->stream);
9170 buffer_size = get_input_buffer_size(config->sample_rate,
9171 config->format,
9172 channel_count,
9173 is_low_latency);
9174 in->config.period_size = buffer_size / frame_size;
9175 in->config.rate = config->sample_rate;
9176 in->af_period_multiplier = 1;
9177 } else {
9178 // period size is left untouched for rt mode playback
9179 in->config = pcm_config_audio_capture_rt;
9180 in->af_period_multiplier = af_period_multiplier;
9181 }
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009182 }
9183
9184 if ((config->sample_rate == LOW_LATENCY_CAPTURE_SAMPLE_RATE) &&
9185 ((in->flags & AUDIO_INPUT_FLAG_MMAP_NOIRQ) != 0)) {
9186 in->realtime = 0;
9187 in->usecase = USECASE_AUDIO_RECORD_MMAP;
9188 in->config = pcm_config_mmap_capture;
Haynes Mathew George46740472017-10-27 18:40:12 -07009189 in->config.format = pcm_format_from_audio_format(config->format);
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009190 in->stream.start = in_start;
9191 in->stream.stop = in_stop;
9192 in->stream.create_mmap_buffer = in_create_mmap_buffer;
9193 in->stream.get_mmap_position = in_get_mmap_position;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009194 ALOGV("%s: USECASE_AUDIO_RECORD_MMAP", __func__);
9195 } else if (in->realtime) {
9196 in->config = pcm_config_audio_capture_rt;
Haynes Mathew George46740472017-10-27 18:40:12 -07009197 in->config.format = pcm_format_from_audio_format(config->format);
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009198 in->af_period_multiplier = af_period_multiplier;
Haynes Mathew George46740472017-10-27 18:40:12 -07009199 } else if (is_usb_dev && may_use_hifi_record) {
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009200 in->usecase = USECASE_AUDIO_RECORD_HIFI;
9201 in->config = pcm_config_audio_capture;
9202 frame_size = audio_stream_in_frame_size(&in->stream);
9203 buffer_size = get_input_buffer_size(config->sample_rate,
9204 config->format,
9205 channel_count,
9206 false /*is_low_latency*/);
9207 in->config.period_size = buffer_size / frame_size;
9208 in->config.rate = config->sample_rate;
Haynes Mathew George484e8d22017-07-31 18:55:17 -07009209 in->config.format = pcm_format_from_audio_format(config->format);
Karthikeyan Mani07faa602018-08-20 11:01:32 -07009210 switch (config->format) {
9211 case AUDIO_FORMAT_PCM_32_BIT:
9212 in->bit_width = 32;
9213 break;
9214 case AUDIO_FORMAT_PCM_24_BIT_PACKED:
9215 case AUDIO_FORMAT_PCM_8_24_BIT:
9216 in->bit_width = 24;
9217 break;
9218 default:
9219 in->bit_width = 16;
9220 }
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009221 } else if (is_single_device_type_equal(&in->device_list,
9222 AUDIO_DEVICE_IN_TELEPHONY_RX) ||
9223 is_single_device_type_equal(&in->device_list,
9224 AUDIO_DEVICE_IN_PROXY)) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07009225 if (config->sample_rate == 0)
9226 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
9227 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
9228 config->sample_rate != 8000) {
9229 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
9230 ret = -EINVAL;
9231 goto err_open;
9232 }
9233 if (config->format == AUDIO_FORMAT_DEFAULT)
9234 config->format = AUDIO_FORMAT_PCM_16_BIT;
9235 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
9236 config->format = AUDIO_FORMAT_PCM_16_BIT;
9237 ret = -EINVAL;
9238 goto err_open;
9239 }
9240
9241 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
9242 in->config = pcm_config_afe_proxy_record;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07009243 in->config.rate = config->sample_rate;
Aalique Grahame22e49102018-12-18 14:23:57 -08009244 in->af_period_multiplier = 1;
9245 } else if (in->source == AUDIO_SOURCE_VOICE_COMMUNICATION &&
9246 in->flags & AUDIO_INPUT_FLAG_VOIP_TX &&
9247 (config->sample_rate == 8000 ||
9248 config->sample_rate == 16000 ||
9249 config->sample_rate == 32000 ||
9250 config->sample_rate == 48000) &&
9251 channel_count == 1) {
9252 in->usecase = USECASE_AUDIO_RECORD_VOIP;
9253 in->config = pcm_config_audio_capture;
9254 frame_size = audio_stream_in_frame_size(&in->stream);
9255 buffer_size = get_stream_buffer_size(VOIP_CAPTURE_PERIOD_DURATION_MSEC,
9256 config->sample_rate,
9257 config->format,
9258 channel_count, false /*is_low_latency*/);
9259 in->config.period_size = buffer_size / frame_size;
9260 in->config.period_count = VOIP_CAPTURE_PERIOD_COUNT;
9261 in->config.rate = config->sample_rate;
9262 in->af_period_multiplier = 1;
Haynes Mathew George46740472017-10-27 18:40:12 -07009263 } else {
Revathi Uddarajud2634032017-12-07 14:42:34 +05309264 int ret_val;
9265 pthread_mutex_lock(&adev->lock);
9266 ret_val = audio_extn_check_and_set_multichannel_usecase(adev,
9267 in, config, &channel_mask_updated);
9268 pthread_mutex_unlock(&adev->lock);
9269
9270 if (!ret_val) {
9271 if (channel_mask_updated == true) {
9272 ALOGD("%s: return error to retry with updated channel mask (%#x)",
9273 __func__, config->channel_mask);
9274 ret = -EINVAL;
9275 goto err_open;
9276 }
9277 ALOGD("%s: created multi-channel session succesfully",__func__);
9278 } else if (audio_extn_compr_cap_enabled() &&
9279 audio_extn_compr_cap_format_supported(config->format) &&
9280 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
9281 audio_extn_compr_cap_init(in);
9282 } else if (audio_extn_cin_applicable_stream(in)) {
Deeraj Soman14230922019-01-30 16:39:30 +05309283 ret = audio_extn_cin_configure_input_stream(in, config);
Revathi Uddarajud2634032017-12-07 14:42:34 +05309284 if (ret)
9285 goto err_open;
9286 } else {
9287 in->config = pcm_config_audio_capture;
9288 in->config.rate = config->sample_rate;
9289 in->config.format = pcm_format_from_audio_format(config->format);
Revathi Uddarajud2634032017-12-07 14:42:34 +05309290 in->format = config->format;
9291 frame_size = audio_stream_in_frame_size(&in->stream);
9292 buffer_size = get_input_buffer_size(config->sample_rate,
Haynes Mathew George46740472017-10-27 18:40:12 -07009293 config->format,
9294 channel_count,
9295 is_low_latency);
Dieter Luecking5d57def2018-09-07 14:23:37 +02009296 /* prevent division-by-zero */
9297 if (frame_size == 0) {
9298 ALOGE("%s: Error frame_size==0", __func__);
9299 ret = -EINVAL;
9300 goto err_open;
9301 }
9302
Revathi Uddarajud2634032017-12-07 14:42:34 +05309303 in->config.period_size = buffer_size / frame_size;
Aalique Grahame22e49102018-12-18 14:23:57 -08009304 in->af_period_multiplier = 1;
Haynes Mathew George4ffef292017-11-21 15:08:02 -08009305
Revathi Uddarajud2634032017-12-07 14:42:34 +05309306 if (in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) {
9307 /* optionally use VOIP usecase depending on config(s) */
9308 ret = adev_update_voice_comm_input_stream(in, config);
9309 }
Haynes Mathew George4ffef292017-11-21 15:08:02 -08009310
Revathi Uddarajud2634032017-12-07 14:42:34 +05309311 if (ret) {
9312 ALOGE("%s AUDIO_SOURCE_VOICE_COMMUNICATION invalid args", __func__);
9313 goto err_open;
9314 }
Haynes Mathew George4ffef292017-11-21 15:08:02 -08009315 }
Jaideep Sharmad305a4a2020-02-27 14:29:04 +05309316
9317 /* assign concurrent capture usecase if record has to caried out from
9318 * actual hardware input source */
9319 if (audio_extn_is_concurrent_capture_enabled() &&
9320 !audio_is_virtual_input_source(in->source)) {
Samyak Jainc37062f2019-04-25 18:41:06 +05309321 /* Acquire lock to avoid two concurrent use cases initialized to
9322 same pcm record use case */
kunleiz28c73e72019-03-27 17:24:04 +08009323
Samyak Jainc37062f2019-04-25 18:41:06 +05309324 if (in->usecase == USECASE_AUDIO_RECORD) {
9325 pthread_mutex_lock(&adev->lock);
9326 if (!(adev->pcm_record_uc_state)) {
9327 ALOGV("%s: using USECASE_AUDIO_RECORD",__func__);
9328 adev->pcm_record_uc_state = 1;
9329 pthread_mutex_unlock(&adev->lock);
9330 } else {
9331 pthread_mutex_unlock(&adev->lock);
9332 /* Assign compress record use case for second record */
9333 in->usecase = USECASE_AUDIO_RECORD_COMPRESS2;
9334 in->flags |= AUDIO_INPUT_FLAG_COMPRESS;
9335 ALOGV("%s: overriding usecase with USECASE_AUDIO_RECORD_COMPRESS2 and appending compress flag", __func__);
9336 if (audio_extn_cin_applicable_stream(in)) {
9337 in->sample_rate = config->sample_rate;
Deeraj Soman14230922019-01-30 16:39:30 +05309338 ret = audio_extn_cin_configure_input_stream(in, config);
Samyak Jainc37062f2019-04-25 18:41:06 +05309339 if (ret)
9340 goto err_open;
9341 }
9342 }
9343 }
kunleiz28c73e72019-03-27 17:24:04 +08009344 }
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07009345 }
Ramjee Singh82fd0c12019-08-21 16:31:33 +05309346 if (audio_extn_ssr_get_stream() != in)
9347 in->config.channels = channel_count;
Aniket Kumar Lata23d8cbf2019-04-10 19:54:46 -07009348
Aniket Kumar Lata23d8cbf2019-04-10 19:54:46 -07009349 in->sample_rate = in->config.rate;
9350
Dhananjay Kumard6d32152016-10-13 16:11:03 +05309351 audio_extn_utils_update_stream_input_app_type_cfg(adev->platform,
9352 &adev->streams_input_cfg_list,
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009353 &in->device_list, flags, in->format,
Haynes Mathew George4ffef292017-11-21 15:08:02 -08009354 in->sample_rate, in->bit_width,
9355 in->profile, &in->app_type_cfg);
Naresh Tanniru04f71882018-06-26 17:46:22 +05309356 register_format(in->format, in->supported_formats);
9357 register_channel_mask(in->channel_mask, in->supported_channel_masks);
9358 register_sample_rate(in->sample_rate, in->supported_sample_rates);
Dhananjay Kumard6d32152016-10-13 16:11:03 +05309359
Aalique Grahame22e49102018-12-18 14:23:57 -08009360 in->error_log = error_log_create(
9361 ERROR_LOG_ENTRIES,
9362 1000000000 /* aggregate consecutive identical errors within one second */);
9363
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07009364 /* This stream could be for sound trigger lab,
9365 get sound trigger pcm if present */
9366 audio_extn_sound_trigger_check_and_get_session(in);
9367
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05309368 lock_input_stream(in);
9369 audio_extn_snd_mon_register_listener(in, in_snd_mon_cb);
9370 pthread_mutex_lock(&adev->lock);
9371 in->card_status = adev->card_status;
9372 pthread_mutex_unlock(&adev->lock);
9373 pthread_mutex_unlock(&in->lock);
9374
Aalique Grahame22e49102018-12-18 14:23:57 -08009375 stream_app_type_cfg_init(&in->app_type_cfg);
9376
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009377 *stream_in = &in->stream;
Derek Chenf939fb72018-11-13 13:34:41 -08009378
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009379 ret = io_streams_map_insert(adev, &in->stream.common,
9380 handle, AUDIO_PATCH_HANDLE_NONE);
9381 if (ret != 0)
9382 goto err_open;
9383
Derek Chenf939fb72018-11-13 13:34:41 -08009384 streams_input_ctxt_t *in_ctxt = (streams_input_ctxt_t *)
9385 calloc(1, sizeof(streams_input_ctxt_t));
9386 if (in_ctxt == NULL) {
9387 ALOGE("%s fail to allocate input ctxt", __func__);
9388 ret = -ENOMEM;
9389 goto err_open;
9390 }
9391 in_ctxt->input = in;
9392
9393 pthread_mutex_lock(&adev->lock);
9394 list_add_tail(&adev->active_inputs_list, &in_ctxt->list);
9395 pthread_mutex_unlock(&adev->lock);
9396
Eric Laurent994a6932013-07-17 11:51:42 -07009397 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08009398 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009399
9400err_open:
Samyak Jainc37062f2019-04-25 18:41:06 +05309401 if (in->usecase == USECASE_AUDIO_RECORD) {
9402 pthread_mutex_lock(&adev->lock);
9403 adev->pcm_record_uc_state = 0;
9404 pthread_mutex_unlock(&adev->lock);
9405 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009406 free(in);
9407 *stream_in = NULL;
9408 return ret;
9409}
9410
9411static void adev_close_input_stream(struct audio_hw_device *dev,
9412 struct audio_stream_in *stream)
9413{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08009414 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07009415 struct stream_in *in = (struct stream_in *)stream;
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07009416 struct audio_device *adev = (struct audio_device *)dev;
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05309417
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05309418 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08009419
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009420 if (in == NULL) {
9421 ALOGE("%s: audio_stream_in ptr is NULL", __func__);
9422 return;
9423 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009424 io_streams_map_remove(adev, in->capture_handle);
9425
kunleiz70e57612018-12-28 17:50:23 +08009426 /* must deregister from sndmonitor first to prevent races
9427 * between the callback and close_stream
9428 */
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05309429 audio_extn_snd_mon_unregister_listener(stream);
9430
kunleiz70e57612018-12-28 17:50:23 +08009431 /* Disable echo reference if there are no active input, hfp call
9432 * and sound trigger while closing input stream
9433 */
Eric Laurent637e2d42018-11-15 12:24:31 -08009434 if (adev_get_active_input(adev) == NULL &&
kunleiz70e57612018-12-28 17:50:23 +08009435 !audio_extn_hfp_is_active(adev) &&
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009436 !audio_extn_sound_trigger_check_ec_ref_enable()) {
9437 struct listnode out_devices;
9438 list_init(&out_devices);
9439 platform_set_echo_reference(adev, false, &out_devices);
9440 } else
kunleiz70e57612018-12-28 17:50:23 +08009441 audio_extn_sound_trigger_update_ec_ref_status(false);
Venkata Narendra Kumar Gutta1bbbf542014-09-04 19:11:25 +05309442
Weiyin Jiang2995f662019-04-17 14:25:12 +08009443 error_log_destroy(in->error_log);
9444 in->error_log = NULL;
9445
Pallavid7c7a272018-01-16 11:22:55 +05309446
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08009447 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05309448 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08009449 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05309450 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08009451 if (ret != 0)
9452 ALOGE("%s: Compress voip input cannot be closed, error:%d",
9453 __func__, ret);
9454 } else
9455 in_standby(&stream->common);
9456
Revathi Uddarajud2634032017-12-07 14:42:34 +05309457 pthread_mutex_lock(&adev->lock);
Samyak Jain15fda662018-12-18 16:40:52 +05309458 if (in->usecase == USECASE_AUDIO_RECORD) {
9459 adev->pcm_record_uc_state = 0;
9460 }
9461
Shiv Maliyappanahalli5a10aea2015-07-02 10:36:23 -07009462 if (audio_extn_ssr_get_stream() == in) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07009463 audio_extn_ssr_deinit();
9464 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009465
Garmond Leunge2433c32017-09-28 21:51:22 -07009466 if (audio_extn_ffv_get_stream() == in) {
9467 audio_extn_ffv_stream_deinit();
9468 }
9469
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309470 if (audio_extn_compr_cap_enabled() &&
Mingming Yine62d7842013-10-25 16:26:03 -07009471 audio_extn_compr_cap_format_supported(in->config.format))
9472 audio_extn_compr_cap_deinit();
Dhanalakshmi Siddani74cf00b2016-12-02 13:55:57 +05309473
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309474 if (audio_extn_cin_attached_usecase(in->usecase))
Manish Dewangan46e07982018-12-13 18:18:59 +05309475 audio_extn_cin_free_input_stream_resources(in);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07009476
Mingming Yinfd7607b2016-01-22 12:48:44 -08009477 if (in->is_st_session) {
9478 ALOGV("%s: sound trigger pcm stop lab", __func__);
9479 audio_extn_sound_trigger_stop_lab(in);
9480 }
Derek Chenf939fb72018-11-13 13:34:41 -08009481 streams_input_ctxt_t *in_ctxt = in_get_stream(adev, in->capture_handle);
9482 if (in_ctxt != NULL) {
9483 list_remove(&in_ctxt->list);
9484 free(in_ctxt);
9485 } else {
9486 ALOGW("%s, input stream already closed", __func__);
9487 }
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07009488 free(stream);
Revathi Uddarajud2634032017-12-07 14:42:34 +05309489 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009490 return;
9491}
9492
Aalique Grahame22e49102018-12-18 14:23:57 -08009493/* verifies input and output devices and their capabilities.
9494 *
9495 * This verification is required when enabling extended bit-depth or
9496 * sampling rates, as not all qcom products support it.
9497 *
9498 * Suitable for calling only on initialization such as adev_open().
9499 * It fills the audio_device use_case_table[] array.
9500 *
9501 * Has a side-effect that it needs to configure audio routing / devices
9502 * in order to power up the devices and read the device parameters.
9503 * It does not acquire any hw device lock. Should restore the devices
9504 * back to "normal state" upon completion.
9505 */
9506static int adev_verify_devices(struct audio_device *adev)
9507{
9508 /* enumeration is a bit difficult because one really wants to pull
9509 * the use_case, device id, etc from the hidden pcm_device_table[].
9510 * In this case there are the following use cases and device ids.
9511 *
9512 * [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = {0, 0},
9513 * [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = {15, 15},
9514 * [USECASE_AUDIO_PLAYBACK_HIFI] = {1, 1},
9515 * [USECASE_AUDIO_PLAYBACK_OFFLOAD] = {9, 9},
9516 * [USECASE_AUDIO_RECORD] = {0, 0},
9517 * [USECASE_AUDIO_RECORD_LOW_LATENCY] = {15, 15},
9518 * [USECASE_VOICE_CALL] = {2, 2},
9519 *
9520 * USECASE_AUDIO_PLAYBACK_OFFLOAD, USECASE_AUDIO_PLAYBACK_HIFI omitted.
9521 * USECASE_VOICE_CALL omitted, but possible for either input or output.
9522 */
9523
9524 /* should be the usecases enabled in adev_open_input_stream() */
9525 static const int test_in_usecases[] = {
9526 USECASE_AUDIO_RECORD,
9527 USECASE_AUDIO_RECORD_LOW_LATENCY, /* does not appear to be used */
9528 };
9529 /* should be the usecases enabled in adev_open_output_stream()*/
9530 static const int test_out_usecases[] = {
9531 USECASE_AUDIO_PLAYBACK_DEEP_BUFFER,
9532 USECASE_AUDIO_PLAYBACK_LOW_LATENCY,
9533 };
9534 static const usecase_type_t usecase_type_by_dir[] = {
9535 PCM_PLAYBACK,
9536 PCM_CAPTURE,
9537 };
9538 static const unsigned flags_by_dir[] = {
9539 PCM_OUT,
9540 PCM_IN,
9541 };
9542
9543 size_t i;
9544 unsigned dir;
9545 const unsigned card_id = adev->snd_card;
9546
9547 for (dir = 0; dir < 2; ++dir) {
9548 const usecase_type_t usecase_type = usecase_type_by_dir[dir];
9549 const unsigned flags_dir = flags_by_dir[dir];
9550 const size_t testsize =
9551 dir ? ARRAY_SIZE(test_in_usecases) : ARRAY_SIZE(test_out_usecases);
9552 const int *testcases =
9553 dir ? test_in_usecases : test_out_usecases;
9554 const audio_devices_t audio_device =
9555 dir ? AUDIO_DEVICE_IN_BUILTIN_MIC : AUDIO_DEVICE_OUT_SPEAKER;
9556
9557 for (i = 0; i < testsize; ++i) {
9558 const audio_usecase_t audio_usecase = testcases[i];
9559 int device_id;
9560 struct pcm_params **pparams;
9561 struct stream_out out;
9562 struct stream_in in;
9563 struct audio_usecase uc_info;
9564 int retval;
9565
9566 pparams = &adev->use_case_table[audio_usecase];
9567 pcm_params_free(*pparams); /* can accept null input */
9568 *pparams = NULL;
9569
9570 /* find the device ID for the use case (signed, for error) */
9571 device_id = platform_get_pcm_device_id(audio_usecase, usecase_type);
9572 if (device_id < 0)
9573 continue;
9574
9575 /* prepare structures for device probing */
9576 memset(&uc_info, 0, sizeof(uc_info));
9577 uc_info.id = audio_usecase;
9578 uc_info.type = usecase_type;
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -08009579 list_init(&uc_info.device_list);
Aalique Grahame22e49102018-12-18 14:23:57 -08009580 if (dir) {
Aalique Grahame22e49102018-12-18 14:23:57 -08009581 memset(&in, 0, sizeof(in));
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -08009582 list_init(&in.device_list);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009583 update_device_list(&in.device_list, audio_device, "", true);
Aalique Grahame22e49102018-12-18 14:23:57 -08009584 in.source = AUDIO_SOURCE_VOICE_COMMUNICATION;
9585 uc_info.stream.in = &in;
Aalique Grahame22e49102018-12-18 14:23:57 -08009586 }
9587 memset(&out, 0, sizeof(out));
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -08009588 list_init(&out.device_list);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009589 update_device_list(&out.device_list, audio_device, "", true);
Aalique Grahame22e49102018-12-18 14:23:57 -08009590 uc_info.stream.out = &out;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009591 update_device_list(&uc_info.device_list, audio_device, "", true);
Aalique Grahame22e49102018-12-18 14:23:57 -08009592 uc_info.in_snd_device = SND_DEVICE_NONE;
9593 uc_info.out_snd_device = SND_DEVICE_NONE;
9594 list_add_tail(&adev->usecase_list, &uc_info.list);
9595
9596 /* select device - similar to start_(in/out)put_stream() */
9597 retval = select_devices(adev, audio_usecase);
9598 if (retval >= 0) {
9599 *pparams = pcm_params_get(card_id, device_id, flags_dir);
9600#if LOG_NDEBUG == 0
Aalique Grahame203bee02019-03-13 17:49:36 -07009601 char info[512]; /* for possible debug info */
Aalique Grahame22e49102018-12-18 14:23:57 -08009602 if (*pparams) {
9603 ALOGV("%s: (%s) card %d device %d", __func__,
9604 dir ? "input" : "output", card_id, device_id);
9605 pcm_params_to_string(*pparams, info, ARRAY_SIZE(info));
9606 } else {
9607 ALOGV("%s: cannot locate card %d device %d", __func__, card_id, device_id);
9608 }
9609#endif
9610 }
9611
9612 /* deselect device - similar to stop_(in/out)put_stream() */
9613 /* 1. Get and set stream specific mixer controls */
9614 retval = disable_audio_route(adev, &uc_info);
9615 /* 2. Disable the rx device */
9616 retval = disable_snd_device(adev,
9617 dir ? uc_info.in_snd_device : uc_info.out_snd_device);
9618 list_remove(&uc_info.list);
9619 }
9620 }
Aalique Grahame22e49102018-12-18 14:23:57 -08009621 return 0;
9622}
9623
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009624int update_patch(unsigned int num_sources,
9625 const struct audio_port_config *sources,
9626 unsigned int num_sinks,
9627 const struct audio_port_config *sinks,
9628 audio_patch_handle_t handle,
9629 struct audio_patch_info *p_info,
9630 patch_type_t patch_type, bool new_patch)
9631{
9632 ALOGD("%s: enter", __func__);
9633
9634 if (p_info == NULL) {
9635 ALOGE("%s: Invalid patch pointer", __func__);
9636 return -EINVAL;
9637 }
9638
9639 if (new_patch) {
9640 p_info->patch = (struct audio_patch *) calloc(1, sizeof(struct audio_patch));
9641 if (p_info->patch == NULL) {
9642 ALOGE("%s: Could not allocate patch", __func__);
9643 return -ENOMEM;
9644 }
9645 }
9646
9647 p_info->patch->id = handle;
9648 p_info->patch->num_sources = num_sources;
9649 p_info->patch->num_sinks = num_sinks;
9650
9651 for (int i = 0; i < num_sources; i++)
9652 p_info->patch->sources[i] = sources[i];
9653 for (int i = 0; i < num_sinks; i++)
9654 p_info->patch->sinks[i] = sinks[i];
9655
9656 p_info->patch_type = patch_type;
9657 return 0;
9658}
9659
9660audio_patch_handle_t generate_patch_handle()
9661{
9662 static audio_patch_handle_t patch_handle = AUDIO_PATCH_HANDLE_NONE;
9663 if (++patch_handle < 0)
9664 patch_handle = AUDIO_PATCH_HANDLE_NONE + 1;
9665 return patch_handle;
9666}
9667
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309668int adev_create_audio_patch(struct audio_hw_device *dev,
9669 unsigned int num_sources,
9670 const struct audio_port_config *sources,
9671 unsigned int num_sinks,
9672 const struct audio_port_config *sinks,
9673 audio_patch_handle_t *handle)
9674{
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009675 int ret = 0;
9676 struct audio_device *adev = (struct audio_device *)dev;
9677 struct audio_patch_info *p_info = NULL;
9678 patch_type_t patch_type = PATCH_NONE;
9679 audio_io_handle_t io_handle = AUDIO_IO_HANDLE_NONE;
9680 audio_source_t input_source = AUDIO_SOURCE_DEFAULT;
9681 struct audio_stream_info *s_info = NULL;
9682 struct audio_stream *stream = NULL;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009683 struct listnode devices;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009684 audio_devices_t device_type = AUDIO_DEVICE_NONE;
9685 bool new_patch = false;
9686 char addr[AUDIO_DEVICE_MAX_ADDRESS_LEN];
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309687
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009688 ALOGD("%s: enter: num sources %d, num_sinks %d, handle %d", __func__,
9689 num_sources, num_sinks, *handle);
9690
9691 if (num_sources == 0 || num_sources > AUDIO_PATCH_PORTS_MAX ||
9692 num_sinks == 0 || num_sinks > AUDIO_PATCH_PORTS_MAX) {
9693 ALOGE("%s: Invalid patch arguments", __func__);
9694 ret = -EINVAL;
9695 goto done;
9696 }
9697
9698 if (num_sources > 1) {
9699 ALOGE("%s: Multiple sources are not supported", __func__);
9700 ret = -EINVAL;
9701 goto done;
9702 }
9703
9704 if (sources == NULL || sinks == NULL) {
9705 ALOGE("%s: Invalid sources or sinks port config", __func__);
9706 ret = -EINVAL;
9707 goto done;
9708 }
9709
9710 ALOGV("%s: source role %d, source type %d", __func__,
9711 sources[0].type, sources[0].role);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009712 list_init(&devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009713
9714 // Populate source/sink information and fetch stream info
9715 switch (sources[0].type) {
9716 case AUDIO_PORT_TYPE_DEVICE: // Patch for audio capture or loopback
9717 device_type = sources[0].ext.device.type;
9718 strlcpy(&addr[0], &sources[0].ext.device.address[0], AUDIO_DEVICE_MAX_ADDRESS_LEN);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009719 update_device_list(&devices, device_type, &addr[0], true);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009720 if (sinks[0].type == AUDIO_PORT_TYPE_MIX) {
9721 patch_type = PATCH_CAPTURE;
9722 io_handle = sinks[0].ext.mix.handle;
9723 input_source = sinks[0].ext.mix.usecase.source;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009724 ALOGD("%s: Capture patch from device %x to mix %d",
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009725 __func__, device_type, io_handle);
9726 } else {
9727 // Device to device patch is not implemented.
9728 // This space will need changes if audio HAL
9729 // handles device to device patches in the future.
9730 patch_type = PATCH_DEVICE_LOOPBACK;
9731 }
9732 break;
9733 case AUDIO_PORT_TYPE_MIX: // Patch for audio playback
9734 io_handle = sources[0].ext.mix.handle;
9735 for (int i = 0; i < num_sinks; i++) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009736 device_type = sinks[i].ext.device.type;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009737 strlcpy(&addr[0], &sinks[i].ext.device.address[0], AUDIO_DEVICE_MAX_ADDRESS_LEN);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009738 update_device_list(&devices, device_type, &addr[0], true);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009739 }
9740 patch_type = PATCH_PLAYBACK;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009741 ALOGD("%s: Playback patch from mix handle %d to device %x",
9742 __func__, io_handle, get_device_types(&devices));
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009743 break;
9744 case AUDIO_PORT_TYPE_SESSION:
9745 case AUDIO_PORT_TYPE_NONE:
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009746 ALOGE("%s: Unsupported source type %d", __func__, sources[0].type);
9747 ret = -EINVAL;
9748 goto done;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009749 }
9750
9751 pthread_mutex_lock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009752
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009753 // Generate patch info and update patch
9754 if (*handle == AUDIO_PATCH_HANDLE_NONE) {
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009755 *handle = generate_patch_handle();
9756 p_info = (struct audio_patch_info *)
9757 calloc(1, sizeof(struct audio_patch_info));
9758 if (p_info == NULL) {
9759 ALOGE("%s: Failed to allocate memory", __func__);
9760 pthread_mutex_unlock(&adev->lock);
9761 ret = -ENOMEM;
9762 goto done;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009763 }
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009764 new_patch = true;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009765 } else {
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009766 p_info = fetch_patch_info_l(adev, *handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009767 if (p_info == NULL) {
9768 ALOGE("%s: Unable to fetch patch for received patch handle %d",
9769 __func__, *handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009770 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009771 ret = -EINVAL;
9772 goto done;
9773 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009774 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009775 update_patch(num_sources, sources, num_sinks, sinks,
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009776 *handle, p_info, patch_type, new_patch);
9777
9778 // Fetch stream info of associated mix for playback or capture patches
9779 if (p_info->patch_type == PATCH_PLAYBACK ||
9780 p_info->patch_type == PATCH_CAPTURE) {
9781 s_info = hashmapGet(adev->io_streams_map, (void *) (intptr_t) io_handle);
9782 if (s_info == NULL) {
9783 ALOGE("%s: Failed to obtain stream info", __func__);
9784 if (new_patch)
9785 free(p_info);
9786 pthread_mutex_unlock(&adev->lock);
9787 ret = -EINVAL;
9788 goto done;
9789 }
9790 ALOGV("%s: Fetched stream info with io_handle %d", __func__, io_handle);
9791 s_info->patch_handle = *handle;
9792 stream = s_info->stream;
9793 }
9794 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009795
9796 // Update routing for stream
9797 if (stream != NULL) {
9798 if (p_info->patch_type == PATCH_PLAYBACK)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009799 ret = route_output_stream((struct stream_out *) stream, &devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009800 else if (p_info->patch_type == PATCH_CAPTURE)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009801 ret = route_input_stream((struct stream_in *) stream, &devices, input_source);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009802 if (ret < 0) {
9803 pthread_mutex_lock(&adev->lock);
9804 s_info->patch_handle = AUDIO_PATCH_HANDLE_NONE;
9805 if (new_patch)
9806 free(p_info);
9807 pthread_mutex_unlock(&adev->lock);
9808 ALOGE("%s: Stream routing failed for io_handle %d", __func__, io_handle);
9809 goto done;
9810 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009811 }
9812
9813 // Add new patch to patch map
9814 if (!ret && new_patch) {
9815 pthread_mutex_lock(&adev->lock);
9816 hashmapPut(adev->patch_map, (void *) (intptr_t) *handle, (void *) p_info);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009817 ALOGD("%s: Added a new patch with handle %d", __func__, *handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009818 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009819 }
9820
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009821done:
9822 audio_extn_hw_loopback_create_audio_patch(dev,
Derek Chenf939fb72018-11-13 13:34:41 -08009823 num_sources,
9824 sources,
9825 num_sinks,
9826 sinks,
9827 handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009828 audio_extn_auto_hal_create_audio_patch(dev,
Derek Chenf939fb72018-11-13 13:34:41 -08009829 num_sources,
9830 sources,
9831 num_sinks,
9832 sinks,
9833 handle);
9834 return ret;
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309835}
9836
9837int adev_release_audio_patch(struct audio_hw_device *dev,
9838 audio_patch_handle_t handle)
9839{
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009840 struct audio_device *adev = (struct audio_device *) dev;
9841 int ret = 0;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009842 audio_source_t input_source = AUDIO_SOURCE_DEFAULT;
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009843 struct audio_stream *stream = NULL;
Derek Chenf939fb72018-11-13 13:34:41 -08009844
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009845 if (handle == AUDIO_PATCH_HANDLE_NONE) {
9846 ALOGE("%s: Invalid patch handle %d", __func__, handle);
9847 ret = -EINVAL;
9848 goto done;
9849 }
9850
9851 ALOGD("%s: Remove patch with handle %d", __func__, handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009852 pthread_mutex_lock(&adev->lock);
9853 struct audio_patch_info *p_info = fetch_patch_info_l(adev, handle);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009854 if (p_info == NULL) {
9855 ALOGE("%s: Patch info not found with handle %d", __func__, handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009856 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009857 ret = -EINVAL;
9858 goto done;
9859 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009860 struct audio_patch *patch = p_info->patch;
9861 if (patch == NULL) {
9862 ALOGE("%s: Patch not found for handle %d", __func__, handle);
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009863 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009864 ret = -EINVAL;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009865 goto done;
9866 }
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009867 audio_io_handle_t io_handle = AUDIO_IO_HANDLE_NONE;
9868 switch (patch->sources[0].type) {
9869 case AUDIO_PORT_TYPE_MIX:
9870 io_handle = patch->sources[0].ext.mix.handle;
9871 break;
9872 case AUDIO_PORT_TYPE_DEVICE:
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009873 if (p_info->patch_type == PATCH_CAPTURE)
9874 io_handle = patch->sinks[0].ext.mix.handle;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009875 break;
9876 case AUDIO_PORT_TYPE_SESSION:
9877 case AUDIO_PORT_TYPE_NONE:
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009878 pthread_mutex_unlock(&adev->lock);
9879 ret = -EINVAL;
9880 goto done;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009881 }
9882
9883 // Remove patch and reset patch handle in stream info
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009884 patch_map_remove_l(adev, handle);
9885 if (p_info->patch_type == PATCH_PLAYBACK ||
9886 p_info->patch_type == PATCH_CAPTURE) {
9887 struct audio_stream_info *s_info =
9888 hashmapGet(adev->io_streams_map, (void *) (intptr_t) io_handle);
9889 if (s_info == NULL) {
9890 ALOGE("%s: stream for io_handle %d is not available", __func__, io_handle);
9891 pthread_mutex_unlock(&adev->lock);
9892 goto done;
9893 }
9894 s_info->patch_handle = AUDIO_PATCH_HANDLE_NONE;
9895 stream = s_info->stream;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009896 }
Aniket Kumar Latabc774842020-01-16 21:22:05 -08009897 pthread_mutex_unlock(&adev->lock);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009898
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009899 if (stream != NULL) {
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009900 struct listnode devices;
9901 list_init(&devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009902 if (p_info->patch_type == PATCH_PLAYBACK)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009903 ret = route_output_stream((struct stream_out *) stream, &devices);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009904 else if (p_info->patch_type == PATCH_CAPTURE)
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -08009905 ret = route_input_stream((struct stream_in *) stream, &devices, input_source);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009906 }
9907
9908 if (ret < 0)
9909 ALOGW("%s: Stream routing failed for io_handle %d", __func__, io_handle);
9910
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009911done:
9912 audio_extn_hw_loopback_release_audio_patch(dev, handle);
9913 audio_extn_auto_hal_release_audio_patch(dev, handle);
9914
9915 ALOGV("%s: Successfully released patch %d", __func__, handle);
Derek Chenf939fb72018-11-13 13:34:41 -08009916 return ret;
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309917}
9918
9919int adev_get_audio_port(struct audio_hw_device *dev, struct audio_port *config)
9920{
Derek Chenf13dd492018-11-13 14:53:51 -08009921 int ret = 0;
9922
9923 ret = audio_extn_hw_loopback_get_audio_port(dev, config);
9924 ret |= audio_extn_auto_hal_get_audio_port(dev, config);
9925 return ret;
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309926}
9927
9928int adev_set_audio_port_config(struct audio_hw_device *dev,
9929 const struct audio_port_config *config)
9930{
Derek Chenf13dd492018-11-13 14:53:51 -08009931 int ret = 0;
9932
9933 ret = audio_extn_hw_loopback_set_audio_port_config(dev, config);
9934 ret |= audio_extn_auto_hal_set_audio_port_config(dev, config);
9935 return ret;
Siddartha Shaik31b530e2017-05-19 15:26:33 +05309936}
9937
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07009938static int adev_dump(const audio_hw_device_t *device __unused,
9939 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009940{
9941 return 0;
9942}
9943
9944static int adev_close(hw_device_t *device)
9945{
Aalique Grahame22e49102018-12-18 14:23:57 -08009946 size_t i;
Preetam Singh Ranawatacc64542019-06-24 15:11:28 +05309947 struct audio_device *adev_temp = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07009948
Preetam Singh Ranawatacc64542019-06-24 15:11:28 +05309949 if (!adev_temp)
Kiran Kandi910e1862013-10-29 13:29:42 -07009950 return 0;
9951
9952 pthread_mutex_lock(&adev_init_lock);
9953
9954 if ((--audio_device_ref_count) == 0) {
Sujin Panicker390724d2019-04-26 10:43:36 +05309955 if (audio_extn_spkr_prot_is_enabled())
9956 audio_extn_spkr_prot_deinit();
Jaideep Sharmaa2b49672019-09-10 20:37:03 +05309957 audio_extn_battery_properties_listener_deinit();
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05309958 audio_extn_snd_mon_unregister_listener(adev);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07009959 audio_extn_sound_trigger_deinit(adev);
Kiran Kandide144c82013-11-20 15:58:32 -08009960 audio_extn_listen_deinit(adev);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08009961 audio_extn_qdsp_deinit();
Aalique Grahame22e49102018-12-18 14:23:57 -08009962 audio_extn_extspk_deinit(adev->extspk);
Dhananjay Kumard6d32152016-10-13 16:11:03 +05309963 audio_extn_utils_release_streams_cfg_lists(
9964 &adev->streams_output_cfg_list,
9965 &adev->streams_input_cfg_list);
Sidipotu Ashokd2f10ba2019-05-06 15:41:56 +05309966 if (audio_extn_qap_is_enabled())
9967 audio_extn_qap_deinit();
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +05309968 if (audio_extn_qaf_is_enabled())
9969 audio_extn_qaf_deinit();
Kiran Kandi910e1862013-10-29 13:29:42 -07009970 audio_route_free(adev->audio_route);
Weiyin Jiangfa65d3e2019-03-05 23:39:45 +08009971 audio_extn_gef_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07009972 free(adev->snd_dev_ref_cnt);
9973 platform_deinit(adev->platform);
Aalique Grahame22e49102018-12-18 14:23:57 -08009974 for (i = 0; i < ARRAY_SIZE(adev->use_case_table); ++i) {
9975 pcm_params_free(adev->use_case_table[i]);
9976 }
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -07009977 if (adev->adm_deinit)
9978 adev->adm_deinit(adev->adm_data);
Dhananjay Kumaree4d2002016-10-25 18:02:58 +05309979 qahwi_deinit(device);
Ben Rombergerd771a7c2017-02-22 18:05:17 -08009980 audio_extn_adsp_hdlr_deinit();
Dhananjay Kumare6293dd2017-05-25 17:25:30 +05309981 audio_extn_snd_mon_deinit();
Siddartha Shaik44dd7702017-06-14 12:13:25 +05309982 audio_extn_hw_loopback_deinit(adev);
Garmond Leunge2433c32017-09-28 21:51:22 -07009983 audio_extn_ffv_deinit();
Satish Babu Patakokilac3c5d432017-07-04 22:48:59 +05309984 if (adev->device_cfg_params) {
9985 free(adev->device_cfg_params);
9986 adev->device_cfg_params = NULL;
9987 }
Derek Chend2530072014-11-24 12:39:14 -08009988 if(adev->ext_hw_plugin)
9989 audio_extn_ext_hw_plugin_deinit(adev->ext_hw_plugin);
Derek Chenae7b0342019-02-08 15:17:04 -08009990 audio_extn_auto_hal_deinit();
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -07009991 free_map(adev->patch_map);
9992 free_map(adev->io_streams_map);
Kiran Kandi910e1862013-10-29 13:29:42 -07009993 free(device);
9994 adev = NULL;
9995 }
9996 pthread_mutex_unlock(&adev_init_lock);
Vatsal Buchac09ae062018-11-14 13:25:08 +05309997 enable_gcov();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08009998 return 0;
9999}
10000
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010001/* This returns 1 if the input parameter looks at all plausible as a low latency period size,
10002 * or 0 otherwise. A return value of 1 doesn't mean the value is guaranteed to work,
10003 * just that it _might_ work.
10004 */
10005static int period_size_is_plausible_for_low_latency(int period_size)
10006{
10007 switch (period_size) {
10008 case 160:
Ravi Kumar Alamanda474de5a2015-06-25 20:08:01 -070010009 case 192:
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010010 case 240:
10011 case 320:
10012 case 480:
10013 return 1;
10014 default:
10015 return 0;
10016 }
10017}
10018
Dhananjay Kumare6293dd2017-05-25 17:25:30 +053010019static void adev_snd_mon_cb(void *cookie, struct str_parms *parms)
10020{
10021 bool is_snd_card_status = false;
10022 bool is_ext_device_status = false;
10023 char value[32];
10024 int card = -1;
10025 card_status_t status;
10026
10027 if (cookie != adev || !parms)
10028 return;
10029
10030 if (!parse_snd_card_status(parms, &card, &status)) {
10031 is_snd_card_status = true;
10032 } else if (0 < str_parms_get_str(parms, "ext_audio_device", value, sizeof(value))) {
10033 is_ext_device_status = true;
10034 } else {
10035 // not a valid event
10036 return;
10037 }
10038
10039 pthread_mutex_lock(&adev->lock);
10040 if (card == adev->snd_card || is_ext_device_status) {
10041 if (is_snd_card_status && adev->card_status != status) {
10042 adev->card_status = status;
10043 platform_snd_card_update(adev->platform, status);
10044 audio_extn_fm_set_parameters(adev, parms);
Derek Chend6f371d2019-03-01 13:45:58 -080010045 audio_extn_auto_hal_set_parameters(adev, parms);
Zhou Song4f43e352019-07-02 00:32:23 +080010046 if (status == CARD_STATUS_OFFLINE)
10047 audio_extn_sco_reset_configuration();
Dhananjay Kumare6293dd2017-05-25 17:25:30 +053010048 } else if (is_ext_device_status) {
10049 platform_set_parameters(adev->platform, parms);
10050 }
10051 }
10052 pthread_mutex_unlock(&adev->lock);
10053 return;
10054}
10055
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010056/* out and adev lock held */
10057static int check_a2dp_restore_l(struct audio_device *adev, struct stream_out *out, bool restore)
10058{
10059 struct audio_usecase *uc_info;
10060 float left_p;
10061 float right_p;
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -080010062 struct listnode devices;
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010063
10064 uc_info = get_usecase_from_list(adev, out->usecase);
10065 if (uc_info == NULL) {
10066 ALOGE("%s: Could not find the usecase (%d) in the list",
10067 __func__, out->usecase);
10068 return -EINVAL;
10069 }
Aniket Kumar Lata9c2fd892020-01-22 22:20:00 -080010070 list_init(&devices);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010071
10072 ALOGD("%s: enter: usecase(%d: %s)", __func__,
10073 out->usecase, use_case_table[out->usecase]);
10074
10075 if (restore) {
10076 // restore A2DP device for active usecases and unmute if required
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -080010077 if (is_a2dp_out_device_type(&out->device_list)) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010078 ALOGD("%s: restoring A2dp and unmuting stream", __func__);
Zhou Songe5225132019-09-26 15:33:36 +080010079 if (uc_info->out_snd_device != SND_DEVICE_OUT_BT_A2DP)
10080 select_devices(adev, uc_info->id);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010081 pthread_mutex_lock(&out->compr_mute_lock);
10082 if ((out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
Manisha Agarwalc2188fb2019-05-27 10:00:29 +053010083 (out->a2dp_compress_mute) && (uc_info->out_snd_device == SND_DEVICE_OUT_BT_A2DP)) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010084 out->a2dp_compress_mute = false;
10085 out_set_compr_volume(&out->stream, out->volume_l, out->volume_r);
10086 }
10087 pthread_mutex_unlock(&out->compr_mute_lock);
10088 }
10089 } else {
Zhou Songc576a452019-09-09 14:17:40 +080010090 if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
10091 // mute compress stream if suspended
10092 pthread_mutex_lock(&out->compr_mute_lock);
10093 if (!out->a2dp_compress_mute && !out->standby) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010094 ALOGD("%s: selecting speaker and muting stream", __func__);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -080010095 assign_devices(&devices, &out->device_list);
10096 reassign_device_list(&out->device_list, AUDIO_DEVICE_OUT_SPEAKER, "");
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010097 left_p = out->volume_l;
10098 right_p = out->volume_r;
10099 if (out->offload_state == OFFLOAD_STATE_PLAYING)
10100 compress_pause(out->compr);
10101 out_set_compr_volume(&out->stream, (float)0, (float)0);
10102 out->a2dp_compress_mute = true;
10103 select_devices(adev, out->usecase);
10104 if (out->offload_state == OFFLOAD_STATE_PLAYING)
10105 compress_resume(out->compr);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -080010106 assign_devices(&out->device_list, &devices);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010107 out->volume_l = left_p;
10108 out->volume_r = right_p;
10109 }
Zhou Songc576a452019-09-09 14:17:40 +080010110 pthread_mutex_unlock(&out->compr_mute_lock);
10111 } else {
10112 // tear down a2dp path for non offloaded streams
10113 if (audio_extn_a2dp_source_is_suspended())
10114 out_standby_l(&out->stream.common);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010115 }
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +053010116 }
10117 ALOGV("%s: exit", __func__);
10118 return 0;
10119}
10120
10121int check_a2dp_restore(struct audio_device *adev, struct stream_out *out, bool restore)
10122{
10123 int ret = 0;
10124
10125 lock_output_stream(out);
10126 pthread_mutex_lock(&adev->lock);
10127
10128 ret = check_a2dp_restore_l(adev, out, restore);
10129
10130 pthread_mutex_unlock(&adev->lock);
10131 pthread_mutex_unlock(&out->lock);
10132 return ret;
10133}
10134
Haynes Mathew George01156f92018-04-13 15:29:54 -070010135void adev_on_battery_status_changed(bool charging)
10136{
10137 pthread_mutex_lock(&adev->lock);
10138 ALOGI("%s: battery status changed to %scharging", __func__, charging ? "" : "not ");
10139 adev->is_charging = charging;
Zhou Songc1088ea2018-06-12 00:17:29 +080010140 audio_extn_sound_trigger_update_battery_status(charging);
Haynes Mathew George01156f92018-04-13 15:29:54 -070010141 pthread_mutex_unlock(&adev->lock);
10142}
10143
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010144static int adev_open(const hw_module_t *module, const char *name,
10145 hw_device_t **device)
10146{
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +053010147 int ret;
Derek Chenf939fb72018-11-13 13:34:41 -080010148 char value[PROPERTY_VALUE_MAX] = {0};
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +053010149 char mixer_ctl_name[128] = {0};
10150 struct mixer_ctl *ctl = NULL;
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +053010151
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -080010152 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010153 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
10154
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -070010155 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -070010156 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -070010157 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -070010158 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -070010159 ALOGD("%s: returning existing instance of adev", __func__);
10160 ALOGD("%s: exit", __func__);
10161 pthread_mutex_unlock(&adev_init_lock);
10162 return 0;
10163 }
10164
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010165 adev = calloc(1, sizeof(struct audio_device));
10166
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -070010167 if (!adev) {
10168 pthread_mutex_unlock(&adev_init_lock);
10169 return -ENOMEM;
10170 }
10171
Ravi Kumar Alamanda40703102014-04-24 10:34:41 -070010172 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
10173
Weiyin Jiange6ce6312019-01-28 18:28:22 +080010174 // register audio ext hidl at the earliest
10175 audio_extn_hidl_init();
Revathi Uddaraju1eac8b02017-05-18 17:13:33 +053010176#ifdef DYNAMIC_LOG_ENABLED
10177 register_for_dynamic_logging("hal");
10178#endif
10179
Derek Chenf939fb72018-11-13 13:34:41 -080010180 /* default audio HAL major version */
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010181 uint32_t maj_version = 3;
Derek Chenf939fb72018-11-13 13:34:41 -080010182 if(property_get("vendor.audio.hal.maj.version", value, NULL))
10183 maj_version = atoi(value);
10184
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010185 adev->device.common.tag = HARDWARE_DEVICE_TAG;
Derek Chenf939fb72018-11-13 13:34:41 -080010186 adev->device.common.version = HARDWARE_DEVICE_API_VERSION(maj_version, 0);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010187 adev->device.common.module = (struct hw_module_t *)module;
10188 adev->device.common.close = adev_close;
10189
10190 adev->device.init_check = adev_init_check;
10191 adev->device.set_voice_volume = adev_set_voice_volume;
10192 adev->device.set_master_volume = adev_set_master_volume;
10193 adev->device.get_master_volume = adev_get_master_volume;
10194 adev->device.set_master_mute = adev_set_master_mute;
10195 adev->device.get_master_mute = adev_get_master_mute;
10196 adev->device.set_mode = adev_set_mode;
10197 adev->device.set_mic_mute = adev_set_mic_mute;
10198 adev->device.get_mic_mute = adev_get_mic_mute;
10199 adev->device.set_parameters = adev_set_parameters;
10200 adev->device.get_parameters = adev_get_parameters;
10201 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
10202 adev->device.open_output_stream = adev_open_output_stream;
10203 adev->device.close_output_stream = adev_close_output_stream;
10204 adev->device.open_input_stream = adev_open_input_stream;
10205 adev->device.close_input_stream = adev_close_input_stream;
Siddartha Shaik31b530e2017-05-19 15:26:33 +053010206 adev->device.create_audio_patch = adev_create_audio_patch;
10207 adev->device.release_audio_patch = adev_release_audio_patch;
10208 adev->device.get_audio_port = adev_get_audio_port;
10209 adev->device.set_audio_port_config = adev_set_audio_port_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010210 adev->device.dump = adev_dump;
Naresh Tannirudcb47c52018-06-25 16:23:32 +053010211 adev->device.get_microphones = adev_get_microphones;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010212
10213 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010214 adev->mode = AUDIO_MODE_NORMAL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -080010215 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010216 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010217 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -080010218 adev->acdb_settings = TTY_MODE_OFF;
vivek mehta344576a2016-04-12 18:56:03 -070010219 adev->allow_afe_proxy_usage = true;
Ashish Jain1b9b30c2017-05-18 20:57:40 +053010220 adev->bt_sco_on = false;
Eric Laurent07eeafd2013-10-06 12:52:49 -070010221 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -070010222 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
vivek mehtaae1018c2019-05-09 12:19:57 -070010223 /* Init audio and voice feature */
10224 audio_extn_feature_init();
10225 voice_extn_feature_init();
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -070010226 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -080010227 list_init(&adev->usecase_list);
Derek Chenf939fb72018-11-13 13:34:41 -080010228 list_init(&adev->active_inputs_list);
10229 list_init(&adev->active_outputs_list);
Rahul Sharma99770982019-03-06 17:05:26 +053010230 list_init(&adev->audio_patch_record_list);
10231 adev->audio_patch_index = 0;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010232 adev->io_streams_map = hashmapCreate(AUDIO_IO_PORTS_MAX, audio_extn_utils_hash_fn,
10233 audio_extn_utils_hash_eq);
10234 if (!adev->io_streams_map) {
10235 ALOGE("%s: Could not create io streams map", __func__);
10236 ret = -ENOMEM;
10237 goto adev_open_err;
10238 }
10239 adev->patch_map = hashmapCreate(AUDIO_PATCH_PORTS_MAX, audio_extn_utils_hash_fn,
10240 audio_extn_utils_hash_eq);
10241 if (!adev->patch_map) {
10242 ALOGE("%s: Could not create audio patch map", __func__);
10243 ret = -ENOMEM;
10244 goto adev_open_err;
10245 }
Krishnankutty Kolathappilly0b2de1c2014-02-14 14:45:49 -080010246 adev->cur_wfd_channels = 2;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -070010247 adev->offload_usecases_state = 0;
Samyak Jain15fda662018-12-18 16:40:52 +053010248 adev->pcm_record_uc_state = 0;
Ashish Jain81eb2a82015-05-13 10:52:34 +053010249 adev->is_channel_status_set = false;
Sudheer Papothifa9d2282015-09-17 01:53:25 +053010250 adev->perf_lock_opts[0] = 0x101;
10251 adev->perf_lock_opts[1] = 0x20E;
10252 adev->perf_lock_opts_size = 2;
Xiaojun Sang785b5da2017-08-03 15:52:29 +080010253 adev->dsp_bit_width_enforce_mode = 0;
Aalique Grahame552b0832019-03-11 10:16:38 -070010254 adev->enable_hfp = false;
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +053010255 adev->use_old_pspd_mix_ctrl = false;
Aniket Kumar Lata60586a92019-05-22 22:18:55 -070010256 adev->adm_routing_changed = false;
Naresh Tanniru4c630392014-05-12 01:05:52 +053010257
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010258 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -070010259 adev->platform = platform_init(adev);
10260 if (!adev->platform) {
Eric Laurentb23d5282013-05-14 15:27:20 -070010261 ALOGE("%s: Failed to init platform data, aborting.", __func__);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010262 ret = -EINVAL;
10263 goto adev_open_err;
Eric Laurentb23d5282013-05-14 15:27:20 -070010264 }
Eric Laurentc4aef752013-09-12 17:45:53 -070010265
Aalique Grahame22e49102018-12-18 14:23:57 -080010266 adev->extspk = audio_extn_extspk_init(adev);
Sidipotu Ashokd2f10ba2019-05-06 15:41:56 +053010267 if (audio_extn_qap_is_enabled()) {
10268 ret = audio_extn_qap_init(adev);
10269 if (ret < 0) {
Sidipotu Ashokd2f10ba2019-05-06 15:41:56 +053010270 ALOGE("%s: Failed to init platform data, aborting.", __func__);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010271 goto adev_open_err;
Sidipotu Ashokd2f10ba2019-05-06 15:41:56 +053010272 }
10273 adev->device.open_output_stream = audio_extn_qap_open_output_stream;
10274 adev->device.close_output_stream = audio_extn_qap_close_output_stream;
10275 }
Aalique Grahame22e49102018-12-18 14:23:57 -080010276
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +053010277 if (audio_extn_qaf_is_enabled()) {
10278 ret = audio_extn_qaf_init(adev);
10279 if (ret < 0) {
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +053010280 ALOGE("%s: Failed to init platform data, aborting.", __func__);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010281 goto adev_open_err;
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +053010282 }
10283
10284 adev->device.open_output_stream = audio_extn_qaf_open_output_stream;
10285 adev->device.close_output_stream = audio_extn_qaf_close_output_stream;
10286 }
10287
Derek Chenae7b0342019-02-08 15:17:04 -080010288 audio_extn_auto_hal_init(adev);
Derek Chend2530072014-11-24 12:39:14 -080010289 adev->ext_hw_plugin = audio_extn_ext_hw_plugin_init(adev);
10290
Eric Laurentc4aef752013-09-12 17:45:53 -070010291 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
10292 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
10293 if (adev->visualizer_lib == NULL) {
10294 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
10295 } else {
10296 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
10297 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -080010298 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -070010299 "visualizer_hal_start_output");
10300 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -080010301 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -070010302 "visualizer_hal_stop_output");
10303 }
10304 }
Dhanalakshmi Siddani21be3ac2016-12-29 14:31:08 +053010305 audio_extn_init(adev);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -080010306 voice_extn_init(adev);
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -080010307 audio_extn_listen_init(adev, adev->snd_card);
Weiyin Jiangaa80acd2016-09-21 16:42:11 +080010308 audio_extn_gef_init(adev);
Siddartha Shaik44dd7702017-06-14 12:13:25 +053010309 audio_extn_hw_loopback_init(adev);
Garmond Leunge2433c32017-09-28 21:51:22 -070010310 audio_extn_ffv_init(adev);
Eric Laurentc4aef752013-09-12 17:45:53 -070010311
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -080010312 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
10313 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
10314 if (adev->offload_effects_lib == NULL) {
10315 ALOGE("%s: DLOPEN failed for %s", __func__,
10316 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
10317 } else {
10318 ALOGV("%s: DLOPEN successful for %s", __func__,
10319 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
10320 adev->offload_effects_start_output =
Ashish Jain5106d362016-05-11 19:23:33 +053010321 (int (*)(audio_io_handle_t, int, struct mixer *))dlsym(adev->offload_effects_lib,
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -080010322 "offload_effects_bundle_hal_start_output");
10323 adev->offload_effects_stop_output =
10324 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
10325 "offload_effects_bundle_hal_stop_output");
Jitendra Naruka1b6513f2014-11-22 19:34:13 -080010326 adev->offload_effects_set_hpx_state =
10327 (int (*)(bool))dlsym(adev->offload_effects_lib,
10328 "offload_effects_bundle_set_hpx_state");
Dhananjay Kumard68883d2015-09-04 13:39:26 +053010329 adev->offload_effects_get_parameters =
10330 (void (*)(struct str_parms *, struct str_parms *))
10331 dlsym(adev->offload_effects_lib,
10332 "offload_effects_bundle_get_parameters");
10333 adev->offload_effects_set_parameters =
10334 (void (*)(struct str_parms *))dlsym(adev->offload_effects_lib,
10335 "offload_effects_bundle_set_parameters");
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -080010336 }
10337 }
10338
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -070010339 if (access(ADM_LIBRARY_PATH, R_OK) == 0) {
10340 adev->adm_lib = dlopen(ADM_LIBRARY_PATH, RTLD_NOW);
10341 if (adev->adm_lib == NULL) {
10342 ALOGE("%s: DLOPEN failed for %s", __func__, ADM_LIBRARY_PATH);
10343 } else {
10344 ALOGV("%s: DLOPEN successful for %s", __func__, ADM_LIBRARY_PATH);
10345 adev->adm_init = (adm_init_t)
10346 dlsym(adev->adm_lib, "adm_init");
10347 adev->adm_deinit = (adm_deinit_t)
10348 dlsym(adev->adm_lib, "adm_deinit");
10349 adev->adm_register_input_stream = (adm_register_input_stream_t)
10350 dlsym(adev->adm_lib, "adm_register_input_stream");
10351 adev->adm_register_output_stream = (adm_register_output_stream_t)
10352 dlsym(adev->adm_lib, "adm_register_output_stream");
10353 adev->adm_deregister_stream = (adm_deregister_stream_t)
10354 dlsym(adev->adm_lib, "adm_deregister_stream");
10355 adev->adm_request_focus = (adm_request_focus_t)
10356 dlsym(adev->adm_lib, "adm_request_focus");
10357 adev->adm_abandon_focus = (adm_abandon_focus_t)
10358 dlsym(adev->adm_lib, "adm_abandon_focus");
Haynes Mathew George5beddd42016-06-27 18:33:40 -070010359 adev->adm_set_config = (adm_set_config_t)
10360 dlsym(adev->adm_lib, "adm_set_config");
10361 adev->adm_request_focus_v2 = (adm_request_focus_v2_t)
10362 dlsym(adev->adm_lib, "adm_request_focus_v2");
10363 adev->adm_is_noirq_avail = (adm_is_noirq_avail_t)
10364 dlsym(adev->adm_lib, "adm_is_noirq_avail");
10365 adev->adm_on_routing_change = (adm_on_routing_change_t)
10366 dlsym(adev->adm_lib, "adm_on_routing_change");
Aniket Kumar Lata60586a92019-05-22 22:18:55 -070010367 adev->adm_request_focus_v2_1 = (adm_request_focus_v2_1_t)
10368 dlsym(adev->adm_lib, "adm_request_focus_v2_1");
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -070010369 }
10370 }
10371
Aalique Grahame22e49102018-12-18 14:23:57 -080010372 adev->enable_voicerx = false;
Mingming Yin514a8bc2014-07-29 15:22:21 -070010373 adev->bt_wb_speech_enabled = false;
Zhou Song12c29502019-03-16 10:37:18 +080010374 adev->swb_speech_mode = SPEECH_MODE_INVALID;
Alexy Joseph5e4ccbc2017-02-21 14:20:12 -080010375 //initialize this to false for now,
10376 //this will be set to true through set param
10377 adev->vr_audio_mode_enabled = false;
Mingming Yin514a8bc2014-07-29 15:22:21 -070010378
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -070010379 audio_extn_ds2_enable(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010380 *device = &adev->device.common;
Aalique Grahame22e49102018-12-18 14:23:57 -080010381
10382 if (k_enable_extended_precision)
10383 adev_verify_devices(adev);
10384
Xiaojun Sang785b5da2017-08-03 15:52:29 +080010385 adev->dsp_bit_width_enforce_mode =
10386 adev_init_dsp_bit_width_enforce_mode(adev->mixer);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010387
Dhananjay Kumard6d32152016-10-13 16:11:03 +053010388 audio_extn_utils_update_streams_cfg_lists(adev->platform, adev->mixer,
10389 &adev->streams_output_cfg_list,
10390 &adev->streams_input_cfg_list);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070010391
Kiran Kandi910e1862013-10-29 13:29:42 -070010392 audio_device_ref_count++;
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010393
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010394 int trial;
Aalique Grahame22e49102018-12-18 14:23:57 -080010395 if ((property_get("vendor.audio_hal.period_size", value, NULL) > 0) ||
10396 (property_get("audio_hal.period_size", value, NULL) > 0)) {
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010397 trial = atoi(value);
10398 if (period_size_is_plausible_for_low_latency(trial)) {
10399 pcm_config_low_latency.period_size = trial;
10400 pcm_config_low_latency.start_threshold = trial / 4;
10401 pcm_config_low_latency.avail_min = trial / 4;
10402 configured_low_latency_capture_period_size = trial;
10403 }
10404 }
Aalique Grahame22e49102018-12-18 14:23:57 -080010405 if ((property_get("vendor.audio_hal.in_period_size", value, NULL) > 0) ||
10406 (property_get("audio_hal.in_period_size", value, NULL) > 0)) {
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070010407 trial = atoi(value);
10408 if (period_size_is_plausible_for_low_latency(trial)) {
10409 configured_low_latency_capture_period_size = trial;
10410 }
10411 }
10412
Vignesh Kulothungan7d374312018-02-21 17:12:00 -080010413 adev->mic_break_enabled = property_get_bool("vendor.audio.mic_break", false);
10414
Eric Laurent4b084132018-10-19 17:33:43 -070010415 adev->camera_orientation = CAMERA_DEFAULT;
10416
Aalique Grahame22e49102018-12-18 14:23:57 -080010417 if ((property_get("vendor.audio_hal.period_multiplier",value,NULL) > 0) ||
10418 (property_get("audio_hal.period_multiplier",value,NULL) > 0)) {
Haynes Mathew George5beddd42016-06-27 18:33:40 -070010419 af_period_multiplier = atoi(value);
10420 if (af_period_multiplier < 0)
10421 af_period_multiplier = 2;
10422 else if (af_period_multiplier > 4)
10423 af_period_multiplier = 4;
10424
10425 ALOGV("new period_multiplier = %d", af_period_multiplier);
10426 }
10427
Arun Mirpurib1bec9c2019-01-29 16:42:45 -080010428 audio_extn_qdsp_init(adev->platform);
Aalique Grahame22e49102018-12-18 14:23:57 -080010429
Aniket Kumar Lata8fc67e62017-05-02 12:33:46 -070010430 adev->multi_offload_enable = property_get_bool("vendor.audio.offload.multiple.enabled", false);
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -070010431 pthread_mutex_unlock(&adev_init_lock);
10432
Ravi Kumar Alamanda8a0f9772015-06-15 10:35:19 -070010433 if (adev->adm_init)
10434 adev->adm_data = adev->adm_init();
10435
Dhananjay Kumaree4d2002016-10-25 18:02:58 +053010436 qahwi_init(*device);
Sudheer Papothifa9d2282015-09-17 01:53:25 +053010437 audio_extn_perf_lock_init();
Ben Rombergerd771a7c2017-02-22 18:05:17 -080010438 audio_extn_adsp_hdlr_init(adev->mixer);
Dhananjay Kumare6293dd2017-05-25 17:25:30 +053010439
10440 audio_extn_snd_mon_init();
10441 pthread_mutex_lock(&adev->lock);
10442 audio_extn_snd_mon_register_listener(adev, adev_snd_mon_cb);
10443 adev->card_status = CARD_STATUS_ONLINE;
Haynes Mathew George01156f92018-04-13 15:29:54 -070010444 audio_extn_battery_properties_listener_init(adev_on_battery_status_changed);
10445 /*
10446 * if the battery state callback happens before charging can be queried,
10447 * it will be guarded with the adev->lock held in the cb function and so
10448 * the callback value will reflect the latest state
10449 */
10450 adev->is_charging = audio_extn_battery_properties_is_charging();
Dhananjay Kumare6293dd2017-05-25 17:25:30 +053010451 audio_extn_sound_trigger_init(adev); /* dependent on snd_mon_init() */
Zhou Songc1088ea2018-06-12 00:17:29 +080010452 audio_extn_sound_trigger_update_battery_status(adev->is_charging);
justinweng20fb6d82019-02-21 18:49:00 -070010453 audio_extn_audiozoom_init();
Zhou Songc1088ea2018-06-12 00:17:29 +080010454 pthread_mutex_unlock(&adev->lock);
Satish Babu Patakokilac3c5d432017-07-04 22:48:59 +053010455 /* Allocate memory for Device config params */
10456 adev->device_cfg_params = (struct audio_device_config_param*)
10457 calloc(platform_get_max_codec_backend(),
10458 sizeof(struct audio_device_config_param));
10459 if (adev->device_cfg_params == NULL)
10460 ALOGE("%s: Memory allocation failed for Device config params", __func__);
Dhananjay Kumare6293dd2017-05-25 17:25:30 +053010461
Dhanalakshmi Siddani20628c82019-01-27 17:31:09 +053010462 /*
10463 * Check if new PSPD matrix mixer control is supported. If not
10464 * supported, then set flag so that old mixer ctrl is sent while
10465 * sending pspd coefficients on older kernel version. Query mixer
10466 * control for default pcm id and channel value one.
10467 */
10468 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
10469 "AudStr %d ChMixer Weight Ch %d", 0, 1);
10470
10471 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
10472 if (!ctl) {
10473 ALOGE("%s: ERROR. Could not get ctl for mixer cmd - %s",
10474 __func__, mixer_ctl_name);
10475 adev->use_old_pspd_mix_ctrl = true;
10476 }
10477
Eric Laurent994a6932013-07-17 11:51:42 -070010478 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010479 return 0;
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010480
10481adev_open_err:
10482 free_map(adev->patch_map);
10483 free_map(adev->io_streams_map);
Aniket Kumar Latabc774842020-01-16 21:22:05 -080010484 free(adev->snd_dev_ref_cnt);
Aniket Kumar Lata1fda9432019-11-01 17:08:33 -070010485 pthread_mutex_destroy(&adev->lock);
10486 free(adev);
10487 adev = NULL;
10488 *device = NULL;
10489 pthread_mutex_unlock(&adev_init_lock);
10490 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010491}
10492
10493static struct hw_module_methods_t hal_module_methods = {
10494 .open = adev_open,
10495};
10496
10497struct audio_module HAL_MODULE_INFO_SYM = {
10498 .common = {
10499 .tag = HARDWARE_MODULE_TAG,
10500 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
10501 .hal_api_version = HARDWARE_HAL_API_VERSION,
10502 .id = AUDIO_HARDWARE_MODULE_ID,
10503 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -080010504 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080010505 .methods = &hal_module_methods,
10506 },
10507};