blob: 575f2bfba887a91c05ea16a37a7e08755768392d [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 &&
549 usecase->in_snd_device != snd_device) {
550 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
551 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700552 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700553 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700554 switch_device[usecase->id] = true;
555 num_uc_to_switch++;
556 }
557 }
558
559 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700560 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700561
562 list_for_each(node, &adev->usecase_list) {
563 usecase = node_to_item(node, struct audio_usecase, list);
564 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700565 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800566 }
567 }
568
569 list_for_each(node, &adev->usecase_list) {
570 usecase = node_to_item(node, struct audio_usecase, list);
571 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700572 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700573 }
574 }
575
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700576 /* Re-route all the usecases on the shared backend other than the
577 specified usecase to new snd devices */
578 list_for_each(node, &adev->usecase_list) {
579 usecase = node_to_item(node, struct audio_usecase, list);
580 /* Update the in_snd_device only before enabling the audio route */
581 if (switch_device[usecase->id] ) {
582 usecase->in_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530583 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
584 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700585 }
586 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700587 }
588}
589
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800590/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700591static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800592{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700593 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700594 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800595
596 switch (channels) {
597 /*
598 * Do not handle stereo output in Multi-channel cases
599 * Stereo case is handled in normal playback path
600 */
601 case 6:
602 ALOGV("%s: HDMI supports 5.1", __func__);
603 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
604 break;
605 case 8:
606 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
607 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
608 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
609 break;
610 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700611 ALOGE("HDMI does not support multi channel playback");
612 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800613 break;
614 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700615 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800616}
617
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700618static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
619{
620 struct audio_usecase *usecase;
621 struct listnode *node;
622
623 list_for_each(node, &adev->usecase_list) {
624 usecase = node_to_item(node, struct audio_usecase, list);
625 if (usecase->type == VOICE_CALL) {
626 ALOGV("%s: usecase id %d", __func__, usecase->id);
627 return usecase->id;
628 }
629 }
630 return USECASE_INVALID;
631}
632
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700633struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700634 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700635{
636 struct audio_usecase *usecase;
637 struct listnode *node;
638
639 list_for_each(node, &adev->usecase_list) {
640 usecase = node_to_item(node, struct audio_usecase, list);
641 if (usecase->id == uc_id)
642 return usecase;
643 }
644 return NULL;
645}
646
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700647int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800648{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800649 snd_device_t out_snd_device = SND_DEVICE_NONE;
650 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700651 struct audio_usecase *usecase = NULL;
652 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800653 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800654 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800655 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800656 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700657 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800658
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700659 usecase = get_usecase_from_list(adev, uc_id);
660 if (usecase == NULL) {
661 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
662 return -EINVAL;
663 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800664
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800665 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800666 (usecase->type == VOIP_CALL) ||
667 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700668 out_snd_device = platform_get_output_snd_device(adev->platform,
669 usecase->stream.out->devices);
670 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700671 usecase->devices = usecase->stream.out->devices;
672 } else {
673 /*
674 * If the voice call is active, use the sound devices of voice call usecase
675 * so that it would not result any device switch. All the usecases will
676 * be switched to new device when select_devices() is called for voice call
677 * usecase. This is to avoid switching devices for voice call when
678 * check_usecases_codec_backend() is called below.
679 */
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -0700680 if (adev->voice.in_call && adev->mode == AUDIO_MODE_IN_CALL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700681 vc_usecase = get_usecase_from_list(adev,
682 get_voice_usecase_id_from_list(adev));
Mingming Yin6c23f382014-08-14 00:00:51 -0700683 if ((vc_usecase) && ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
684 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700685 in_snd_device = vc_usecase->in_snd_device;
686 out_snd_device = vc_usecase->out_snd_device;
687 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800688 } else if (voice_extn_compress_voip_is_active(adev)) {
689 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Mingming Yin6c23f382014-08-14 00:00:51 -0700690 if ((voip_usecase) && ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish6a4c3372014-06-25 12:20:37 +0530691 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Mingming Yin6c23f382014-08-14 00:00:51 -0700692 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800693 in_snd_device = voip_usecase->in_snd_device;
694 out_snd_device = voip_usecase->out_snd_device;
695 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800696 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800697 hfp_ucid = audio_extn_hfp_get_usecase();
698 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Mingming Yin6c23f382014-08-14 00:00:51 -0700699 if ((hfp_usecase) && (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800700 in_snd_device = hfp_usecase->in_snd_device;
701 out_snd_device = hfp_usecase->out_snd_device;
702 }
Vimal Puthanveed8fa9eab2014-01-07 16:47:47 -0800703 } else if (audio_extn_hfp_is_active(adev)) {
704 hfp_usecase = get_usecase_from_list(adev, USECASE_AUDIO_HFP_SCO);
705 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
706 in_snd_device = hfp_usecase->in_snd_device;
707 out_snd_device = hfp_usecase->out_snd_device;
708 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700709 }
710 if (usecase->type == PCM_PLAYBACK) {
711 usecase->devices = usecase->stream.out->devices;
712 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700713 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700714 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700715 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700716 if (usecase->stream.out == adev->primary_output &&
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530717 adev->active_input ) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700718 select_devices(adev, adev->active_input->usecase);
719 }
720 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700721 } else if (usecase->type == PCM_CAPTURE) {
722 usecase->devices = usecase->stream.in->device;
723 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700724 if (in_snd_device == SND_DEVICE_NONE) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530725 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530726 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 -0700727 adev->primary_output && !adev->primary_output->standby) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530728 out_device = adev->primary_output->devices;
729 } else if(usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
730 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700731 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530732 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700733 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700734 }
735 }
736
737 if (out_snd_device == usecase->out_snd_device &&
738 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800739 return 0;
740 }
741
sangwoobc677242013-08-08 16:53:43 +0900742 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700743 out_snd_device, platform_get_snd_device_name(out_snd_device),
744 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800745
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800746 /*
747 * Limitation: While in call, to do a device switch we need to disable
748 * and enable both RX and TX devices though one of them is same as current
749 * device.
750 */
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800751 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700752 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800753 }
754
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700755 /* Disable current sound devices */
756 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700757 disable_audio_route(adev, usecase);
758 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800759 }
760
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700761 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700762 disable_audio_route(adev, usecase);
763 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800764 }
765
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700766 /* Enable new sound devices */
767 if (out_snd_device != SND_DEVICE_NONE) {
768 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
769 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700770 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800771 }
772
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700773 if (in_snd_device != SND_DEVICE_NONE) {
774 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700775 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700776 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700777
Avinash Vaish8005dc82014-07-24 15:36:33 +0530778 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700779 status = platform_switch_voice_call_device_post(adev->platform,
780 out_snd_device,
781 in_snd_device);
Avinash Vaish8005dc82014-07-24 15:36:33 +0530782 enable_audio_route_for_voice_usecases(adev, usecase);
783 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800784
sangwoo170731f2013-06-08 15:36:36 +0900785 usecase->in_snd_device = in_snd_device;
786 usecase->out_snd_device = out_snd_device;
787
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700788 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900789
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800790 /* Applicable only on the targets that has external modem.
791 * Enable device command should be sent to modem only after
792 * enabling voice call mixer controls
793 */
794 if (usecase->type == VOICE_CALL)
795 status = platform_switch_voice_call_usecase_route_post(adev->platform,
796 out_snd_device,
797 in_snd_device);
798
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530799 ALOGD("%s: done",__func__);
800
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800801 return status;
802}
803
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800804static int stop_input_stream(struct stream_in *in)
805{
806 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800807 struct audio_usecase *uc_info;
808 struct audio_device *adev = in->dev;
809
Eric Laurentc8400632013-02-14 19:04:54 -0800810 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800811
Eric Laurent994a6932013-07-17 11:51:42 -0700812 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700813 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800814 uc_info = get_usecase_from_list(adev, in->usecase);
815 if (uc_info == NULL) {
816 ALOGE("%s: Could not find the usecase (%d) in the list",
817 __func__, in->usecase);
818 return -EINVAL;
819 }
820
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800821 /* Close in-call recording streams */
822 voice_check_and_stop_incall_rec_usecase(adev, in);
823
Eric Laurent150dbfe2013-02-27 14:31:02 -0800824 /* 1. Disable stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700825 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700826
827 /* 2. Disable the tx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700828 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800829
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800830 list_remove(&uc_info->list);
831 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800832
Eric Laurent994a6932013-07-17 11:51:42 -0700833 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800834 return ret;
835}
836
837int start_input_stream(struct stream_in *in)
838{
839 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800840 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800841 struct audio_usecase *uc_info;
842 struct audio_device *adev = in->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +0530843 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800844
Mingming Yine62d7842013-10-25 16:26:03 -0700845 in->usecase = platform_update_usecase_from_source(in->source,in->usecase);
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530846 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
847 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700848
Naresh Tannirucef332d2014-06-04 18:17:56 +0530849 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
850 ALOGE("%s: sound card is not active/SSR returning error ", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530851 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530852 goto error_config;
853 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530854
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700855 /* Check if source matches incall recording usecase criteria */
856 ret = voice_check_and_set_incall_rec_usecase(adev, in);
857 if (ret)
858 goto error_config;
859 else
860 ALOGV("%s: usecase(%d)", __func__, in->usecase);
861
Eric Laurentb23d5282013-05-14 15:27:20 -0700862 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800863 if (in->pcm_device_id < 0) {
864 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
865 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800866 ret = -EINVAL;
867 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800868 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700869
870 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800871 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
872 uc_info->id = in->usecase;
873 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800874 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700875 uc_info->devices = in->device;
876 uc_info->in_snd_device = SND_DEVICE_NONE;
877 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800878
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800879 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700880 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800881
Eric Laurentc8400632013-02-14 19:04:54 -0800882 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530883 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
884
885 unsigned int flags = PCM_IN;
886 unsigned int pcm_open_retry_entry_count = 0;
887
888 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
889 flags |= PCM_MMAP | PCM_NOIRQ;
890 pcm_open_retry_entry_count = PROXY_OPEN_RETRY_COUNT;
891 }
892
893 while(1) {
894 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
895 flags, &in->config);
896 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
897 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
898 if (in->pcm != NULL) {
899 pcm_close(in->pcm);
900 in->pcm = NULL;
901 }
902 if (pcm_open_retry_entry_count-- == 0) {
903 ret = -EIO;
904 goto error_open;
905 }
906 usleep(PROXY_OPEN_WAIT_TIME * 1000);
907 continue;
908 }
909 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800910 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530911
Eric Laurent994a6932013-07-17 11:51:42 -0700912 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800913 return ret;
914
915error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800916 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800917
918error_config:
919 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700920 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800921
922 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800923}
924
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700925/* must be called with out->lock locked */
926static int send_offload_cmd_l(struct stream_out* out, int command)
927{
928 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
929
930 ALOGVV("%s %d", __func__, command);
931
932 cmd->cmd = command;
933 list_add_tail(&out->offload_cmd_list, &cmd->node);
934 pthread_cond_signal(&out->offload_cond);
935 return 0;
936}
937
938/* must be called iwth out->lock locked */
939static void stop_compressed_output_l(struct stream_out *out)
940{
941 out->offload_state = OFFLOAD_STATE_IDLE;
942 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700943 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700944 if (out->compr != NULL) {
945 compress_stop(out->compr);
946 while (out->offload_thread_blocked) {
947 pthread_cond_wait(&out->cond, &out->lock);
948 }
949 }
950}
951
952static void *offload_thread_loop(void *context)
953{
954 struct stream_out *out = (struct stream_out *) context;
955 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800956 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700957
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700958 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
959 set_sched_policy(0, SP_FOREGROUND);
960 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
961
962 ALOGV("%s", __func__);
963 pthread_mutex_lock(&out->lock);
964 for (;;) {
965 struct offload_cmd *cmd = NULL;
966 stream_callback_event_t event;
967 bool send_callback = false;
968
969 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
970 __func__, list_empty(&out->offload_cmd_list),
971 out->offload_state);
972 if (list_empty(&out->offload_cmd_list)) {
973 ALOGV("%s SLEEPING", __func__);
974 pthread_cond_wait(&out->offload_cond, &out->lock);
975 ALOGV("%s RUNNING", __func__);
976 continue;
977 }
978
979 item = list_head(&out->offload_cmd_list);
980 cmd = node_to_item(item, struct offload_cmd, node);
981 list_remove(item);
982
983 ALOGVV("%s STATE %d CMD %d out->compr %p",
984 __func__, out->offload_state, cmd->cmd, out->compr);
985
986 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
987 free(cmd);
988 break;
989 }
990
991 if (out->compr == NULL) {
992 ALOGE("%s: Compress handle is NULL", __func__);
993 pthread_cond_signal(&out->cond);
994 continue;
995 }
996 out->offload_thread_blocked = true;
997 pthread_mutex_unlock(&out->lock);
998 send_callback = false;
999 switch(cmd->cmd) {
1000 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
1001 compress_wait(out->compr, -1);
1002 send_callback = true;
1003 event = STREAM_CBK_EVENT_WRITE_READY;
1004 break;
1005 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001006 ret = compress_next_track(out->compr);
1007 if(ret == 0)
1008 compress_partial_drain(out->compr);
1009 else if(ret == -ETIMEDOUT)
1010 compress_drain(out->compr);
1011 else
1012 ALOGE("%s: Next track returned error %d",__func__, ret);
1013
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001014 send_callback = true;
1015 event = STREAM_CBK_EVENT_DRAIN_READY;
1016 break;
1017 case OFFLOAD_CMD_DRAIN:
1018 compress_drain(out->compr);
1019 send_callback = true;
1020 event = STREAM_CBK_EVENT_DRAIN_READY;
1021 break;
1022 default:
1023 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1024 break;
1025 }
1026 pthread_mutex_lock(&out->lock);
1027 out->offload_thread_blocked = false;
1028 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001029 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001030 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001031 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001032 free(cmd);
1033 }
1034
1035 pthread_cond_signal(&out->cond);
1036 while (!list_empty(&out->offload_cmd_list)) {
1037 item = list_head(&out->offload_cmd_list);
1038 list_remove(item);
1039 free(node_to_item(item, struct offload_cmd, node));
1040 }
1041 pthread_mutex_unlock(&out->lock);
1042
1043 return NULL;
1044}
1045
1046static int create_offload_callback_thread(struct stream_out *out)
1047{
1048 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1049 list_init(&out->offload_cmd_list);
1050 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1051 offload_thread_loop, out);
1052 return 0;
1053}
1054
1055static int destroy_offload_callback_thread(struct stream_out *out)
1056{
1057 pthread_mutex_lock(&out->lock);
1058 stop_compressed_output_l(out);
1059 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1060
1061 pthread_mutex_unlock(&out->lock);
1062 pthread_join(out->offload_thread, (void **) NULL);
1063 pthread_cond_destroy(&out->offload_cond);
1064
1065 return 0;
1066}
1067
Eric Laurent07eeafd2013-10-06 12:52:49 -07001068static bool allow_hdmi_channel_config(struct audio_device *adev)
1069{
1070 struct listnode *node;
1071 struct audio_usecase *usecase;
1072 bool ret = true;
1073
1074 list_for_each(node, &adev->usecase_list) {
1075 usecase = node_to_item(node, struct audio_usecase, list);
1076 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1077 /*
1078 * If voice call is already existing, do not proceed further to avoid
1079 * disabling/enabling both RX and TX devices, CSD calls, etc.
1080 * Once the voice call done, the HDMI channels can be configured to
1081 * max channels of remaining use cases.
1082 */
1083 if (usecase->id == USECASE_VOICE_CALL) {
1084 ALOGD("%s: voice call is active, no change in HDMI channels",
1085 __func__);
1086 ret = false;
1087 break;
1088 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1089 ALOGD("%s: multi channel playback is active, "
1090 "no change in HDMI channels", __func__);
1091 ret = false;
1092 break;
Mingming Yin3ed162b2014-02-24 17:56:01 -08001093 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_OFFLOAD &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301094 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001095 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1096 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1097 ret = false;
1098 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001099 }
1100 }
1101 }
1102 return ret;
1103}
1104
1105static int check_and_set_hdmi_channels(struct audio_device *adev,
1106 unsigned int channels)
1107{
1108 struct listnode *node;
1109 struct audio_usecase *usecase;
1110
1111 /* Check if change in HDMI channel config is allowed */
1112 if (!allow_hdmi_channel_config(adev))
1113 return 0;
1114
1115 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001116 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001117 return 0;
1118 }
1119
1120 platform_set_hdmi_channels(adev->platform, channels);
1121 adev->cur_hdmi_channels = channels;
1122
1123 /*
1124 * Deroute all the playback streams routed to HDMI so that
1125 * the back end is deactivated. Note that backend will not
1126 * be deactivated if any one stream is connected to it.
1127 */
1128 list_for_each(node, &adev->usecase_list) {
1129 usecase = node_to_item(node, struct audio_usecase, list);
1130 if (usecase->type == PCM_PLAYBACK &&
1131 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001132 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001133 }
1134 }
1135
1136 /*
1137 * Enable all the streams disabled above. Now the HDMI backend
1138 * will be activated with new channel configuration
1139 */
1140 list_for_each(node, &adev->usecase_list) {
1141 usecase = node_to_item(node, struct audio_usecase, list);
1142 if (usecase->type == PCM_PLAYBACK &&
1143 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001144 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001145 }
1146 }
1147
1148 return 0;
1149}
1150
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001151static int stop_output_stream(struct stream_out *out)
1152{
1153 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001154 struct audio_usecase *uc_info;
1155 struct audio_device *adev = out->dev;
1156
Eric Laurent994a6932013-07-17 11:51:42 -07001157 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001158 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001159 uc_info = get_usecase_from_list(adev, out->usecase);
1160 if (uc_info == NULL) {
1161 ALOGE("%s: Could not find the usecase (%d) in the list",
1162 __func__, out->usecase);
1163 return -EINVAL;
1164 }
1165
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001166 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1167 if (adev->visualizer_stop_output != NULL)
1168 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1169 if (adev->offload_effects_stop_output != NULL)
1170 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1171 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001172
Eric Laurent150dbfe2013-02-27 14:31:02 -08001173 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001174 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001175
1176 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001177 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001178
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001179 list_remove(&uc_info->list);
1180 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001181
Eric Laurent07eeafd2013-10-06 12:52:49 -07001182 /* Must be called after removing the usecase from list */
1183 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1184 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1185
Eric Laurent994a6932013-07-17 11:51:42 -07001186 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001187 return ret;
1188}
1189
1190int start_output_stream(struct stream_out *out)
1191{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001192 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001193 int sink_channels = 0;
1194 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001195 struct audio_usecase *uc_info;
1196 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301197 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001198
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301199 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1200 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1201 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301202
Naresh Tannirucef332d2014-06-04 18:17:56 +05301203 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301204 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1205 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301206 goto error_config;
1207 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301208
Eric Laurentb23d5282013-05-14 15:27:20 -07001209 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001210 if (out->pcm_device_id < 0) {
1211 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1212 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001213 ret = -EINVAL;
1214 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001215 }
1216
1217 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1218 uc_info->id = out->usecase;
1219 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001220 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001221 uc_info->devices = out->devices;
1222 uc_info->in_snd_device = SND_DEVICE_NONE;
1223 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001224
Eric Laurent07eeafd2013-10-06 12:52:49 -07001225 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001226 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001227 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1228 if (!strncmp("true", prop_value, 4)) {
1229 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1230 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1231 check_and_set_hdmi_channels(adev, sink_channels);
1232 } else {
1233 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1234 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1235 else
1236 check_and_set_hdmi_channels(adev, out->config.channels);
1237 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001238 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001239
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001240 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001241
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001242 select_devices(adev, out->usecase);
1243
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001244 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1245 __func__, 0, out->pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001246 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301247 unsigned int flags = PCM_OUT;
1248 unsigned int pcm_open_retry_count = 0;
1249 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1250 flags |= PCM_MMAP | PCM_NOIRQ;
1251 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1252 } else
1253 flags |= PCM_MONOTONIC;
1254
1255 while (1) {
1256 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1257 flags, &out->config);
1258 if (out->pcm && !pcm_is_ready(out->pcm)) {
1259 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1260 if (out->pcm != NULL) {
1261 pcm_close(out->pcm);
1262 out->pcm = NULL;
1263 }
1264 if (pcm_open_retry_count-- == 0) {
1265 ret = -EIO;
1266 goto error_open;
1267 }
1268 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1269 continue;
1270 }
1271 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001272 }
1273 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001274 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001275 out->compr = compress_open(adev->snd_card,
1276 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001277 COMPRESS_IN, &out->compr_config);
1278 if (out->compr && !is_compress_ready(out->compr)) {
1279 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1280 compress_close(out->compr);
1281 out->compr = NULL;
1282 ret = -EIO;
1283 goto error_open;
1284 }
1285 if (out->offload_callback)
1286 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001287
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001288#ifdef DS1_DOLBY_DDP_ENABLED
1289 if (audio_extn_is_dolby_format(out->format))
1290 audio_extn_dolby_send_ddp_endp_params(adev);
1291#endif
1292
Eric Laurentc4aef752013-09-12 17:45:53 -07001293 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001294 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1295 if (adev->offload_effects_start_output != NULL)
1296 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001297 }
Eric Laurent994a6932013-07-17 11:51:42 -07001298 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001299 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001300error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001301 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001302error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001303 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001304}
1305
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001306static int check_input_parameters(uint32_t sample_rate,
1307 audio_format_t format,
1308 int channel_count)
1309{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001310 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001311
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001312 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001313 !voice_extn_compress_voip_is_format_supported(format) &&
1314 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001315
1316 switch (channel_count) {
1317 case 1:
1318 case 2:
1319 case 6:
1320 break;
1321 default:
1322 ret = -EINVAL;
1323 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001324
1325 switch (sample_rate) {
1326 case 8000:
1327 case 11025:
1328 case 12000:
1329 case 16000:
1330 case 22050:
1331 case 24000:
1332 case 32000:
1333 case 44100:
1334 case 48000:
1335 break;
1336 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001337 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001338 }
1339
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001340 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001341}
1342
1343static size_t get_input_buffer_size(uint32_t sample_rate,
1344 audio_format_t format,
1345 int channel_count)
1346{
1347 size_t size = 0;
1348
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001349 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1350 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001351
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001352 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1353 /* ToDo: should use frame_size computed based on the format and
1354 channel_count here. */
1355 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001356
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001357 /* make sure the size is multiple of 64 */
1358 size += 0x3f;
1359 size &= ~0x3f;
1360
1361 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001362}
1363
1364static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1365{
1366 struct stream_out *out = (struct stream_out *)stream;
1367
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001368 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001369}
1370
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301371static int out_set_sample_rate(struct audio_stream *stream __unused,
1372 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001373{
1374 return -ENOSYS;
1375}
1376
1377static size_t out_get_buffer_size(const struct audio_stream *stream)
1378{
1379 struct stream_out *out = (struct stream_out *)stream;
1380
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001381 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001382 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001383 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1384 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001385
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301386 return out->config.period_size *
1387 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001388}
1389
1390static uint32_t out_get_channels(const struct audio_stream *stream)
1391{
1392 struct stream_out *out = (struct stream_out *)stream;
1393
1394 return out->channel_mask;
1395}
1396
1397static audio_format_t out_get_format(const struct audio_stream *stream)
1398{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001399 struct stream_out *out = (struct stream_out *)stream;
1400
1401 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001402}
1403
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301404static int out_set_format(struct audio_stream *stream __unused,
1405 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001406{
1407 return -ENOSYS;
1408}
1409
1410static int out_standby(struct audio_stream *stream)
1411{
1412 struct stream_out *out = (struct stream_out *)stream;
1413 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001414
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301415 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1416 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001417 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1418 /* Ignore standby in case of voip call because the voip output
1419 * stream is closed in adev_close_output_stream()
1420 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301421 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001422 return 0;
1423 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001424
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001425 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001426 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001427 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001428 out->standby = true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001429 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1430 if (out->pcm) {
1431 pcm_close(out->pcm);
1432 out->pcm = NULL;
1433 }
1434 } else {
1435 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001436 out->gapless_mdata.encoder_delay = 0;
1437 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001438 if (out->compr != NULL) {
1439 compress_close(out->compr);
1440 out->compr = NULL;
1441 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001442 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001443 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001444 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001445 }
1446 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001447 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001448 return 0;
1449}
1450
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301451static int out_dump(const struct audio_stream *stream __unused,
1452 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001453{
1454 return 0;
1455}
1456
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001457static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1458{
1459 int ret = 0;
1460 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001461 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001462 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001463 tmp_mdata.encoder_delay = 0;
1464 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001465
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001466 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001467 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001468 return -EINVAL;
1469 }
1470
Mingming Yinee733602014-04-03 17:47:22 -07001471#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001472 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1473 if (ret >= 0) {
1474 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1475 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1476 ALOGV("ADTS format is set in offload mode");
1477 }
1478 out->send_new_metadata = 1;
1479 }
Mingming Yinee733602014-04-03 17:47:22 -07001480#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001481
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001482 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1483 if(ret >= 0)
1484 is_meta_data_params = true;
1485 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1486 if(ret >= 0 )
1487 is_meta_data_params = true;
1488 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1489 if(ret >= 0 )
1490 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001491 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1492 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001493 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001494 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001495 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001496 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1497 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001498 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001499 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001500 }
1501
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001502 if(!is_meta_data_params) {
1503 ALOGV("%s: Not gapless meta data params", __func__);
1504 return 0;
1505 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001506 out->gapless_mdata = tmp_mdata;
1507 out->send_new_metadata = 1;
1508 ALOGV("%s new encoder delay %u and padding %u", __func__,
1509 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1510
1511 return 0;
1512}
1513
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301514static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1515{
1516 return out == adev->primary_output || out == adev->voice_tx_output;
1517}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001518
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001519static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1520{
1521 struct stream_out *out = (struct stream_out *)stream;
1522 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001523 struct audio_usecase *usecase;
1524 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001525 struct str_parms *parms;
1526 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001527 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001528 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001529
sangwoobc677242013-08-08 16:53:43 +09001530 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001531 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001532 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001533 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1534 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001535 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001536 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001537 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001538
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001539 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301540 * When HDMI cable is unplugged/usb hs is disconnected the
1541 * music playback is paused and the policy manager sends routing=0
1542 * But the audioflingercontinues to write data until standby time
1543 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001544 * Avoid this by routing audio to speaker until standby.
1545 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301546 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
1547 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001548 val == AUDIO_DEVICE_NONE) {
1549 val = AUDIO_DEVICE_OUT_SPEAKER;
1550 }
1551
1552 /*
1553 * select_devices() call below switches all the usecases on the same
1554 * backend to the new device. Refer to check_usecases_codec_backend() in
1555 * the select_devices(). But how do we undo this?
1556 *
1557 * For example, music playback is active on headset (deep-buffer usecase)
1558 * and if we go to ringtones and select a ringtone, low-latency usecase
1559 * will be started on headset+speaker. As we can't enable headset+speaker
1560 * and headset devices at the same time, select_devices() switches the music
1561 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1562 * So when the ringtone playback is completed, how do we undo the same?
1563 *
1564 * We are relying on the out_set_parameters() call on deep-buffer output,
1565 * once the ringtone playback is ended.
1566 * NOTE: We should not check if the current devices are same as new devices.
1567 * Because select_devices() must be called to switch back the music
1568 * playback to headset.
1569 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001570 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001571 out->devices = val;
1572
1573 if (!out->standby)
1574 select_devices(adev, out->usecase);
1575
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001576 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301577 output_drives_call(adev, out)) {
1578 adev->current_call_output = out;
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001579 if (!adev->voice.in_call)
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301580 ret = voice_start_call(adev);
1581 else
1582 voice_update_devices_for_all_voice_usecases(adev);
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001583 }
1584 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001585
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001586 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1587 adev->voice.in_call &&
1588 output_drives_call(adev, out)) {
1589 ret = voice_stop_call(adev);
1590 adev->current_call_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001591 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001592
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001593 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001594 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001595 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001596
1597 if (out == adev->primary_output) {
1598 pthread_mutex_lock(&adev->lock);
1599 audio_extn_set_parameters(adev, parms);
1600 pthread_mutex_unlock(&adev->lock);
1601 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001602 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001603 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001604 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001605 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001606 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001607
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001608 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001609 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001610 return ret;
1611}
1612
1613static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1614{
1615 struct stream_out *out = (struct stream_out *)stream;
1616 struct str_parms *query = str_parms_create_str(keys);
1617 char *str;
1618 char value[256];
1619 struct str_parms *reply = str_parms_create();
1620 size_t i, j;
1621 int ret;
1622 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001623 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001624 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1625 if (ret >= 0) {
1626 value[0] = '\0';
1627 i = 0;
1628 while (out->supported_channel_masks[i] != 0) {
1629 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1630 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1631 if (!first) {
1632 strcat(value, "|");
1633 }
1634 strcat(value, out_channels_name_to_enum_table[j].name);
1635 first = false;
1636 break;
1637 }
1638 }
1639 i++;
1640 }
1641 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1642 str = str_parms_to_str(reply);
1643 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001644 voice_extn_out_get_parameters(out, query, reply);
1645 str = str_parms_to_str(reply);
1646 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001647 free(str);
1648 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001649 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001650 }
1651 str_parms_destroy(query);
1652 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001653 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001654 return str;
1655}
1656
1657static uint32_t out_get_latency(const struct audio_stream_out *stream)
1658{
1659 struct stream_out *out = (struct stream_out *)stream;
1660
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001661 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1662 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1663
1664 return (out->config.period_count * out->config.period_size * 1000) /
1665 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001666}
1667
1668static int out_set_volume(struct audio_stream_out *stream, float left,
1669 float right)
1670{
Eric Laurenta9024de2013-04-04 09:19:12 -07001671 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001672 int volume[2];
1673
Eric Laurenta9024de2013-04-04 09:19:12 -07001674 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1675 /* only take left channel into account: the API is for stereo anyway */
1676 out->muted = (left == 0.0f);
1677 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001678 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001679 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001680 struct audio_device *adev = out->dev;
1681 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001682 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1683 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001684
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001685 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1686 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001687 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1688 if (!ctl) {
1689 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1690 __func__, mixer_ctl_name);
1691 return -EINVAL;
1692 }
1693 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1694 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1695 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1696 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001697 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001698
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001699 return -ENOSYS;
1700}
1701
1702static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1703 size_t bytes)
1704{
1705 struct stream_out *out = (struct stream_out *)stream;
1706 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301707 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001708 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001709
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001710 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301711
Naresh Tannirucef332d2014-06-04 18:17:56 +05301712 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1713 if (out->pcm) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301714 ALOGD(" %s: sound card is not active/SSR state", __func__);
1715 ret= -ENETRESET;
1716 goto exit;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301717 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1718 //during SSR for compress usecase we should return error to flinger
1719 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1720 pthread_mutex_unlock(&out->lock);
1721 return -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301722 }
1723 }
1724
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001725 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001726 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001727 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001728 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1729 ret = voice_extn_compress_voip_start_output_stream(out);
1730 else
1731 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001732 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001733 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001734 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001735 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001736 goto exit;
1737 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001738 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001739
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001740 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001741 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1742 if (out->send_new_metadata) {
1743 ALOGVV("send new gapless metadata");
1744 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1745 out->send_new_metadata = 0;
1746 }
1747
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001748 ret = compress_write(out->compr, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301749 if (ret < 0)
1750 ret = -errno;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001751 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001752 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001753 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301754 } else if (-ENETRESET == ret) {
1755 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1756 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1757 pthread_mutex_unlock(&out->lock);
1758 out_standby(&out->stream.common);
1759 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001760 }
Naresh Tannirucef332d2014-06-04 18:17:56 +05301761 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001762 compress_start(out->compr);
1763 out->playback_started = 1;
1764 out->offload_state = OFFLOAD_STATE_PLAYING;
1765 }
1766 pthread_mutex_unlock(&out->lock);
1767 return ret;
1768 } else {
1769 if (out->pcm) {
1770 if (out->muted)
1771 memset((void *)buffer, 0, bytes);
1772 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301773 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1774 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1775 else
1776 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301777 if (ret < 0)
1778 ret = -errno;
1779 else if (ret == 0)
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001780 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001781 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001782 }
1783
1784exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301785 /* ToDo: There may be a corner case when SSR happens back to back during
1786 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301787 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301788 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301789 }
1790
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001791 pthread_mutex_unlock(&out->lock);
1792
1793 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001794 if (out->pcm)
1795 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301796 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301797 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301798 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301799 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301800 out->standby = true;
1801 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001802 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301803 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1804 out_get_sample_rate(&out->stream.common));
1805
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001806 }
1807 return bytes;
1808}
1809
1810static int out_get_render_position(const struct audio_stream_out *stream,
1811 uint32_t *dsp_frames)
1812{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001813 struct stream_out *out = (struct stream_out *)stream;
1814 *dsp_frames = 0;
1815 if ((out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) && (dsp_frames != NULL)) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301816 ssize_t ret = -EINVAL;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001817 pthread_mutex_lock(&out->lock);
1818 if (out->compr != NULL) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301819 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001820 &out->sample_rate);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301821 if (ret < 0)
1822 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001823 ALOGVV("%s rendered frames %d sample_rate %d",
1824 __func__, *dsp_frames, out->sample_rate);
1825 }
1826 pthread_mutex_unlock(&out->lock);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301827 if (-ENETRESET == ret) {
1828 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
1829 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1830 return -EINVAL;
1831 } else if(ret < 0) {
1832 ALOGE(" ERROR: Unable to get time stamp from compress driver");
1833 return -EINVAL;
1834 } else {
1835 return 0;
1836 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001837 } else
1838 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001839}
1840
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301841static int out_add_audio_effect(const struct audio_stream *stream __unused,
1842 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001843{
1844 return 0;
1845}
1846
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301847static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1848 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001849{
1850 return 0;
1851}
1852
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301853static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1854 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001855{
1856 return -EINVAL;
1857}
1858
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001859static int out_get_presentation_position(const struct audio_stream_out *stream,
1860 uint64_t *frames, struct timespec *timestamp)
1861{
1862 struct stream_out *out = (struct stream_out *)stream;
1863 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001864 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001865
1866 pthread_mutex_lock(&out->lock);
1867
Eric Laurent949a0892013-09-20 09:20:13 -07001868 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1869 if (out->compr != NULL) {
1870 compress_get_tstamp(out->compr, &dsp_frames,
1871 &out->sample_rate);
1872 ALOGVV("%s rendered frames %ld sample_rate %d",
1873 __func__, dsp_frames, out->sample_rate);
1874 *frames = dsp_frames;
1875 ret = 0;
1876 /* this is the best we can do */
1877 clock_gettime(CLOCK_MONOTONIC, timestamp);
1878 }
1879 } else {
1880 if (out->pcm) {
1881 size_t avail;
1882 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
1883 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07001884 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001885 // This adjustment accounts for buffering after app processor.
1886 // It is based on estimated DSP latency per use case, rather than exact.
1887 signed_frames -=
1888 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
1889
Eric Laurent949a0892013-09-20 09:20:13 -07001890 // It would be unusual for this value to be negative, but check just in case ...
1891 if (signed_frames >= 0) {
1892 *frames = signed_frames;
1893 ret = 0;
1894 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001895 }
1896 }
1897 }
1898
1899 pthread_mutex_unlock(&out->lock);
1900
1901 return ret;
1902}
1903
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001904static int out_set_callback(struct audio_stream_out *stream,
1905 stream_callback_t callback, void *cookie)
1906{
1907 struct stream_out *out = (struct stream_out *)stream;
1908
1909 ALOGV("%s", __func__);
1910 pthread_mutex_lock(&out->lock);
1911 out->offload_callback = callback;
1912 out->offload_cookie = cookie;
1913 pthread_mutex_unlock(&out->lock);
1914 return 0;
1915}
1916
1917static int out_pause(struct audio_stream_out* stream)
1918{
1919 struct stream_out *out = (struct stream_out *)stream;
1920 int status = -ENOSYS;
1921 ALOGV("%s", __func__);
1922 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1923 pthread_mutex_lock(&out->lock);
1924 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301925 struct audio_device *adev = out->dev;
1926 int snd_scard_state = get_snd_card_state(adev);
1927
1928 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1929 status = compress_pause(out->compr);
1930
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001931 out->offload_state = OFFLOAD_STATE_PAUSED;
1932 }
1933 pthread_mutex_unlock(&out->lock);
1934 }
1935 return status;
1936}
1937
1938static int out_resume(struct audio_stream_out* stream)
1939{
1940 struct stream_out *out = (struct stream_out *)stream;
1941 int status = -ENOSYS;
1942 ALOGV("%s", __func__);
1943 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1944 status = 0;
1945 pthread_mutex_lock(&out->lock);
1946 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301947 struct audio_device *adev = out->dev;
1948 int snd_scard_state = get_snd_card_state(adev);
1949
1950 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1951 status = compress_resume(out->compr);
1952
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001953 out->offload_state = OFFLOAD_STATE_PLAYING;
1954 }
1955 pthread_mutex_unlock(&out->lock);
1956 }
1957 return status;
1958}
1959
1960static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
1961{
1962 struct stream_out *out = (struct stream_out *)stream;
1963 int status = -ENOSYS;
1964 ALOGV("%s", __func__);
1965 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1966 pthread_mutex_lock(&out->lock);
1967 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
1968 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
1969 else
1970 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
1971 pthread_mutex_unlock(&out->lock);
1972 }
1973 return status;
1974}
1975
1976static int out_flush(struct audio_stream_out* stream)
1977{
1978 struct stream_out *out = (struct stream_out *)stream;
1979 ALOGV("%s", __func__);
1980 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1981 pthread_mutex_lock(&out->lock);
1982 stop_compressed_output_l(out);
1983 pthread_mutex_unlock(&out->lock);
1984 return 0;
1985 }
1986 return -ENOSYS;
1987}
1988
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001989/** audio_stream_in implementation **/
1990static uint32_t in_get_sample_rate(const struct audio_stream *stream)
1991{
1992 struct stream_in *in = (struct stream_in *)stream;
1993
1994 return in->config.rate;
1995}
1996
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301997static int in_set_sample_rate(struct audio_stream *stream __unused,
1998 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001999{
2000 return -ENOSYS;
2001}
2002
2003static size_t in_get_buffer_size(const struct audio_stream *stream)
2004{
2005 struct stream_in *in = (struct stream_in *)stream;
2006
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002007 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2008 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002009 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2010 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002011
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302012 return in->config.period_size *
2013 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002014}
2015
2016static uint32_t in_get_channels(const struct audio_stream *stream)
2017{
2018 struct stream_in *in = (struct stream_in *)stream;
2019
2020 return in->channel_mask;
2021}
2022
2023static audio_format_t in_get_format(const struct audio_stream *stream)
2024{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002025 struct stream_in *in = (struct stream_in *)stream;
2026
2027 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002028}
2029
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302030static int in_set_format(struct audio_stream *stream __unused,
2031 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002032{
2033 return -ENOSYS;
2034}
2035
2036static int in_standby(struct audio_stream *stream)
2037{
2038 struct stream_in *in = (struct stream_in *)stream;
2039 struct audio_device *adev = in->dev;
2040 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302041 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2042 stream, in->usecase, use_case_table[in->usecase]);
2043
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002044
2045 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2046 /* Ignore standby in case of voip call because the voip input
2047 * stream is closed in adev_close_input_stream()
2048 */
2049 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2050 return status;
2051 }
2052
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002053 pthread_mutex_lock(&in->lock);
2054 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002055 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002056 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002057 if (in->pcm) {
2058 pcm_close(in->pcm);
2059 in->pcm = NULL;
2060 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002061 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002062 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002063 }
2064 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002065 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002066 return status;
2067}
2068
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302069static int in_dump(const struct audio_stream *stream __unused,
2070 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002071{
2072 return 0;
2073}
2074
2075static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2076{
2077 struct stream_in *in = (struct stream_in *)stream;
2078 struct audio_device *adev = in->dev;
2079 struct str_parms *parms;
2080 char *str;
2081 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002082 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002083
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302084 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002085 parms = str_parms_create_str(kvpairs);
2086
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002087 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002088 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002089
2090 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2091 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002092 val = atoi(value);
2093 /* no audio source uses val == 0 */
2094 if ((in->source != val) && (val != 0)) {
2095 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002096 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2097 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2098 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2099 (in->config.rate == 8000 || in->config.rate == 16000) &&
2100 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002101 err = voice_extn_compress_voip_open_input_stream(in);
2102 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002103 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002104 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002105 }
2106 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002107 }
2108 }
2109
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002110 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2111 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002112 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302113 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002114 in->device = val;
2115 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002116 if (!in->standby)
2117 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002118 }
2119 }
2120
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002121done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002122 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002123 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002124
2125 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002126 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002127 return ret;
2128}
2129
2130static char* in_get_parameters(const struct audio_stream *stream,
2131 const char *keys)
2132{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002133 struct stream_in *in = (struct stream_in *)stream;
2134 struct str_parms *query = str_parms_create_str(keys);
2135 char *str;
2136 char value[256];
2137 struct str_parms *reply = str_parms_create();
2138 ALOGV("%s: enter: keys - %s", __func__, keys);
2139
2140 voice_extn_in_get_parameters(in, query, reply);
2141
2142 str = str_parms_to_str(reply);
2143 str_parms_destroy(query);
2144 str_parms_destroy(reply);
2145
2146 ALOGV("%s: exit: returns - %s", __func__, str);
2147 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002148}
2149
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302150static int in_set_gain(struct audio_stream_in *stream __unused,
2151 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002152{
2153 return 0;
2154}
2155
2156static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2157 size_t bytes)
2158{
2159 struct stream_in *in = (struct stream_in *)stream;
2160 struct audio_device *adev = in->dev;
2161 int i, ret = -1;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302162 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002163
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002164 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302165
2166 if (in->pcm) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302167 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302168 ALOGD(" %s: sound card is not active/SSR state", __func__);
2169 ret= -ENETRESET;
2170 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302171 }
2172 }
2173
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002174 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002175 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002176 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2177 ret = voice_extn_compress_voip_start_input_stream(in);
2178 else
2179 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002180 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002181 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002182 goto exit;
2183 }
2184 in->standby = 0;
2185 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002186
2187 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302188 if (audio_extn_ssr_get_enabled() &&
2189 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002190 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002191 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2192 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302193 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2194 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002195 else
2196 ret = pcm_read(in->pcm, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05302197 if (ret < 0)
2198 ret = -errno;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002199 }
2200
2201 /*
2202 * Instead of writing zeroes here, we could trust the hardware
2203 * to always provide zeroes when muted.
2204 */
kunleiza1a9ee02014-04-24 18:46:22 +08002205 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002206 memset(buffer, 0, bytes);
2207
2208exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302209 /* ToDo: There may be a corner case when SSR happens back to back during
2210 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302211 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302212 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302213 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302214 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002215 pthread_mutex_unlock(&in->lock);
2216
2217 if (ret != 0) {
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302218 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302219 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302220 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302221 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302222 in->standby = true;
2223 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002224 in_standby(&in->stream.common);
2225 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302226 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2227 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002228 }
2229 return bytes;
2230}
2231
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302232static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002233{
2234 return 0;
2235}
2236
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002237static int add_remove_audio_effect(const struct audio_stream *stream,
2238 effect_handle_t effect,
2239 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002240{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002241 struct stream_in *in = (struct stream_in *)stream;
2242 int status = 0;
2243 effect_descriptor_t desc;
2244
2245 status = (*effect)->get_descriptor(effect, &desc);
2246 if (status != 0)
2247 return status;
2248
2249 pthread_mutex_lock(&in->lock);
2250 pthread_mutex_lock(&in->dev->lock);
2251 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2252 in->enable_aec != enable &&
2253 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2254 in->enable_aec = enable;
2255 if (!in->standby)
2256 select_devices(in->dev, in->usecase);
2257 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002258 if (in->enable_ns != enable &&
2259 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2260 in->enable_ns = enable;
2261 if (!in->standby)
2262 select_devices(in->dev, in->usecase);
2263 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002264 pthread_mutex_unlock(&in->dev->lock);
2265 pthread_mutex_unlock(&in->lock);
2266
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002267 return 0;
2268}
2269
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002270static int in_add_audio_effect(const struct audio_stream *stream,
2271 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002272{
Eric Laurent994a6932013-07-17 11:51:42 -07002273 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002274 return add_remove_audio_effect(stream, effect, true);
2275}
2276
2277static int in_remove_audio_effect(const struct audio_stream *stream,
2278 effect_handle_t effect)
2279{
Eric Laurent994a6932013-07-17 11:51:42 -07002280 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002281 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002282}
2283
2284static int adev_open_output_stream(struct audio_hw_device *dev,
2285 audio_io_handle_t handle,
2286 audio_devices_t devices,
2287 audio_output_flags_t flags,
2288 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302289 struct audio_stream_out **stream_out,
2290 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002291{
2292 struct audio_device *adev = (struct audio_device *)dev;
2293 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002294 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002295
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002296 *stream_out = NULL;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302297
2298 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2299 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2300 ALOGE(" sound card is not active rejecting compress output open request");
2301 return -EINVAL;
2302 }
2303
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002304 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2305
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302306 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2307 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2308 devices, flags, &out->stream);
2309
2310
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002311 if (!out) {
2312 return -ENOMEM;
2313 }
2314
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002315 if (devices == AUDIO_DEVICE_NONE)
2316 devices = AUDIO_DEVICE_OUT_SPEAKER;
2317
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002318 out->flags = flags;
2319 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002320 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002321 out->format = config->format;
2322 out->sample_rate = config->sample_rate;
2323 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2324 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002325 out->handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002326
2327 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002328 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002329 (
2330#ifdef AFE_PROXY_ENABLED
2331 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2332#endif
2333 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002334
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002335 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002336 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2337 ret = read_hdmi_channel_masks(out);
2338
Mingming Yinee733602014-04-03 17:47:22 -07002339#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002340 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2341 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002342#endif
2343
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002344 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002345 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002346 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002347
2348 if (config->sample_rate == 0)
2349 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2350 if (config->channel_mask == 0)
2351 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2352
2353 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002354 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002355 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2356 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002357 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302358 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002359 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002360#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002361 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2362 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002363 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002364 ret = voice_extn_compress_voip_open_output_stream(out);
2365 if (ret != 0) {
2366 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2367 __func__, ret);
2368 goto error_open;
2369 }
Mingming Yinee733602014-04-03 17:47:22 -07002370#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002371 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2372 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2373 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2374 ALOGE("%s: Unsupported Offload information", __func__);
2375 ret = -EINVAL;
2376 goto error_open;
2377 }
Mingming Yin90310102013-11-13 16:57:00 -08002378 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002379 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002380 ALOGE("%s: Unsupported audio format", __func__);
2381 ret = -EINVAL;
2382 goto error_open;
2383 }
2384
2385 out->compr_config.codec = (struct snd_codec *)
2386 calloc(1, sizeof(struct snd_codec));
2387
2388 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
2389 if (config->offload_info.channel_mask)
2390 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002391 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002392 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002393 config->offload_info.channel_mask = config->channel_mask;
2394 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002395 out->format = config->offload_info.format;
2396 out->sample_rate = config->offload_info.sample_rate;
2397
2398 out->stream.set_callback = out_set_callback;
2399 out->stream.pause = out_pause;
2400 out->stream.resume = out_resume;
2401 out->stream.drain = out_drain;
2402 out->stream.flush = out_flush;
2403
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002404 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002405 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002406 audio_extn_dolby_get_snd_codec_id(adev, out,
2407 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002408 else
2409 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002410 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002411#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002412 if (audio_is_offload_pcm(config->offload_info.format)) {
2413 out->compr_config.fragment_size =
2414 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002415 } else
2416#endif
2417 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002418 out->compr_config.fragment_size =
2419 platform_get_compress_offload_buffer_size(&config->offload_info);
2420 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002421 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2422 out->compr_config.codec->sample_rate =
2423 compress_get_alsa_rate(config->offload_info.sample_rate);
2424 out->compr_config.codec->bit_rate =
2425 config->offload_info.bit_rate;
2426 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302427 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002428 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08002429 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002430
Mingming Yinee733602014-04-03 17:47:22 -07002431#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002432 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2433 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2434 else if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
2435 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002436#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002437
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002438 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2439 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002440
2441 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002442 out->offload_state = OFFLOAD_STATE_IDLE;
2443 out->playback_started = 0;
2444
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002445 create_offload_callback_thread(out);
2446 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2447 __func__, config->offload_info.version,
2448 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002449 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002450 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002451
Mingming Yinee733602014-04-03 17:47:22 -07002452#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002453 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2454 ret = voice_check_and_set_incall_music_usecase(adev, out);
2455 if (ret != 0) {
2456 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2457 __func__, ret);
2458 goto error_open;
2459 }
Mingming Yinee733602014-04-03 17:47:22 -07002460#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302461 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2462 if (config->sample_rate == 0)
2463 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2464 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2465 config->sample_rate != 8000) {
2466 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2467 ret = -EINVAL;
2468 goto error_open;
2469 }
2470 out->sample_rate = config->sample_rate;
2471 out->config.rate = config->sample_rate;
2472 if (config->format == AUDIO_FORMAT_DEFAULT)
2473 config->format = AUDIO_FORMAT_PCM_16_BIT;
2474 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2475 config->format = AUDIO_FORMAT_PCM_16_BIT;
2476 ret = -EINVAL;
2477 goto error_open;
2478 }
2479 out->format = config->format;
2480 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2481 out->config = pcm_config_afe_proxy_playback;
2482 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002483 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002484 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2485 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002486 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002487 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002488 /* primary path is the default path selected if no other outputs are available/suitable */
2489 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002490 out->config = pcm_config_deep_buffer;
2491 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002492 }
2493
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002494 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2495 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2496 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002497 if(adev->primary_output == NULL)
2498 adev->primary_output = out;
2499 else {
2500 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002501 ret = -EEXIST;
2502 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002503 }
2504 }
2505
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002506 /* Check if this usecase is already existing */
2507 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002508 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2509 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002510 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002511 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002512 ret = -EEXIST;
2513 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002514 }
2515 pthread_mutex_unlock(&adev->lock);
2516
2517 out->stream.common.get_sample_rate = out_get_sample_rate;
2518 out->stream.common.set_sample_rate = out_set_sample_rate;
2519 out->stream.common.get_buffer_size = out_get_buffer_size;
2520 out->stream.common.get_channels = out_get_channels;
2521 out->stream.common.get_format = out_get_format;
2522 out->stream.common.set_format = out_set_format;
2523 out->stream.common.standby = out_standby;
2524 out->stream.common.dump = out_dump;
2525 out->stream.common.set_parameters = out_set_parameters;
2526 out->stream.common.get_parameters = out_get_parameters;
2527 out->stream.common.add_audio_effect = out_add_audio_effect;
2528 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2529 out->stream.get_latency = out_get_latency;
2530 out->stream.set_volume = out_set_volume;
2531 out->stream.write = out_write;
2532 out->stream.get_render_position = out_get_render_position;
2533 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002534 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002535
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002536 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002537 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002538 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002539
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302540 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2541 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2542
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002543 config->format = out->stream.common.get_format(&out->stream.common);
2544 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2545 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2546
2547 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302548 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2549 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002550 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002551 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002552
2553error_open:
2554 free(out);
2555 *stream_out = NULL;
2556 ALOGD("%s: exit: ret %d", __func__, ret);
2557 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002558}
2559
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302560static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002561 struct audio_stream_out *stream)
2562{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002563 struct stream_out *out = (struct stream_out *)stream;
2564 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002565 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002566
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302567 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2568
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002569 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302570 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002571 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302572 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002573 if(ret != 0)
2574 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2575 __func__, ret);
2576 }
2577 else
2578 out_standby(&stream->common);
2579
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002580 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
2581 destroy_offload_callback_thread(out);
2582
2583 if (out->compr_config.codec != NULL)
2584 free(out->compr_config.codec);
2585 }
2586 pthread_cond_destroy(&out->cond);
2587 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002588 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002589 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002590}
2591
2592static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2593{
2594 struct audio_device *adev = (struct audio_device *)dev;
2595 struct str_parms *parms;
2596 char *str;
2597 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002598 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302599 int ret;
2600 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002601
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002602 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002603 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002604
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302605 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2606 if (ret >= 0) {
2607 char *snd_card_status = value+2;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302608 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302609 struct listnode *node;
2610 struct audio_usecase *usecase;
2611
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302612 ALOGD("Received sound card OFFLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302613 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2614
2615 pthread_mutex_lock(&adev->lock);
2616 //close compress session on OFFLINE status
2617 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2618 if (usecase && usecase->stream.out) {
2619 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2620
2621 struct stream_out *out = usecase->stream.out;
2622
2623 pthread_mutex_unlock(&adev->lock);
2624 out_standby(&out->stream.common);
2625 } else
2626 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302627 } else if (strstr(snd_card_status, "ONLINE")) {
2628 ALOGD("Received sound card ONLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302629 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302630 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302631 }
2632
2633 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302634 status = voice_set_parameters(adev, parms);
2635 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002636 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002637
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302638 status = platform_set_parameters(adev->platform, parms);
2639 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002640 goto done;
2641
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302642 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2643 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002644 /* When set to false, HAL should disable EC and NS
2645 * But it is currently not supported.
2646 */
2647 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2648 adev->bluetooth_nrec = true;
2649 else
2650 adev->bluetooth_nrec = false;
2651 }
2652
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302653 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2654 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002655 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2656 adev->screen_off = false;
2657 else
2658 adev->screen_off = true;
2659 }
2660
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302661 ret = str_parms_get_int(parms, "rotation", &val);
2662 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002663 bool reverse_speakers = false;
2664 switch(val) {
2665 // FIXME: note that the code below assumes that the speakers are in the correct placement
2666 // relative to the user when the device is rotated 90deg from its default rotation. This
2667 // assumption is device-specific, not platform-specific like this code.
2668 case 270:
2669 reverse_speakers = true;
2670 break;
2671 case 0:
2672 case 90:
2673 case 180:
2674 break;
2675 default:
2676 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302677 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002678 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302679 if (status == 0) {
2680 if (adev->speaker_lr_swap != reverse_speakers) {
2681 adev->speaker_lr_swap = reverse_speakers;
2682 // only update the selected device if there is active pcm playback
2683 struct audio_usecase *usecase;
2684 struct listnode *node;
2685 list_for_each(node, &adev->usecase_list) {
2686 usecase = node_to_item(node, struct audio_usecase, list);
2687 if (usecase->type == PCM_PLAYBACK) {
2688 select_devices(adev, usecase->id);
2689 break;
2690 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002691 }
2692 }
2693 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002694 }
2695
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002696 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002697
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002698done:
2699 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002700 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302701 ALOGV("%s: exit with code(%d)", __func__, status);
2702 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002703}
2704
2705static char* adev_get_parameters(const struct audio_hw_device *dev,
2706 const char *keys)
2707{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002708 struct audio_device *adev = (struct audio_device *)dev;
2709 struct str_parms *reply = str_parms_create();
2710 struct str_parms *query = str_parms_create_str(keys);
2711 char *str;
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302712 char value[256] = {0};
2713 int ret = 0;
2714
2715 ret = str_parms_get_str(query, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, value,
2716 sizeof(value));
2717 if (ret >=0) {
2718 int val = 1;
2719 pthread_mutex_lock(&adev->snd_card_status.lock);
2720 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2721 val = 0;
2722 pthread_mutex_unlock(&adev->snd_card_status.lock);
2723 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, val);
2724 goto exit;
2725 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002726
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002727 pthread_mutex_lock(&adev->lock);
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302728
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002729 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002730 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002731 platform_get_parameters(adev->platform, query, reply);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302732 pthread_mutex_unlock(&adev->lock);
2733
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302734exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002735 str = str_parms_to_str(reply);
2736 str_parms_destroy(query);
2737 str_parms_destroy(reply);
2738
2739 ALOGV("%s: exit: returns - %s", __func__, str);
2740 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002741}
2742
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302743static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002744{
2745 return 0;
2746}
2747
2748static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2749{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002750 int ret;
2751 struct audio_device *adev = (struct audio_device *)dev;
2752 pthread_mutex_lock(&adev->lock);
2753 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002754 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002755 pthread_mutex_unlock(&adev->lock);
2756 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002757}
2758
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302759static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2760 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002761{
2762 return -ENOSYS;
2763}
2764
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302765static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2766 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002767{
2768 return -ENOSYS;
2769}
2770
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302771static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2772 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002773{
2774 return -ENOSYS;
2775}
2776
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302777static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2778 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002779{
2780 return -ENOSYS;
2781}
2782
2783static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2784{
2785 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002786 pthread_mutex_lock(&adev->lock);
2787 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002788 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002789 adev->mode = mode;
2790 }
2791 pthread_mutex_unlock(&adev->lock);
2792 return 0;
2793}
2794
2795static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2796{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002797 int ret;
2798
2799 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002800 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002801 ret = voice_set_mic_mute((struct audio_device *)dev, state);
2802 pthread_mutex_unlock(&adev->lock);
2803
2804 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002805}
2806
2807static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2808{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002809 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002810 return 0;
2811}
2812
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302813static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002814 const struct audio_config *config)
2815{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302816 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002817
2818 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2819}
2820
2821static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302822 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002823 audio_devices_t devices,
2824 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302825 struct audio_stream_in **stream_in,
2826 audio_input_flags_t flags __unused,
2827 const char *address __unused,
2828 audio_source_t source __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002829{
2830 struct audio_device *adev = (struct audio_device *)dev;
2831 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002832 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302833 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002834
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302835
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002836 *stream_in = NULL;
2837 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2838 return -EINVAL;
2839
2840 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302841 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
2842 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2843 devices, &in->stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002844
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002845 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2846
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002847 in->stream.common.get_sample_rate = in_get_sample_rate;
2848 in->stream.common.set_sample_rate = in_set_sample_rate;
2849 in->stream.common.get_buffer_size = in_get_buffer_size;
2850 in->stream.common.get_channels = in_get_channels;
2851 in->stream.common.get_format = in_get_format;
2852 in->stream.common.set_format = in_set_format;
2853 in->stream.common.standby = in_standby;
2854 in->stream.common.dump = in_dump;
2855 in->stream.common.set_parameters = in_set_parameters;
2856 in->stream.common.get_parameters = in_get_parameters;
2857 in->stream.common.add_audio_effect = in_add_audio_effect;
2858 in->stream.common.remove_audio_effect = in_remove_audio_effect;
2859 in->stream.set_gain = in_set_gain;
2860 in->stream.read = in_read;
2861 in->stream.get_input_frames_lost = in_get_input_frames_lost;
2862
2863 in->device = devices;
2864 in->source = AUDIO_SOURCE_DEFAULT;
2865 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002866 in->standby = 1;
2867 in->channel_mask = config->channel_mask;
2868
2869 /* Update config params with the requested sample rate and channels */
2870 in->usecase = USECASE_AUDIO_RECORD;
2871 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002872 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002873 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002874
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302875 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Pavan Chikkala3ec42ef2014-11-21 20:57:48 +05302876 if (!adev->voice.in_call) {
2877 ret = -EINVAL;
2878 goto err_open;
2879 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302880 if (config->sample_rate == 0)
2881 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2882 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2883 config->sample_rate != 8000) {
2884 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2885 ret = -EINVAL;
2886 goto err_open;
2887 }
2888 if (config->format == AUDIO_FORMAT_DEFAULT)
2889 config->format = AUDIO_FORMAT_PCM_16_BIT;
2890 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2891 config->format = AUDIO_FORMAT_PCM_16_BIT;
2892 ret = -EINVAL;
2893 goto err_open;
2894 }
2895 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
2896 in->config = pcm_config_afe_proxy_record;
2897 in->config.channels = channel_count;
2898 in->config.rate = config->sample_rate;
2899 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002900 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302901 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002902 ALOGE("%s: audio_extn_ssr_init failed", __func__);
2903 ret = -EINVAL;
2904 goto err_open;
2905 }
2906 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07002907 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002908 }
Mingming Yine62d7842013-10-25 16:26:03 -07002909 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002910 audio_extn_compr_cap_format_supported(config->format) &&
2911 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302912 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002913 } else {
2914 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302915 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002916 buffer_size = get_input_buffer_size(config->sample_rate,
2917 config->format,
2918 channel_count);
2919 in->config.period_size = buffer_size / frame_size;
2920 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002921
2922 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07002923 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002924 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002925
2926err_open:
2927 free(in);
2928 *stream_in = NULL;
2929 return ret;
2930}
2931
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302932static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002933 struct audio_stream_in *stream)
2934{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002935 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002936 struct stream_in *in = (struct stream_in *)stream;
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302937 struct audio_device *adev = in->dev;
2938
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302939 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002940
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002941 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302942 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002943 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302944 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002945 if (ret != 0)
2946 ALOGE("%s: Compress voip input cannot be closed, error:%d",
2947 __func__, ret);
2948 } else
2949 in_standby(&stream->common);
2950
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302951 if (audio_extn_ssr_get_enabled() &&
2952 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002953 audio_extn_ssr_deinit();
2954 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002955 free(stream);
2956
Mingming Yine62d7842013-10-25 16:26:03 -07002957 if(audio_extn_compr_cap_enabled() &&
2958 audio_extn_compr_cap_format_supported(in->config.format))
2959 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002960 return;
2961}
2962
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302963static int adev_dump(const audio_hw_device_t *device __unused,
2964 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002965{
2966 return 0;
2967}
2968
2969static int adev_close(hw_device_t *device)
2970{
2971 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07002972
2973 if (!adev)
2974 return 0;
2975
2976 pthread_mutex_lock(&adev_init_lock);
2977
2978 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08002979 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07002980 audio_route_free(adev->audio_route);
2981 free(adev->snd_dev_ref_cnt);
2982 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07002983 free(device);
2984 adev = NULL;
2985 }
2986 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002987 return 0;
2988}
2989
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002990static int adev_open(const hw_module_t *module, const char *name,
2991 hw_device_t **device)
2992{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002993 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002994
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002995 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002996 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
2997
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002998 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07002999 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003000 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07003001 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003002 ALOGD("%s: returning existing instance of adev", __func__);
3003 ALOGD("%s: exit", __func__);
3004 pthread_mutex_unlock(&adev_init_lock);
3005 return 0;
3006 }
3007
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003008 adev = calloc(1, sizeof(struct audio_device));
3009
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07003010 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
3011
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003012 adev->device.common.tag = HARDWARE_DEVICE_TAG;
3013 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
3014 adev->device.common.module = (struct hw_module_t *)module;
3015 adev->device.common.close = adev_close;
3016
3017 adev->device.init_check = adev_init_check;
3018 adev->device.set_voice_volume = adev_set_voice_volume;
3019 adev->device.set_master_volume = adev_set_master_volume;
3020 adev->device.get_master_volume = adev_get_master_volume;
3021 adev->device.set_master_mute = adev_set_master_mute;
3022 adev->device.get_master_mute = adev_get_master_mute;
3023 adev->device.set_mode = adev_set_mode;
3024 adev->device.set_mic_mute = adev_set_mic_mute;
3025 adev->device.get_mic_mute = adev_get_mic_mute;
3026 adev->device.set_parameters = adev_set_parameters;
3027 adev->device.get_parameters = adev_get_parameters;
3028 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3029 adev->device.open_output_stream = adev_open_output_stream;
3030 adev->device.close_output_stream = adev_close_output_stream;
3031 adev->device.open_input_stream = adev_open_input_stream;
3032 adev->device.close_input_stream = adev_close_input_stream;
3033 adev->device.dump = adev_dump;
3034
3035 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003036 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003037 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003038 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003039 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003040 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003041 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003042 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -07003043 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003044 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003045 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08003046 adev->cur_wfd_channels = 2;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003047
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303048 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3049 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
3050
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003051 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003052 adev->platform = platform_init(adev);
3053 if (!adev->platform) {
3054 free(adev->snd_dev_ref_cnt);
3055 free(adev);
3056 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3057 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003058 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003059 return -EINVAL;
3060 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003061
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303062 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3063
Eric Laurentc4aef752013-09-12 17:45:53 -07003064 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3065 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3066 if (adev->visualizer_lib == NULL) {
3067 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3068 } else {
3069 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3070 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003071 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003072 "visualizer_hal_start_output");
3073 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003074 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003075 "visualizer_hal_stop_output");
3076 }
3077 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003078 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07003079
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003080 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3081 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3082 if (adev->offload_effects_lib == NULL) {
3083 ALOGE("%s: DLOPEN failed for %s", __func__,
3084 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3085 } else {
3086 ALOGV("%s: DLOPEN successful for %s", __func__,
3087 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3088 adev->offload_effects_start_output =
3089 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3090 "offload_effects_bundle_hal_start_output");
3091 adev->offload_effects_stop_output =
3092 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3093 "offload_effects_bundle_hal_stop_output");
3094 }
3095 }
3096
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003097 *device = &adev->device.common;
3098
Kiran Kandi910e1862013-10-29 13:29:42 -07003099 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003100 pthread_mutex_unlock(&adev_init_lock);
3101
Eric Laurent994a6932013-07-17 11:51:42 -07003102 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003103 return 0;
3104}
3105
Mingming Yin90e2cd82014-06-06 17:11:23 -07003106int pcm_ioctl(struct pcm *pcm, int request, ...)
3107{
3108 va_list ap;
3109 void * arg;
3110 int pcm_fd = *(int*)pcm;
3111
3112 va_start(ap, request);
3113 arg = va_arg(ap, void *);
3114 va_end(ap);
3115
3116 return ioctl(pcm_fd, request, arg);
3117}
3118
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003119static struct hw_module_methods_t hal_module_methods = {
3120 .open = adev_open,
3121};
3122
3123struct audio_module HAL_MODULE_INFO_SYM = {
3124 .common = {
3125 .tag = HARDWARE_MODULE_TAG,
3126 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3127 .hal_api_version = HARDWARE_HAL_API_VERSION,
3128 .id = AUDIO_HARDWARE_MODULE_ID,
3129 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003130 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003131 .methods = &hal_module_methods,
3132 },
3133};