blob: 247918fac1a9f0ca5633828305f148a6a094e907 [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
Naresh Tannirucef332d2014-06-04 18:17:56 +0530278static int get_snd_card_state(struct audio_device *adev)
279{
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 */
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700680 if (voice_is_in_call(adev)) {
681 vc_usecase = get_usecase_from_list(adev,
682 get_voice_usecase_id_from_list(adev));
Helen Zeng067b96b2013-11-26 12:10:29 -0800683 if ((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);
Narsinga Rao Chella5856f9b2014-04-11 17:20:46 -0700690 if ((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) &&
692 (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);
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800699 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
700 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
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301552 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1553 voice_is_in_call(adev) &&
1554 output_drives_call(adev, out)) {
1555 ret = voice_stop_call(adev);
1556 adev->current_call_output = NULL;
1557 }
1558
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001559 /*
1560 * select_devices() call below switches all the usecases on the same
1561 * backend to the new device. Refer to check_usecases_codec_backend() in
1562 * the select_devices(). But how do we undo this?
1563 *
1564 * For example, music playback is active on headset (deep-buffer usecase)
1565 * and if we go to ringtones and select a ringtone, low-latency usecase
1566 * will be started on headset+speaker. As we can't enable headset+speaker
1567 * and headset devices at the same time, select_devices() switches the music
1568 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1569 * So when the ringtone playback is completed, how do we undo the same?
1570 *
1571 * We are relying on the out_set_parameters() call on deep-buffer output,
1572 * once the ringtone playback is ended.
1573 * NOTE: We should not check if the current devices are same as new devices.
1574 * Because select_devices() must be called to switch back the music
1575 * playback to headset.
1576 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001577 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001578 out->devices = val;
1579
1580 if (!out->standby)
1581 select_devices(adev, out->usecase);
1582
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001583 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301584 output_drives_call(adev, out)) {
1585 adev->current_call_output = out;
1586 if (!voice_is_in_call(adev))
1587 ret = voice_start_call(adev);
1588 else
1589 voice_update_devices_for_all_voice_usecases(adev);
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001590 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001591
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001592 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001593
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001594 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001595 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001596 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001597
1598 if (out == adev->primary_output) {
1599 pthread_mutex_lock(&adev->lock);
1600 audio_extn_set_parameters(adev, parms);
1601 pthread_mutex_unlock(&adev->lock);
1602 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001603 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001604 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001605 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001606 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001607 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001608
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001609 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001610 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001611 return ret;
1612}
1613
1614static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1615{
1616 struct stream_out *out = (struct stream_out *)stream;
1617 struct str_parms *query = str_parms_create_str(keys);
1618 char *str;
1619 char value[256];
1620 struct str_parms *reply = str_parms_create();
1621 size_t i, j;
1622 int ret;
1623 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001624 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001625 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1626 if (ret >= 0) {
1627 value[0] = '\0';
1628 i = 0;
1629 while (out->supported_channel_masks[i] != 0) {
1630 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1631 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1632 if (!first) {
1633 strcat(value, "|");
1634 }
1635 strcat(value, out_channels_name_to_enum_table[j].name);
1636 first = false;
1637 break;
1638 }
1639 }
1640 i++;
1641 }
1642 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1643 str = str_parms_to_str(reply);
1644 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001645 voice_extn_out_get_parameters(out, query, reply);
1646 str = str_parms_to_str(reply);
1647 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001648 free(str);
1649 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001650 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001651 }
1652 str_parms_destroy(query);
1653 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001654 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001655 return str;
1656}
1657
1658static uint32_t out_get_latency(const struct audio_stream_out *stream)
1659{
1660 struct stream_out *out = (struct stream_out *)stream;
1661
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001662 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1663 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1664
1665 return (out->config.period_count * out->config.period_size * 1000) /
1666 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001667}
1668
1669static int out_set_volume(struct audio_stream_out *stream, float left,
1670 float right)
1671{
Eric Laurenta9024de2013-04-04 09:19:12 -07001672 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001673 int volume[2];
1674
Eric Laurenta9024de2013-04-04 09:19:12 -07001675 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1676 /* only take left channel into account: the API is for stereo anyway */
1677 out->muted = (left == 0.0f);
1678 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001679 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001680 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001681 struct audio_device *adev = out->dev;
1682 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001683 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1684 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001685
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001686 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1687 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001688 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1689 if (!ctl) {
1690 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1691 __func__, mixer_ctl_name);
1692 return -EINVAL;
1693 }
1694 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1695 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1696 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1697 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001698 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001699
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001700 return -ENOSYS;
1701}
1702
1703static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1704 size_t bytes)
1705{
1706 struct stream_out *out = (struct stream_out *)stream;
1707 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301708 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001709 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001710
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001711 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301712
Naresh Tannirucef332d2014-06-04 18:17:56 +05301713 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1714 if (out->pcm) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301715 ALOGD(" %s: sound card is not active/SSR state", __func__);
1716 ret= -ENETRESET;
1717 goto exit;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301718 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1719 //during SSR for compress usecase we should return error to flinger
1720 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1721 pthread_mutex_unlock(&out->lock);
1722 return -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301723 }
1724 }
1725
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001726 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001727 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001728 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001729 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1730 ret = voice_extn_compress_voip_start_output_stream(out);
1731 else
1732 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001733 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001734 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001735 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001736 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001737 goto exit;
1738 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001739 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001740
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001741 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001742 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1743 if (out->send_new_metadata) {
1744 ALOGVV("send new gapless metadata");
1745 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1746 out->send_new_metadata = 0;
1747 }
1748
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001749 ret = compress_write(out->compr, buffer, bytes);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001750 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001751 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001752 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301753 } else if (-ENETRESET == ret) {
1754 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1755 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1756 pthread_mutex_unlock(&out->lock);
1757 out_standby(&out->stream.common);
1758 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001759 }
Naresh Tannirucef332d2014-06-04 18:17:56 +05301760 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001761 compress_start(out->compr);
1762 out->playback_started = 1;
1763 out->offload_state = OFFLOAD_STATE_PLAYING;
1764 }
1765 pthread_mutex_unlock(&out->lock);
1766 return ret;
1767 } else {
1768 if (out->pcm) {
1769 if (out->muted)
1770 memset((void *)buffer, 0, bytes);
1771 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301772 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1773 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1774 else
1775 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001776 if (ret == 0)
1777 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001778 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001779 }
1780
1781exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301782 /* ToDo: There may be a corner case when SSR happens back to back during
1783 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301784 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301785 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301786 }
1787
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001788 pthread_mutex_unlock(&out->lock);
1789
1790 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001791 if (out->pcm)
1792 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301793 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1794 voice_extn_compress_voip_close_output_stream(&out->stream.common);
1795 out->standby = true;
1796 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001797 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301798 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1799 out_get_sample_rate(&out->stream.common));
1800
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001801 }
1802 return bytes;
1803}
1804
1805static int out_get_render_position(const struct audio_stream_out *stream,
1806 uint32_t *dsp_frames)
1807{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001808 struct stream_out *out = (struct stream_out *)stream;
1809 *dsp_frames = 0;
1810 if ((out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) && (dsp_frames != NULL)) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301811 ssize_t ret = -EINVAL;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001812 pthread_mutex_lock(&out->lock);
1813 if (out->compr != NULL) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301814 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001815 &out->sample_rate);
1816 ALOGVV("%s rendered frames %d sample_rate %d",
1817 __func__, *dsp_frames, out->sample_rate);
1818 }
1819 pthread_mutex_unlock(&out->lock);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301820 if (-ENETRESET == ret) {
1821 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
1822 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1823 return -EINVAL;
1824 } else if(ret < 0) {
1825 ALOGE(" ERROR: Unable to get time stamp from compress driver");
1826 return -EINVAL;
1827 } else {
1828 return 0;
1829 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001830 } else
1831 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001832}
1833
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301834static int out_add_audio_effect(const struct audio_stream *stream __unused,
1835 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001836{
1837 return 0;
1838}
1839
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301840static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1841 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001842{
1843 return 0;
1844}
1845
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301846static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1847 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001848{
1849 return -EINVAL;
1850}
1851
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001852static int out_get_presentation_position(const struct audio_stream_out *stream,
1853 uint64_t *frames, struct timespec *timestamp)
1854{
1855 struct stream_out *out = (struct stream_out *)stream;
1856 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001857 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001858
1859 pthread_mutex_lock(&out->lock);
1860
Eric Laurent949a0892013-09-20 09:20:13 -07001861 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1862 if (out->compr != NULL) {
1863 compress_get_tstamp(out->compr, &dsp_frames,
1864 &out->sample_rate);
1865 ALOGVV("%s rendered frames %ld sample_rate %d",
1866 __func__, dsp_frames, out->sample_rate);
1867 *frames = dsp_frames;
1868 ret = 0;
1869 /* this is the best we can do */
1870 clock_gettime(CLOCK_MONOTONIC, timestamp);
1871 }
1872 } else {
1873 if (out->pcm) {
1874 size_t avail;
1875 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
1876 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07001877 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001878 // This adjustment accounts for buffering after app processor.
1879 // It is based on estimated DSP latency per use case, rather than exact.
1880 signed_frames -=
1881 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
1882
Eric Laurent949a0892013-09-20 09:20:13 -07001883 // It would be unusual for this value to be negative, but check just in case ...
1884 if (signed_frames >= 0) {
1885 *frames = signed_frames;
1886 ret = 0;
1887 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001888 }
1889 }
1890 }
1891
1892 pthread_mutex_unlock(&out->lock);
1893
1894 return ret;
1895}
1896
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001897static int out_set_callback(struct audio_stream_out *stream,
1898 stream_callback_t callback, void *cookie)
1899{
1900 struct stream_out *out = (struct stream_out *)stream;
1901
1902 ALOGV("%s", __func__);
1903 pthread_mutex_lock(&out->lock);
1904 out->offload_callback = callback;
1905 out->offload_cookie = cookie;
1906 pthread_mutex_unlock(&out->lock);
1907 return 0;
1908}
1909
1910static int out_pause(struct audio_stream_out* stream)
1911{
1912 struct stream_out *out = (struct stream_out *)stream;
1913 int status = -ENOSYS;
1914 ALOGV("%s", __func__);
1915 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1916 pthread_mutex_lock(&out->lock);
1917 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301918 struct audio_device *adev = out->dev;
1919 int snd_scard_state = get_snd_card_state(adev);
1920
1921 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1922 status = compress_pause(out->compr);
1923
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001924 out->offload_state = OFFLOAD_STATE_PAUSED;
1925 }
1926 pthread_mutex_unlock(&out->lock);
1927 }
1928 return status;
1929}
1930
1931static int out_resume(struct audio_stream_out* stream)
1932{
1933 struct stream_out *out = (struct stream_out *)stream;
1934 int status = -ENOSYS;
1935 ALOGV("%s", __func__);
1936 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1937 status = 0;
1938 pthread_mutex_lock(&out->lock);
1939 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301940 struct audio_device *adev = out->dev;
1941 int snd_scard_state = get_snd_card_state(adev);
1942
1943 if (SND_CARD_STATE_ONLINE == snd_scard_state)
1944 status = compress_resume(out->compr);
1945
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001946 out->offload_state = OFFLOAD_STATE_PLAYING;
1947 }
1948 pthread_mutex_unlock(&out->lock);
1949 }
1950 return status;
1951}
1952
1953static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
1954{
1955 struct stream_out *out = (struct stream_out *)stream;
1956 int status = -ENOSYS;
1957 ALOGV("%s", __func__);
1958 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1959 pthread_mutex_lock(&out->lock);
1960 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
1961 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
1962 else
1963 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
1964 pthread_mutex_unlock(&out->lock);
1965 }
1966 return status;
1967}
1968
1969static int out_flush(struct audio_stream_out* stream)
1970{
1971 struct stream_out *out = (struct stream_out *)stream;
1972 ALOGV("%s", __func__);
1973 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1974 pthread_mutex_lock(&out->lock);
1975 stop_compressed_output_l(out);
1976 pthread_mutex_unlock(&out->lock);
1977 return 0;
1978 }
1979 return -ENOSYS;
1980}
1981
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001982/** audio_stream_in implementation **/
1983static uint32_t in_get_sample_rate(const struct audio_stream *stream)
1984{
1985 struct stream_in *in = (struct stream_in *)stream;
1986
1987 return in->config.rate;
1988}
1989
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301990static int in_set_sample_rate(struct audio_stream *stream __unused,
1991 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001992{
1993 return -ENOSYS;
1994}
1995
1996static size_t in_get_buffer_size(const struct audio_stream *stream)
1997{
1998 struct stream_in *in = (struct stream_in *)stream;
1999
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002000 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2001 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002002 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2003 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002004
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302005 return in->config.period_size *
2006 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002007}
2008
2009static uint32_t in_get_channels(const struct audio_stream *stream)
2010{
2011 struct stream_in *in = (struct stream_in *)stream;
2012
2013 return in->channel_mask;
2014}
2015
2016static audio_format_t in_get_format(const struct audio_stream *stream)
2017{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002018 struct stream_in *in = (struct stream_in *)stream;
2019
2020 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002021}
2022
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302023static int in_set_format(struct audio_stream *stream __unused,
2024 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002025{
2026 return -ENOSYS;
2027}
2028
2029static int in_standby(struct audio_stream *stream)
2030{
2031 struct stream_in *in = (struct stream_in *)stream;
2032 struct audio_device *adev = in->dev;
2033 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302034 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2035 stream, in->usecase, use_case_table[in->usecase]);
2036
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002037
2038 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2039 /* Ignore standby in case of voip call because the voip input
2040 * stream is closed in adev_close_input_stream()
2041 */
2042 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2043 return status;
2044 }
2045
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002046 pthread_mutex_lock(&in->lock);
2047 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002048 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002049 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002050 if (in->pcm) {
2051 pcm_close(in->pcm);
2052 in->pcm = NULL;
2053 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002054 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002055 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002056 }
2057 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002058 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002059 return status;
2060}
2061
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302062static int in_dump(const struct audio_stream *stream __unused,
2063 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002064{
2065 return 0;
2066}
2067
2068static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2069{
2070 struct stream_in *in = (struct stream_in *)stream;
2071 struct audio_device *adev = in->dev;
2072 struct str_parms *parms;
2073 char *str;
2074 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002075 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002076
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302077 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002078 parms = str_parms_create_str(kvpairs);
2079
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002080 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002081 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002082
2083 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2084 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002085 val = atoi(value);
2086 /* no audio source uses val == 0 */
2087 if ((in->source != val) && (val != 0)) {
2088 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002089 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2090 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2091 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2092 (in->config.rate == 8000 || in->config.rate == 16000) &&
2093 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002094 err = voice_extn_compress_voip_open_input_stream(in);
2095 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002096 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002097 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002098 }
2099 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002100 }
2101 }
2102
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002103 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2104 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002105 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302106 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002107 in->device = val;
2108 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002109 if (!in->standby)
2110 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002111 }
2112 }
2113
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002114done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002115 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002116 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002117
2118 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002119 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002120 return ret;
2121}
2122
2123static char* in_get_parameters(const struct audio_stream *stream,
2124 const char *keys)
2125{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002126 struct stream_in *in = (struct stream_in *)stream;
2127 struct str_parms *query = str_parms_create_str(keys);
2128 char *str;
2129 char value[256];
2130 struct str_parms *reply = str_parms_create();
2131 ALOGV("%s: enter: keys - %s", __func__, keys);
2132
2133 voice_extn_in_get_parameters(in, query, reply);
2134
2135 str = str_parms_to_str(reply);
2136 str_parms_destroy(query);
2137 str_parms_destroy(reply);
2138
2139 ALOGV("%s: exit: returns - %s", __func__, str);
2140 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002141}
2142
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302143static int in_set_gain(struct audio_stream_in *stream __unused,
2144 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002145{
2146 return 0;
2147}
2148
2149static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2150 size_t bytes)
2151{
2152 struct stream_in *in = (struct stream_in *)stream;
2153 struct audio_device *adev = in->dev;
2154 int i, ret = -1;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302155 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002156
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002157 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302158
2159 if (in->pcm) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302160 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302161 ALOGD(" %s: sound card is not active/SSR state", __func__);
2162 ret= -ENETRESET;
2163 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302164 }
2165 }
2166
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002167 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002168 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002169 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2170 ret = voice_extn_compress_voip_start_input_stream(in);
2171 else
2172 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002173 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002174 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002175 goto exit;
2176 }
2177 in->standby = 0;
2178 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002179
2180 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302181 if (audio_extn_ssr_get_enabled() &&
2182 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002183 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002184 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2185 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302186 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2187 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002188 else
2189 ret = pcm_read(in->pcm, buffer, bytes);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002190 }
2191
2192 /*
2193 * Instead of writing zeroes here, we could trust the hardware
2194 * to always provide zeroes when muted.
2195 */
kunleiza1a9ee02014-04-24 18:46:22 +08002196 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002197 memset(buffer, 0, bytes);
2198
2199exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302200 /* ToDo: There may be a corner case when SSR happens back to back during
2201 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302202 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302203 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302204 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302205 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002206 pthread_mutex_unlock(&in->lock);
2207
2208 if (ret != 0) {
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302209 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2210 voice_extn_compress_voip_close_input_stream(&in->stream.common);
2211 in->standby = true;
2212 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002213 in_standby(&in->stream.common);
2214 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302215 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2216 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002217 }
2218 return bytes;
2219}
2220
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302221static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002222{
2223 return 0;
2224}
2225
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002226static int add_remove_audio_effect(const struct audio_stream *stream,
2227 effect_handle_t effect,
2228 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002229{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002230 struct stream_in *in = (struct stream_in *)stream;
2231 int status = 0;
2232 effect_descriptor_t desc;
2233
2234 status = (*effect)->get_descriptor(effect, &desc);
2235 if (status != 0)
2236 return status;
2237
2238 pthread_mutex_lock(&in->lock);
2239 pthread_mutex_lock(&in->dev->lock);
2240 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2241 in->enable_aec != enable &&
2242 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2243 in->enable_aec = enable;
2244 if (!in->standby)
2245 select_devices(in->dev, in->usecase);
2246 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002247 if (in->enable_ns != enable &&
2248 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2249 in->enable_ns = enable;
2250 if (!in->standby)
2251 select_devices(in->dev, in->usecase);
2252 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002253 pthread_mutex_unlock(&in->dev->lock);
2254 pthread_mutex_unlock(&in->lock);
2255
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002256 return 0;
2257}
2258
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002259static int in_add_audio_effect(const struct audio_stream *stream,
2260 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002261{
Eric Laurent994a6932013-07-17 11:51:42 -07002262 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002263 return add_remove_audio_effect(stream, effect, true);
2264}
2265
2266static int in_remove_audio_effect(const struct audio_stream *stream,
2267 effect_handle_t effect)
2268{
Eric Laurent994a6932013-07-17 11:51:42 -07002269 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002270 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002271}
2272
2273static int adev_open_output_stream(struct audio_hw_device *dev,
2274 audio_io_handle_t handle,
2275 audio_devices_t devices,
2276 audio_output_flags_t flags,
2277 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302278 struct audio_stream_out **stream_out,
2279 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002280{
2281 struct audio_device *adev = (struct audio_device *)dev;
2282 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002283 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002284
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002285 *stream_out = NULL;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302286
2287 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2288 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2289 ALOGE(" sound card is not active rejecting compress output open request");
2290 return -EINVAL;
2291 }
2292
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002293 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2294
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302295 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2296 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2297 devices, flags, &out->stream);
2298
2299
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002300 if (!out) {
2301 return -ENOMEM;
2302 }
2303
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002304 if (devices == AUDIO_DEVICE_NONE)
2305 devices = AUDIO_DEVICE_OUT_SPEAKER;
2306
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002307 out->flags = flags;
2308 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002309 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002310 out->format = config->format;
2311 out->sample_rate = config->sample_rate;
2312 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2313 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002314 out->handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002315
2316 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002317 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002318 (
2319#ifdef AFE_PROXY_ENABLED
2320 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2321#endif
2322 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002323
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002324 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002325 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2326 ret = read_hdmi_channel_masks(out);
2327
Mingming Yinee733602014-04-03 17:47:22 -07002328#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002329 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2330 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002331#endif
2332
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002333 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002334 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002335 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002336
2337 if (config->sample_rate == 0)
2338 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2339 if (config->channel_mask == 0)
2340 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2341
2342 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002343 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002344 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2345 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002346 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302347 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002348 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002349#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002350 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2351 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002352 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002353 ret = voice_extn_compress_voip_open_output_stream(out);
2354 if (ret != 0) {
2355 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2356 __func__, ret);
2357 goto error_open;
2358 }
Mingming Yinee733602014-04-03 17:47:22 -07002359#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002360 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2361 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2362 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2363 ALOGE("%s: Unsupported Offload information", __func__);
2364 ret = -EINVAL;
2365 goto error_open;
2366 }
Mingming Yin90310102013-11-13 16:57:00 -08002367 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002368 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002369 ALOGE("%s: Unsupported audio format", __func__);
2370 ret = -EINVAL;
2371 goto error_open;
2372 }
2373
2374 out->compr_config.codec = (struct snd_codec *)
2375 calloc(1, sizeof(struct snd_codec));
2376
2377 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
2378 if (config->offload_info.channel_mask)
2379 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002380 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002381 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002382 config->offload_info.channel_mask = config->channel_mask;
2383 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002384 out->format = config->offload_info.format;
2385 out->sample_rate = config->offload_info.sample_rate;
2386
2387 out->stream.set_callback = out_set_callback;
2388 out->stream.pause = out_pause;
2389 out->stream.resume = out_resume;
2390 out->stream.drain = out_drain;
2391 out->stream.flush = out_flush;
2392
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002393 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002394 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002395 audio_extn_dolby_get_snd_codec_id(adev, out,
2396 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002397 else
2398 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002399 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002400#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002401 if (audio_is_offload_pcm(config->offload_info.format)) {
2402 out->compr_config.fragment_size =
2403 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002404 } else
2405#endif
2406 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002407 out->compr_config.fragment_size =
2408 platform_get_compress_offload_buffer_size(&config->offload_info);
2409 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002410 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2411 out->compr_config.codec->sample_rate =
2412 compress_get_alsa_rate(config->offload_info.sample_rate);
2413 out->compr_config.codec->bit_rate =
2414 config->offload_info.bit_rate;
2415 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302416 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002417 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08002418 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002419
Mingming Yinee733602014-04-03 17:47:22 -07002420#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002421 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2422 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2423 else if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
2424 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002425#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002426
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002427 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2428 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002429
2430 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002431 out->offload_state = OFFLOAD_STATE_IDLE;
2432 out->playback_started = 0;
2433
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002434 create_offload_callback_thread(out);
2435 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2436 __func__, config->offload_info.version,
2437 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002438 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002439 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002440
Mingming Yinee733602014-04-03 17:47:22 -07002441#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002442 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2443 ret = voice_check_and_set_incall_music_usecase(adev, out);
2444 if (ret != 0) {
2445 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2446 __func__, ret);
2447 goto error_open;
2448 }
Mingming Yinee733602014-04-03 17:47:22 -07002449#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302450 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2451 if (config->sample_rate == 0)
2452 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2453 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2454 config->sample_rate != 8000) {
2455 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2456 ret = -EINVAL;
2457 goto error_open;
2458 }
2459 out->sample_rate = config->sample_rate;
2460 out->config.rate = config->sample_rate;
2461 if (config->format == AUDIO_FORMAT_DEFAULT)
2462 config->format = AUDIO_FORMAT_PCM_16_BIT;
2463 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2464 config->format = AUDIO_FORMAT_PCM_16_BIT;
2465 ret = -EINVAL;
2466 goto error_open;
2467 }
2468 out->format = config->format;
2469 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2470 out->config = pcm_config_afe_proxy_playback;
2471 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002472 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002473 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2474 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002475 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002476 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002477 /* primary path is the default path selected if no other outputs are available/suitable */
2478 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002479 out->config = pcm_config_deep_buffer;
2480 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002481 }
2482
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002483 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2484 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2485 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002486 if(adev->primary_output == NULL)
2487 adev->primary_output = out;
2488 else {
2489 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002490 ret = -EEXIST;
2491 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002492 }
2493 }
2494
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002495 /* Check if this usecase is already existing */
2496 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002497 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2498 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002499 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002500 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002501 ret = -EEXIST;
2502 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002503 }
2504 pthread_mutex_unlock(&adev->lock);
2505
2506 out->stream.common.get_sample_rate = out_get_sample_rate;
2507 out->stream.common.set_sample_rate = out_set_sample_rate;
2508 out->stream.common.get_buffer_size = out_get_buffer_size;
2509 out->stream.common.get_channels = out_get_channels;
2510 out->stream.common.get_format = out_get_format;
2511 out->stream.common.set_format = out_set_format;
2512 out->stream.common.standby = out_standby;
2513 out->stream.common.dump = out_dump;
2514 out->stream.common.set_parameters = out_set_parameters;
2515 out->stream.common.get_parameters = out_get_parameters;
2516 out->stream.common.add_audio_effect = out_add_audio_effect;
2517 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2518 out->stream.get_latency = out_get_latency;
2519 out->stream.set_volume = out_set_volume;
2520 out->stream.write = out_write;
2521 out->stream.get_render_position = out_get_render_position;
2522 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002523 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002524
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002525 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002526 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002527 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002528
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302529 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2530 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2531
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002532 config->format = out->stream.common.get_format(&out->stream.common);
2533 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2534 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2535
2536 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302537 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2538 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002539 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002540 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002541
2542error_open:
2543 free(out);
2544 *stream_out = NULL;
2545 ALOGD("%s: exit: ret %d", __func__, ret);
2546 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002547}
2548
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302549static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002550 struct audio_stream_out *stream)
2551{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002552 struct stream_out *out = (struct stream_out *)stream;
2553 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002554 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002555
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302556 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2557
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002558 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
2559 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
2560 if(ret != 0)
2561 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2562 __func__, ret);
2563 }
2564 else
2565 out_standby(&stream->common);
2566
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002567 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
2568 destroy_offload_callback_thread(out);
2569
2570 if (out->compr_config.codec != NULL)
2571 free(out->compr_config.codec);
2572 }
2573 pthread_cond_destroy(&out->cond);
2574 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002575 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002576 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002577}
2578
2579static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2580{
2581 struct audio_device *adev = (struct audio_device *)dev;
2582 struct str_parms *parms;
2583 char *str;
2584 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002585 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302586 int ret;
2587 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002588
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002589 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002590 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002591
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302592 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2593 if (ret >= 0) {
2594 char *snd_card_status = value+2;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302595 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302596 struct listnode *node;
2597 struct audio_usecase *usecase;
2598
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302599 ALOGD("Received sound card OFFLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302600 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2601
2602 pthread_mutex_lock(&adev->lock);
2603 //close compress session on OFFLINE status
2604 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2605 if (usecase && usecase->stream.out) {
2606 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2607
2608 struct stream_out *out = usecase->stream.out;
2609
2610 pthread_mutex_unlock(&adev->lock);
2611 out_standby(&out->stream.common);
2612 } else
2613 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302614 } else if (strstr(snd_card_status, "ONLINE")) {
2615 ALOGD("Received sound card ONLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302616 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302617 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302618 }
2619
2620 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302621 status = voice_set_parameters(adev, parms);
2622 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002623 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002624
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302625 status = platform_set_parameters(adev->platform, parms);
2626 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002627 goto done;
2628
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302629 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2630 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002631 /* When set to false, HAL should disable EC and NS
2632 * But it is currently not supported.
2633 */
2634 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2635 adev->bluetooth_nrec = true;
2636 else
2637 adev->bluetooth_nrec = false;
2638 }
2639
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302640 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2641 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002642 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2643 adev->screen_off = false;
2644 else
2645 adev->screen_off = true;
2646 }
2647
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302648 ret = str_parms_get_int(parms, "rotation", &val);
2649 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002650 bool reverse_speakers = false;
2651 switch(val) {
2652 // FIXME: note that the code below assumes that the speakers are in the correct placement
2653 // relative to the user when the device is rotated 90deg from its default rotation. This
2654 // assumption is device-specific, not platform-specific like this code.
2655 case 270:
2656 reverse_speakers = true;
2657 break;
2658 case 0:
2659 case 90:
2660 case 180:
2661 break;
2662 default:
2663 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302664 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002665 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302666 if (status == 0) {
2667 if (adev->speaker_lr_swap != reverse_speakers) {
2668 adev->speaker_lr_swap = reverse_speakers;
2669 // only update the selected device if there is active pcm playback
2670 struct audio_usecase *usecase;
2671 struct listnode *node;
2672 list_for_each(node, &adev->usecase_list) {
2673 usecase = node_to_item(node, struct audio_usecase, list);
2674 if (usecase->type == PCM_PLAYBACK) {
2675 select_devices(adev, usecase->id);
2676 break;
2677 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002678 }
2679 }
2680 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002681 }
2682
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002683 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002684
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002685done:
2686 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002687 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302688 ALOGV("%s: exit with code(%d)", __func__, status);
2689 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002690}
2691
2692static char* adev_get_parameters(const struct audio_hw_device *dev,
2693 const char *keys)
2694{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002695 struct audio_device *adev = (struct audio_device *)dev;
2696 struct str_parms *reply = str_parms_create();
2697 struct str_parms *query = str_parms_create_str(keys);
2698 char *str;
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302699 char value[256] = {0};
2700 int ret = 0;
2701
2702 ret = str_parms_get_str(query, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, value,
2703 sizeof(value));
2704 if (ret >=0) {
2705 int val = 1;
2706 pthread_mutex_lock(&adev->snd_card_status.lock);
2707 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2708 val = 0;
2709 pthread_mutex_unlock(&adev->snd_card_status.lock);
2710 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, val);
2711 goto exit;
2712 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002713
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002714 pthread_mutex_lock(&adev->lock);
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302715
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002716 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002717 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002718 platform_get_parameters(adev->platform, query, reply);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302719 pthread_mutex_unlock(&adev->lock);
2720
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302721exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002722 str = str_parms_to_str(reply);
2723 str_parms_destroy(query);
2724 str_parms_destroy(reply);
2725
2726 ALOGV("%s: exit: returns - %s", __func__, str);
2727 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002728}
2729
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302730static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002731{
2732 return 0;
2733}
2734
2735static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2736{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002737 int ret;
2738 struct audio_device *adev = (struct audio_device *)dev;
2739 pthread_mutex_lock(&adev->lock);
2740 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002741 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002742 pthread_mutex_unlock(&adev->lock);
2743 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002744}
2745
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302746static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2747 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002748{
2749 return -ENOSYS;
2750}
2751
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302752static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2753 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002754{
2755 return -ENOSYS;
2756}
2757
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302758static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2759 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002760{
2761 return -ENOSYS;
2762}
2763
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302764static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2765 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002766{
2767 return -ENOSYS;
2768}
2769
2770static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2771{
2772 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002773 pthread_mutex_lock(&adev->lock);
2774 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002775 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002776 adev->mode = mode;
2777 }
2778 pthread_mutex_unlock(&adev->lock);
2779 return 0;
2780}
2781
2782static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2783{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002784 int ret;
2785
2786 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002787 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002788 ret = voice_set_mic_mute((struct audio_device *)dev, state);
2789 pthread_mutex_unlock(&adev->lock);
2790
2791 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002792}
2793
2794static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2795{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002796 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002797 return 0;
2798}
2799
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302800static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002801 const struct audio_config *config)
2802{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302803 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002804
2805 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2806}
2807
2808static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302809 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002810 audio_devices_t devices,
2811 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302812 struct audio_stream_in **stream_in,
2813 audio_input_flags_t flags __unused,
2814 const char *address __unused,
2815 audio_source_t source __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002816{
2817 struct audio_device *adev = (struct audio_device *)dev;
2818 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002819 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302820 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002821
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302822
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002823 *stream_in = NULL;
2824 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2825 return -EINVAL;
2826
2827 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302828 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
2829 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2830 devices, &in->stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002831
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002832 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2833
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002834 in->stream.common.get_sample_rate = in_get_sample_rate;
2835 in->stream.common.set_sample_rate = in_set_sample_rate;
2836 in->stream.common.get_buffer_size = in_get_buffer_size;
2837 in->stream.common.get_channels = in_get_channels;
2838 in->stream.common.get_format = in_get_format;
2839 in->stream.common.set_format = in_set_format;
2840 in->stream.common.standby = in_standby;
2841 in->stream.common.dump = in_dump;
2842 in->stream.common.set_parameters = in_set_parameters;
2843 in->stream.common.get_parameters = in_get_parameters;
2844 in->stream.common.add_audio_effect = in_add_audio_effect;
2845 in->stream.common.remove_audio_effect = in_remove_audio_effect;
2846 in->stream.set_gain = in_set_gain;
2847 in->stream.read = in_read;
2848 in->stream.get_input_frames_lost = in_get_input_frames_lost;
2849
2850 in->device = devices;
2851 in->source = AUDIO_SOURCE_DEFAULT;
2852 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002853 in->standby = 1;
2854 in->channel_mask = config->channel_mask;
2855
2856 /* Update config params with the requested sample rate and channels */
2857 in->usecase = USECASE_AUDIO_RECORD;
2858 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002859 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002860 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002861
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302862 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
2863 if (config->sample_rate == 0)
2864 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2865 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2866 config->sample_rate != 8000) {
2867 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2868 ret = -EINVAL;
2869 goto err_open;
2870 }
2871 if (config->format == AUDIO_FORMAT_DEFAULT)
2872 config->format = AUDIO_FORMAT_PCM_16_BIT;
2873 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2874 config->format = AUDIO_FORMAT_PCM_16_BIT;
2875 ret = -EINVAL;
2876 goto err_open;
2877 }
2878 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
2879 in->config = pcm_config_afe_proxy_record;
2880 in->config.channels = channel_count;
2881 in->config.rate = config->sample_rate;
2882 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002883 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302884 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002885 ALOGE("%s: audio_extn_ssr_init failed", __func__);
2886 ret = -EINVAL;
2887 goto err_open;
2888 }
2889 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07002890 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002891 }
Mingming Yine62d7842013-10-25 16:26:03 -07002892 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002893 audio_extn_compr_cap_format_supported(config->format) &&
2894 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302895 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002896 } else {
2897 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302898 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002899 buffer_size = get_input_buffer_size(config->sample_rate,
2900 config->format,
2901 channel_count);
2902 in->config.period_size = buffer_size / frame_size;
2903 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002904
2905 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07002906 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002907 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002908
2909err_open:
2910 free(in);
2911 *stream_in = NULL;
2912 return ret;
2913}
2914
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302915static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002916 struct audio_stream_in *stream)
2917{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002918 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002919 struct stream_in *in = (struct stream_in *)stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302920 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002921
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002922 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2923 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
2924 if (ret != 0)
2925 ALOGE("%s: Compress voip input cannot be closed, error:%d",
2926 __func__, ret);
2927 } else
2928 in_standby(&stream->common);
2929
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302930 if (audio_extn_ssr_get_enabled() &&
2931 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002932 audio_extn_ssr_deinit();
2933 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002934 free(stream);
2935
Mingming Yine62d7842013-10-25 16:26:03 -07002936 if(audio_extn_compr_cap_enabled() &&
2937 audio_extn_compr_cap_format_supported(in->config.format))
2938 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002939 return;
2940}
2941
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302942static int adev_dump(const audio_hw_device_t *device __unused,
2943 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002944{
2945 return 0;
2946}
2947
2948static int adev_close(hw_device_t *device)
2949{
2950 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07002951
2952 if (!adev)
2953 return 0;
2954
2955 pthread_mutex_lock(&adev_init_lock);
2956
2957 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08002958 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07002959 audio_route_free(adev->audio_route);
2960 free(adev->snd_dev_ref_cnt);
2961 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07002962 free(device);
2963 adev = NULL;
2964 }
2965 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002966 return 0;
2967}
2968
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002969static int adev_open(const hw_module_t *module, const char *name,
2970 hw_device_t **device)
2971{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002972 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002973
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002974 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002975 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
2976
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002977 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07002978 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002979 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07002980 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002981 ALOGD("%s: returning existing instance of adev", __func__);
2982 ALOGD("%s: exit", __func__);
2983 pthread_mutex_unlock(&adev_init_lock);
2984 return 0;
2985 }
2986
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002987 adev = calloc(1, sizeof(struct audio_device));
2988
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002989 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
2990
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002991 adev->device.common.tag = HARDWARE_DEVICE_TAG;
2992 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
2993 adev->device.common.module = (struct hw_module_t *)module;
2994 adev->device.common.close = adev_close;
2995
2996 adev->device.init_check = adev_init_check;
2997 adev->device.set_voice_volume = adev_set_voice_volume;
2998 adev->device.set_master_volume = adev_set_master_volume;
2999 adev->device.get_master_volume = adev_get_master_volume;
3000 adev->device.set_master_mute = adev_set_master_mute;
3001 adev->device.get_master_mute = adev_get_master_mute;
3002 adev->device.set_mode = adev_set_mode;
3003 adev->device.set_mic_mute = adev_set_mic_mute;
3004 adev->device.get_mic_mute = adev_get_mic_mute;
3005 adev->device.set_parameters = adev_set_parameters;
3006 adev->device.get_parameters = adev_get_parameters;
3007 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3008 adev->device.open_output_stream = adev_open_output_stream;
3009 adev->device.close_output_stream = adev_close_output_stream;
3010 adev->device.open_input_stream = adev_open_input_stream;
3011 adev->device.close_input_stream = adev_close_input_stream;
3012 adev->device.dump = adev_dump;
3013
3014 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003015 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003016 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003017 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003018 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003019 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003020 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003021 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -07003022 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003023 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003024 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08003025 adev->cur_wfd_channels = 2;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003026
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303027 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3028 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
3029
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003030 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003031 adev->platform = platform_init(adev);
3032 if (!adev->platform) {
3033 free(adev->snd_dev_ref_cnt);
3034 free(adev);
3035 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3036 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003037 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003038 return -EINVAL;
3039 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003040
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303041 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3042
Eric Laurentc4aef752013-09-12 17:45:53 -07003043 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3044 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3045 if (adev->visualizer_lib == NULL) {
3046 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3047 } else {
3048 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3049 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003050 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003051 "visualizer_hal_start_output");
3052 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003053 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003054 "visualizer_hal_stop_output");
3055 }
3056 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003057 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07003058
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003059 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3060 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3061 if (adev->offload_effects_lib == NULL) {
3062 ALOGE("%s: DLOPEN failed for %s", __func__,
3063 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3064 } else {
3065 ALOGV("%s: DLOPEN successful for %s", __func__,
3066 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3067 adev->offload_effects_start_output =
3068 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3069 "offload_effects_bundle_hal_start_output");
3070 adev->offload_effects_stop_output =
3071 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3072 "offload_effects_bundle_hal_stop_output");
3073 }
3074 }
3075
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003076 *device = &adev->device.common;
3077
Kiran Kandi910e1862013-10-29 13:29:42 -07003078 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003079 pthread_mutex_unlock(&adev_init_lock);
3080
Eric Laurent994a6932013-07-17 11:51:42 -07003081 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003082 return 0;
3083}
3084
Mingming Yin90e2cd82014-06-06 17:11:23 -07003085int pcm_ioctl(struct pcm *pcm, int request, ...)
3086{
3087 va_list ap;
3088 void * arg;
3089 int pcm_fd = *(int*)pcm;
3090
3091 va_start(ap, request);
3092 arg = va_arg(ap, void *);
3093 va_end(ap);
3094
3095 return ioctl(pcm_fd, request, arg);
3096}
3097
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003098static struct hw_module_methods_t hal_module_methods = {
3099 .open = adev_open,
3100};
3101
3102struct audio_module HAL_MODULE_INFO_SYM = {
3103 .common = {
3104 .tag = HARDWARE_MODULE_TAG,
3105 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3106 .hal_api_version = HARDWARE_HAL_API_VERSION,
3107 .id = AUDIO_HARDWARE_MODULE_ID,
3108 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003109 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003110 .methods = &hal_module_methods,
3111 },
3112};