blob: ffeeee22d51e21deb34780b2fdb9e56523f5fb19 [file] [log] [blame]
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001/*
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002 * Copyright (c) 2013-2014, 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.
18 */
19
20#define LOG_TAG "audio_hw_primary"
21/*#define LOG_NDEBUG 0*/
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070022/*#define VERY_VERY_VERBOSE_LOGGING*/
23#ifdef VERY_VERY_VERBOSE_LOGGING
24#define ALOGVV ALOGV
25#else
26#define ALOGVV(a...) do { } while(0)
27#endif
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080028
29#include <errno.h>
30#include <pthread.h>
31#include <stdint.h>
32#include <sys/time.h>
33#include <stdlib.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080034#include <math.h>
Eric Laurentc4aef752013-09-12 17:45:53 -070035#include <dlfcn.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070036#include <sys/resource.h>
37#include <sys/prctl.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080038
39#include <cutils/log.h>
40#include <cutils/str_parms.h>
41#include <cutils/properties.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070042#include <cutils/atomic.h>
43#include <cutils/sched_policy.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080044
Eric Laurentb23d5282013-05-14 15:27:20 -070045#include <hardware/audio_effect.h>
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070046#include <system/thread_defs.h>
Eric Laurentb23d5282013-05-14 15:27:20 -070047#include <audio_effects/effect_aec.h>
48#include <audio_effects/effect_ns.h>
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080049#include "audio_hw.h"
Eric Laurentb23d5282013-05-14 15:27:20 -070050#include "platform_api.h"
51#include <platform.h>
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -070052#include "audio_extn.h"
Narsinga Rao Chella05573b72013-11-15 15:21:40 -080053#include "voice_extn.h"
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -080054
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070055#include "sound/compress_params.h"
ApurupaPattapu0c566872014-01-10 14:46:02 -080056#include "sound/asound.h"
57
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -070058#define COMPRESS_OFFLOAD_NUM_FRAGMENTS 4
59/* ToDo: Check and update a proper value in msec */
60#define COMPRESS_OFFLOAD_PLAYBACK_LATENCY 96
61#define COMPRESS_PLAYBACK_VOLUME_MAX 0x2000
62
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +053063#define PROXY_OPEN_RETRY_COUNT 100
64#define PROXY_OPEN_WAIT_TIME 20
ApurupaPattapu0c566872014-01-10 14:46:02 -080065
Haynes Mathew Georgebf143712013-12-03 13:02:53 -080066#define USECASE_AUDIO_PLAYBACK_PRIMARY USECASE_AUDIO_PLAYBACK_DEEP_BUFFER
67
Eric Laurentb23d5282013-05-14 15:27:20 -070068struct pcm_config pcm_config_deep_buffer = {
69 .channels = 2,
70 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
71 .period_size = DEEP_BUFFER_OUTPUT_PERIOD_SIZE,
72 .period_count = DEEP_BUFFER_OUTPUT_PERIOD_COUNT,
73 .format = PCM_FORMAT_S16_LE,
74 .start_threshold = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
75 .stop_threshold = INT_MAX,
76 .avail_min = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
77};
78
79struct pcm_config pcm_config_low_latency = {
80 .channels = 2,
81 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
82 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
83 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
84 .format = PCM_FORMAT_S16_LE,
85 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
86 .stop_threshold = INT_MAX,
87 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
88};
89
90struct pcm_config pcm_config_hdmi_multi = {
91 .channels = HDMI_MULTI_DEFAULT_CHANNEL_COUNT, /* changed when the stream is opened */
92 .rate = DEFAULT_OUTPUT_SAMPLING_RATE, /* changed when the stream is opened */
93 .period_size = HDMI_MULTI_PERIOD_SIZE,
94 .period_count = HDMI_MULTI_PERIOD_COUNT,
95 .format = PCM_FORMAT_S16_LE,
96 .start_threshold = 0,
97 .stop_threshold = INT_MAX,
98 .avail_min = 0,
99};
100
101struct pcm_config pcm_config_audio_capture = {
102 .channels = 2,
Eric Laurentb23d5282013-05-14 15:27:20 -0700103 .period_count = AUDIO_CAPTURE_PERIOD_COUNT,
104 .format = PCM_FORMAT_S16_LE,
105};
106
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530107#define AFE_PROXY_CHANNEL_COUNT 2
108#define AFE_PROXY_SAMPLING_RATE 48000
109
110#define AFE_PROXY_PLAYBACK_PERIOD_SIZE 768
111#define AFE_PROXY_PLAYBACK_PERIOD_COUNT 4
112
113struct pcm_config pcm_config_afe_proxy_playback = {
114 .channels = AFE_PROXY_CHANNEL_COUNT,
115 .rate = AFE_PROXY_SAMPLING_RATE,
116 .period_size = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
117 .period_count = AFE_PROXY_PLAYBACK_PERIOD_COUNT,
118 .format = PCM_FORMAT_S16_LE,
119 .start_threshold = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
120 .stop_threshold = INT_MAX,
121 .avail_min = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
122};
123
124#define AFE_PROXY_RECORD_PERIOD_SIZE 768
125#define AFE_PROXY_RECORD_PERIOD_COUNT 4
126
127struct pcm_config pcm_config_afe_proxy_record = {
128 .channels = AFE_PROXY_CHANNEL_COUNT,
129 .rate = AFE_PROXY_SAMPLING_RATE,
130 .period_size = AFE_PROXY_RECORD_PERIOD_SIZE,
131 .period_count = AFE_PROXY_RECORD_PERIOD_COUNT,
132 .format = PCM_FORMAT_S16_LE,
133 .start_threshold = AFE_PROXY_RECORD_PERIOD_SIZE,
134 .stop_threshold = INT_MAX,
135 .avail_min = AFE_PROXY_RECORD_PERIOD_SIZE,
136};
137
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -0800138const char * const use_case_table[AUDIO_USECASE_MAX] = {
Eric Laurentb23d5282013-05-14 15:27:20 -0700139 [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = "deep-buffer-playback",
140 [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = "low-latency-playback",
141 [USECASE_AUDIO_PLAYBACK_MULTI_CH] = "multi-channel-playback",
Shruthi Krishnaace10852013-10-25 14:32:12 -0700142 [USECASE_AUDIO_PLAYBACK_OFFLOAD] = "compress-offload-playback",
Eric Laurentb23d5282013-05-14 15:27:20 -0700143 [USECASE_AUDIO_RECORD] = "audio-record",
Mingming Yine62d7842013-10-25 16:26:03 -0700144 [USECASE_AUDIO_RECORD_COMPRESS] = "audio-record-compress",
Eric Laurentb23d5282013-05-14 15:27:20 -0700145 [USECASE_AUDIO_RECORD_LOW_LATENCY] = "low-latency-record",
Preetam Singh Ranawatde84f1a2013-11-01 14:58:16 -0700146 [USECASE_AUDIO_RECORD_FM_VIRTUAL] = "fm-virtual-record",
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700147 [USECASE_AUDIO_PLAYBACK_FM] = "play-fm",
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800148 [USECASE_AUDIO_HFP_SCO] = "hfp-sco",
Vimal Puthanveed47e64852013-12-20 13:23:39 -0800149 [USECASE_AUDIO_HFP_SCO_WB] = "hfp-sco-wb",
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700150 [USECASE_VOICE_CALL] = "voice-call",
Mingming Yinee733602014-04-03 17:47:22 -0700151
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700152 [USECASE_VOICE2_CALL] = "voice2-call",
153 [USECASE_VOLTE_CALL] = "volte-call",
154 [USECASE_QCHAT_CALL] = "qchat-call",
Vicky Sehrawat111aeb32014-02-12 17:58:59 -0800155 [USECASE_VOWLAN_CALL] = "vowlan-call",
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800156 [USECASE_COMPRESS_VOIP_CALL] = "compress-voip-call",
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700157 [USECASE_INCALL_REC_UPLINK] = "incall-rec-uplink",
158 [USECASE_INCALL_REC_DOWNLINK] = "incall-rec-downlink",
159 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK] = "incall-rec-uplink-and-downlink",
Helen Zenge56b4852013-12-03 16:54:40 -0800160 [USECASE_INCALL_REC_UPLINK_COMPRESS] = "incall-rec-uplink-compress",
161 [USECASE_INCALL_REC_DOWNLINK_COMPRESS] = "incall-rec-downlink-compress",
162 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK_COMPRESS] = "incall-rec-uplink-and-downlink-compress",
163
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -0700164 [USECASE_INCALL_MUSIC_UPLINK] = "incall_music_uplink",
165 [USECASE_INCALL_MUSIC_UPLINK2] = "incall_music_uplink2",
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700166 [USECASE_AUDIO_SPKR_CALIB_RX] = "spkr-rx-calib",
167 [USECASE_AUDIO_SPKR_CALIB_TX] = "spkr-vi-record",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530168
169 [USECASE_AUDIO_PLAYBACK_AFE_PROXY] = "afe-proxy-playback",
170 [USECASE_AUDIO_RECORD_AFE_PROXY] = "afe-proxy-record",
Eric Laurentb23d5282013-05-14 15:27:20 -0700171};
172
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800173
174#define STRING_TO_ENUM(string) { #string, string }
175
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800176struct string_to_enum {
177 const char *name;
178 uint32_t value;
179};
180
181static const struct string_to_enum out_channels_name_to_enum_table[] = {
182 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_STEREO),
183 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_5POINT1),
184 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_7POINT1),
185};
186
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700187static struct audio_device *adev = NULL;
188static pthread_mutex_t adev_init_lock;
Kiran Kandi910e1862013-10-29 13:29:42 -0700189static unsigned int audio_device_ref_count;
190
Haynes Mathew George5191a852013-09-11 14:19:36 -0700191static int set_voice_volume_l(struct audio_device *adev, float volume);
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800192
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800193static int check_and_set_gapless_mode(struct audio_device *adev) {
194
195
196 char value[PROPERTY_VALUE_MAX] = {0};
197 bool gapless_enabled = false;
198 const char *mixer_ctl_name = "Compress Gapless Playback";
199 struct mixer_ctl *ctl;
200
201 ALOGV("%s:", __func__);
202 property_get("audio.offload.gapless.enabled", value, NULL);
203 gapless_enabled = atoi(value) || !strncmp("true", value, 4);
204
205 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
206 if (!ctl) {
207 ALOGE("%s: Could not get ctl for mixer cmd - %s",
208 __func__, mixer_ctl_name);
209 return -EINVAL;
210 }
211
212 if (mixer_ctl_set_value(ctl, 0, gapless_enabled) < 0) {
213 ALOGE("%s: Could not set gapless mode %d",
214 __func__, gapless_enabled);
215 return -EINVAL;
216 }
217 return 0;
218}
Haynes Mathew George5191a852013-09-11 14:19:36 -0700219
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700220static bool is_supported_format(audio_format_t format)
221{
Eric Laurent86e17132013-09-12 17:49:30 -0700222 if (format == AUDIO_FORMAT_MP3 ||
Mingming Yinee733602014-04-03 17:47:22 -0700223#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -0800224 format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD ||
Mingming Yinee733602014-04-03 17:47:22 -0700225 format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD ||
226#endif
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530227 format == AUDIO_FORMAT_AAC_LC ||
228 format == AUDIO_FORMAT_AAC_HE_V1 ||
229 format == AUDIO_FORMAT_AAC_HE_V2 ){
230 return true;
231 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700232 return false;
233}
234
235static int get_snd_codec_id(audio_format_t format)
236{
237 int id = 0;
238
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530239 switch (format & AUDIO_FORMAT_MAIN_MASK) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700240 case AUDIO_FORMAT_MP3:
241 id = SND_AUDIOCODEC_MP3;
242 break;
243 case AUDIO_FORMAT_AAC:
244 id = SND_AUDIOCODEC_AAC;
245 break;
Mingming Yinee733602014-04-03 17:47:22 -0700246#ifdef EXTN_OFFLOAD_ENABLED
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530247 case AUDIO_FORMAT_PCM_OFFLOAD:
ApurupaPattapu0c566872014-01-10 14:46:02 -0800248 id = SND_AUDIOCODEC_PCM;
249 break;
Mingming Yinee733602014-04-03 17:47:22 -0700250#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700251 default:
Mingming Yin90310102013-11-13 16:57:00 -0800252 ALOGE("%s: Unsupported audio format :%x", __func__, format);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700253 }
254
255 return id;
256}
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -0800257
Avinash Vaish8005dc82014-07-24 15:36:33 +0530258static int enable_audio_route_for_voice_usecases(struct audio_device *adev,
259 struct audio_usecase *uc_info)
260{
261 struct listnode *node;
262 struct audio_usecase *usecase;
263
264 if (uc_info == NULL)
265 return -EINVAL;
266
267 /* Re-route all voice usecases on the shared backend other than the
268 specified usecase to new snd devices */
269 list_for_each(node, &adev->usecase_list) {
270 usecase = node_to_item(node, struct audio_usecase, list);
271 if ((usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) &&
272 (usecase != uc_info))
273 enable_audio_route(adev, usecase);
274 }
275 return 0;
276}
277
Venkata Narendra Kumar Guttac9e9e2c2014-07-09 16:29:28 +0530278int get_snd_card_state(struct audio_device *adev)
Naresh Tannirucef332d2014-06-04 18:17:56 +0530279{
280 int snd_scard_state;
281
282 if (!adev)
283 return SND_CARD_STATE_OFFLINE;
284
285 pthread_mutex_lock(&adev->snd_card_status.lock);
286 snd_scard_state = adev->snd_card_status.state;
287 pthread_mutex_unlock(&adev->snd_card_status.lock);
288
289 return snd_scard_state;
290}
291
292static int set_snd_card_state(struct audio_device *adev, int snd_scard_state)
293{
294 if (!adev)
295 return -ENOSYS;
296
297 pthread_mutex_lock(&adev->snd_card_status.lock);
298 adev->snd_card_status.state = snd_scard_state;
299 pthread_mutex_unlock(&adev->snd_card_status.lock);
300
301 return 0;
302}
303
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700304int enable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700305 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800306{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700307 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700308 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800309
310 if (usecase == NULL)
311 return -EINVAL;
312
313 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
314
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800315 if (usecase->type == PCM_CAPTURE)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700316 snd_device = usecase->in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800317 else
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700318 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800319
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -0800320#ifdef DS1_DOLBY_DAP_ENABLED
321 audio_extn_dolby_set_dmid(adev);
322 audio_extn_dolby_set_endpoint(adev);
323#endif
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800324 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700325 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700326 ALOGV("%s: apply mixer and update path: %s", __func__, mixer_path);
327 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800328 ALOGV("%s: exit", __func__);
329 return 0;
330}
331
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700332int disable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700333 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800334{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700335 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700336 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800337
338 if (usecase == NULL)
339 return -EINVAL;
340
341 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700342 if (usecase->type == PCM_CAPTURE)
343 snd_device = usecase->in_snd_device;
344 else
345 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800346 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700347 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700348 ALOGV("%s: reset and update mixer path: %s", __func__, mixer_path);
349 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800350 ALOGV("%s: exit", __func__);
351 return 0;
352}
353
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700354int enable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700355 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800356{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700357 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
358
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800359 if (snd_device < SND_DEVICE_MIN ||
360 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800361 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800362 return -EINVAL;
363 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700364
365 adev->snd_dev_ref_cnt[snd_device]++;
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700366
367 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0 ) {
368 ALOGE("%s: Invalid sound device returned", __func__);
369 return -EINVAL;
370 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700371 if (adev->snd_dev_ref_cnt[snd_device] > 1) {
Eric Laurent994a6932013-07-17 11:51:42 -0700372 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700373 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700374 return 0;
375 }
376
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700377 /* start usb playback thread */
378 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
379 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
380 audio_extn_usb_start_playback(adev);
381
382 /* start usb capture thread */
383 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
384 audio_extn_usb_start_capture(adev);
385
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700386 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
387 audio_extn_spkr_prot_is_enabled()) {
388 if (audio_extn_spkr_prot_start_processing(snd_device)) {
389 ALOGE("%s: spkr_start_processing failed", __func__);
390 return -EINVAL;
391 }
392 } else {
393 ALOGV("%s: snd_device(%d: %s)", __func__,
394 snd_device, device_name);
395 if (platform_send_audio_calibration(adev->platform, snd_device) < 0) {
396 adev->snd_dev_ref_cnt[snd_device]--;
397 return -EINVAL;
398 }
Kiran Kandide144c82013-11-20 15:58:32 -0800399 audio_extn_listen_update_status(snd_device,
400 LISTEN_EVENT_SND_DEVICE_BUSY);
401
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700402 audio_route_apply_and_update_path(adev->audio_route, device_name);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800403 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800404 return 0;
405}
406
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700407int disable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700408 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800409{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700410 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
411
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800412 if (snd_device < SND_DEVICE_MIN ||
413 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800414 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800415 return -EINVAL;
416 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700417 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
418 ALOGE("%s: device ref cnt is already 0", __func__);
419 return -EINVAL;
420 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700421
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700422 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700423
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700424 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
425 ALOGE("%s: Invalid sound device returned", __func__);
426 return -EINVAL;
427 }
428
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700429 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Eric Laurent994a6932013-07-17 11:51:42 -0700430 ALOGV("%s: snd_device(%d: %s)", __func__,
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700431 snd_device, device_name);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800432 /* exit usb play back thread */
433 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
434 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
435 audio_extn_usb_stop_playback();
436
437 /* exit usb capture thread */
438 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
Rajshekar Eashwarappa4dfa0752014-10-02 20:18:20 +0530439 audio_extn_usb_stop_capture();
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700440 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
441 audio_extn_spkr_prot_is_enabled()) {
442 audio_extn_spkr_prot_stop_processing();
443 } else
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700444 audio_route_reset_and_update_path(adev->audio_route, device_name);
Kiran Kandide144c82013-11-20 15:58:32 -0800445
446 audio_extn_listen_update_status(snd_device,
447 LISTEN_EVENT_SND_DEVICE_FREE);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700448 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700449
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800450 return 0;
451}
452
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700453static void check_usecases_codec_backend(struct audio_device *adev,
454 struct audio_usecase *uc_info,
455 snd_device_t snd_device)
456{
457 struct listnode *node;
458 struct audio_usecase *usecase;
459 bool switch_device[AUDIO_USECASE_MAX];
460 int i, num_uc_to_switch = 0;
461
462 /*
463 * This function is to make sure that all the usecases that are active on
464 * the hardware codec backend are always routed to any one device that is
465 * handled by the hardware codec.
466 * For example, if low-latency and deep-buffer usecases are currently active
467 * on speaker and out_set_parameters(headset) is received on low-latency
468 * output, then we have to make sure deep-buffer is also switched to headset,
469 * because of the limitation that both the devices cannot be enabled
470 * at the same time as they share the same backend.
471 */
472 /* Disable all the usecases on the shared backend other than the
473 specified usecase */
474 for (i = 0; i < AUDIO_USECASE_MAX; i++)
475 switch_device[i] = false;
476
477 list_for_each(node, &adev->usecase_list) {
478 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800479 if (usecase->type != PCM_CAPTURE &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700480 usecase != uc_info &&
481 usecase->out_snd_device != snd_device &&
482 usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
483 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
484 __func__, use_case_table[usecase->id],
Eric Laurentb23d5282013-05-14 15:27:20 -0700485 platform_get_snd_device_name(usecase->out_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700486 disable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700487 switch_device[usecase->id] = true;
488 num_uc_to_switch++;
489 }
490 }
491
492 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700493 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700494
495 list_for_each(node, &adev->usecase_list) {
496 usecase = node_to_item(node, struct audio_usecase, list);
497 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700498 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700499 }
500 }
501
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700502 list_for_each(node, &adev->usecase_list) {
503 usecase = node_to_item(node, struct audio_usecase, list);
504 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700505 enable_snd_device(adev, snd_device);
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700506 }
507 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700508
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700509 /* Re-route all the usecases on the shared backend other than the
510 specified usecase to new snd devices */
511 list_for_each(node, &adev->usecase_list) {
512 usecase = node_to_item(node, struct audio_usecase, list);
513 /* Update the out_snd_device only before enabling the audio route */
514 if (switch_device[usecase->id] ) {
515 usecase->out_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530516 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
517 enable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700518 }
519 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700520 }
521}
522
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700523static void check_and_route_capture_usecases(struct audio_device *adev,
524 struct audio_usecase *uc_info,
525 snd_device_t snd_device)
526{
527 struct listnode *node;
528 struct audio_usecase *usecase;
529 bool switch_device[AUDIO_USECASE_MAX];
530 int i, num_uc_to_switch = 0;
531
532 /*
533 * This function is to make sure that all the active capture usecases
534 * are always routed to the same input sound device.
535 * For example, if audio-record and voice-call usecases are currently
536 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
537 * is received for voice call then we have to make sure that audio-record
538 * usecase is also switched to earpiece i.e. voice-dmic-ef,
539 * because of the limitation that two devices cannot be enabled
540 * at the same time if they share the same backend.
541 */
542 for (i = 0; i < AUDIO_USECASE_MAX; i++)
543 switch_device[i] = false;
544
545 list_for_each(node, &adev->usecase_list) {
546 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800547 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700548 usecase != uc_info &&
Avinash Vaish44014792015-03-27 14:46:04 +0530549 usecase->in_snd_device != snd_device &&
550 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700551 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
552 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700553 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700554 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700555 switch_device[usecase->id] = true;
556 num_uc_to_switch++;
557 }
558 }
559
560 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700561 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700562
563 list_for_each(node, &adev->usecase_list) {
564 usecase = node_to_item(node, struct audio_usecase, list);
565 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700566 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800567 }
568 }
569
570 list_for_each(node, &adev->usecase_list) {
571 usecase = node_to_item(node, struct audio_usecase, list);
572 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700573 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700574 }
575 }
576
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700577 /* Re-route all the usecases on the shared backend other than the
578 specified usecase to new snd devices */
579 list_for_each(node, &adev->usecase_list) {
580 usecase = node_to_item(node, struct audio_usecase, list);
581 /* Update the in_snd_device only before enabling the audio route */
582 if (switch_device[usecase->id] ) {
583 usecase->in_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530584 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
585 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700586 }
587 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700588 }
589}
590
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800591/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700592static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800593{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700594 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700595 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800596
597 switch (channels) {
598 /*
599 * Do not handle stereo output in Multi-channel cases
600 * Stereo case is handled in normal playback path
601 */
602 case 6:
603 ALOGV("%s: HDMI supports 5.1", __func__);
604 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
605 break;
606 case 8:
607 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
608 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
609 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
610 break;
611 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700612 ALOGE("HDMI does not support multi channel playback");
613 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800614 break;
615 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700616 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800617}
618
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700619static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
620{
621 struct audio_usecase *usecase;
622 struct listnode *node;
623
624 list_for_each(node, &adev->usecase_list) {
625 usecase = node_to_item(node, struct audio_usecase, list);
626 if (usecase->type == VOICE_CALL) {
627 ALOGV("%s: usecase id %d", __func__, usecase->id);
628 return usecase->id;
629 }
630 }
631 return USECASE_INVALID;
632}
633
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700634struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700635 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700636{
637 struct audio_usecase *usecase;
638 struct listnode *node;
639
640 list_for_each(node, &adev->usecase_list) {
641 usecase = node_to_item(node, struct audio_usecase, list);
642 if (usecase->id == uc_id)
643 return usecase;
644 }
645 return NULL;
646}
647
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700648int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800649{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800650 snd_device_t out_snd_device = SND_DEVICE_NONE;
651 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700652 struct audio_usecase *usecase = NULL;
653 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800654 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800655 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800656 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800657 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700658 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800659
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700660 usecase = get_usecase_from_list(adev, uc_id);
661 if (usecase == NULL) {
662 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
663 return -EINVAL;
664 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800665
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800666 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800667 (usecase->type == VOIP_CALL) ||
668 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700669 out_snd_device = platform_get_output_snd_device(adev->platform,
670 usecase->stream.out->devices);
671 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700672 usecase->devices = usecase->stream.out->devices;
673 } else {
674 /*
675 * If the voice call is active, use the sound devices of voice call usecase
676 * so that it would not result any device switch. All the usecases will
677 * be switched to new device when select_devices() is called for voice call
678 * usecase. This is to avoid switching devices for voice call when
679 * check_usecases_codec_backend() is called below.
680 */
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -0700681 if (adev->voice.in_call && adev->mode == AUDIO_MODE_IN_CALL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700682 vc_usecase = get_usecase_from_list(adev,
683 get_voice_usecase_id_from_list(adev));
Mingming Yin6c23f382014-08-14 00:00:51 -0700684 if ((vc_usecase) && ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
685 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700686 in_snd_device = vc_usecase->in_snd_device;
687 out_snd_device = vc_usecase->out_snd_device;
688 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800689 } else if (voice_extn_compress_voip_is_active(adev)) {
690 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Mingming Yin6c23f382014-08-14 00:00:51 -0700691 if ((voip_usecase) && ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish6a4c3372014-06-25 12:20:37 +0530692 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Mingming Yin6c23f382014-08-14 00:00:51 -0700693 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800694 in_snd_device = voip_usecase->in_snd_device;
695 out_snd_device = voip_usecase->out_snd_device;
696 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800697 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800698 hfp_ucid = audio_extn_hfp_get_usecase();
699 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Mingming Yin6c23f382014-08-14 00:00:51 -0700700 if ((hfp_usecase) && (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800701 in_snd_device = hfp_usecase->in_snd_device;
702 out_snd_device = hfp_usecase->out_snd_device;
703 }
Vimal Puthanveed8fa9eab2014-01-07 16:47:47 -0800704 } else if (audio_extn_hfp_is_active(adev)) {
705 hfp_usecase = get_usecase_from_list(adev, USECASE_AUDIO_HFP_SCO);
706 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
707 in_snd_device = hfp_usecase->in_snd_device;
708 out_snd_device = hfp_usecase->out_snd_device;
709 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700710 }
711 if (usecase->type == PCM_PLAYBACK) {
712 usecase->devices = usecase->stream.out->devices;
713 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700714 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700715 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700716 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700717 if (usecase->stream.out == adev->primary_output &&
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530718 adev->active_input ) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700719 select_devices(adev, adev->active_input->usecase);
720 }
721 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700722 } else if (usecase->type == PCM_CAPTURE) {
723 usecase->devices = usecase->stream.in->device;
724 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700725 if (in_snd_device == SND_DEVICE_NONE) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530726 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530727 if ((adev->active_input->source == AUDIO_SOURCE_VOICE_COMMUNICATION || (adev->mode == AUDIO_MODE_IN_COMMUNICATION && adev->active_input->source == AUDIO_SOURCE_MIC)) &&
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700728 adev->primary_output && !adev->primary_output->standby) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530729 out_device = adev->primary_output->devices;
730 } else if(usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
731 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700732 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530733 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700734 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700735 }
736 }
737
738 if (out_snd_device == usecase->out_snd_device &&
739 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800740 return 0;
741 }
742
sangwoobc677242013-08-08 16:53:43 +0900743 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700744 out_snd_device, platform_get_snd_device_name(out_snd_device),
745 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800746
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800747 /*
748 * Limitation: While in call, to do a device switch we need to disable
749 * and enable both RX and TX devices though one of them is same as current
750 * device.
751 */
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800752 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700753 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800754 }
755
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700756 /* Disable current sound devices */
757 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700758 disable_audio_route(adev, usecase);
759 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800760 }
761
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700762 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700763 disable_audio_route(adev, usecase);
764 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800765 }
766
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700767 /* Enable new sound devices */
768 if (out_snd_device != SND_DEVICE_NONE) {
769 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
770 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700771 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800772 }
773
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700774 if (in_snd_device != SND_DEVICE_NONE) {
775 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700776 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700777 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700778
Avinash Vaish8005dc82014-07-24 15:36:33 +0530779 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700780 status = platform_switch_voice_call_device_post(adev->platform,
781 out_snd_device,
782 in_snd_device);
Avinash Vaish8005dc82014-07-24 15:36:33 +0530783 enable_audio_route_for_voice_usecases(adev, usecase);
784 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800785
sangwoo170731f2013-06-08 15:36:36 +0900786 usecase->in_snd_device = in_snd_device;
787 usecase->out_snd_device = out_snd_device;
788
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700789 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900790
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800791 /* Applicable only on the targets that has external modem.
792 * Enable device command should be sent to modem only after
793 * enabling voice call mixer controls
794 */
795 if (usecase->type == VOICE_CALL)
796 status = platform_switch_voice_call_usecase_route_post(adev->platform,
797 out_snd_device,
798 in_snd_device);
799
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530800 ALOGD("%s: done",__func__);
801
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800802 return status;
803}
804
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800805static int stop_input_stream(struct stream_in *in)
806{
807 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800808 struct audio_usecase *uc_info;
809 struct audio_device *adev = in->dev;
810
Eric Laurentc8400632013-02-14 19:04:54 -0800811 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800812
Eric Laurent994a6932013-07-17 11:51:42 -0700813 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700814 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800815 uc_info = get_usecase_from_list(adev, in->usecase);
816 if (uc_info == NULL) {
817 ALOGE("%s: Could not find the usecase (%d) in the list",
818 __func__, in->usecase);
819 return -EINVAL;
820 }
821
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800822 /* Close in-call recording streams */
823 voice_check_and_stop_incall_rec_usecase(adev, in);
824
Eric Laurent150dbfe2013-02-27 14:31:02 -0800825 /* 1. Disable stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700826 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700827
828 /* 2. Disable the tx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700829 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800830
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800831 list_remove(&uc_info->list);
832 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800833
Eric Laurent994a6932013-07-17 11:51:42 -0700834 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800835 return ret;
836}
837
838int start_input_stream(struct stream_in *in)
839{
840 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800841 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800842 struct audio_usecase *uc_info;
843 struct audio_device *adev = in->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +0530844 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800845
Ramjee Singh240ac652015-07-31 16:12:29 +0530846 int usecase = platform_update_usecase_from_source(in->source,in->usecase);
847 if (get_usecase_from_list(adev, usecase) == NULL)
848 in->usecase = usecase;
849
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530850 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
851 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700852
Naresh Tannirucef332d2014-06-04 18:17:56 +0530853 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
854 ALOGE("%s: sound card is not active/SSR returning error ", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530855 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530856 goto error_config;
857 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530858
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700859 /* Check if source matches incall recording usecase criteria */
860 ret = voice_check_and_set_incall_rec_usecase(adev, in);
861 if (ret)
862 goto error_config;
863 else
864 ALOGV("%s: usecase(%d)", __func__, in->usecase);
865
Ramjee Singh240ac652015-07-31 16:12:29 +0530866 if (get_usecase_from_list(adev, in->usecase) != NULL) {
867 ALOGE("%s: use case assigned already in use, stream(%p)usecase(%d: %s)",
868 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
869 goto error_config;
870 }
871
Eric Laurentb23d5282013-05-14 15:27:20 -0700872 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800873 if (in->pcm_device_id < 0) {
874 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
875 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800876 ret = -EINVAL;
877 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800878 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700879
880 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800881 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
882 uc_info->id = in->usecase;
883 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800884 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700885 uc_info->devices = in->device;
886 uc_info->in_snd_device = SND_DEVICE_NONE;
887 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800888
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800889 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700890 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800891
Eric Laurentc8400632013-02-14 19:04:54 -0800892 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530893 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
894
895 unsigned int flags = PCM_IN;
896 unsigned int pcm_open_retry_entry_count = 0;
897
898 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
899 flags |= PCM_MMAP | PCM_NOIRQ;
900 pcm_open_retry_entry_count = PROXY_OPEN_RETRY_COUNT;
901 }
902
903 while(1) {
904 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
905 flags, &in->config);
906 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
907 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
908 if (in->pcm != NULL) {
909 pcm_close(in->pcm);
910 in->pcm = NULL;
911 }
912 if (pcm_open_retry_entry_count-- == 0) {
913 ret = -EIO;
914 goto error_open;
915 }
916 usleep(PROXY_OPEN_WAIT_TIME * 1000);
917 continue;
918 }
919 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800920 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530921
Eric Laurent994a6932013-07-17 11:51:42 -0700922 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800923 return ret;
924
925error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800926 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800927
928error_config:
929 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700930 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800931
932 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800933}
934
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700935/* must be called with out->lock locked */
936static int send_offload_cmd_l(struct stream_out* out, int command)
937{
938 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
939
940 ALOGVV("%s %d", __func__, command);
941
942 cmd->cmd = command;
943 list_add_tail(&out->offload_cmd_list, &cmd->node);
944 pthread_cond_signal(&out->offload_cond);
945 return 0;
946}
947
948/* must be called iwth out->lock locked */
949static void stop_compressed_output_l(struct stream_out *out)
950{
951 out->offload_state = OFFLOAD_STATE_IDLE;
952 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700953 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700954 if (out->compr != NULL) {
955 compress_stop(out->compr);
956 while (out->offload_thread_blocked) {
957 pthread_cond_wait(&out->cond, &out->lock);
958 }
959 }
960}
961
962static void *offload_thread_loop(void *context)
963{
964 struct stream_out *out = (struct stream_out *) context;
965 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800966 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700967
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700968 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
969 set_sched_policy(0, SP_FOREGROUND);
970 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
971
972 ALOGV("%s", __func__);
973 pthread_mutex_lock(&out->lock);
974 for (;;) {
975 struct offload_cmd *cmd = NULL;
976 stream_callback_event_t event;
977 bool send_callback = false;
978
979 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
980 __func__, list_empty(&out->offload_cmd_list),
981 out->offload_state);
982 if (list_empty(&out->offload_cmd_list)) {
983 ALOGV("%s SLEEPING", __func__);
984 pthread_cond_wait(&out->offload_cond, &out->lock);
985 ALOGV("%s RUNNING", __func__);
986 continue;
987 }
988
989 item = list_head(&out->offload_cmd_list);
990 cmd = node_to_item(item, struct offload_cmd, node);
991 list_remove(item);
992
993 ALOGVV("%s STATE %d CMD %d out->compr %p",
994 __func__, out->offload_state, cmd->cmd, out->compr);
995
996 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
997 free(cmd);
998 break;
999 }
1000
1001 if (out->compr == NULL) {
1002 ALOGE("%s: Compress handle is NULL", __func__);
1003 pthread_cond_signal(&out->cond);
1004 continue;
1005 }
1006 out->offload_thread_blocked = true;
1007 pthread_mutex_unlock(&out->lock);
1008 send_callback = false;
1009 switch(cmd->cmd) {
1010 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
1011 compress_wait(out->compr, -1);
1012 send_callback = true;
1013 event = STREAM_CBK_EVENT_WRITE_READY;
1014 break;
1015 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001016 ret = compress_next_track(out->compr);
1017 if(ret == 0)
1018 compress_partial_drain(out->compr);
1019 else if(ret == -ETIMEDOUT)
1020 compress_drain(out->compr);
1021 else
1022 ALOGE("%s: Next track returned error %d",__func__, ret);
1023
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001024 send_callback = true;
1025 event = STREAM_CBK_EVENT_DRAIN_READY;
1026 break;
1027 case OFFLOAD_CMD_DRAIN:
1028 compress_drain(out->compr);
1029 send_callback = true;
1030 event = STREAM_CBK_EVENT_DRAIN_READY;
1031 break;
1032 default:
1033 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1034 break;
1035 }
1036 pthread_mutex_lock(&out->lock);
1037 out->offload_thread_blocked = false;
1038 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001039 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001040 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001041 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001042 free(cmd);
1043 }
1044
1045 pthread_cond_signal(&out->cond);
1046 while (!list_empty(&out->offload_cmd_list)) {
1047 item = list_head(&out->offload_cmd_list);
1048 list_remove(item);
1049 free(node_to_item(item, struct offload_cmd, node));
1050 }
1051 pthread_mutex_unlock(&out->lock);
1052
1053 return NULL;
1054}
1055
1056static int create_offload_callback_thread(struct stream_out *out)
1057{
1058 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1059 list_init(&out->offload_cmd_list);
1060 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1061 offload_thread_loop, out);
1062 return 0;
1063}
1064
1065static int destroy_offload_callback_thread(struct stream_out *out)
1066{
1067 pthread_mutex_lock(&out->lock);
1068 stop_compressed_output_l(out);
1069 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1070
1071 pthread_mutex_unlock(&out->lock);
1072 pthread_join(out->offload_thread, (void **) NULL);
1073 pthread_cond_destroy(&out->offload_cond);
1074
1075 return 0;
1076}
1077
Eric Laurent07eeafd2013-10-06 12:52:49 -07001078static bool allow_hdmi_channel_config(struct audio_device *adev)
1079{
1080 struct listnode *node;
1081 struct audio_usecase *usecase;
1082 bool ret = true;
1083
1084 list_for_each(node, &adev->usecase_list) {
1085 usecase = node_to_item(node, struct audio_usecase, list);
1086 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1087 /*
1088 * If voice call is already existing, do not proceed further to avoid
1089 * disabling/enabling both RX and TX devices, CSD calls, etc.
1090 * Once the voice call done, the HDMI channels can be configured to
1091 * max channels of remaining use cases.
1092 */
1093 if (usecase->id == USECASE_VOICE_CALL) {
1094 ALOGD("%s: voice call is active, no change in HDMI channels",
1095 __func__);
1096 ret = false;
1097 break;
1098 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1099 ALOGD("%s: multi channel playback is active, "
1100 "no change in HDMI channels", __func__);
1101 ret = false;
1102 break;
Mingming Yin3ed162b2014-02-24 17:56:01 -08001103 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_OFFLOAD &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301104 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001105 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1106 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1107 ret = false;
1108 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001109 }
1110 }
1111 }
1112 return ret;
1113}
1114
1115static int check_and_set_hdmi_channels(struct audio_device *adev,
1116 unsigned int channels)
1117{
1118 struct listnode *node;
1119 struct audio_usecase *usecase;
1120
1121 /* Check if change in HDMI channel config is allowed */
1122 if (!allow_hdmi_channel_config(adev))
1123 return 0;
1124
1125 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001126 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001127 return 0;
1128 }
1129
1130 platform_set_hdmi_channels(adev->platform, channels);
1131 adev->cur_hdmi_channels = channels;
1132
1133 /*
1134 * Deroute all the playback streams routed to HDMI so that
1135 * the back end is deactivated. Note that backend will not
1136 * be deactivated if any one stream is connected to it.
1137 */
1138 list_for_each(node, &adev->usecase_list) {
1139 usecase = node_to_item(node, struct audio_usecase, list);
1140 if (usecase->type == PCM_PLAYBACK &&
1141 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001142 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001143 }
1144 }
1145
1146 /*
1147 * Enable all the streams disabled above. Now the HDMI backend
1148 * will be activated with new channel configuration
1149 */
1150 list_for_each(node, &adev->usecase_list) {
1151 usecase = node_to_item(node, struct audio_usecase, list);
1152 if (usecase->type == PCM_PLAYBACK &&
1153 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001154 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001155 }
1156 }
1157
1158 return 0;
1159}
1160
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001161static int stop_output_stream(struct stream_out *out)
1162{
1163 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001164 struct audio_usecase *uc_info;
1165 struct audio_device *adev = out->dev;
1166
Eric Laurent994a6932013-07-17 11:51:42 -07001167 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001168 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001169 uc_info = get_usecase_from_list(adev, out->usecase);
1170 if (uc_info == NULL) {
1171 ALOGE("%s: Could not find the usecase (%d) in the list",
1172 __func__, out->usecase);
1173 return -EINVAL;
1174 }
1175
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001176 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1177 if (adev->visualizer_stop_output != NULL)
1178 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1179 if (adev->offload_effects_stop_output != NULL)
1180 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1181 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001182
Eric Laurent150dbfe2013-02-27 14:31:02 -08001183 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001184 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001185
1186 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001187 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001188
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001189 list_remove(&uc_info->list);
1190 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001191
Eric Laurent07eeafd2013-10-06 12:52:49 -07001192 /* Must be called after removing the usecase from list */
1193 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1194 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1195
Eric Laurent994a6932013-07-17 11:51:42 -07001196 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001197 return ret;
1198}
1199
1200int start_output_stream(struct stream_out *out)
1201{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001202 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001203 int sink_channels = 0;
1204 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001205 struct audio_usecase *uc_info;
1206 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301207 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001208
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301209 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1210 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1211 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301212
Naresh Tannirucef332d2014-06-04 18:17:56 +05301213 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301214 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1215 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301216 goto error_config;
1217 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301218
Eric Laurentb23d5282013-05-14 15:27:20 -07001219 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001220 if (out->pcm_device_id < 0) {
1221 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1222 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001223 ret = -EINVAL;
1224 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001225 }
1226
1227 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1228 uc_info->id = out->usecase;
1229 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001230 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001231 uc_info->devices = out->devices;
1232 uc_info->in_snd_device = SND_DEVICE_NONE;
1233 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001234
Eric Laurent07eeafd2013-10-06 12:52:49 -07001235 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001236 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001237 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1238 if (!strncmp("true", prop_value, 4)) {
1239 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1240 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1241 check_and_set_hdmi_channels(adev, sink_channels);
1242 } else {
1243 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1244 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1245 else
1246 check_and_set_hdmi_channels(adev, out->config.channels);
1247 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001248 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001249
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001250 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001251
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001252 select_devices(adev, out->usecase);
1253
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001254 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1255 __func__, 0, out->pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001256 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301257 unsigned int flags = PCM_OUT;
1258 unsigned int pcm_open_retry_count = 0;
1259 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1260 flags |= PCM_MMAP | PCM_NOIRQ;
1261 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1262 } else
1263 flags |= PCM_MONOTONIC;
1264
1265 while (1) {
1266 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1267 flags, &out->config);
1268 if (out->pcm && !pcm_is_ready(out->pcm)) {
1269 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1270 if (out->pcm != NULL) {
1271 pcm_close(out->pcm);
1272 out->pcm = NULL;
1273 }
1274 if (pcm_open_retry_count-- == 0) {
1275 ret = -EIO;
1276 goto error_open;
1277 }
1278 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1279 continue;
1280 }
1281 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001282 }
1283 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001284 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001285 out->compr = compress_open(adev->snd_card,
1286 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001287 COMPRESS_IN, &out->compr_config);
1288 if (out->compr && !is_compress_ready(out->compr)) {
1289 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1290 compress_close(out->compr);
1291 out->compr = NULL;
1292 ret = -EIO;
1293 goto error_open;
1294 }
1295 if (out->offload_callback)
1296 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001297
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001298#ifdef DS1_DOLBY_DDP_ENABLED
1299 if (audio_extn_is_dolby_format(out->format))
1300 audio_extn_dolby_send_ddp_endp_params(adev);
1301#endif
1302
Eric Laurentc4aef752013-09-12 17:45:53 -07001303 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001304 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1305 if (adev->offload_effects_start_output != NULL)
1306 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001307 }
Eric Laurent994a6932013-07-17 11:51:42 -07001308 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001309 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001310error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001311 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001312error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001313 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001314}
1315
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001316static int check_input_parameters(uint32_t sample_rate,
1317 audio_format_t format,
1318 int channel_count)
1319{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001320 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001321
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001322 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001323 !voice_extn_compress_voip_is_format_supported(format) &&
1324 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001325
1326 switch (channel_count) {
1327 case 1:
1328 case 2:
1329 case 6:
1330 break;
1331 default:
1332 ret = -EINVAL;
1333 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001334
1335 switch (sample_rate) {
1336 case 8000:
1337 case 11025:
1338 case 12000:
1339 case 16000:
1340 case 22050:
1341 case 24000:
1342 case 32000:
1343 case 44100:
1344 case 48000:
1345 break;
1346 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001347 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001348 }
1349
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001350 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001351}
1352
1353static size_t get_input_buffer_size(uint32_t sample_rate,
1354 audio_format_t format,
1355 int channel_count)
1356{
1357 size_t size = 0;
1358
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001359 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1360 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001361
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001362 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1363 /* ToDo: should use frame_size computed based on the format and
1364 channel_count here. */
1365 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001366
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001367 /* make sure the size is multiple of 64 */
1368 size += 0x3f;
1369 size &= ~0x3f;
1370
1371 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001372}
1373
1374static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1375{
1376 struct stream_out *out = (struct stream_out *)stream;
1377
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001378 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001379}
1380
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301381static int out_set_sample_rate(struct audio_stream *stream __unused,
1382 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001383{
1384 return -ENOSYS;
1385}
1386
1387static size_t out_get_buffer_size(const struct audio_stream *stream)
1388{
1389 struct stream_out *out = (struct stream_out *)stream;
1390
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001391 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001392 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001393 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1394 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001395
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301396 return out->config.period_size *
1397 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001398}
1399
1400static uint32_t out_get_channels(const struct audio_stream *stream)
1401{
1402 struct stream_out *out = (struct stream_out *)stream;
1403
1404 return out->channel_mask;
1405}
1406
1407static audio_format_t out_get_format(const struct audio_stream *stream)
1408{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001409 struct stream_out *out = (struct stream_out *)stream;
1410
1411 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001412}
1413
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301414static int out_set_format(struct audio_stream *stream __unused,
1415 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001416{
1417 return -ENOSYS;
1418}
1419
1420static int out_standby(struct audio_stream *stream)
1421{
1422 struct stream_out *out = (struct stream_out *)stream;
1423 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001424
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301425 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1426 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001427 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1428 /* Ignore standby in case of voip call because the voip output
1429 * stream is closed in adev_close_output_stream()
1430 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301431 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001432 return 0;
1433 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001434
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001435 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001436 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001437 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001438 out->standby = true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001439 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1440 if (out->pcm) {
1441 pcm_close(out->pcm);
1442 out->pcm = NULL;
1443 }
1444 } else {
1445 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001446 out->gapless_mdata.encoder_delay = 0;
1447 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001448 if (out->compr != NULL) {
1449 compress_close(out->compr);
1450 out->compr = NULL;
1451 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001452 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001453 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001454 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001455 }
1456 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001457 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001458 return 0;
1459}
1460
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301461static int out_dump(const struct audio_stream *stream __unused,
1462 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001463{
1464 return 0;
1465}
1466
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001467static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1468{
1469 int ret = 0;
1470 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001471 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001472 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001473 tmp_mdata.encoder_delay = 0;
1474 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001475
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001476 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001477 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001478 return -EINVAL;
1479 }
1480
Mingming Yinee733602014-04-03 17:47:22 -07001481#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001482 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1483 if (ret >= 0) {
1484 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1485 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1486 ALOGV("ADTS format is set in offload mode");
1487 }
1488 out->send_new_metadata = 1;
1489 }
Mingming Yinee733602014-04-03 17:47:22 -07001490#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001491
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001492 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1493 if(ret >= 0)
1494 is_meta_data_params = true;
1495 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1496 if(ret >= 0 )
1497 is_meta_data_params = true;
1498 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1499 if(ret >= 0 )
1500 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001501 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1502 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001503 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001504 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001505 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001506 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1507 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001508 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001509 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001510 }
1511
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001512 if(!is_meta_data_params) {
1513 ALOGV("%s: Not gapless meta data params", __func__);
1514 return 0;
1515 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001516 out->gapless_mdata = tmp_mdata;
1517 out->send_new_metadata = 1;
1518 ALOGV("%s new encoder delay %u and padding %u", __func__,
1519 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1520
1521 return 0;
1522}
1523
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301524static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1525{
1526 return out == adev->primary_output || out == adev->voice_tx_output;
1527}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001528
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001529static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1530{
1531 struct stream_out *out = (struct stream_out *)stream;
1532 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001533 struct audio_usecase *usecase;
1534 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001535 struct str_parms *parms;
1536 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001537 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001538 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001539
sangwoobc677242013-08-08 16:53:43 +09001540 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001541 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001542 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001543 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1544 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001545 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001546 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001547 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001548
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001549 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301550 * When HDMI cable is unplugged/usb hs is disconnected the
1551 * music playback is paused and the policy manager sends routing=0
1552 * But the audioflingercontinues to write data until standby time
1553 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001554 * Avoid this by routing audio to speaker until standby.
1555 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301556 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
1557 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001558 val == AUDIO_DEVICE_NONE) {
1559 val = AUDIO_DEVICE_OUT_SPEAKER;
1560 }
1561
1562 /*
1563 * select_devices() call below switches all the usecases on the same
1564 * backend to the new device. Refer to check_usecases_codec_backend() in
1565 * the select_devices(). But how do we undo this?
1566 *
1567 * For example, music playback is active on headset (deep-buffer usecase)
1568 * and if we go to ringtones and select a ringtone, low-latency usecase
1569 * will be started on headset+speaker. As we can't enable headset+speaker
1570 * and headset devices at the same time, select_devices() switches the music
1571 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1572 * So when the ringtone playback is completed, how do we undo the same?
1573 *
1574 * We are relying on the out_set_parameters() call on deep-buffer output,
1575 * once the ringtone playback is ended.
1576 * NOTE: We should not check if the current devices are same as new devices.
1577 * Because select_devices() must be called to switch back the music
1578 * playback to headset.
1579 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001580 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001581 out->devices = val;
1582
1583 if (!out->standby)
1584 select_devices(adev, out->usecase);
1585
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001586 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301587 output_drives_call(adev, out)) {
1588 adev->current_call_output = out;
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001589 if (!adev->voice.in_call)
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301590 ret = voice_start_call(adev);
1591 else
1592 voice_update_devices_for_all_voice_usecases(adev);
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001593 }
1594 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001595
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001596 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1597 adev->voice.in_call &&
1598 output_drives_call(adev, out)) {
1599 ret = voice_stop_call(adev);
1600 adev->current_call_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001601 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001602
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001603 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001604 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001605 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001606
1607 if (out == adev->primary_output) {
1608 pthread_mutex_lock(&adev->lock);
1609 audio_extn_set_parameters(adev, parms);
1610 pthread_mutex_unlock(&adev->lock);
1611 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001612 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001613 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001614 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001615 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001616 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001617
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001618 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001619 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001620 return ret;
1621}
1622
1623static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1624{
1625 struct stream_out *out = (struct stream_out *)stream;
1626 struct str_parms *query = str_parms_create_str(keys);
1627 char *str;
1628 char value[256];
1629 struct str_parms *reply = str_parms_create();
1630 size_t i, j;
1631 int ret;
1632 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001633 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001634 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1635 if (ret >= 0) {
1636 value[0] = '\0';
1637 i = 0;
1638 while (out->supported_channel_masks[i] != 0) {
1639 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1640 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1641 if (!first) {
1642 strcat(value, "|");
1643 }
1644 strcat(value, out_channels_name_to_enum_table[j].name);
1645 first = false;
1646 break;
1647 }
1648 }
1649 i++;
1650 }
1651 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1652 str = str_parms_to_str(reply);
1653 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001654 voice_extn_out_get_parameters(out, query, reply);
1655 str = str_parms_to_str(reply);
1656 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001657 free(str);
1658 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001659 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001660 }
1661 str_parms_destroy(query);
1662 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001663 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001664 return str;
1665}
1666
1667static uint32_t out_get_latency(const struct audio_stream_out *stream)
1668{
1669 struct stream_out *out = (struct stream_out *)stream;
1670
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001671 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1672 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1673
1674 return (out->config.period_count * out->config.period_size * 1000) /
1675 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001676}
1677
1678static int out_set_volume(struct audio_stream_out *stream, float left,
1679 float right)
1680{
Eric Laurenta9024de2013-04-04 09:19:12 -07001681 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001682 int volume[2];
1683
Eric Laurenta9024de2013-04-04 09:19:12 -07001684 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1685 /* only take left channel into account: the API is for stereo anyway */
1686 out->muted = (left == 0.0f);
1687 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001688 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001689 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001690 struct audio_device *adev = out->dev;
1691 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001692 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1693 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001694
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001695 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1696 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001697 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1698 if (!ctl) {
1699 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1700 __func__, mixer_ctl_name);
1701 return -EINVAL;
1702 }
1703 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1704 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1705 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1706 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001707 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001708
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001709 return -ENOSYS;
1710}
1711
1712static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1713 size_t bytes)
1714{
1715 struct stream_out *out = (struct stream_out *)stream;
1716 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301717 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001718 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001719
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001720 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301721
Naresh Tannirucef332d2014-06-04 18:17:56 +05301722 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1723 if (out->pcm) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301724 ALOGD(" %s: sound card is not active/SSR state", __func__);
1725 ret= -ENETRESET;
1726 goto exit;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301727 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1728 //during SSR for compress usecase we should return error to flinger
1729 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1730 pthread_mutex_unlock(&out->lock);
1731 return -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301732 }
1733 }
1734
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001735 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001736 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001737 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001738 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1739 ret = voice_extn_compress_voip_start_output_stream(out);
1740 else
1741 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001742 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001743 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001744 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001745 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001746 goto exit;
1747 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001748 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001749
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001750 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001751 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1752 if (out->send_new_metadata) {
1753 ALOGVV("send new gapless metadata");
1754 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1755 out->send_new_metadata = 0;
1756 }
1757
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001758 ret = compress_write(out->compr, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301759 if (ret < 0)
1760 ret = -errno;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001761 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001762 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001763 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301764 } else if (-ENETRESET == ret) {
1765 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1766 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1767 pthread_mutex_unlock(&out->lock);
1768 out_standby(&out->stream.common);
1769 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001770 }
Naresh Tannirucef332d2014-06-04 18:17:56 +05301771 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001772 compress_start(out->compr);
1773 out->playback_started = 1;
1774 out->offload_state = OFFLOAD_STATE_PLAYING;
1775 }
1776 pthread_mutex_unlock(&out->lock);
1777 return ret;
1778 } else {
1779 if (out->pcm) {
1780 if (out->muted)
1781 memset((void *)buffer, 0, bytes);
1782 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301783 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1784 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1785 else
1786 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301787 if (ret < 0)
1788 ret = -errno;
1789 else if (ret == 0)
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001790 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001791 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001792 }
1793
1794exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301795 /* ToDo: There may be a corner case when SSR happens back to back during
1796 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301797 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301798 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301799 }
1800
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001801 pthread_mutex_unlock(&out->lock);
1802
1803 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001804 if (out->pcm)
1805 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301806 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301807 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301808 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301809 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301810 out->standby = true;
1811 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001812 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301813 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1814 out_get_sample_rate(&out->stream.common));
1815
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001816 }
1817 return bytes;
1818}
1819
1820static int out_get_render_position(const struct audio_stream_out *stream,
1821 uint32_t *dsp_frames)
1822{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001823 struct stream_out *out = (struct stream_out *)stream;
1824 *dsp_frames = 0;
1825 if ((out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) && (dsp_frames != NULL)) {
Mingming Yin04c680d2014-11-19 16:18:55 -08001826 ssize_t ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001827 pthread_mutex_lock(&out->lock);
1828 if (out->compr != NULL) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301829 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001830 &out->sample_rate);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301831 if (ret < 0)
1832 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001833 ALOGVV("%s rendered frames %d sample_rate %d",
1834 __func__, *dsp_frames, out->sample_rate);
1835 }
1836 pthread_mutex_unlock(&out->lock);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301837 if (-ENETRESET == ret) {
1838 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
1839 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1840 return -EINVAL;
1841 } else if(ret < 0) {
1842 ALOGE(" ERROR: Unable to get time stamp from compress driver");
1843 return -EINVAL;
1844 } else {
1845 return 0;
1846 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001847 } else
1848 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001849}
1850
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301851static int out_add_audio_effect(const struct audio_stream *stream __unused,
1852 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001853{
1854 return 0;
1855}
1856
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301857static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1858 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001859{
1860 return 0;
1861}
1862
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301863static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1864 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001865{
1866 return -EINVAL;
1867}
1868
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001869static int out_get_presentation_position(const struct audio_stream_out *stream,
1870 uint64_t *frames, struct timespec *timestamp)
1871{
1872 struct stream_out *out = (struct stream_out *)stream;
1873 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001874 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001875
1876 pthread_mutex_lock(&out->lock);
1877
Eric Laurent949a0892013-09-20 09:20:13 -07001878 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1879 if (out->compr != NULL) {
1880 compress_get_tstamp(out->compr, &dsp_frames,
1881 &out->sample_rate);
1882 ALOGVV("%s rendered frames %ld sample_rate %d",
1883 __func__, dsp_frames, out->sample_rate);
1884 *frames = dsp_frames;
1885 ret = 0;
1886 /* this is the best we can do */
1887 clock_gettime(CLOCK_MONOTONIC, timestamp);
1888 }
1889 } else {
1890 if (out->pcm) {
1891 size_t avail;
1892 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
1893 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07001894 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001895 // This adjustment accounts for buffering after app processor.
1896 // It is based on estimated DSP latency per use case, rather than exact.
1897 signed_frames -=
1898 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
1899
Eric Laurent949a0892013-09-20 09:20:13 -07001900 // It would be unusual for this value to be negative, but check just in case ...
1901 if (signed_frames >= 0) {
1902 *frames = signed_frames;
1903 ret = 0;
1904 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001905 }
1906 }
1907 }
1908
1909 pthread_mutex_unlock(&out->lock);
1910
1911 return ret;
1912}
1913
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001914static int out_set_callback(struct audio_stream_out *stream,
1915 stream_callback_t callback, void *cookie)
1916{
1917 struct stream_out *out = (struct stream_out *)stream;
1918
1919 ALOGV("%s", __func__);
1920 pthread_mutex_lock(&out->lock);
1921 out->offload_callback = callback;
1922 out->offload_cookie = cookie;
1923 pthread_mutex_unlock(&out->lock);
1924 return 0;
1925}
1926
1927static int out_pause(struct audio_stream_out* stream)
1928{
1929 struct stream_out *out = (struct stream_out *)stream;
1930 int status = -ENOSYS;
1931 ALOGV("%s", __func__);
1932 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1933 pthread_mutex_lock(&out->lock);
1934 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301935 struct audio_device *adev = out->dev;
1936 int snd_scard_state = get_snd_card_state(adev);
1937
1938 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1939 status = compress_pause(out->compr);
1940
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001941 out->offload_state = OFFLOAD_STATE_PAUSED;
1942 }
1943 pthread_mutex_unlock(&out->lock);
1944 }
1945 return status;
1946}
1947
1948static int out_resume(struct audio_stream_out* stream)
1949{
1950 struct stream_out *out = (struct stream_out *)stream;
1951 int status = -ENOSYS;
1952 ALOGV("%s", __func__);
1953 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1954 status = 0;
1955 pthread_mutex_lock(&out->lock);
1956 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301957 struct audio_device *adev = out->dev;
1958 int snd_scard_state = get_snd_card_state(adev);
1959
1960 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1961 status = compress_resume(out->compr);
1962
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001963 out->offload_state = OFFLOAD_STATE_PLAYING;
1964 }
1965 pthread_mutex_unlock(&out->lock);
1966 }
1967 return status;
1968}
1969
1970static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
1971{
1972 struct stream_out *out = (struct stream_out *)stream;
1973 int status = -ENOSYS;
1974 ALOGV("%s", __func__);
1975 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1976 pthread_mutex_lock(&out->lock);
1977 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
1978 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
1979 else
1980 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
1981 pthread_mutex_unlock(&out->lock);
1982 }
1983 return status;
1984}
1985
1986static int out_flush(struct audio_stream_out* stream)
1987{
1988 struct stream_out *out = (struct stream_out *)stream;
1989 ALOGV("%s", __func__);
1990 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1991 pthread_mutex_lock(&out->lock);
1992 stop_compressed_output_l(out);
1993 pthread_mutex_unlock(&out->lock);
1994 return 0;
1995 }
1996 return -ENOSYS;
1997}
1998
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001999/** audio_stream_in implementation **/
2000static uint32_t in_get_sample_rate(const struct audio_stream *stream)
2001{
2002 struct stream_in *in = (struct stream_in *)stream;
2003
2004 return in->config.rate;
2005}
2006
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302007static int in_set_sample_rate(struct audio_stream *stream __unused,
2008 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002009{
2010 return -ENOSYS;
2011}
2012
2013static size_t in_get_buffer_size(const struct audio_stream *stream)
2014{
2015 struct stream_in *in = (struct stream_in *)stream;
2016
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002017 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2018 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002019 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2020 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002021
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302022 return in->config.period_size *
2023 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002024}
2025
2026static uint32_t in_get_channels(const struct audio_stream *stream)
2027{
2028 struct stream_in *in = (struct stream_in *)stream;
2029
2030 return in->channel_mask;
2031}
2032
2033static audio_format_t in_get_format(const struct audio_stream *stream)
2034{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002035 struct stream_in *in = (struct stream_in *)stream;
2036
2037 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002038}
2039
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302040static int in_set_format(struct audio_stream *stream __unused,
2041 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002042{
2043 return -ENOSYS;
2044}
2045
2046static int in_standby(struct audio_stream *stream)
2047{
2048 struct stream_in *in = (struct stream_in *)stream;
2049 struct audio_device *adev = in->dev;
2050 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302051 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2052 stream, in->usecase, use_case_table[in->usecase]);
2053
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002054
2055 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2056 /* Ignore standby in case of voip call because the voip input
2057 * stream is closed in adev_close_input_stream()
2058 */
2059 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2060 return status;
2061 }
2062
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002063 pthread_mutex_lock(&in->lock);
2064 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002065 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002066 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002067 if (in->pcm) {
2068 pcm_close(in->pcm);
2069 in->pcm = NULL;
2070 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002071 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002072 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002073 }
2074 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002075 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002076 return status;
2077}
2078
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302079static int in_dump(const struct audio_stream *stream __unused,
2080 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002081{
2082 return 0;
2083}
2084
2085static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2086{
2087 struct stream_in *in = (struct stream_in *)stream;
2088 struct audio_device *adev = in->dev;
2089 struct str_parms *parms;
2090 char *str;
2091 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002092 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002093
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302094 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002095 parms = str_parms_create_str(kvpairs);
2096
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002097 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002098 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002099
2100 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2101 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002102 val = atoi(value);
2103 /* no audio source uses val == 0 */
2104 if ((in->source != val) && (val != 0)) {
2105 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002106 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2107 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2108 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2109 (in->config.rate == 8000 || in->config.rate == 16000) &&
2110 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002111 err = voice_extn_compress_voip_open_input_stream(in);
2112 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002113 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002114 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002115 }
2116 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002117 }
2118 }
2119
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002120 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2121 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002122 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302123 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002124 in->device = val;
2125 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002126 if (!in->standby)
2127 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002128 }
2129 }
2130
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002131done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002132 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002133 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002134
2135 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002136 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002137 return ret;
2138}
2139
2140static char* in_get_parameters(const struct audio_stream *stream,
2141 const char *keys)
2142{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002143 struct stream_in *in = (struct stream_in *)stream;
2144 struct str_parms *query = str_parms_create_str(keys);
2145 char *str;
2146 char value[256];
2147 struct str_parms *reply = str_parms_create();
2148 ALOGV("%s: enter: keys - %s", __func__, keys);
2149
2150 voice_extn_in_get_parameters(in, query, reply);
2151
2152 str = str_parms_to_str(reply);
2153 str_parms_destroy(query);
2154 str_parms_destroy(reply);
2155
2156 ALOGV("%s: exit: returns - %s", __func__, str);
2157 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002158}
2159
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302160static int in_set_gain(struct audio_stream_in *stream __unused,
2161 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002162{
2163 return 0;
2164}
2165
2166static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2167 size_t bytes)
2168{
2169 struct stream_in *in = (struct stream_in *)stream;
2170 struct audio_device *adev = in->dev;
2171 int i, ret = -1;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302172 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002173
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002174 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302175
2176 if (in->pcm) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302177 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302178 ALOGD(" %s: sound card is not active/SSR state", __func__);
2179 ret= -ENETRESET;
2180 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302181 }
2182 }
2183
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002184 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002185 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002186 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2187 ret = voice_extn_compress_voip_start_input_stream(in);
2188 else
2189 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002190 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002191 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002192 goto exit;
2193 }
2194 in->standby = 0;
2195 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002196
2197 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302198 if (audio_extn_ssr_get_enabled() &&
2199 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002200 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002201 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2202 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302203 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2204 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002205 else
2206 ret = pcm_read(in->pcm, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05302207 if (ret < 0)
2208 ret = -errno;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002209 }
2210
2211 /*
2212 * Instead of writing zeroes here, we could trust the hardware
2213 * to always provide zeroes when muted.
2214 */
Pavan Chikkala6c183fd2014-12-04 10:48:28 +05302215 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in) &&
2216 in->usecase != USECASE_AUDIO_RECORD_AFE_PROXY)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002217 memset(buffer, 0, bytes);
2218
2219exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302220 /* ToDo: There may be a corner case when SSR happens back to back during
2221 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302222 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302223 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302224 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302225 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002226 pthread_mutex_unlock(&in->lock);
2227
2228 if (ret != 0) {
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302229 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302230 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302231 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302232 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302233 in->standby = true;
2234 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002235 in_standby(&in->stream.common);
2236 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302237 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2238 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002239 }
2240 return bytes;
2241}
2242
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302243static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002244{
2245 return 0;
2246}
2247
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002248static int add_remove_audio_effect(const struct audio_stream *stream,
2249 effect_handle_t effect,
2250 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002251{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002252 struct stream_in *in = (struct stream_in *)stream;
2253 int status = 0;
2254 effect_descriptor_t desc;
2255
2256 status = (*effect)->get_descriptor(effect, &desc);
2257 if (status != 0)
2258 return status;
2259
2260 pthread_mutex_lock(&in->lock);
2261 pthread_mutex_lock(&in->dev->lock);
2262 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2263 in->enable_aec != enable &&
2264 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2265 in->enable_aec = enable;
2266 if (!in->standby)
2267 select_devices(in->dev, in->usecase);
2268 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002269 if (in->enable_ns != enable &&
2270 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2271 in->enable_ns = enable;
2272 if (!in->standby)
2273 select_devices(in->dev, in->usecase);
2274 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002275 pthread_mutex_unlock(&in->dev->lock);
2276 pthread_mutex_unlock(&in->lock);
2277
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002278 return 0;
2279}
2280
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002281static int in_add_audio_effect(const struct audio_stream *stream,
2282 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002283{
Eric Laurent994a6932013-07-17 11:51:42 -07002284 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002285 return add_remove_audio_effect(stream, effect, true);
2286}
2287
2288static int in_remove_audio_effect(const struct audio_stream *stream,
2289 effect_handle_t effect)
2290{
Eric Laurent994a6932013-07-17 11:51:42 -07002291 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002292 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002293}
2294
2295static int adev_open_output_stream(struct audio_hw_device *dev,
2296 audio_io_handle_t handle,
2297 audio_devices_t devices,
2298 audio_output_flags_t flags,
2299 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302300 struct audio_stream_out **stream_out,
2301 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002302{
2303 struct audio_device *adev = (struct audio_device *)dev;
2304 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002305 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002306
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002307 *stream_out = NULL;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302308
2309 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2310 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2311 ALOGE(" sound card is not active rejecting compress output open request");
2312 return -EINVAL;
2313 }
2314
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002315 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2316
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302317 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2318 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2319 devices, flags, &out->stream);
2320
2321
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002322 if (!out) {
2323 return -ENOMEM;
2324 }
2325
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002326 if (devices == AUDIO_DEVICE_NONE)
2327 devices = AUDIO_DEVICE_OUT_SPEAKER;
2328
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002329 out->flags = flags;
2330 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002331 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002332 out->format = config->format;
2333 out->sample_rate = config->sample_rate;
2334 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2335 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002336 out->handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002337
2338 /* Init use case and pcm_config */
Mingming Yin8cde13d2015-07-21 15:22:22 -07002339 if ((out->flags & AUDIO_OUTPUT_FLAG_DIRECT) &&
2340 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
Mingming Yinee733602014-04-03 17:47:22 -07002341 (
2342#ifdef AFE_PROXY_ENABLED
2343 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2344#endif
2345 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002346
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002347 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002348 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2349 ret = read_hdmi_channel_masks(out);
2350
Mingming Yinee733602014-04-03 17:47:22 -07002351#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002352 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2353 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002354#endif
2355
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002356 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002357 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002358 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002359
2360 if (config->sample_rate == 0)
2361 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2362 if (config->channel_mask == 0)
2363 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2364
2365 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002366 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002367 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2368 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002369 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302370 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002371 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002372#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002373 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2374 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002375 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002376 ret = voice_extn_compress_voip_open_output_stream(out);
2377 if (ret != 0) {
2378 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2379 __func__, ret);
2380 goto error_open;
2381 }
Mingming Yinee733602014-04-03 17:47:22 -07002382#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002383 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2384 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2385 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2386 ALOGE("%s: Unsupported Offload information", __func__);
2387 ret = -EINVAL;
2388 goto error_open;
2389 }
Mingming Yin90310102013-11-13 16:57:00 -08002390 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002391 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002392 ALOGE("%s: Unsupported audio format", __func__);
2393 ret = -EINVAL;
2394 goto error_open;
2395 }
2396
2397 out->compr_config.codec = (struct snd_codec *)
2398 calloc(1, sizeof(struct snd_codec));
2399
2400 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
2401 if (config->offload_info.channel_mask)
2402 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002403 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002404 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002405 config->offload_info.channel_mask = config->channel_mask;
2406 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002407 out->format = config->offload_info.format;
2408 out->sample_rate = config->offload_info.sample_rate;
2409
2410 out->stream.set_callback = out_set_callback;
2411 out->stream.pause = out_pause;
2412 out->stream.resume = out_resume;
2413 out->stream.drain = out_drain;
2414 out->stream.flush = out_flush;
2415
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002416 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002417 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002418 audio_extn_dolby_get_snd_codec_id(adev, out,
2419 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002420 else
2421 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002422 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002423#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002424 if (audio_is_offload_pcm(config->offload_info.format)) {
2425 out->compr_config.fragment_size =
2426 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002427 } else
2428#endif
2429 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002430 out->compr_config.fragment_size =
2431 platform_get_compress_offload_buffer_size(&config->offload_info);
2432 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002433 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2434 out->compr_config.codec->sample_rate =
2435 compress_get_alsa_rate(config->offload_info.sample_rate);
2436 out->compr_config.codec->bit_rate =
2437 config->offload_info.bit_rate;
2438 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302439 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002440 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08002441 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002442
Mingming Yinee733602014-04-03 17:47:22 -07002443#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002444 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2445 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2446 else if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
2447 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002448#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002449
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002450 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2451 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002452
2453 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002454 out->offload_state = OFFLOAD_STATE_IDLE;
2455 out->playback_started = 0;
2456
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002457 create_offload_callback_thread(out);
2458 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2459 __func__, config->offload_info.version,
2460 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002461 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002462 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002463
Mingming Yinee733602014-04-03 17:47:22 -07002464#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002465 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2466 ret = voice_check_and_set_incall_music_usecase(adev, out);
2467 if (ret != 0) {
2468 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2469 __func__, ret);
2470 goto error_open;
2471 }
Mingming Yinee733602014-04-03 17:47:22 -07002472#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302473 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2474 if (config->sample_rate == 0)
2475 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2476 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2477 config->sample_rate != 8000) {
2478 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2479 ret = -EINVAL;
2480 goto error_open;
2481 }
2482 out->sample_rate = config->sample_rate;
2483 out->config.rate = config->sample_rate;
2484 if (config->format == AUDIO_FORMAT_DEFAULT)
2485 config->format = AUDIO_FORMAT_PCM_16_BIT;
2486 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2487 config->format = AUDIO_FORMAT_PCM_16_BIT;
2488 ret = -EINVAL;
2489 goto error_open;
2490 }
2491 out->format = config->format;
2492 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2493 out->config = pcm_config_afe_proxy_playback;
2494 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002495 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002496 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2497 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002498 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002499 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002500 /* primary path is the default path selected if no other outputs are available/suitable */
2501 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002502 out->config = pcm_config_deep_buffer;
2503 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002504 }
2505
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002506 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2507 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2508 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002509 if(adev->primary_output == NULL)
2510 adev->primary_output = out;
2511 else {
2512 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002513 ret = -EEXIST;
2514 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002515 }
2516 }
2517
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002518 /* Check if this usecase is already existing */
2519 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002520 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2521 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002522 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002523 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002524 ret = -EEXIST;
2525 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002526 }
2527 pthread_mutex_unlock(&adev->lock);
2528
2529 out->stream.common.get_sample_rate = out_get_sample_rate;
2530 out->stream.common.set_sample_rate = out_set_sample_rate;
2531 out->stream.common.get_buffer_size = out_get_buffer_size;
2532 out->stream.common.get_channels = out_get_channels;
2533 out->stream.common.get_format = out_get_format;
2534 out->stream.common.set_format = out_set_format;
2535 out->stream.common.standby = out_standby;
2536 out->stream.common.dump = out_dump;
2537 out->stream.common.set_parameters = out_set_parameters;
2538 out->stream.common.get_parameters = out_get_parameters;
2539 out->stream.common.add_audio_effect = out_add_audio_effect;
2540 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2541 out->stream.get_latency = out_get_latency;
2542 out->stream.set_volume = out_set_volume;
2543 out->stream.write = out_write;
2544 out->stream.get_render_position = out_get_render_position;
2545 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002546 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002547
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002548 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002549 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002550 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002551
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302552 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2553 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2554
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002555 config->format = out->stream.common.get_format(&out->stream.common);
2556 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2557 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2558
2559 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302560 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2561 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002562 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002563 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002564
2565error_open:
2566 free(out);
2567 *stream_out = NULL;
2568 ALOGD("%s: exit: ret %d", __func__, ret);
2569 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002570}
2571
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302572static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002573 struct audio_stream_out *stream)
2574{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002575 struct stream_out *out = (struct stream_out *)stream;
2576 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002577 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002578
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302579 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2580
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002581 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Divya Narayanan Poojary98180cc2016-03-11 16:55:13 +05302582 pthread_mutex_lock(&out->lock);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302583 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002584 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302585 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary98180cc2016-03-11 16:55:13 +05302586 pthread_mutex_unlock(&out->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002587 if(ret != 0)
2588 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2589 __func__, ret);
2590 }
2591 else
2592 out_standby(&stream->common);
2593
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002594 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
2595 destroy_offload_callback_thread(out);
2596
2597 if (out->compr_config.codec != NULL)
2598 free(out->compr_config.codec);
2599 }
2600 pthread_cond_destroy(&out->cond);
2601 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002602 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002603 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002604}
2605
2606static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2607{
2608 struct audio_device *adev = (struct audio_device *)dev;
2609 struct str_parms *parms;
2610 char *str;
2611 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002612 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302613 int ret;
2614 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002615
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002616 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002617 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002618
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302619 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2620 if (ret >= 0) {
2621 char *snd_card_status = value+2;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302622 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302623 struct listnode *node;
2624 struct audio_usecase *usecase;
2625
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302626 ALOGD("Received sound card OFFLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302627 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2628
2629 pthread_mutex_lock(&adev->lock);
2630 //close compress session on OFFLINE status
2631 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2632 if (usecase && usecase->stream.out) {
2633 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2634
2635 struct stream_out *out = usecase->stream.out;
2636
2637 pthread_mutex_unlock(&adev->lock);
2638 out_standby(&out->stream.common);
2639 } else
2640 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302641 } else if (strstr(snd_card_status, "ONLINE")) {
2642 ALOGD("Received sound card ONLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302643 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302644 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302645 }
2646
2647 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302648 status = voice_set_parameters(adev, parms);
2649 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002650 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002651
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302652 status = platform_set_parameters(adev->platform, parms);
2653 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002654 goto done;
2655
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302656 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2657 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002658 /* When set to false, HAL should disable EC and NS
2659 * But it is currently not supported.
2660 */
2661 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2662 adev->bluetooth_nrec = true;
2663 else
2664 adev->bluetooth_nrec = false;
2665 }
2666
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302667 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2668 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002669 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2670 adev->screen_off = false;
2671 else
2672 adev->screen_off = true;
2673 }
2674
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302675 ret = str_parms_get_int(parms, "rotation", &val);
2676 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002677 bool reverse_speakers = false;
2678 switch(val) {
2679 // FIXME: note that the code below assumes that the speakers are in the correct placement
2680 // relative to the user when the device is rotated 90deg from its default rotation. This
2681 // assumption is device-specific, not platform-specific like this code.
2682 case 270:
2683 reverse_speakers = true;
2684 break;
2685 case 0:
2686 case 90:
2687 case 180:
2688 break;
2689 default:
2690 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302691 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002692 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302693 if (status == 0) {
2694 if (adev->speaker_lr_swap != reverse_speakers) {
2695 adev->speaker_lr_swap = reverse_speakers;
2696 // only update the selected device if there is active pcm playback
2697 struct audio_usecase *usecase;
2698 struct listnode *node;
2699 list_for_each(node, &adev->usecase_list) {
2700 usecase = node_to_item(node, struct audio_usecase, list);
2701 if (usecase->type == PCM_PLAYBACK) {
2702 select_devices(adev, usecase->id);
2703 break;
2704 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002705 }
2706 }
2707 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002708 }
2709
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002710 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002711
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002712done:
2713 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002714 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302715 ALOGV("%s: exit with code(%d)", __func__, status);
2716 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002717}
2718
2719static char* adev_get_parameters(const struct audio_hw_device *dev,
2720 const char *keys)
2721{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002722 struct audio_device *adev = (struct audio_device *)dev;
2723 struct str_parms *reply = str_parms_create();
2724 struct str_parms *query = str_parms_create_str(keys);
2725 char *str;
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302726 char value[256] = {0};
2727 int ret = 0;
2728
2729 ret = str_parms_get_str(query, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, value,
2730 sizeof(value));
2731 if (ret >=0) {
2732 int val = 1;
2733 pthread_mutex_lock(&adev->snd_card_status.lock);
2734 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2735 val = 0;
2736 pthread_mutex_unlock(&adev->snd_card_status.lock);
2737 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, val);
2738 goto exit;
2739 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002740
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002741 pthread_mutex_lock(&adev->lock);
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302742
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002743 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002744 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002745 platform_get_parameters(adev->platform, query, reply);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302746 pthread_mutex_unlock(&adev->lock);
2747
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302748exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002749 str = str_parms_to_str(reply);
2750 str_parms_destroy(query);
2751 str_parms_destroy(reply);
2752
2753 ALOGV("%s: exit: returns - %s", __func__, str);
2754 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002755}
2756
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302757static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002758{
2759 return 0;
2760}
2761
2762static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2763{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002764 int ret;
2765 struct audio_device *adev = (struct audio_device *)dev;
2766 pthread_mutex_lock(&adev->lock);
2767 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002768 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002769 pthread_mutex_unlock(&adev->lock);
2770 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002771}
2772
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302773static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2774 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002775{
2776 return -ENOSYS;
2777}
2778
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302779static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2780 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002781{
2782 return -ENOSYS;
2783}
2784
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302785static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2786 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002787{
2788 return -ENOSYS;
2789}
2790
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302791static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2792 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002793{
2794 return -ENOSYS;
2795}
2796
2797static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2798{
2799 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002800 pthread_mutex_lock(&adev->lock);
2801 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002802 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002803 adev->mode = mode;
2804 }
2805 pthread_mutex_unlock(&adev->lock);
2806 return 0;
2807}
2808
2809static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2810{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002811 int ret;
2812
2813 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002814 ALOGD("%s state %d\n", __func__, state);
Shreyas Nagasandra Chandrasekhar9781c6c2014-12-01 05:49:35 -08002815 ret = voice_set_mic_mute((struct audio_device *)dev, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002816 pthread_mutex_unlock(&adev->lock);
2817
2818 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002819}
2820
2821static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2822{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002823 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002824 return 0;
2825}
2826
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302827static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002828 const struct audio_config *config)
2829{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302830 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002831
2832 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2833}
2834
2835static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302836 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002837 audio_devices_t devices,
2838 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302839 struct audio_stream_in **stream_in,
2840 audio_input_flags_t flags __unused,
2841 const char *address __unused,
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002842 audio_source_t source)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002843{
2844 struct audio_device *adev = (struct audio_device *)dev;
2845 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002846 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302847 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002848
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302849
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002850 *stream_in = NULL;
2851 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2852 return -EINVAL;
2853
2854 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302855 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002856 stream_handle(%p) io_handle(%d) source(%d)",__func__, config->sample_rate, config->channel_mask,
2857 devices, &in->stream, handle, source);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002858
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002859 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2860
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002861 in->stream.common.get_sample_rate = in_get_sample_rate;
2862 in->stream.common.set_sample_rate = in_set_sample_rate;
2863 in->stream.common.get_buffer_size = in_get_buffer_size;
2864 in->stream.common.get_channels = in_get_channels;
2865 in->stream.common.get_format = in_get_format;
2866 in->stream.common.set_format = in_set_format;
2867 in->stream.common.standby = in_standby;
2868 in->stream.common.dump = in_dump;
2869 in->stream.common.set_parameters = in_set_parameters;
2870 in->stream.common.get_parameters = in_get_parameters;
2871 in->stream.common.add_audio_effect = in_add_audio_effect;
2872 in->stream.common.remove_audio_effect = in_remove_audio_effect;
2873 in->stream.set_gain = in_set_gain;
2874 in->stream.read = in_read;
2875 in->stream.get_input_frames_lost = in_get_input_frames_lost;
2876
2877 in->device = devices;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002878 in->source = source;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002879 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002880 in->standby = 1;
2881 in->channel_mask = config->channel_mask;
2882
2883 /* Update config params with the requested sample rate and channels */
2884 in->usecase = USECASE_AUDIO_RECORD;
2885 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002886 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002887 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002888
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302889 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Pavan Chikkala3c0036d2014-12-17 16:45:10 +05302890 if (adev->mode != AUDIO_MODE_IN_CALL) {
2891 ret = -EINVAL;
2892 goto err_open;
Pavan Chikkala3ec42ef2014-11-21 20:57:48 +05302893 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302894 if (config->sample_rate == 0)
2895 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2896 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2897 config->sample_rate != 8000) {
2898 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2899 ret = -EINVAL;
2900 goto err_open;
2901 }
2902 if (config->format == AUDIO_FORMAT_DEFAULT)
2903 config->format = AUDIO_FORMAT_PCM_16_BIT;
2904 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2905 config->format = AUDIO_FORMAT_PCM_16_BIT;
2906 ret = -EINVAL;
2907 goto err_open;
2908 }
2909 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
2910 in->config = pcm_config_afe_proxy_record;
2911 in->config.channels = channel_count;
2912 in->config.rate = config->sample_rate;
2913 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002914 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302915 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002916 ALOGE("%s: audio_extn_ssr_init failed", __func__);
2917 ret = -EINVAL;
2918 goto err_open;
2919 }
2920 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07002921 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002922 }
Mingming Yine62d7842013-10-25 16:26:03 -07002923 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002924 audio_extn_compr_cap_format_supported(config->format) &&
2925 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302926 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002927 } else {
2928 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302929 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002930 buffer_size = get_input_buffer_size(config->sample_rate,
2931 config->format,
2932 channel_count);
2933 in->config.period_size = buffer_size / frame_size;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002934 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2935 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2936 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2937 (in->config.rate == 8000 || in->config.rate == 16000) &&
2938 (audio_channel_count_from_in_mask(in->channel_mask) == 1)) {
2939 voice_extn_compress_voip_open_input_stream(in);
2940 }
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002941 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002942
2943 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07002944 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002945 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002946
2947err_open:
2948 free(in);
2949 *stream_in = NULL;
2950 return ret;
2951}
2952
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302953static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002954 struct audio_stream_in *stream)
2955{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002956 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002957 struct stream_in *in = (struct stream_in *)stream;
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302958 struct audio_device *adev = in->dev;
2959
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302960 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002961
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002962 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Divya Narayanan Poojary98180cc2016-03-11 16:55:13 +05302963 pthread_mutex_lock(&in->lock);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302964 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002965 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302966 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary98180cc2016-03-11 16:55:13 +05302967 pthread_mutex_unlock(&in->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002968 if (ret != 0)
2969 ALOGE("%s: Compress voip input cannot be closed, error:%d",
2970 __func__, ret);
2971 } else
2972 in_standby(&stream->common);
2973
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302974 if (audio_extn_ssr_get_enabled() &&
2975 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002976 audio_extn_ssr_deinit();
2977 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002978 free(stream);
2979
Mingming Yine62d7842013-10-25 16:26:03 -07002980 if(audio_extn_compr_cap_enabled() &&
2981 audio_extn_compr_cap_format_supported(in->config.format))
2982 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002983 return;
2984}
2985
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302986static int adev_dump(const audio_hw_device_t *device __unused,
2987 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002988{
2989 return 0;
2990}
2991
2992static int adev_close(hw_device_t *device)
2993{
2994 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07002995
2996 if (!adev)
2997 return 0;
2998
2999 pthread_mutex_lock(&adev_init_lock);
3000
3001 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08003002 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07003003 audio_route_free(adev->audio_route);
3004 free(adev->snd_dev_ref_cnt);
3005 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07003006 free(device);
3007 adev = NULL;
3008 }
3009 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003010 return 0;
3011}
3012
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003013static int adev_open(const hw_module_t *module, const char *name,
3014 hw_device_t **device)
3015{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003016 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003017
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003018 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003019 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
3020
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003021 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07003022 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003023 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07003024 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003025 ALOGD("%s: returning existing instance of adev", __func__);
3026 ALOGD("%s: exit", __func__);
3027 pthread_mutex_unlock(&adev_init_lock);
3028 return 0;
3029 }
3030
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003031 adev = calloc(1, sizeof(struct audio_device));
3032
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07003033 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
3034
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003035 adev->device.common.tag = HARDWARE_DEVICE_TAG;
3036 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
3037 adev->device.common.module = (struct hw_module_t *)module;
3038 adev->device.common.close = adev_close;
3039
3040 adev->device.init_check = adev_init_check;
3041 adev->device.set_voice_volume = adev_set_voice_volume;
3042 adev->device.set_master_volume = adev_set_master_volume;
3043 adev->device.get_master_volume = adev_get_master_volume;
3044 adev->device.set_master_mute = adev_set_master_mute;
3045 adev->device.get_master_mute = adev_get_master_mute;
3046 adev->device.set_mode = adev_set_mode;
3047 adev->device.set_mic_mute = adev_set_mic_mute;
3048 adev->device.get_mic_mute = adev_get_mic_mute;
3049 adev->device.set_parameters = adev_set_parameters;
3050 adev->device.get_parameters = adev_get_parameters;
3051 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3052 adev->device.open_output_stream = adev_open_output_stream;
3053 adev->device.close_output_stream = adev_close_output_stream;
3054 adev->device.open_input_stream = adev_open_input_stream;
3055 adev->device.close_input_stream = adev_close_input_stream;
3056 adev->device.dump = adev_dump;
3057
3058 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003059 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003060 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003061 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003062 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003063 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003064 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003065 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -07003066 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003067 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003068 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08003069 adev->cur_wfd_channels = 2;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003070
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303071 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3072 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
3073
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003074 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003075 adev->platform = platform_init(adev);
3076 if (!adev->platform) {
3077 free(adev->snd_dev_ref_cnt);
3078 free(adev);
3079 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3080 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003081 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003082 return -EINVAL;
3083 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003084
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303085 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3086
Eric Laurentc4aef752013-09-12 17:45:53 -07003087 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3088 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3089 if (adev->visualizer_lib == NULL) {
3090 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3091 } else {
3092 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3093 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003094 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003095 "visualizer_hal_start_output");
3096 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003097 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003098 "visualizer_hal_stop_output");
3099 }
3100 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003101 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07003102
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003103 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3104 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3105 if (adev->offload_effects_lib == NULL) {
3106 ALOGE("%s: DLOPEN failed for %s", __func__,
3107 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3108 } else {
3109 ALOGV("%s: DLOPEN successful for %s", __func__,
3110 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3111 adev->offload_effects_start_output =
3112 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3113 "offload_effects_bundle_hal_start_output");
3114 adev->offload_effects_stop_output =
3115 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3116 "offload_effects_bundle_hal_stop_output");
3117 }
3118 }
3119
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003120 *device = &adev->device.common;
3121
Kiran Kandi910e1862013-10-29 13:29:42 -07003122 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003123 pthread_mutex_unlock(&adev_init_lock);
3124
Eric Laurent994a6932013-07-17 11:51:42 -07003125 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003126 return 0;
3127}
3128
Mingming Yin90e2cd82014-06-06 17:11:23 -07003129int pcm_ioctl(struct pcm *pcm, int request, ...)
3130{
3131 va_list ap;
3132 void * arg;
3133 int pcm_fd = *(int*)pcm;
3134
3135 va_start(ap, request);
3136 arg = va_arg(ap, void *);
3137 va_end(ap);
3138
3139 return ioctl(pcm_fd, request, arg);
3140}
3141
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003142static struct hw_module_methods_t hal_module_methods = {
3143 .open = adev_open,
3144};
3145
3146struct audio_module HAL_MODULE_INFO_SYM = {
3147 .common = {
3148 .tag = HARDWARE_MODULE_TAG,
3149 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3150 .hal_api_version = HARDWARE_HAL_API_VERSION,
3151 .id = AUDIO_HARDWARE_MODULE_ID,
3152 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003153 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003154 .methods = &hal_module_methods,
3155 },
3156};