blob: 628f7fdbb93642329099526d2581610420262890 [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
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700278int enable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700279 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800280{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700281 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700282 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800283
284 if (usecase == NULL)
285 return -EINVAL;
286
287 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
288
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800289 if (usecase->type == PCM_CAPTURE)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700290 snd_device = usecase->in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800291 else
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700292 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800293
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -0800294#ifdef DS1_DOLBY_DAP_ENABLED
295 audio_extn_dolby_set_dmid(adev);
296 audio_extn_dolby_set_endpoint(adev);
297#endif
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800298 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700299 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700300 ALOGV("%s: apply mixer and update path: %s", __func__, mixer_path);
301 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800302 ALOGV("%s: exit", __func__);
303 return 0;
304}
305
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700306int disable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700307 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800308{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700309 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700310 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800311
312 if (usecase == NULL)
313 return -EINVAL;
314
315 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700316 if (usecase->type == PCM_CAPTURE)
317 snd_device = usecase->in_snd_device;
318 else
319 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800320 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700321 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700322 ALOGV("%s: reset and update mixer path: %s", __func__, mixer_path);
323 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800324 ALOGV("%s: exit", __func__);
325 return 0;
326}
327
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700328int enable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700329 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800330{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700331 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
332
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800333 if (snd_device < SND_DEVICE_MIN ||
334 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800335 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800336 return -EINVAL;
337 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700338
339 adev->snd_dev_ref_cnt[snd_device]++;
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700340
341 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0 ) {
342 ALOGE("%s: Invalid sound device returned", __func__);
343 return -EINVAL;
344 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700345 if (adev->snd_dev_ref_cnt[snd_device] > 1) {
Eric Laurent994a6932013-07-17 11:51:42 -0700346 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700347 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700348 return 0;
349 }
350
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700351 /* start usb playback thread */
352 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
353 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
354 audio_extn_usb_start_playback(adev);
355
356 /* start usb capture thread */
357 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
358 audio_extn_usb_start_capture(adev);
359
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700360 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
361 audio_extn_spkr_prot_is_enabled()) {
362 if (audio_extn_spkr_prot_start_processing(snd_device)) {
363 ALOGE("%s: spkr_start_processing failed", __func__);
364 return -EINVAL;
365 }
366 } else {
367 ALOGV("%s: snd_device(%d: %s)", __func__,
368 snd_device, device_name);
369 if (platform_send_audio_calibration(adev->platform, snd_device) < 0) {
370 adev->snd_dev_ref_cnt[snd_device]--;
371 return -EINVAL;
372 }
Kiran Kandide144c82013-11-20 15:58:32 -0800373 audio_extn_listen_update_status(snd_device,
374 LISTEN_EVENT_SND_DEVICE_BUSY);
375
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700376 audio_route_apply_and_update_path(adev->audio_route, device_name);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800377 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800378 return 0;
379}
380
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700381int disable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700382 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800383{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700384 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
385
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800386 if (snd_device < SND_DEVICE_MIN ||
387 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800388 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800389 return -EINVAL;
390 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700391 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
392 ALOGE("%s: device ref cnt is already 0", __func__);
393 return -EINVAL;
394 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700395
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700396 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700397
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700398 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
399 ALOGE("%s: Invalid sound device returned", __func__);
400 return -EINVAL;
401 }
402
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700403 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Eric Laurent994a6932013-07-17 11:51:42 -0700404 ALOGV("%s: snd_device(%d: %s)", __func__,
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700405 snd_device, device_name);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800406 /* exit usb play back thread */
407 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
408 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
409 audio_extn_usb_stop_playback();
410
411 /* exit usb capture thread */
412 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
Rajshekar Eashwarappa4dfa0752014-10-02 20:18:20 +0530413 audio_extn_usb_stop_capture();
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700414 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
415 audio_extn_spkr_prot_is_enabled()) {
416 audio_extn_spkr_prot_stop_processing();
417 } else
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700418 audio_route_reset_and_update_path(adev->audio_route, device_name);
Kiran Kandide144c82013-11-20 15:58:32 -0800419
420 audio_extn_listen_update_status(snd_device,
421 LISTEN_EVENT_SND_DEVICE_FREE);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700422 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700423
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800424 return 0;
425}
426
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700427static void check_usecases_codec_backend(struct audio_device *adev,
428 struct audio_usecase *uc_info,
429 snd_device_t snd_device)
430{
431 struct listnode *node;
432 struct audio_usecase *usecase;
433 bool switch_device[AUDIO_USECASE_MAX];
434 int i, num_uc_to_switch = 0;
435
436 /*
437 * This function is to make sure that all the usecases that are active on
438 * the hardware codec backend are always routed to any one device that is
439 * handled by the hardware codec.
440 * For example, if low-latency and deep-buffer usecases are currently active
441 * on speaker and out_set_parameters(headset) is received on low-latency
442 * output, then we have to make sure deep-buffer is also switched to headset,
443 * because of the limitation that both the devices cannot be enabled
444 * at the same time as they share the same backend.
445 */
446 /* Disable all the usecases on the shared backend other than the
447 specified usecase */
448 for (i = 0; i < AUDIO_USECASE_MAX; i++)
449 switch_device[i] = false;
450
451 list_for_each(node, &adev->usecase_list) {
452 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800453 if (usecase->type != PCM_CAPTURE &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700454 usecase != uc_info &&
455 usecase->out_snd_device != snd_device &&
456 usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
457 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
458 __func__, use_case_table[usecase->id],
Eric Laurentb23d5282013-05-14 15:27:20 -0700459 platform_get_snd_device_name(usecase->out_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700460 disable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700461 switch_device[usecase->id] = true;
462 num_uc_to_switch++;
463 }
464 }
465
466 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700467 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700468
469 list_for_each(node, &adev->usecase_list) {
470 usecase = node_to_item(node, struct audio_usecase, list);
471 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700472 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700473 }
474 }
475
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700476 list_for_each(node, &adev->usecase_list) {
477 usecase = node_to_item(node, struct audio_usecase, list);
478 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700479 enable_snd_device(adev, snd_device);
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700480 }
481 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700482
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700483 /* Re-route all the usecases on the shared backend other than the
484 specified usecase to new snd devices */
485 list_for_each(node, &adev->usecase_list) {
486 usecase = node_to_item(node, struct audio_usecase, list);
487 /* Update the out_snd_device only before enabling the audio route */
488 if (switch_device[usecase->id] ) {
489 usecase->out_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530490 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
491 enable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700492 }
493 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700494 }
495}
496
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700497static void check_and_route_capture_usecases(struct audio_device *adev,
498 struct audio_usecase *uc_info,
499 snd_device_t snd_device)
500{
501 struct listnode *node;
502 struct audio_usecase *usecase;
503 bool switch_device[AUDIO_USECASE_MAX];
504 int i, num_uc_to_switch = 0;
505
506 /*
507 * This function is to make sure that all the active capture usecases
508 * are always routed to the same input sound device.
509 * For example, if audio-record and voice-call usecases are currently
510 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
511 * is received for voice call then we have to make sure that audio-record
512 * usecase is also switched to earpiece i.e. voice-dmic-ef,
513 * because of the limitation that two devices cannot be enabled
514 * at the same time if they share the same backend.
515 */
516 for (i = 0; i < AUDIO_USECASE_MAX; i++)
517 switch_device[i] = false;
518
519 list_for_each(node, &adev->usecase_list) {
520 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800521 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700522 usecase != uc_info &&
523 usecase->in_snd_device != snd_device) {
524 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
525 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700526 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700527 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700528 switch_device[usecase->id] = true;
529 num_uc_to_switch++;
530 }
531 }
532
533 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700534 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700535
536 list_for_each(node, &adev->usecase_list) {
537 usecase = node_to_item(node, struct audio_usecase, list);
538 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700539 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800540 }
541 }
542
543 list_for_each(node, &adev->usecase_list) {
544 usecase = node_to_item(node, struct audio_usecase, list);
545 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700546 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700547 }
548 }
549
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700550 /* Re-route all the usecases on the shared backend other than the
551 specified usecase to new snd devices */
552 list_for_each(node, &adev->usecase_list) {
553 usecase = node_to_item(node, struct audio_usecase, list);
554 /* Update the in_snd_device only before enabling the audio route */
555 if (switch_device[usecase->id] ) {
556 usecase->in_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530557 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
558 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700559 }
560 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700561 }
562}
563
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800564/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700565static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800566{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700567 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700568 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800569
570 switch (channels) {
571 /*
572 * Do not handle stereo output in Multi-channel cases
573 * Stereo case is handled in normal playback path
574 */
575 case 6:
576 ALOGV("%s: HDMI supports 5.1", __func__);
577 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
578 break;
579 case 8:
580 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
581 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
582 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
583 break;
584 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700585 ALOGE("HDMI does not support multi channel playback");
586 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800587 break;
588 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700589 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800590}
591
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700592static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
593{
594 struct audio_usecase *usecase;
595 struct listnode *node;
596
597 list_for_each(node, &adev->usecase_list) {
598 usecase = node_to_item(node, struct audio_usecase, list);
599 if (usecase->type == VOICE_CALL) {
600 ALOGV("%s: usecase id %d", __func__, usecase->id);
601 return usecase->id;
602 }
603 }
604 return USECASE_INVALID;
605}
606
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700607struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700608 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700609{
610 struct audio_usecase *usecase;
611 struct listnode *node;
612
613 list_for_each(node, &adev->usecase_list) {
614 usecase = node_to_item(node, struct audio_usecase, list);
615 if (usecase->id == uc_id)
616 return usecase;
617 }
618 return NULL;
619}
620
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700621int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800622{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800623 snd_device_t out_snd_device = SND_DEVICE_NONE;
624 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700625 struct audio_usecase *usecase = NULL;
626 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800627 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800628 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800629 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800630 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700631 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800632
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700633 usecase = get_usecase_from_list(adev, uc_id);
634 if (usecase == NULL) {
635 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
636 return -EINVAL;
637 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800638
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800639 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800640 (usecase->type == VOIP_CALL) ||
641 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700642 out_snd_device = platform_get_output_snd_device(adev->platform,
643 usecase->stream.out->devices);
644 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700645 usecase->devices = usecase->stream.out->devices;
646 } else {
647 /*
648 * If the voice call is active, use the sound devices of voice call usecase
649 * so that it would not result any device switch. All the usecases will
650 * be switched to new device when select_devices() is called for voice call
651 * usecase. This is to avoid switching devices for voice call when
652 * check_usecases_codec_backend() is called below.
653 */
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700654 if (voice_is_in_call(adev)) {
655 vc_usecase = get_usecase_from_list(adev,
656 get_voice_usecase_id_from_list(adev));
Helen Zeng067b96b2013-11-26 12:10:29 -0800657 if ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
658 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL)) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700659 in_snd_device = vc_usecase->in_snd_device;
660 out_snd_device = vc_usecase->out_snd_device;
661 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800662 } else if (voice_extn_compress_voip_is_active(adev)) {
663 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Narsinga Rao Chella5856f9b2014-04-11 17:20:46 -0700664 if ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish6a4c3372014-06-25 12:20:37 +0530665 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
666 (voip_usecase->stream.out != adev->primary_output)) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800667 in_snd_device = voip_usecase->in_snd_device;
668 out_snd_device = voip_usecase->out_snd_device;
669 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800670 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800671 hfp_ucid = audio_extn_hfp_get_usecase();
672 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800673 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
674 in_snd_device = hfp_usecase->in_snd_device;
675 out_snd_device = hfp_usecase->out_snd_device;
676 }
Vimal Puthanveed8fa9eab2014-01-07 16:47:47 -0800677 } else if (audio_extn_hfp_is_active(adev)) {
678 hfp_usecase = get_usecase_from_list(adev, USECASE_AUDIO_HFP_SCO);
679 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
680 in_snd_device = hfp_usecase->in_snd_device;
681 out_snd_device = hfp_usecase->out_snd_device;
682 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700683 }
684 if (usecase->type == PCM_PLAYBACK) {
685 usecase->devices = usecase->stream.out->devices;
686 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700687 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700688 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700689 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700690 if (usecase->stream.out == adev->primary_output &&
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530691 adev->active_input ) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700692 select_devices(adev, adev->active_input->usecase);
693 }
694 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700695 } else if (usecase->type == PCM_CAPTURE) {
696 usecase->devices = usecase->stream.in->device;
697 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700698 if (in_snd_device == SND_DEVICE_NONE) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530699 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530700 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 -0700701 adev->primary_output && !adev->primary_output->standby) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530702 out_device = adev->primary_output->devices;
703 } else if(usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
704 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700705 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530706 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700707 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700708 }
709 }
710
711 if (out_snd_device == usecase->out_snd_device &&
712 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800713 return 0;
714 }
715
sangwoobc677242013-08-08 16:53:43 +0900716 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700717 out_snd_device, platform_get_snd_device_name(out_snd_device),
718 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800719
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800720 /*
721 * Limitation: While in call, to do a device switch we need to disable
722 * and enable both RX and TX devices though one of them is same as current
723 * device.
724 */
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800725 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700726 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800727 }
728
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700729 /* Disable current sound devices */
730 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700731 disable_audio_route(adev, usecase);
732 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800733 }
734
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700735 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700736 disable_audio_route(adev, usecase);
737 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800738 }
739
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700740 /* Enable new sound devices */
741 if (out_snd_device != SND_DEVICE_NONE) {
742 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
743 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700744 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800745 }
746
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700747 if (in_snd_device != SND_DEVICE_NONE) {
748 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700749 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700750 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700751
Avinash Vaish8005dc82014-07-24 15:36:33 +0530752 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700753 status = platform_switch_voice_call_device_post(adev->platform,
754 out_snd_device,
755 in_snd_device);
Avinash Vaish8005dc82014-07-24 15:36:33 +0530756 enable_audio_route_for_voice_usecases(adev, usecase);
757 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800758
sangwoo170731f2013-06-08 15:36:36 +0900759 usecase->in_snd_device = in_snd_device;
760 usecase->out_snd_device = out_snd_device;
761
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700762 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900763
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800764 /* Applicable only on the targets that has external modem.
765 * Enable device command should be sent to modem only after
766 * enabling voice call mixer controls
767 */
768 if (usecase->type == VOICE_CALL)
769 status = platform_switch_voice_call_usecase_route_post(adev->platform,
770 out_snd_device,
771 in_snd_device);
772
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530773 ALOGD("%s: done",__func__);
774
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800775 return status;
776}
777
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800778static int stop_input_stream(struct stream_in *in)
779{
780 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800781 struct audio_usecase *uc_info;
782 struct audio_device *adev = in->dev;
783
Eric Laurentc8400632013-02-14 19:04:54 -0800784 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800785
Eric Laurent994a6932013-07-17 11:51:42 -0700786 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700787 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800788 uc_info = get_usecase_from_list(adev, in->usecase);
789 if (uc_info == NULL) {
790 ALOGE("%s: Could not find the usecase (%d) in the list",
791 __func__, in->usecase);
792 return -EINVAL;
793 }
794
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800795 /* Close in-call recording streams */
796 voice_check_and_stop_incall_rec_usecase(adev, in);
797
Eric Laurent150dbfe2013-02-27 14:31:02 -0800798 /* 1. Disable stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700799 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700800
801 /* 2. Disable the tx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700802 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800803
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800804 list_remove(&uc_info->list);
805 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800806
Eric Laurent994a6932013-07-17 11:51:42 -0700807 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800808 return ret;
809}
810
811int start_input_stream(struct stream_in *in)
812{
813 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800814 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800815 struct audio_usecase *uc_info;
816 struct audio_device *adev = in->dev;
817
Mingming Yine62d7842013-10-25 16:26:03 -0700818 in->usecase = platform_update_usecase_from_source(in->source,in->usecase);
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530819 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
820 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700821
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530822 pthread_mutex_lock(&adev->snd_card_status.lock);
823 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state) {
824 ALOGE("%s: sound card is not active/SSR returning error", __func__);
825 ret = -ENETRESET;
826 pthread_mutex_unlock(&adev->snd_card_status.lock);
827 goto error_config;
828 }
829 pthread_mutex_unlock(&adev->snd_card_status.lock);
830
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700831 /* Check if source matches incall recording usecase criteria */
832 ret = voice_check_and_set_incall_rec_usecase(adev, in);
833 if (ret)
834 goto error_config;
835 else
836 ALOGV("%s: usecase(%d)", __func__, in->usecase);
837
Eric Laurentb23d5282013-05-14 15:27:20 -0700838 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800839 if (in->pcm_device_id < 0) {
840 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
841 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800842 ret = -EINVAL;
843 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800844 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700845
846 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800847 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
848 uc_info->id = in->usecase;
849 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800850 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700851 uc_info->devices = in->device;
852 uc_info->in_snd_device = SND_DEVICE_NONE;
853 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800854
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800855 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700856 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800857
Eric Laurentc8400632013-02-14 19:04:54 -0800858 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530859 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
860
861 unsigned int flags = PCM_IN;
862 unsigned int pcm_open_retry_entry_count = 0;
863
864 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
865 flags |= PCM_MMAP | PCM_NOIRQ;
866 pcm_open_retry_entry_count = PROXY_OPEN_RETRY_COUNT;
867 }
868
869 while(1) {
870 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
871 flags, &in->config);
872 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
873 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
874 if (in->pcm != NULL) {
875 pcm_close(in->pcm);
876 in->pcm = NULL;
877 }
878 if (pcm_open_retry_entry_count-- == 0) {
879 ret = -EIO;
880 goto error_open;
881 }
882 usleep(PROXY_OPEN_WAIT_TIME * 1000);
883 continue;
884 }
885 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800886 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530887 in->pcm_error_type = PCM_ERROR_NONE;
888
Eric Laurent994a6932013-07-17 11:51:42 -0700889 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800890 return ret;
891
892error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800893 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800894
895error_config:
896 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700897 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800898
899 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800900}
901
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700902/* must be called with out->lock locked */
903static int send_offload_cmd_l(struct stream_out* out, int command)
904{
905 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
906
907 ALOGVV("%s %d", __func__, command);
908
909 cmd->cmd = command;
910 list_add_tail(&out->offload_cmd_list, &cmd->node);
911 pthread_cond_signal(&out->offload_cond);
912 return 0;
913}
914
915/* must be called iwth out->lock locked */
916static void stop_compressed_output_l(struct stream_out *out)
917{
918 out->offload_state = OFFLOAD_STATE_IDLE;
919 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700920 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700921 if (out->compr != NULL) {
922 compress_stop(out->compr);
923 while (out->offload_thread_blocked) {
924 pthread_cond_wait(&out->cond, &out->lock);
925 }
926 }
927}
928
929static void *offload_thread_loop(void *context)
930{
931 struct stream_out *out = (struct stream_out *) context;
932 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800933 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700934
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700935 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
936 set_sched_policy(0, SP_FOREGROUND);
937 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
938
939 ALOGV("%s", __func__);
940 pthread_mutex_lock(&out->lock);
941 for (;;) {
942 struct offload_cmd *cmd = NULL;
943 stream_callback_event_t event;
944 bool send_callback = false;
945
946 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
947 __func__, list_empty(&out->offload_cmd_list),
948 out->offload_state);
949 if (list_empty(&out->offload_cmd_list)) {
950 ALOGV("%s SLEEPING", __func__);
951 pthread_cond_wait(&out->offload_cond, &out->lock);
952 ALOGV("%s RUNNING", __func__);
953 continue;
954 }
955
956 item = list_head(&out->offload_cmd_list);
957 cmd = node_to_item(item, struct offload_cmd, node);
958 list_remove(item);
959
960 ALOGVV("%s STATE %d CMD %d out->compr %p",
961 __func__, out->offload_state, cmd->cmd, out->compr);
962
963 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
964 free(cmd);
965 break;
966 }
967
968 if (out->compr == NULL) {
969 ALOGE("%s: Compress handle is NULL", __func__);
970 pthread_cond_signal(&out->cond);
971 continue;
972 }
973 out->offload_thread_blocked = true;
974 pthread_mutex_unlock(&out->lock);
975 send_callback = false;
976 switch(cmd->cmd) {
977 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
978 compress_wait(out->compr, -1);
979 send_callback = true;
980 event = STREAM_CBK_EVENT_WRITE_READY;
981 break;
982 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800983 ret = compress_next_track(out->compr);
984 if(ret == 0)
985 compress_partial_drain(out->compr);
986 else if(ret == -ETIMEDOUT)
987 compress_drain(out->compr);
988 else
989 ALOGE("%s: Next track returned error %d",__func__, ret);
990
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700991 send_callback = true;
992 event = STREAM_CBK_EVENT_DRAIN_READY;
993 break;
994 case OFFLOAD_CMD_DRAIN:
995 compress_drain(out->compr);
996 send_callback = true;
997 event = STREAM_CBK_EVENT_DRAIN_READY;
998 break;
999 default:
1000 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1001 break;
1002 }
1003 pthread_mutex_lock(&out->lock);
1004 out->offload_thread_blocked = false;
1005 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001006 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001007 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001008 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001009 free(cmd);
1010 }
1011
1012 pthread_cond_signal(&out->cond);
1013 while (!list_empty(&out->offload_cmd_list)) {
1014 item = list_head(&out->offload_cmd_list);
1015 list_remove(item);
1016 free(node_to_item(item, struct offload_cmd, node));
1017 }
1018 pthread_mutex_unlock(&out->lock);
1019
1020 return NULL;
1021}
1022
1023static int create_offload_callback_thread(struct stream_out *out)
1024{
1025 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1026 list_init(&out->offload_cmd_list);
1027 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1028 offload_thread_loop, out);
1029 return 0;
1030}
1031
1032static int destroy_offload_callback_thread(struct stream_out *out)
1033{
1034 pthread_mutex_lock(&out->lock);
1035 stop_compressed_output_l(out);
1036 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1037
1038 pthread_mutex_unlock(&out->lock);
1039 pthread_join(out->offload_thread, (void **) NULL);
1040 pthread_cond_destroy(&out->offload_cond);
1041
1042 return 0;
1043}
1044
Eric Laurent07eeafd2013-10-06 12:52:49 -07001045static bool allow_hdmi_channel_config(struct audio_device *adev)
1046{
1047 struct listnode *node;
1048 struct audio_usecase *usecase;
1049 bool ret = true;
1050
1051 list_for_each(node, &adev->usecase_list) {
1052 usecase = node_to_item(node, struct audio_usecase, list);
1053 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1054 /*
1055 * If voice call is already existing, do not proceed further to avoid
1056 * disabling/enabling both RX and TX devices, CSD calls, etc.
1057 * Once the voice call done, the HDMI channels can be configured to
1058 * max channels of remaining use cases.
1059 */
1060 if (usecase->id == USECASE_VOICE_CALL) {
1061 ALOGD("%s: voice call is active, no change in HDMI channels",
1062 __func__);
1063 ret = false;
1064 break;
1065 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1066 ALOGD("%s: multi channel playback is active, "
1067 "no change in HDMI channels", __func__);
1068 ret = false;
1069 break;
Mingming Yin3ed162b2014-02-24 17:56:01 -08001070 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_OFFLOAD &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301071 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001072 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1073 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1074 ret = false;
1075 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001076 }
1077 }
1078 }
1079 return ret;
1080}
1081
1082static int check_and_set_hdmi_channels(struct audio_device *adev,
1083 unsigned int channels)
1084{
1085 struct listnode *node;
1086 struct audio_usecase *usecase;
1087
1088 /* Check if change in HDMI channel config is allowed */
1089 if (!allow_hdmi_channel_config(adev))
1090 return 0;
1091
1092 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001093 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001094 return 0;
1095 }
1096
1097 platform_set_hdmi_channels(adev->platform, channels);
1098 adev->cur_hdmi_channels = channels;
1099
1100 /*
1101 * Deroute all the playback streams routed to HDMI so that
1102 * the back end is deactivated. Note that backend will not
1103 * be deactivated if any one stream is connected to it.
1104 */
1105 list_for_each(node, &adev->usecase_list) {
1106 usecase = node_to_item(node, struct audio_usecase, list);
1107 if (usecase->type == PCM_PLAYBACK &&
1108 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001109 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001110 }
1111 }
1112
1113 /*
1114 * Enable all the streams disabled above. Now the HDMI backend
1115 * will be activated with new channel configuration
1116 */
1117 list_for_each(node, &adev->usecase_list) {
1118 usecase = node_to_item(node, struct audio_usecase, list);
1119 if (usecase->type == PCM_PLAYBACK &&
1120 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001121 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001122 }
1123 }
1124
1125 return 0;
1126}
1127
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001128static int stop_output_stream(struct stream_out *out)
1129{
1130 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001131 struct audio_usecase *uc_info;
1132 struct audio_device *adev = out->dev;
1133
Eric Laurent994a6932013-07-17 11:51:42 -07001134 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001135 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001136 uc_info = get_usecase_from_list(adev, out->usecase);
1137 if (uc_info == NULL) {
1138 ALOGE("%s: Could not find the usecase (%d) in the list",
1139 __func__, out->usecase);
1140 return -EINVAL;
1141 }
1142
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001143 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1144 if (adev->visualizer_stop_output != NULL)
1145 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1146 if (adev->offload_effects_stop_output != NULL)
1147 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1148 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001149
Eric Laurent150dbfe2013-02-27 14:31:02 -08001150 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001151 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001152
1153 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001154 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001155
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001156 list_remove(&uc_info->list);
1157 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001158
Eric Laurent07eeafd2013-10-06 12:52:49 -07001159 /* Must be called after removing the usecase from list */
1160 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1161 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1162
Eric Laurent994a6932013-07-17 11:51:42 -07001163 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001164 return ret;
1165}
1166
1167int start_output_stream(struct stream_out *out)
1168{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001169 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001170 int sink_channels = 0;
1171 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001172 struct audio_usecase *uc_info;
1173 struct audio_device *adev = out->dev;
1174
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301175 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1176 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1177 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301178
1179 pthread_mutex_lock(&adev->snd_card_status.lock);
1180 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state) {
1181 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1182 ret = -ENETRESET;
1183 pthread_mutex_unlock(&adev->snd_card_status.lock);
1184 goto error_config;
1185 }
1186 pthread_mutex_unlock(&adev->snd_card_status.lock);
1187
Eric Laurentb23d5282013-05-14 15:27:20 -07001188 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001189 if (out->pcm_device_id < 0) {
1190 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1191 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001192 ret = -EINVAL;
1193 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001194 }
1195
1196 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1197 uc_info->id = out->usecase;
1198 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001199 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001200 uc_info->devices = out->devices;
1201 uc_info->in_snd_device = SND_DEVICE_NONE;
1202 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001203
Eric Laurent07eeafd2013-10-06 12:52:49 -07001204 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001205 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001206 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1207 if (!strncmp("true", prop_value, 4)) {
1208 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1209 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1210 check_and_set_hdmi_channels(adev, sink_channels);
1211 } else {
1212 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1213 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1214 else
1215 check_and_set_hdmi_channels(adev, out->config.channels);
1216 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001217 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001218
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001219 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001220
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001221 select_devices(adev, out->usecase);
1222
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001223 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1224 __func__, 0, out->pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001225 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301226 unsigned int flags = PCM_OUT;
1227 unsigned int pcm_open_retry_count = 0;
1228 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1229 flags |= PCM_MMAP | PCM_NOIRQ;
1230 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1231 } else
1232 flags |= PCM_MONOTONIC;
1233
1234 while (1) {
1235 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1236 flags, &out->config);
1237 if (out->pcm && !pcm_is_ready(out->pcm)) {
1238 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1239 if (out->pcm != NULL) {
1240 pcm_close(out->pcm);
1241 out->pcm = NULL;
1242 }
1243 if (pcm_open_retry_count-- == 0) {
1244 ret = -EIO;
1245 goto error_open;
1246 }
1247 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1248 continue;
1249 }
1250 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001251 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301252 out->pcm_error_type = PCM_ERROR_NONE;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001253 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001254 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001255 out->compr = compress_open(adev->snd_card,
1256 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001257 COMPRESS_IN, &out->compr_config);
1258 if (out->compr && !is_compress_ready(out->compr)) {
1259 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1260 compress_close(out->compr);
1261 out->compr = NULL;
1262 ret = -EIO;
1263 goto error_open;
1264 }
1265 if (out->offload_callback)
1266 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001267
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001268#ifdef DS1_DOLBY_DDP_ENABLED
1269 if (audio_extn_is_dolby_format(out->format))
1270 audio_extn_dolby_send_ddp_endp_params(adev);
1271#endif
1272
Eric Laurentc4aef752013-09-12 17:45:53 -07001273 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001274 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1275 if (adev->offload_effects_start_output != NULL)
1276 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001277 }
Eric Laurent994a6932013-07-17 11:51:42 -07001278 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001279 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001280error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001281 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001282error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001283 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001284}
1285
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001286static int check_input_parameters(uint32_t sample_rate,
1287 audio_format_t format,
1288 int channel_count)
1289{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001290 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001291
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001292 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001293 !voice_extn_compress_voip_is_format_supported(format) &&
1294 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001295
1296 switch (channel_count) {
1297 case 1:
1298 case 2:
1299 case 6:
1300 break;
1301 default:
1302 ret = -EINVAL;
1303 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001304
1305 switch (sample_rate) {
1306 case 8000:
1307 case 11025:
1308 case 12000:
1309 case 16000:
1310 case 22050:
1311 case 24000:
1312 case 32000:
1313 case 44100:
1314 case 48000:
1315 break;
1316 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001317 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001318 }
1319
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001320 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001321}
1322
1323static size_t get_input_buffer_size(uint32_t sample_rate,
1324 audio_format_t format,
1325 int channel_count)
1326{
1327 size_t size = 0;
1328
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001329 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1330 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001331
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001332 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1333 /* ToDo: should use frame_size computed based on the format and
1334 channel_count here. */
1335 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001336
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001337 /* make sure the size is multiple of 64 */
1338 size += 0x3f;
1339 size &= ~0x3f;
1340
1341 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001342}
1343
1344static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1345{
1346 struct stream_out *out = (struct stream_out *)stream;
1347
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001348 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001349}
1350
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301351static int out_set_sample_rate(struct audio_stream *stream __unused,
1352 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001353{
1354 return -ENOSYS;
1355}
1356
1357static size_t out_get_buffer_size(const struct audio_stream *stream)
1358{
1359 struct stream_out *out = (struct stream_out *)stream;
1360
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001361 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001362 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001363 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1364 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001365
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301366 return out->config.period_size *
1367 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001368}
1369
1370static uint32_t out_get_channels(const struct audio_stream *stream)
1371{
1372 struct stream_out *out = (struct stream_out *)stream;
1373
1374 return out->channel_mask;
1375}
1376
1377static audio_format_t out_get_format(const struct audio_stream *stream)
1378{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001379 struct stream_out *out = (struct stream_out *)stream;
1380
1381 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001382}
1383
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301384static int out_set_format(struct audio_stream *stream __unused,
1385 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001386{
1387 return -ENOSYS;
1388}
1389
1390static int out_standby(struct audio_stream *stream)
1391{
1392 struct stream_out *out = (struct stream_out *)stream;
1393 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001394
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301395 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1396 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001397 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1398 /* Ignore standby in case of voip call because the voip output
1399 * stream is closed in adev_close_output_stream()
1400 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301401 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001402 return 0;
1403 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001404
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001405 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001406 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001407 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001408 out->standby = true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001409 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1410 if (out->pcm) {
1411 pcm_close(out->pcm);
1412 out->pcm = NULL;
1413 }
1414 } else {
1415 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001416 out->gapless_mdata.encoder_delay = 0;
1417 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001418 if (out->compr != NULL) {
1419 compress_close(out->compr);
1420 out->compr = NULL;
1421 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001422 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001423 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001424 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001425 }
1426 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001427 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001428 return 0;
1429}
1430
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301431static int out_dump(const struct audio_stream *stream __unused,
1432 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001433{
1434 return 0;
1435}
1436
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001437static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1438{
1439 int ret = 0;
1440 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001441 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001442 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001443 tmp_mdata.encoder_delay = 0;
1444 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001445
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001446 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001447 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001448 return -EINVAL;
1449 }
1450
Mingming Yinee733602014-04-03 17:47:22 -07001451#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001452 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1453 if (ret >= 0) {
1454 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1455 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1456 ALOGV("ADTS format is set in offload mode");
1457 }
1458 out->send_new_metadata = 1;
1459 }
Mingming Yinee733602014-04-03 17:47:22 -07001460#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001461
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001462 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1463 if(ret >= 0)
1464 is_meta_data_params = true;
1465 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1466 if(ret >= 0 )
1467 is_meta_data_params = true;
1468 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1469 if(ret >= 0 )
1470 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001471 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1472 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001473 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001474 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001475 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001476 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1477 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001478 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001479 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001480 }
1481
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001482 if(!is_meta_data_params) {
1483 ALOGV("%s: Not gapless meta data params", __func__);
1484 return 0;
1485 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001486 out->gapless_mdata = tmp_mdata;
1487 out->send_new_metadata = 1;
1488 ALOGV("%s new encoder delay %u and padding %u", __func__,
1489 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1490
1491 return 0;
1492}
1493
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301494static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1495{
1496 return out == adev->primary_output || out == adev->voice_tx_output;
1497}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001498
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001499static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1500{
1501 struct stream_out *out = (struct stream_out *)stream;
1502 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001503 struct audio_usecase *usecase;
1504 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001505 struct str_parms *parms;
1506 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001507 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001508 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001509
sangwoobc677242013-08-08 16:53:43 +09001510 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001511 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001512 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001513 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1514 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001515 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001516 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001517 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001518
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001519 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301520 * When HDMI cable is unplugged/usb hs is disconnected the
1521 * music playback is paused and the policy manager sends routing=0
1522 * But the audioflingercontinues to write data until standby time
1523 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001524 * Avoid this by routing audio to speaker until standby.
1525 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301526 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
1527 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001528 val == AUDIO_DEVICE_NONE) {
1529 val = AUDIO_DEVICE_OUT_SPEAKER;
1530 }
1531
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301532 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1533 voice_is_in_call(adev) &&
1534 output_drives_call(adev, out)) {
1535 ret = voice_stop_call(adev);
1536 adev->current_call_output = NULL;
1537 }
1538
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001539 /*
1540 * select_devices() call below switches all the usecases on the same
1541 * backend to the new device. Refer to check_usecases_codec_backend() in
1542 * the select_devices(). But how do we undo this?
1543 *
1544 * For example, music playback is active on headset (deep-buffer usecase)
1545 * and if we go to ringtones and select a ringtone, low-latency usecase
1546 * will be started on headset+speaker. As we can't enable headset+speaker
1547 * and headset devices at the same time, select_devices() switches the music
1548 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1549 * So when the ringtone playback is completed, how do we undo the same?
1550 *
1551 * We are relying on the out_set_parameters() call on deep-buffer output,
1552 * once the ringtone playback is ended.
1553 * NOTE: We should not check if the current devices are same as new devices.
1554 * Because select_devices() must be called to switch back the music
1555 * playback to headset.
1556 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001557 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001558 out->devices = val;
1559
1560 if (!out->standby)
1561 select_devices(adev, out->usecase);
1562
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001563 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301564 output_drives_call(adev, out)) {
1565 adev->current_call_output = out;
1566 if (!voice_is_in_call(adev))
1567 ret = voice_start_call(adev);
1568 else
1569 voice_update_devices_for_all_voice_usecases(adev);
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001570 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001571
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001572 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001573
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001574 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001575 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001576 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001577
1578 if (out == adev->primary_output) {
1579 pthread_mutex_lock(&adev->lock);
1580 audio_extn_set_parameters(adev, parms);
1581 pthread_mutex_unlock(&adev->lock);
1582 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001583 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001584 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001585 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001586 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001587 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001588
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001589 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001590 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001591 return ret;
1592}
1593
1594static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1595{
1596 struct stream_out *out = (struct stream_out *)stream;
1597 struct str_parms *query = str_parms_create_str(keys);
1598 char *str;
1599 char value[256];
1600 struct str_parms *reply = str_parms_create();
1601 size_t i, j;
1602 int ret;
1603 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001604 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001605 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1606 if (ret >= 0) {
1607 value[0] = '\0';
1608 i = 0;
1609 while (out->supported_channel_masks[i] != 0) {
1610 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1611 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1612 if (!first) {
1613 strcat(value, "|");
1614 }
1615 strcat(value, out_channels_name_to_enum_table[j].name);
1616 first = false;
1617 break;
1618 }
1619 }
1620 i++;
1621 }
1622 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1623 str = str_parms_to_str(reply);
1624 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001625 voice_extn_out_get_parameters(out, query, reply);
1626 str = str_parms_to_str(reply);
1627 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001628 free(str);
1629 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001630 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001631 }
1632 str_parms_destroy(query);
1633 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001634 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001635 return str;
1636}
1637
1638static uint32_t out_get_latency(const struct audio_stream_out *stream)
1639{
1640 struct stream_out *out = (struct stream_out *)stream;
1641
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001642 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1643 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1644
1645 return (out->config.period_count * out->config.period_size * 1000) /
1646 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001647}
1648
1649static int out_set_volume(struct audio_stream_out *stream, float left,
1650 float right)
1651{
Eric Laurenta9024de2013-04-04 09:19:12 -07001652 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001653 int volume[2];
1654
Eric Laurenta9024de2013-04-04 09:19:12 -07001655 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1656 /* only take left channel into account: the API is for stereo anyway */
1657 out->muted = (left == 0.0f);
1658 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001659 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001660 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001661 struct audio_device *adev = out->dev;
1662 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001663 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1664 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001665
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001666 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1667 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001668 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1669 if (!ctl) {
1670 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1671 __func__, mixer_ctl_name);
1672 return -EINVAL;
1673 }
1674 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1675 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1676 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1677 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001678 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001679
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001680 return -ENOSYS;
1681}
1682
1683static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1684 size_t bytes)
1685{
1686 struct stream_out *out = (struct stream_out *)stream;
1687 struct audio_device *adev = out->dev;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301688 int scard_state = SND_CARD_STATE_ONLINE;
Eric Laurent6e895242013-09-05 16:10:57 -07001689 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001690
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001691 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301692 pthread_mutex_lock(&adev->snd_card_status.lock);
1693 scard_state = adev->snd_card_status.state;
1694 pthread_mutex_unlock(&adev->snd_card_status.lock);
1695
1696 if (out->pcm) {
1697 if (SND_CARD_STATE_OFFLINE == scard_state) {
1698 ALOGD(" %s: sound card is not active/SSR state", __func__);
1699 ret= -ENETRESET;
1700 goto exit;
1701 } else if (PCM_ERROR_ENETRESET == out->pcm_error_type) {
1702 ALOGD(" %s restarting pcm session on post SSR", __func__);
1703 out->standby = false;
1704 pthread_mutex_unlock(&out->lock);
1705 out_standby(&out->stream.common);
1706 pthread_mutex_lock(&out->lock);
1707 }
1708 }
1709
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001710 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001711 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001712 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001713 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1714 ret = voice_extn_compress_voip_start_output_stream(out);
1715 else
1716 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001717 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001718 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001719 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001720 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001721 goto exit;
1722 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001723 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001724
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001725 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001726 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1727 if (out->send_new_metadata) {
1728 ALOGVV("send new gapless metadata");
1729 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1730 out->send_new_metadata = 0;
1731 }
1732
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001733 ret = compress_write(out->compr, buffer, bytes);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001734 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001735 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001736 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
1737 }
1738 if (!out->playback_started) {
1739 compress_start(out->compr);
1740 out->playback_started = 1;
1741 out->offload_state = OFFLOAD_STATE_PLAYING;
1742 }
1743 pthread_mutex_unlock(&out->lock);
1744 return ret;
1745 } else {
1746 if (out->pcm) {
1747 if (out->muted)
1748 memset((void *)buffer, 0, bytes);
1749 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301750 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1751 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1752 else
1753 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001754 if (ret == 0)
1755 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001756 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001757 }
1758
1759exit:
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301760
1761 if (-ENETRESET == ret) {
1762 pthread_mutex_lock(&adev->snd_card_status.lock);
1763 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
1764 out->pcm_error_type = PCM_ERROR_ENETRESET;
1765 out->standby = true; /*standby will be called on post SSR */
1766 pthread_mutex_unlock(&adev->snd_card_status.lock);
1767 }
1768
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001769 pthread_mutex_unlock(&out->lock);
1770
1771 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001772 if (out->pcm)
1773 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001774 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301775 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1776 out_get_sample_rate(&out->stream.common));
1777
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001778 }
1779 return bytes;
1780}
1781
1782static int out_get_render_position(const struct audio_stream_out *stream,
1783 uint32_t *dsp_frames)
1784{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001785 struct stream_out *out = (struct stream_out *)stream;
1786 *dsp_frames = 0;
1787 if ((out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) && (dsp_frames != NULL)) {
1788 pthread_mutex_lock(&out->lock);
1789 if (out->compr != NULL) {
1790 compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
1791 &out->sample_rate);
1792 ALOGVV("%s rendered frames %d sample_rate %d",
1793 __func__, *dsp_frames, out->sample_rate);
1794 }
1795 pthread_mutex_unlock(&out->lock);
1796 return 0;
1797 } else
1798 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001799}
1800
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301801static int out_add_audio_effect(const struct audio_stream *stream __unused,
1802 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001803{
1804 return 0;
1805}
1806
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301807static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1808 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001809{
1810 return 0;
1811}
1812
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301813static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1814 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001815{
1816 return -EINVAL;
1817}
1818
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001819static int out_get_presentation_position(const struct audio_stream_out *stream,
1820 uint64_t *frames, struct timespec *timestamp)
1821{
1822 struct stream_out *out = (struct stream_out *)stream;
1823 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001824 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001825
1826 pthread_mutex_lock(&out->lock);
1827
Eric Laurent949a0892013-09-20 09:20:13 -07001828 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1829 if (out->compr != NULL) {
1830 compress_get_tstamp(out->compr, &dsp_frames,
1831 &out->sample_rate);
1832 ALOGVV("%s rendered frames %ld sample_rate %d",
1833 __func__, dsp_frames, out->sample_rate);
1834 *frames = dsp_frames;
1835 ret = 0;
1836 /* this is the best we can do */
1837 clock_gettime(CLOCK_MONOTONIC, timestamp);
1838 }
1839 } else {
1840 if (out->pcm) {
1841 size_t avail;
1842 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
1843 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07001844 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001845 // This adjustment accounts for buffering after app processor.
1846 // It is based on estimated DSP latency per use case, rather than exact.
1847 signed_frames -=
1848 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
1849
Eric Laurent949a0892013-09-20 09:20:13 -07001850 // It would be unusual for this value to be negative, but check just in case ...
1851 if (signed_frames >= 0) {
1852 *frames = signed_frames;
1853 ret = 0;
1854 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001855 }
1856 }
1857 }
1858
1859 pthread_mutex_unlock(&out->lock);
1860
1861 return ret;
1862}
1863
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001864static int out_set_callback(struct audio_stream_out *stream,
1865 stream_callback_t callback, void *cookie)
1866{
1867 struct stream_out *out = (struct stream_out *)stream;
1868
1869 ALOGV("%s", __func__);
1870 pthread_mutex_lock(&out->lock);
1871 out->offload_callback = callback;
1872 out->offload_cookie = cookie;
1873 pthread_mutex_unlock(&out->lock);
1874 return 0;
1875}
1876
1877static int out_pause(struct audio_stream_out* stream)
1878{
1879 struct stream_out *out = (struct stream_out *)stream;
1880 int status = -ENOSYS;
1881 ALOGV("%s", __func__);
1882 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1883 pthread_mutex_lock(&out->lock);
1884 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
1885 status = compress_pause(out->compr);
1886 out->offload_state = OFFLOAD_STATE_PAUSED;
1887 }
1888 pthread_mutex_unlock(&out->lock);
1889 }
1890 return status;
1891}
1892
1893static int out_resume(struct audio_stream_out* stream)
1894{
1895 struct stream_out *out = (struct stream_out *)stream;
1896 int status = -ENOSYS;
1897 ALOGV("%s", __func__);
1898 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1899 status = 0;
1900 pthread_mutex_lock(&out->lock);
1901 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
1902 status = compress_resume(out->compr);
1903 out->offload_state = OFFLOAD_STATE_PLAYING;
1904 }
1905 pthread_mutex_unlock(&out->lock);
1906 }
1907 return status;
1908}
1909
1910static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
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 (type == AUDIO_DRAIN_EARLY_NOTIFY)
1918 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
1919 else
1920 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
1921 pthread_mutex_unlock(&out->lock);
1922 }
1923 return status;
1924}
1925
1926static int out_flush(struct audio_stream_out* stream)
1927{
1928 struct stream_out *out = (struct stream_out *)stream;
1929 ALOGV("%s", __func__);
1930 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1931 pthread_mutex_lock(&out->lock);
1932 stop_compressed_output_l(out);
1933 pthread_mutex_unlock(&out->lock);
1934 return 0;
1935 }
1936 return -ENOSYS;
1937}
1938
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001939/** audio_stream_in implementation **/
1940static uint32_t in_get_sample_rate(const struct audio_stream *stream)
1941{
1942 struct stream_in *in = (struct stream_in *)stream;
1943
1944 return in->config.rate;
1945}
1946
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301947static int in_set_sample_rate(struct audio_stream *stream __unused,
1948 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001949{
1950 return -ENOSYS;
1951}
1952
1953static size_t in_get_buffer_size(const struct audio_stream *stream)
1954{
1955 struct stream_in *in = (struct stream_in *)stream;
1956
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001957 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
1958 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07001959 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
1960 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001961
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301962 return in->config.period_size *
1963 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001964}
1965
1966static uint32_t in_get_channels(const struct audio_stream *stream)
1967{
1968 struct stream_in *in = (struct stream_in *)stream;
1969
1970 return in->channel_mask;
1971}
1972
1973static audio_format_t in_get_format(const struct audio_stream *stream)
1974{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001975 struct stream_in *in = (struct stream_in *)stream;
1976
1977 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001978}
1979
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301980static int in_set_format(struct audio_stream *stream __unused,
1981 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001982{
1983 return -ENOSYS;
1984}
1985
1986static int in_standby(struct audio_stream *stream)
1987{
1988 struct stream_in *in = (struct stream_in *)stream;
1989 struct audio_device *adev = in->dev;
1990 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301991 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1992 stream, in->usecase, use_case_table[in->usecase]);
1993
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001994
1995 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
1996 /* Ignore standby in case of voip call because the voip input
1997 * stream is closed in adev_close_input_stream()
1998 */
1999 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2000 return status;
2001 }
2002
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002003 pthread_mutex_lock(&in->lock);
2004 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002005 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002006 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002007 if (in->pcm) {
2008 pcm_close(in->pcm);
2009 in->pcm = NULL;
2010 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002011 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002012 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002013 }
2014 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002015 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002016 return status;
2017}
2018
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302019static int in_dump(const struct audio_stream *stream __unused,
2020 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002021{
2022 return 0;
2023}
2024
2025static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2026{
2027 struct stream_in *in = (struct stream_in *)stream;
2028 struct audio_device *adev = in->dev;
2029 struct str_parms *parms;
2030 char *str;
2031 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002032 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002033
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302034 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002035 parms = str_parms_create_str(kvpairs);
2036
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002037 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002038 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002039
2040 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2041 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002042 val = atoi(value);
2043 /* no audio source uses val == 0 */
2044 if ((in->source != val) && (val != 0)) {
2045 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002046 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2047 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2048 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2049 (in->config.rate == 8000 || in->config.rate == 16000) &&
2050 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002051 err = voice_extn_compress_voip_open_input_stream(in);
2052 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002053 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002054 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002055 }
2056 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002057 }
2058 }
2059
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002060 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2061 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002062 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302063 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002064 in->device = val;
2065 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002066 if (!in->standby)
2067 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002068 }
2069 }
2070
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002071done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002072 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002073 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002074
2075 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002076 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002077 return ret;
2078}
2079
2080static char* in_get_parameters(const struct audio_stream *stream,
2081 const char *keys)
2082{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002083 struct stream_in *in = (struct stream_in *)stream;
2084 struct str_parms *query = str_parms_create_str(keys);
2085 char *str;
2086 char value[256];
2087 struct str_parms *reply = str_parms_create();
2088 ALOGV("%s: enter: keys - %s", __func__, keys);
2089
2090 voice_extn_in_get_parameters(in, query, reply);
2091
2092 str = str_parms_to_str(reply);
2093 str_parms_destroy(query);
2094 str_parms_destroy(reply);
2095
2096 ALOGV("%s: exit: returns - %s", __func__, str);
2097 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002098}
2099
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302100static int in_set_gain(struct audio_stream_in *stream __unused,
2101 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002102{
2103 return 0;
2104}
2105
2106static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2107 size_t bytes)
2108{
2109 struct stream_in *in = (struct stream_in *)stream;
2110 struct audio_device *adev = in->dev;
2111 int i, ret = -1;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302112 int scard_state = SND_CARD_STATE_ONLINE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002113
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002114 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302115 pthread_mutex_lock(&adev->snd_card_status.lock);
2116 scard_state = adev->snd_card_status.state;
2117 pthread_mutex_unlock(&adev->snd_card_status.lock);
2118
2119 if (in->pcm) {
2120 if(SND_CARD_STATE_OFFLINE == scard_state) {
2121 ALOGD(" %s: sound card is not active/SSR state", __func__);
2122 ret= -ENETRESET;
2123 goto exit;
2124 } else if (PCM_ERROR_ENETRESET == in->pcm_error_type) {
2125 ALOGD(" %s restarting pcm session on post SSR", __func__);
2126 in->standby = false;
2127 pthread_mutex_unlock(&in->lock);
2128 in_standby(&in->stream.common);
2129 pthread_mutex_lock(&in->lock);
2130 }
2131 }
2132
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002133 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002134 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002135 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2136 ret = voice_extn_compress_voip_start_input_stream(in);
2137 else
2138 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002139 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002140 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002141 goto exit;
2142 }
2143 in->standby = 0;
2144 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002145
2146 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302147 if (audio_extn_ssr_get_enabled() &&
2148 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002149 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002150 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2151 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302152 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2153 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002154 else
2155 ret = pcm_read(in->pcm, buffer, bytes);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002156 }
2157
2158 /*
2159 * Instead of writing zeroes here, we could trust the hardware
2160 * to always provide zeroes when muted.
2161 */
kunleiza1a9ee02014-04-24 18:46:22 +08002162 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002163 memset(buffer, 0, bytes);
2164
2165exit:
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302166
2167 if (-ENETRESET == ret) {
2168 pthread_mutex_lock(&adev->snd_card_status.lock);
2169 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
2170 in->pcm_error_type = PCM_ERROR_ENETRESET;
2171 memset(buffer, 0, bytes);
2172 in->standby = true; /*standby will be called on post SSR */
2173 pthread_mutex_unlock(&adev->snd_card_status.lock);
2174 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002175 pthread_mutex_unlock(&in->lock);
2176
2177 if (ret != 0) {
2178 in_standby(&in->stream.common);
2179 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302180 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2181 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002182 }
2183 return bytes;
2184}
2185
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302186static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002187{
2188 return 0;
2189}
2190
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002191static int add_remove_audio_effect(const struct audio_stream *stream,
2192 effect_handle_t effect,
2193 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002194{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002195 struct stream_in *in = (struct stream_in *)stream;
2196 int status = 0;
2197 effect_descriptor_t desc;
2198
2199 status = (*effect)->get_descriptor(effect, &desc);
2200 if (status != 0)
2201 return status;
2202
2203 pthread_mutex_lock(&in->lock);
2204 pthread_mutex_lock(&in->dev->lock);
2205 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2206 in->enable_aec != enable &&
2207 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2208 in->enable_aec = enable;
2209 if (!in->standby)
2210 select_devices(in->dev, in->usecase);
2211 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002212 if (in->enable_ns != enable &&
2213 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2214 in->enable_ns = enable;
2215 if (!in->standby)
2216 select_devices(in->dev, in->usecase);
2217 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002218 pthread_mutex_unlock(&in->dev->lock);
2219 pthread_mutex_unlock(&in->lock);
2220
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002221 return 0;
2222}
2223
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002224static int in_add_audio_effect(const struct audio_stream *stream,
2225 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002226{
Eric Laurent994a6932013-07-17 11:51:42 -07002227 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002228 return add_remove_audio_effect(stream, effect, true);
2229}
2230
2231static int in_remove_audio_effect(const struct audio_stream *stream,
2232 effect_handle_t effect)
2233{
Eric Laurent994a6932013-07-17 11:51:42 -07002234 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002235 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002236}
2237
2238static int adev_open_output_stream(struct audio_hw_device *dev,
2239 audio_io_handle_t handle,
2240 audio_devices_t devices,
2241 audio_output_flags_t flags,
2242 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302243 struct audio_stream_out **stream_out,
2244 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002245{
2246 struct audio_device *adev = (struct audio_device *)dev;
2247 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002248 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002249
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002250 *stream_out = NULL;
2251 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2252
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302253 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2254 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2255 devices, flags, &out->stream);
2256
2257
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002258 if (!out) {
2259 return -ENOMEM;
2260 }
2261
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002262 if (devices == AUDIO_DEVICE_NONE)
2263 devices = AUDIO_DEVICE_OUT_SPEAKER;
2264
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002265 out->flags = flags;
2266 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002267 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002268 out->format = config->format;
2269 out->sample_rate = config->sample_rate;
2270 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2271 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002272 out->handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002273
2274 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002275 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002276 (
2277#ifdef AFE_PROXY_ENABLED
2278 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2279#endif
2280 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002281
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002282 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002283 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2284 ret = read_hdmi_channel_masks(out);
2285
Mingming Yinee733602014-04-03 17:47:22 -07002286#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002287 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2288 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002289#endif
2290
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002291 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002292 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002293 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002294
2295 if (config->sample_rate == 0)
2296 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2297 if (config->channel_mask == 0)
2298 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2299
2300 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002301 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002302 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2303 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002304 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302305 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002306 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002307#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002308 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2309 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002310 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002311 ret = voice_extn_compress_voip_open_output_stream(out);
2312 if (ret != 0) {
2313 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2314 __func__, ret);
2315 goto error_open;
2316 }
Mingming Yinee733602014-04-03 17:47:22 -07002317#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002318 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2319 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2320 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2321 ALOGE("%s: Unsupported Offload information", __func__);
2322 ret = -EINVAL;
2323 goto error_open;
2324 }
Mingming Yin90310102013-11-13 16:57:00 -08002325 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002326 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002327 ALOGE("%s: Unsupported audio format", __func__);
2328 ret = -EINVAL;
2329 goto error_open;
2330 }
2331
2332 out->compr_config.codec = (struct snd_codec *)
2333 calloc(1, sizeof(struct snd_codec));
2334
2335 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
2336 if (config->offload_info.channel_mask)
2337 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002338 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002339 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002340 config->offload_info.channel_mask = config->channel_mask;
2341 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002342 out->format = config->offload_info.format;
2343 out->sample_rate = config->offload_info.sample_rate;
2344
2345 out->stream.set_callback = out_set_callback;
2346 out->stream.pause = out_pause;
2347 out->stream.resume = out_resume;
2348 out->stream.drain = out_drain;
2349 out->stream.flush = out_flush;
2350
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002351 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002352 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002353 audio_extn_dolby_get_snd_codec_id(adev, out,
2354 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002355 else
2356 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002357 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002358#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002359 if (audio_is_offload_pcm(config->offload_info.format)) {
2360 out->compr_config.fragment_size =
2361 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002362 } else
2363#endif
2364 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002365 out->compr_config.fragment_size =
2366 platform_get_compress_offload_buffer_size(&config->offload_info);
2367 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002368 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2369 out->compr_config.codec->sample_rate =
2370 compress_get_alsa_rate(config->offload_info.sample_rate);
2371 out->compr_config.codec->bit_rate =
2372 config->offload_info.bit_rate;
2373 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302374 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002375 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08002376 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002377
Mingming Yinee733602014-04-03 17:47:22 -07002378#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002379 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2380 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2381 else if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
2382 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002383#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002384
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002385 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2386 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002387
2388 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002389 out->offload_state = OFFLOAD_STATE_IDLE;
2390 out->playback_started = 0;
2391
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002392 create_offload_callback_thread(out);
2393 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2394 __func__, config->offload_info.version,
2395 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002396 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002397 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002398
Mingming Yinee733602014-04-03 17:47:22 -07002399#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002400 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2401 ret = voice_check_and_set_incall_music_usecase(adev, out);
2402 if (ret != 0) {
2403 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2404 __func__, ret);
2405 goto error_open;
2406 }
Mingming Yinee733602014-04-03 17:47:22 -07002407#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302408 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2409 if (config->sample_rate == 0)
2410 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2411 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2412 config->sample_rate != 8000) {
2413 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2414 ret = -EINVAL;
2415 goto error_open;
2416 }
2417 out->sample_rate = config->sample_rate;
2418 out->config.rate = config->sample_rate;
2419 if (config->format == AUDIO_FORMAT_DEFAULT)
2420 config->format = AUDIO_FORMAT_PCM_16_BIT;
2421 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2422 config->format = AUDIO_FORMAT_PCM_16_BIT;
2423 ret = -EINVAL;
2424 goto error_open;
2425 }
2426 out->format = config->format;
2427 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2428 out->config = pcm_config_afe_proxy_playback;
2429 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002430 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002431 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2432 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002433 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002434 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002435 /* primary path is the default path selected if no other outputs are available/suitable */
2436 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002437 out->config = pcm_config_deep_buffer;
2438 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002439 }
2440
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002441 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2442 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2443 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002444 if(adev->primary_output == NULL)
2445 adev->primary_output = out;
2446 else {
2447 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002448 ret = -EEXIST;
2449 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002450 }
2451 }
2452
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002453 /* Check if this usecase is already existing */
2454 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002455 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2456 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002457 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002458 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002459 ret = -EEXIST;
2460 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002461 }
2462 pthread_mutex_unlock(&adev->lock);
2463
2464 out->stream.common.get_sample_rate = out_get_sample_rate;
2465 out->stream.common.set_sample_rate = out_set_sample_rate;
2466 out->stream.common.get_buffer_size = out_get_buffer_size;
2467 out->stream.common.get_channels = out_get_channels;
2468 out->stream.common.get_format = out_get_format;
2469 out->stream.common.set_format = out_set_format;
2470 out->stream.common.standby = out_standby;
2471 out->stream.common.dump = out_dump;
2472 out->stream.common.set_parameters = out_set_parameters;
2473 out->stream.common.get_parameters = out_get_parameters;
2474 out->stream.common.add_audio_effect = out_add_audio_effect;
2475 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2476 out->stream.get_latency = out_get_latency;
2477 out->stream.set_volume = out_set_volume;
2478 out->stream.write = out_write;
2479 out->stream.get_render_position = out_get_render_position;
2480 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002481 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002482
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002483 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002484 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002485 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002486
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302487 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2488 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2489
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002490 config->format = out->stream.common.get_format(&out->stream.common);
2491 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2492 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2493
2494 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302495 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2496 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002497 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002498 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002499
2500error_open:
2501 free(out);
2502 *stream_out = NULL;
2503 ALOGD("%s: exit: ret %d", __func__, ret);
2504 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002505}
2506
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302507static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002508 struct audio_stream_out *stream)
2509{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002510 struct stream_out *out = (struct stream_out *)stream;
2511 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002512 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002513
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302514 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2515
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002516 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
2517 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
2518 if(ret != 0)
2519 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2520 __func__, ret);
2521 }
2522 else
2523 out_standby(&stream->common);
2524
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002525 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
2526 destroy_offload_callback_thread(out);
2527
2528 if (out->compr_config.codec != NULL)
2529 free(out->compr_config.codec);
2530 }
2531 pthread_cond_destroy(&out->cond);
2532 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002533 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002534 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002535}
2536
2537static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2538{
2539 struct audio_device *adev = (struct audio_device *)dev;
2540 struct str_parms *parms;
2541 char *str;
2542 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002543 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302544 int ret;
2545 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002546
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002547 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002548 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002549
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302550 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2551 if (ret >= 0) {
2552 char *snd_card_status = value+2;
2553 pthread_mutex_lock(&adev->snd_card_status.lock);
2554 if (strstr(snd_card_status, "OFFLINE")) {
2555 ALOGD("Received sound card OFFLINE status");
2556 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
2557 } else if (strstr(snd_card_status, "ONLINE")) {
2558 ALOGD("Received sound card ONLINE status");
2559 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
2560 }
2561 pthread_mutex_unlock(&adev->snd_card_status.lock);
2562 }
2563
2564 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302565 status = voice_set_parameters(adev, parms);
2566 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002567 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002568
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302569 status = platform_set_parameters(adev->platform, parms);
2570 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002571 goto done;
2572
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302573 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2574 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002575 /* When set to false, HAL should disable EC and NS
2576 * But it is currently not supported.
2577 */
2578 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2579 adev->bluetooth_nrec = true;
2580 else
2581 adev->bluetooth_nrec = false;
2582 }
2583
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302584 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2585 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002586 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2587 adev->screen_off = false;
2588 else
2589 adev->screen_off = true;
2590 }
2591
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302592 ret = str_parms_get_int(parms, "rotation", &val);
2593 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002594 bool reverse_speakers = false;
2595 switch(val) {
2596 // FIXME: note that the code below assumes that the speakers are in the correct placement
2597 // relative to the user when the device is rotated 90deg from its default rotation. This
2598 // assumption is device-specific, not platform-specific like this code.
2599 case 270:
2600 reverse_speakers = true;
2601 break;
2602 case 0:
2603 case 90:
2604 case 180:
2605 break;
2606 default:
2607 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302608 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002609 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302610 if (status == 0) {
2611 if (adev->speaker_lr_swap != reverse_speakers) {
2612 adev->speaker_lr_swap = reverse_speakers;
2613 // only update the selected device if there is active pcm playback
2614 struct audio_usecase *usecase;
2615 struct listnode *node;
2616 list_for_each(node, &adev->usecase_list) {
2617 usecase = node_to_item(node, struct audio_usecase, list);
2618 if (usecase->type == PCM_PLAYBACK) {
2619 select_devices(adev, usecase->id);
2620 break;
2621 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002622 }
2623 }
2624 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002625 }
2626
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002627 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002628
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002629done:
2630 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002631 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302632 ALOGV("%s: exit with code(%d)", __func__, status);
2633 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002634}
2635
2636static char* adev_get_parameters(const struct audio_hw_device *dev,
2637 const char *keys)
2638{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002639 struct audio_device *adev = (struct audio_device *)dev;
2640 struct str_parms *reply = str_parms_create();
2641 struct str_parms *query = str_parms_create_str(keys);
2642 char *str;
2643
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002644 pthread_mutex_lock(&adev->lock);
2645
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002646 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002647 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002648 platform_get_parameters(adev->platform, query, reply);
2649 str = str_parms_to_str(reply);
2650 str_parms_destroy(query);
2651 str_parms_destroy(reply);
2652
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002653 pthread_mutex_unlock(&adev->lock);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002654 ALOGV("%s: exit: returns - %s", __func__, str);
2655 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002656}
2657
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302658static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002659{
2660 return 0;
2661}
2662
2663static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2664{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002665 int ret;
2666 struct audio_device *adev = (struct audio_device *)dev;
2667 pthread_mutex_lock(&adev->lock);
2668 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002669 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002670 pthread_mutex_unlock(&adev->lock);
2671 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002672}
2673
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302674static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2675 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002676{
2677 return -ENOSYS;
2678}
2679
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302680static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2681 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002682{
2683 return -ENOSYS;
2684}
2685
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302686static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2687 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002688{
2689 return -ENOSYS;
2690}
2691
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302692static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2693 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002694{
2695 return -ENOSYS;
2696}
2697
2698static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2699{
2700 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002701 pthread_mutex_lock(&adev->lock);
2702 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002703 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002704 adev->mode = mode;
2705 }
2706 pthread_mutex_unlock(&adev->lock);
2707 return 0;
2708}
2709
2710static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2711{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002712 int ret;
2713
2714 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002715 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002716 ret = voice_set_mic_mute((struct audio_device *)dev, state);
2717 pthread_mutex_unlock(&adev->lock);
2718
2719 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002720}
2721
2722static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2723{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002724 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002725 return 0;
2726}
2727
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302728static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002729 const struct audio_config *config)
2730{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302731 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002732
2733 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2734}
2735
2736static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302737 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002738 audio_devices_t devices,
2739 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302740 struct audio_stream_in **stream_in,
2741 audio_input_flags_t flags __unused,
2742 const char *address __unused,
2743 audio_source_t source __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002744{
2745 struct audio_device *adev = (struct audio_device *)dev;
2746 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002747 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302748 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002749
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302750
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002751 *stream_in = NULL;
2752 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2753 return -EINVAL;
2754
2755 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302756 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
2757 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2758 devices, &in->stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002759
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002760 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2761
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002762 in->stream.common.get_sample_rate = in_get_sample_rate;
2763 in->stream.common.set_sample_rate = in_set_sample_rate;
2764 in->stream.common.get_buffer_size = in_get_buffer_size;
2765 in->stream.common.get_channels = in_get_channels;
2766 in->stream.common.get_format = in_get_format;
2767 in->stream.common.set_format = in_set_format;
2768 in->stream.common.standby = in_standby;
2769 in->stream.common.dump = in_dump;
2770 in->stream.common.set_parameters = in_set_parameters;
2771 in->stream.common.get_parameters = in_get_parameters;
2772 in->stream.common.add_audio_effect = in_add_audio_effect;
2773 in->stream.common.remove_audio_effect = in_remove_audio_effect;
2774 in->stream.set_gain = in_set_gain;
2775 in->stream.read = in_read;
2776 in->stream.get_input_frames_lost = in_get_input_frames_lost;
2777
2778 in->device = devices;
2779 in->source = AUDIO_SOURCE_DEFAULT;
2780 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002781 in->standby = 1;
2782 in->channel_mask = config->channel_mask;
2783
2784 /* Update config params with the requested sample rate and channels */
2785 in->usecase = USECASE_AUDIO_RECORD;
2786 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002787 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002788 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002789
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302790 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
2791 if (config->sample_rate == 0)
2792 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2793 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2794 config->sample_rate != 8000) {
2795 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2796 ret = -EINVAL;
2797 goto err_open;
2798 }
2799 if (config->format == AUDIO_FORMAT_DEFAULT)
2800 config->format = AUDIO_FORMAT_PCM_16_BIT;
2801 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2802 config->format = AUDIO_FORMAT_PCM_16_BIT;
2803 ret = -EINVAL;
2804 goto err_open;
2805 }
2806 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
2807 in->config = pcm_config_afe_proxy_record;
2808 in->config.channels = channel_count;
2809 in->config.rate = config->sample_rate;
2810 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002811 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302812 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002813 ALOGE("%s: audio_extn_ssr_init failed", __func__);
2814 ret = -EINVAL;
2815 goto err_open;
2816 }
2817 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07002818 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002819 }
Mingming Yine62d7842013-10-25 16:26:03 -07002820 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002821 audio_extn_compr_cap_format_supported(config->format) &&
2822 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302823 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002824 } else {
2825 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302826 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002827 buffer_size = get_input_buffer_size(config->sample_rate,
2828 config->format,
2829 channel_count);
2830 in->config.period_size = buffer_size / frame_size;
2831 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002832
2833 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07002834 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002835 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002836
2837err_open:
2838 free(in);
2839 *stream_in = NULL;
2840 return ret;
2841}
2842
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302843static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002844 struct audio_stream_in *stream)
2845{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002846 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002847 struct stream_in *in = (struct stream_in *)stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302848 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002849
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002850 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2851 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
2852 if (ret != 0)
2853 ALOGE("%s: Compress voip input cannot be closed, error:%d",
2854 __func__, ret);
2855 } else
2856 in_standby(&stream->common);
2857
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302858 if (audio_extn_ssr_get_enabled() &&
2859 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002860 audio_extn_ssr_deinit();
2861 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002862 free(stream);
2863
Mingming Yine62d7842013-10-25 16:26:03 -07002864 if(audio_extn_compr_cap_enabled() &&
2865 audio_extn_compr_cap_format_supported(in->config.format))
2866 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002867 return;
2868}
2869
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302870static int adev_dump(const audio_hw_device_t *device __unused,
2871 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002872{
2873 return 0;
2874}
2875
2876static int adev_close(hw_device_t *device)
2877{
2878 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07002879
2880 if (!adev)
2881 return 0;
2882
2883 pthread_mutex_lock(&adev_init_lock);
2884
2885 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08002886 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07002887 audio_route_free(adev->audio_route);
2888 free(adev->snd_dev_ref_cnt);
2889 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07002890 free(device);
2891 adev = NULL;
2892 }
2893 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002894 return 0;
2895}
2896
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002897static int adev_open(const hw_module_t *module, const char *name,
2898 hw_device_t **device)
2899{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002900 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002901
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002902 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002903 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
2904
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002905 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07002906 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002907 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07002908 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002909 ALOGD("%s: returning existing instance of adev", __func__);
2910 ALOGD("%s: exit", __func__);
2911 pthread_mutex_unlock(&adev_init_lock);
2912 return 0;
2913 }
2914
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002915 adev = calloc(1, sizeof(struct audio_device));
2916
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002917 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
2918
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002919 adev->device.common.tag = HARDWARE_DEVICE_TAG;
2920 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
2921 adev->device.common.module = (struct hw_module_t *)module;
2922 adev->device.common.close = adev_close;
2923
2924 adev->device.init_check = adev_init_check;
2925 adev->device.set_voice_volume = adev_set_voice_volume;
2926 adev->device.set_master_volume = adev_set_master_volume;
2927 adev->device.get_master_volume = adev_get_master_volume;
2928 adev->device.set_master_mute = adev_set_master_mute;
2929 adev->device.get_master_mute = adev_get_master_mute;
2930 adev->device.set_mode = adev_set_mode;
2931 adev->device.set_mic_mute = adev_set_mic_mute;
2932 adev->device.get_mic_mute = adev_get_mic_mute;
2933 adev->device.set_parameters = adev_set_parameters;
2934 adev->device.get_parameters = adev_get_parameters;
2935 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
2936 adev->device.open_output_stream = adev_open_output_stream;
2937 adev->device.close_output_stream = adev_close_output_stream;
2938 adev->device.open_input_stream = adev_open_input_stream;
2939 adev->device.close_input_stream = adev_close_input_stream;
2940 adev->device.dump = adev_dump;
2941
2942 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002943 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08002944 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002945 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002946 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002947 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08002948 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07002949 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -07002950 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002951 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08002952 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08002953 adev->cur_wfd_channels = 2;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002954
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302955 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
2956 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
2957
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002958 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07002959 adev->platform = platform_init(adev);
2960 if (!adev->platform) {
2961 free(adev->snd_dev_ref_cnt);
2962 free(adev);
2963 ALOGE("%s: Failed to init platform data, aborting.", __func__);
2964 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08002965 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07002966 return -EINVAL;
2967 }
Eric Laurentc4aef752013-09-12 17:45:53 -07002968
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302969 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
2970
Eric Laurentc4aef752013-09-12 17:45:53 -07002971 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
2972 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
2973 if (adev->visualizer_lib == NULL) {
2974 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
2975 } else {
2976 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
2977 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002978 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07002979 "visualizer_hal_start_output");
2980 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002981 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07002982 "visualizer_hal_stop_output");
2983 }
2984 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08002985 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07002986
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002987 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
2988 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
2989 if (adev->offload_effects_lib == NULL) {
2990 ALOGE("%s: DLOPEN failed for %s", __func__,
2991 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
2992 } else {
2993 ALOGV("%s: DLOPEN successful for %s", __func__,
2994 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
2995 adev->offload_effects_start_output =
2996 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
2997 "offload_effects_bundle_hal_start_output");
2998 adev->offload_effects_stop_output =
2999 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3000 "offload_effects_bundle_hal_stop_output");
3001 }
3002 }
3003
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003004 *device = &adev->device.common;
3005
Kiran Kandi910e1862013-10-29 13:29:42 -07003006 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003007 pthread_mutex_unlock(&adev_init_lock);
3008
Eric Laurent994a6932013-07-17 11:51:42 -07003009 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003010 return 0;
3011}
3012
Mingming Yin90e2cd82014-06-06 17:11:23 -07003013int pcm_ioctl(struct pcm *pcm, int request, ...)
3014{
3015 va_list ap;
3016 void * arg;
3017 int pcm_fd = *(int*)pcm;
3018
3019 va_start(ap, request);
3020 arg = va_arg(ap, void *);
3021 va_end(ap);
3022
3023 return ioctl(pcm_fd, request, arg);
3024}
3025
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003026static struct hw_module_methods_t hal_module_methods = {
3027 .open = adev_open,
3028};
3029
3030struct audio_module HAL_MODULE_INFO_SYM = {
3031 .common = {
3032 .tag = HARDWARE_MODULE_TAG,
3033 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3034 .hal_api_version = HARDWARE_HAL_API_VERSION,
3035 .id = AUDIO_HARDWARE_MODULE_ID,
3036 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003037 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003038 .methods = &hal_module_methods,
3039 },
3040};