blob: 550d7ae6ccd77f6074cb923919a04aa83ddde17b [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
Eric Laurent994a6932013-07-17 11:51:42 -0700888 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800889 return ret;
890
891error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800892 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800893
894error_config:
895 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700896 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800897
898 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800899}
900
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700901/* must be called with out->lock locked */
902static int send_offload_cmd_l(struct stream_out* out, int command)
903{
904 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
905
906 ALOGVV("%s %d", __func__, command);
907
908 cmd->cmd = command;
909 list_add_tail(&out->offload_cmd_list, &cmd->node);
910 pthread_cond_signal(&out->offload_cond);
911 return 0;
912}
913
914/* must be called iwth out->lock locked */
915static void stop_compressed_output_l(struct stream_out *out)
916{
917 out->offload_state = OFFLOAD_STATE_IDLE;
918 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700919 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700920 if (out->compr != NULL) {
921 compress_stop(out->compr);
922 while (out->offload_thread_blocked) {
923 pthread_cond_wait(&out->cond, &out->lock);
924 }
925 }
926}
927
928static void *offload_thread_loop(void *context)
929{
930 struct stream_out *out = (struct stream_out *) context;
931 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800932 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700933
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700934 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
935 set_sched_policy(0, SP_FOREGROUND);
936 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
937
938 ALOGV("%s", __func__);
939 pthread_mutex_lock(&out->lock);
940 for (;;) {
941 struct offload_cmd *cmd = NULL;
942 stream_callback_event_t event;
943 bool send_callback = false;
944
945 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
946 __func__, list_empty(&out->offload_cmd_list),
947 out->offload_state);
948 if (list_empty(&out->offload_cmd_list)) {
949 ALOGV("%s SLEEPING", __func__);
950 pthread_cond_wait(&out->offload_cond, &out->lock);
951 ALOGV("%s RUNNING", __func__);
952 continue;
953 }
954
955 item = list_head(&out->offload_cmd_list);
956 cmd = node_to_item(item, struct offload_cmd, node);
957 list_remove(item);
958
959 ALOGVV("%s STATE %d CMD %d out->compr %p",
960 __func__, out->offload_state, cmd->cmd, out->compr);
961
962 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
963 free(cmd);
964 break;
965 }
966
967 if (out->compr == NULL) {
968 ALOGE("%s: Compress handle is NULL", __func__);
969 pthread_cond_signal(&out->cond);
970 continue;
971 }
972 out->offload_thread_blocked = true;
973 pthread_mutex_unlock(&out->lock);
974 send_callback = false;
975 switch(cmd->cmd) {
976 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
977 compress_wait(out->compr, -1);
978 send_callback = true;
979 event = STREAM_CBK_EVENT_WRITE_READY;
980 break;
981 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -0800982 ret = compress_next_track(out->compr);
983 if(ret == 0)
984 compress_partial_drain(out->compr);
985 else if(ret == -ETIMEDOUT)
986 compress_drain(out->compr);
987 else
988 ALOGE("%s: Next track returned error %d",__func__, ret);
989
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700990 send_callback = true;
991 event = STREAM_CBK_EVENT_DRAIN_READY;
992 break;
993 case OFFLOAD_CMD_DRAIN:
994 compress_drain(out->compr);
995 send_callback = true;
996 event = STREAM_CBK_EVENT_DRAIN_READY;
997 break;
998 default:
999 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1000 break;
1001 }
1002 pthread_mutex_lock(&out->lock);
1003 out->offload_thread_blocked = false;
1004 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001005 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001006 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001007 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001008 free(cmd);
1009 }
1010
1011 pthread_cond_signal(&out->cond);
1012 while (!list_empty(&out->offload_cmd_list)) {
1013 item = list_head(&out->offload_cmd_list);
1014 list_remove(item);
1015 free(node_to_item(item, struct offload_cmd, node));
1016 }
1017 pthread_mutex_unlock(&out->lock);
1018
1019 return NULL;
1020}
1021
1022static int create_offload_callback_thread(struct stream_out *out)
1023{
1024 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1025 list_init(&out->offload_cmd_list);
1026 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1027 offload_thread_loop, out);
1028 return 0;
1029}
1030
1031static int destroy_offload_callback_thread(struct stream_out *out)
1032{
1033 pthread_mutex_lock(&out->lock);
1034 stop_compressed_output_l(out);
1035 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1036
1037 pthread_mutex_unlock(&out->lock);
1038 pthread_join(out->offload_thread, (void **) NULL);
1039 pthread_cond_destroy(&out->offload_cond);
1040
1041 return 0;
1042}
1043
Eric Laurent07eeafd2013-10-06 12:52:49 -07001044static bool allow_hdmi_channel_config(struct audio_device *adev)
1045{
1046 struct listnode *node;
1047 struct audio_usecase *usecase;
1048 bool ret = true;
1049
1050 list_for_each(node, &adev->usecase_list) {
1051 usecase = node_to_item(node, struct audio_usecase, list);
1052 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1053 /*
1054 * If voice call is already existing, do not proceed further to avoid
1055 * disabling/enabling both RX and TX devices, CSD calls, etc.
1056 * Once the voice call done, the HDMI channels can be configured to
1057 * max channels of remaining use cases.
1058 */
1059 if (usecase->id == USECASE_VOICE_CALL) {
1060 ALOGD("%s: voice call is active, no change in HDMI channels",
1061 __func__);
1062 ret = false;
1063 break;
1064 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1065 ALOGD("%s: multi channel playback is active, "
1066 "no change in HDMI channels", __func__);
1067 ret = false;
1068 break;
Mingming Yin3ed162b2014-02-24 17:56:01 -08001069 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_OFFLOAD &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301070 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001071 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1072 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1073 ret = false;
1074 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001075 }
1076 }
1077 }
1078 return ret;
1079}
1080
1081static int check_and_set_hdmi_channels(struct audio_device *adev,
1082 unsigned int channels)
1083{
1084 struct listnode *node;
1085 struct audio_usecase *usecase;
1086
1087 /* Check if change in HDMI channel config is allowed */
1088 if (!allow_hdmi_channel_config(adev))
1089 return 0;
1090
1091 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001092 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001093 return 0;
1094 }
1095
1096 platform_set_hdmi_channels(adev->platform, channels);
1097 adev->cur_hdmi_channels = channels;
1098
1099 /*
1100 * Deroute all the playback streams routed to HDMI so that
1101 * the back end is deactivated. Note that backend will not
1102 * be deactivated if any one stream is connected to it.
1103 */
1104 list_for_each(node, &adev->usecase_list) {
1105 usecase = node_to_item(node, struct audio_usecase, list);
1106 if (usecase->type == PCM_PLAYBACK &&
1107 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001108 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001109 }
1110 }
1111
1112 /*
1113 * Enable all the streams disabled above. Now the HDMI backend
1114 * will be activated with new channel configuration
1115 */
1116 list_for_each(node, &adev->usecase_list) {
1117 usecase = node_to_item(node, struct audio_usecase, list);
1118 if (usecase->type == PCM_PLAYBACK &&
1119 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001120 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001121 }
1122 }
1123
1124 return 0;
1125}
1126
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001127static int stop_output_stream(struct stream_out *out)
1128{
1129 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001130 struct audio_usecase *uc_info;
1131 struct audio_device *adev = out->dev;
1132
Eric Laurent994a6932013-07-17 11:51:42 -07001133 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001134 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001135 uc_info = get_usecase_from_list(adev, out->usecase);
1136 if (uc_info == NULL) {
1137 ALOGE("%s: Could not find the usecase (%d) in the list",
1138 __func__, out->usecase);
1139 return -EINVAL;
1140 }
1141
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001142 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1143 if (adev->visualizer_stop_output != NULL)
1144 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1145 if (adev->offload_effects_stop_output != NULL)
1146 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1147 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001148
Eric Laurent150dbfe2013-02-27 14:31:02 -08001149 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001150 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001151
1152 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001153 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001154
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001155 list_remove(&uc_info->list);
1156 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001157
Eric Laurent07eeafd2013-10-06 12:52:49 -07001158 /* Must be called after removing the usecase from list */
1159 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1160 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1161
Eric Laurent994a6932013-07-17 11:51:42 -07001162 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001163 return ret;
1164}
1165
1166int start_output_stream(struct stream_out *out)
1167{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001168 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001169 int sink_channels = 0;
1170 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001171 struct audio_usecase *uc_info;
1172 struct audio_device *adev = out->dev;
1173
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301174 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1175 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1176 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301177
1178 pthread_mutex_lock(&adev->snd_card_status.lock);
1179 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state) {
1180 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1181 ret = -ENETRESET;
1182 pthread_mutex_unlock(&adev->snd_card_status.lock);
1183 goto error_config;
1184 }
1185 pthread_mutex_unlock(&adev->snd_card_status.lock);
1186
Eric Laurentb23d5282013-05-14 15:27:20 -07001187 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001188 if (out->pcm_device_id < 0) {
1189 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1190 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001191 ret = -EINVAL;
1192 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001193 }
1194
1195 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1196 uc_info->id = out->usecase;
1197 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001198 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001199 uc_info->devices = out->devices;
1200 uc_info->in_snd_device = SND_DEVICE_NONE;
1201 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001202
Eric Laurent07eeafd2013-10-06 12:52:49 -07001203 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001204 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001205 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1206 if (!strncmp("true", prop_value, 4)) {
1207 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1208 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1209 check_and_set_hdmi_channels(adev, sink_channels);
1210 } else {
1211 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1212 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1213 else
1214 check_and_set_hdmi_channels(adev, out->config.channels);
1215 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001216 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001217
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001218 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001219
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001220 select_devices(adev, out->usecase);
1221
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001222 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1223 __func__, 0, out->pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001224 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301225 unsigned int flags = PCM_OUT;
1226 unsigned int pcm_open_retry_count = 0;
1227 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1228 flags |= PCM_MMAP | PCM_NOIRQ;
1229 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1230 } else
1231 flags |= PCM_MONOTONIC;
1232
1233 while (1) {
1234 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1235 flags, &out->config);
1236 if (out->pcm && !pcm_is_ready(out->pcm)) {
1237 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1238 if (out->pcm != NULL) {
1239 pcm_close(out->pcm);
1240 out->pcm = NULL;
1241 }
1242 if (pcm_open_retry_count-- == 0) {
1243 ret = -EIO;
1244 goto error_open;
1245 }
1246 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1247 continue;
1248 }
1249 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001250 }
1251 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001252 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001253 out->compr = compress_open(adev->snd_card,
1254 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001255 COMPRESS_IN, &out->compr_config);
1256 if (out->compr && !is_compress_ready(out->compr)) {
1257 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1258 compress_close(out->compr);
1259 out->compr = NULL;
1260 ret = -EIO;
1261 goto error_open;
1262 }
1263 if (out->offload_callback)
1264 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001265
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001266#ifdef DS1_DOLBY_DDP_ENABLED
1267 if (audio_extn_is_dolby_format(out->format))
1268 audio_extn_dolby_send_ddp_endp_params(adev);
1269#endif
1270
Eric Laurentc4aef752013-09-12 17:45:53 -07001271 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001272 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1273 if (adev->offload_effects_start_output != NULL)
1274 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001275 }
Eric Laurent994a6932013-07-17 11:51:42 -07001276 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001277 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001278error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001279 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001280error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001281 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001282}
1283
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001284static int check_input_parameters(uint32_t sample_rate,
1285 audio_format_t format,
1286 int channel_count)
1287{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001288 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001289
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001290 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001291 !voice_extn_compress_voip_is_format_supported(format) &&
1292 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001293
1294 switch (channel_count) {
1295 case 1:
1296 case 2:
1297 case 6:
1298 break;
1299 default:
1300 ret = -EINVAL;
1301 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001302
1303 switch (sample_rate) {
1304 case 8000:
1305 case 11025:
1306 case 12000:
1307 case 16000:
1308 case 22050:
1309 case 24000:
1310 case 32000:
1311 case 44100:
1312 case 48000:
1313 break;
1314 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001315 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001316 }
1317
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001318 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001319}
1320
1321static size_t get_input_buffer_size(uint32_t sample_rate,
1322 audio_format_t format,
1323 int channel_count)
1324{
1325 size_t size = 0;
1326
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001327 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1328 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001329
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001330 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1331 /* ToDo: should use frame_size computed based on the format and
1332 channel_count here. */
1333 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001334
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001335 /* make sure the size is multiple of 64 */
1336 size += 0x3f;
1337 size &= ~0x3f;
1338
1339 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001340}
1341
1342static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1343{
1344 struct stream_out *out = (struct stream_out *)stream;
1345
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001346 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001347}
1348
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301349static int out_set_sample_rate(struct audio_stream *stream __unused,
1350 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001351{
1352 return -ENOSYS;
1353}
1354
1355static size_t out_get_buffer_size(const struct audio_stream *stream)
1356{
1357 struct stream_out *out = (struct stream_out *)stream;
1358
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001359 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001360 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001361 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1362 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001363
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301364 return out->config.period_size *
1365 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001366}
1367
1368static uint32_t out_get_channels(const struct audio_stream *stream)
1369{
1370 struct stream_out *out = (struct stream_out *)stream;
1371
1372 return out->channel_mask;
1373}
1374
1375static audio_format_t out_get_format(const struct audio_stream *stream)
1376{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001377 struct stream_out *out = (struct stream_out *)stream;
1378
1379 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001380}
1381
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301382static int out_set_format(struct audio_stream *stream __unused,
1383 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001384{
1385 return -ENOSYS;
1386}
1387
1388static int out_standby(struct audio_stream *stream)
1389{
1390 struct stream_out *out = (struct stream_out *)stream;
1391 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001392
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301393 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1394 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001395 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1396 /* Ignore standby in case of voip call because the voip output
1397 * stream is closed in adev_close_output_stream()
1398 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301399 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001400 return 0;
1401 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001402
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001403 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001404 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001405 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001406 out->standby = true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001407 if (out->usecase != USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1408 if (out->pcm) {
1409 pcm_close(out->pcm);
1410 out->pcm = NULL;
1411 }
1412 } else {
1413 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001414 out->gapless_mdata.encoder_delay = 0;
1415 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001416 if (out->compr != NULL) {
1417 compress_close(out->compr);
1418 out->compr = NULL;
1419 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001420 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001421 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001422 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001423 }
1424 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001425 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001426 return 0;
1427}
1428
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301429static int out_dump(const struct audio_stream *stream __unused,
1430 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001431{
1432 return 0;
1433}
1434
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001435static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1436{
1437 int ret = 0;
1438 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001439 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001440 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001441 tmp_mdata.encoder_delay = 0;
1442 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001443
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001444 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001445 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001446 return -EINVAL;
1447 }
1448
Mingming Yinee733602014-04-03 17:47:22 -07001449#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001450 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1451 if (ret >= 0) {
1452 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1453 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1454 ALOGV("ADTS format is set in offload mode");
1455 }
1456 out->send_new_metadata = 1;
1457 }
Mingming Yinee733602014-04-03 17:47:22 -07001458#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001459
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001460 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1461 if(ret >= 0)
1462 is_meta_data_params = true;
1463 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1464 if(ret >= 0 )
1465 is_meta_data_params = true;
1466 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1467 if(ret >= 0 )
1468 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001469 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1470 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001471 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001472 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001473 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001474 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1475 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001476 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001477 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001478 }
1479
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001480 if(!is_meta_data_params) {
1481 ALOGV("%s: Not gapless meta data params", __func__);
1482 return 0;
1483 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001484 out->gapless_mdata = tmp_mdata;
1485 out->send_new_metadata = 1;
1486 ALOGV("%s new encoder delay %u and padding %u", __func__,
1487 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1488
1489 return 0;
1490}
1491
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301492static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1493{
1494 return out == adev->primary_output || out == adev->voice_tx_output;
1495}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001496
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001497static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1498{
1499 struct stream_out *out = (struct stream_out *)stream;
1500 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001501 struct audio_usecase *usecase;
1502 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001503 struct str_parms *parms;
1504 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001505 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001506 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001507
sangwoobc677242013-08-08 16:53:43 +09001508 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001509 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001510 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001511 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1512 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001513 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001514 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001515 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001516
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001517 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301518 * When HDMI cable is unplugged/usb hs is disconnected the
1519 * music playback is paused and the policy manager sends routing=0
1520 * But the audioflingercontinues to write data until standby time
1521 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001522 * Avoid this by routing audio to speaker until standby.
1523 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301524 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
1525 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001526 val == AUDIO_DEVICE_NONE) {
1527 val = AUDIO_DEVICE_OUT_SPEAKER;
1528 }
1529
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301530 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1531 voice_is_in_call(adev) &&
1532 output_drives_call(adev, out)) {
1533 ret = voice_stop_call(adev);
1534 adev->current_call_output = NULL;
1535 }
1536
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001537 /*
1538 * select_devices() call below switches all the usecases on the same
1539 * backend to the new device. Refer to check_usecases_codec_backend() in
1540 * the select_devices(). But how do we undo this?
1541 *
1542 * For example, music playback is active on headset (deep-buffer usecase)
1543 * and if we go to ringtones and select a ringtone, low-latency usecase
1544 * will be started on headset+speaker. As we can't enable headset+speaker
1545 * and headset devices at the same time, select_devices() switches the music
1546 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1547 * So when the ringtone playback is completed, how do we undo the same?
1548 *
1549 * We are relying on the out_set_parameters() call on deep-buffer output,
1550 * once the ringtone playback is ended.
1551 * NOTE: We should not check if the current devices are same as new devices.
1552 * Because select_devices() must be called to switch back the music
1553 * playback to headset.
1554 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001555 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001556 out->devices = val;
1557
1558 if (!out->standby)
1559 select_devices(adev, out->usecase);
1560
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001561 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301562 output_drives_call(adev, out)) {
1563 adev->current_call_output = out;
1564 if (!voice_is_in_call(adev))
1565 ret = voice_start_call(adev);
1566 else
1567 voice_update_devices_for_all_voice_usecases(adev);
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001568 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001569
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001570 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001571
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001572 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001573 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001574 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001575
1576 if (out == adev->primary_output) {
1577 pthread_mutex_lock(&adev->lock);
1578 audio_extn_set_parameters(adev, parms);
1579 pthread_mutex_unlock(&adev->lock);
1580 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001581 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001582 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001583 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001584 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001585 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001586
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001587 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001588 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001589 return ret;
1590}
1591
1592static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1593{
1594 struct stream_out *out = (struct stream_out *)stream;
1595 struct str_parms *query = str_parms_create_str(keys);
1596 char *str;
1597 char value[256];
1598 struct str_parms *reply = str_parms_create();
1599 size_t i, j;
1600 int ret;
1601 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001602 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001603 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1604 if (ret >= 0) {
1605 value[0] = '\0';
1606 i = 0;
1607 while (out->supported_channel_masks[i] != 0) {
1608 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1609 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1610 if (!first) {
1611 strcat(value, "|");
1612 }
1613 strcat(value, out_channels_name_to_enum_table[j].name);
1614 first = false;
1615 break;
1616 }
1617 }
1618 i++;
1619 }
1620 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1621 str = str_parms_to_str(reply);
1622 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001623 voice_extn_out_get_parameters(out, query, reply);
1624 str = str_parms_to_str(reply);
1625 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001626 free(str);
1627 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001628 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001629 }
1630 str_parms_destroy(query);
1631 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001632 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001633 return str;
1634}
1635
1636static uint32_t out_get_latency(const struct audio_stream_out *stream)
1637{
1638 struct stream_out *out = (struct stream_out *)stream;
1639
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001640 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
1641 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1642
1643 return (out->config.period_count * out->config.period_size * 1000) /
1644 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001645}
1646
1647static int out_set_volume(struct audio_stream_out *stream, float left,
1648 float right)
1649{
Eric Laurenta9024de2013-04-04 09:19:12 -07001650 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001651 int volume[2];
1652
Eric Laurenta9024de2013-04-04 09:19:12 -07001653 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1654 /* only take left channel into account: the API is for stereo anyway */
1655 out->muted = (left == 0.0f);
1656 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001657 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001658 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001659 struct audio_device *adev = out->dev;
1660 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001661 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1662 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001663
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001664 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1665 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001666 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1667 if (!ctl) {
1668 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1669 __func__, mixer_ctl_name);
1670 return -EINVAL;
1671 }
1672 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1673 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1674 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1675 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001676 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001677
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001678 return -ENOSYS;
1679}
1680
1681static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1682 size_t bytes)
1683{
1684 struct stream_out *out = (struct stream_out *)stream;
1685 struct audio_device *adev = out->dev;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301686 int scard_state = SND_CARD_STATE_ONLINE;
Eric Laurent6e895242013-09-05 16:10:57 -07001687 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001688
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001689 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301690 pthread_mutex_lock(&adev->snd_card_status.lock);
1691 scard_state = adev->snd_card_status.state;
1692 pthread_mutex_unlock(&adev->snd_card_status.lock);
1693
1694 if (out->pcm) {
1695 if (SND_CARD_STATE_OFFLINE == scard_state) {
1696 ALOGD(" %s: sound card is not active/SSR state", __func__);
1697 ret= -ENETRESET;
1698 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301699 }
1700 }
1701
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001702 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001703 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001704 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001705 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1706 ret = voice_extn_compress_voip_start_output_stream(out);
1707 else
1708 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001709 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001710 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001711 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001712 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001713 goto exit;
1714 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001715 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001716
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001717 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001718 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1719 if (out->send_new_metadata) {
1720 ALOGVV("send new gapless metadata");
1721 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1722 out->send_new_metadata = 0;
1723 }
1724
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001725 ret = compress_write(out->compr, buffer, bytes);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001726 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001727 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001728 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
1729 }
1730 if (!out->playback_started) {
1731 compress_start(out->compr);
1732 out->playback_started = 1;
1733 out->offload_state = OFFLOAD_STATE_PLAYING;
1734 }
1735 pthread_mutex_unlock(&out->lock);
1736 return ret;
1737 } else {
1738 if (out->pcm) {
1739 if (out->muted)
1740 memset((void *)buffer, 0, bytes);
1741 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301742 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1743 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1744 else
1745 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001746 if (ret == 0)
1747 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001748 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001749 }
1750
1751exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301752 /* ToDo: There may be a corner case when SSR happens back to back during
1753 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301754 if (-ENETRESET == ret) {
1755 pthread_mutex_lock(&adev->snd_card_status.lock);
1756 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301757 pthread_mutex_unlock(&adev->snd_card_status.lock);
1758 }
1759
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001760 pthread_mutex_unlock(&out->lock);
1761
1762 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001763 if (out->pcm)
1764 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001765 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301766 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1767 out_get_sample_rate(&out->stream.common));
1768
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001769 }
1770 return bytes;
1771}
1772
1773static int out_get_render_position(const struct audio_stream_out *stream,
1774 uint32_t *dsp_frames)
1775{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001776 struct stream_out *out = (struct stream_out *)stream;
1777 *dsp_frames = 0;
1778 if ((out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) && (dsp_frames != NULL)) {
1779 pthread_mutex_lock(&out->lock);
1780 if (out->compr != NULL) {
1781 compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
1782 &out->sample_rate);
1783 ALOGVV("%s rendered frames %d sample_rate %d",
1784 __func__, *dsp_frames, out->sample_rate);
1785 }
1786 pthread_mutex_unlock(&out->lock);
1787 return 0;
1788 } else
1789 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001790}
1791
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301792static int out_add_audio_effect(const struct audio_stream *stream __unused,
1793 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001794{
1795 return 0;
1796}
1797
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301798static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1799 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001800{
1801 return 0;
1802}
1803
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301804static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1805 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001806{
1807 return -EINVAL;
1808}
1809
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001810static int out_get_presentation_position(const struct audio_stream_out *stream,
1811 uint64_t *frames, struct timespec *timestamp)
1812{
1813 struct stream_out *out = (struct stream_out *)stream;
1814 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001815 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001816
1817 pthread_mutex_lock(&out->lock);
1818
Eric Laurent949a0892013-09-20 09:20:13 -07001819 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1820 if (out->compr != NULL) {
1821 compress_get_tstamp(out->compr, &dsp_frames,
1822 &out->sample_rate);
1823 ALOGVV("%s rendered frames %ld sample_rate %d",
1824 __func__, dsp_frames, out->sample_rate);
1825 *frames = dsp_frames;
1826 ret = 0;
1827 /* this is the best we can do */
1828 clock_gettime(CLOCK_MONOTONIC, timestamp);
1829 }
1830 } else {
1831 if (out->pcm) {
1832 size_t avail;
1833 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
1834 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07001835 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07001836 // This adjustment accounts for buffering after app processor.
1837 // It is based on estimated DSP latency per use case, rather than exact.
1838 signed_frames -=
1839 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
1840
Eric Laurent949a0892013-09-20 09:20:13 -07001841 // It would be unusual for this value to be negative, but check just in case ...
1842 if (signed_frames >= 0) {
1843 *frames = signed_frames;
1844 ret = 0;
1845 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001846 }
1847 }
1848 }
1849
1850 pthread_mutex_unlock(&out->lock);
1851
1852 return ret;
1853}
1854
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001855static int out_set_callback(struct audio_stream_out *stream,
1856 stream_callback_t callback, void *cookie)
1857{
1858 struct stream_out *out = (struct stream_out *)stream;
1859
1860 ALOGV("%s", __func__);
1861 pthread_mutex_lock(&out->lock);
1862 out->offload_callback = callback;
1863 out->offload_cookie = cookie;
1864 pthread_mutex_unlock(&out->lock);
1865 return 0;
1866}
1867
1868static int out_pause(struct audio_stream_out* stream)
1869{
1870 struct stream_out *out = (struct stream_out *)stream;
1871 int status = -ENOSYS;
1872 ALOGV("%s", __func__);
1873 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1874 pthread_mutex_lock(&out->lock);
1875 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
1876 status = compress_pause(out->compr);
1877 out->offload_state = OFFLOAD_STATE_PAUSED;
1878 }
1879 pthread_mutex_unlock(&out->lock);
1880 }
1881 return status;
1882}
1883
1884static int out_resume(struct audio_stream_out* stream)
1885{
1886 struct stream_out *out = (struct stream_out *)stream;
1887 int status = -ENOSYS;
1888 ALOGV("%s", __func__);
1889 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1890 status = 0;
1891 pthread_mutex_lock(&out->lock);
1892 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
1893 status = compress_resume(out->compr);
1894 out->offload_state = OFFLOAD_STATE_PLAYING;
1895 }
1896 pthread_mutex_unlock(&out->lock);
1897 }
1898 return status;
1899}
1900
1901static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
1902{
1903 struct stream_out *out = (struct stream_out *)stream;
1904 int status = -ENOSYS;
1905 ALOGV("%s", __func__);
1906 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1907 pthread_mutex_lock(&out->lock);
1908 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
1909 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
1910 else
1911 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
1912 pthread_mutex_unlock(&out->lock);
1913 }
1914 return status;
1915}
1916
1917static int out_flush(struct audio_stream_out* stream)
1918{
1919 struct stream_out *out = (struct stream_out *)stream;
1920 ALOGV("%s", __func__);
1921 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1922 pthread_mutex_lock(&out->lock);
1923 stop_compressed_output_l(out);
1924 pthread_mutex_unlock(&out->lock);
1925 return 0;
1926 }
1927 return -ENOSYS;
1928}
1929
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001930/** audio_stream_in implementation **/
1931static uint32_t in_get_sample_rate(const struct audio_stream *stream)
1932{
1933 struct stream_in *in = (struct stream_in *)stream;
1934
1935 return in->config.rate;
1936}
1937
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301938static int in_set_sample_rate(struct audio_stream *stream __unused,
1939 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001940{
1941 return -ENOSYS;
1942}
1943
1944static size_t in_get_buffer_size(const struct audio_stream *stream)
1945{
1946 struct stream_in *in = (struct stream_in *)stream;
1947
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001948 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
1949 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07001950 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
1951 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001952
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301953 return in->config.period_size *
1954 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001955}
1956
1957static uint32_t in_get_channels(const struct audio_stream *stream)
1958{
1959 struct stream_in *in = (struct stream_in *)stream;
1960
1961 return in->channel_mask;
1962}
1963
1964static audio_format_t in_get_format(const struct audio_stream *stream)
1965{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001966 struct stream_in *in = (struct stream_in *)stream;
1967
1968 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001969}
1970
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301971static int in_set_format(struct audio_stream *stream __unused,
1972 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001973{
1974 return -ENOSYS;
1975}
1976
1977static int in_standby(struct audio_stream *stream)
1978{
1979 struct stream_in *in = (struct stream_in *)stream;
1980 struct audio_device *adev = in->dev;
1981 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301982 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1983 stream, in->usecase, use_case_table[in->usecase]);
1984
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001985
1986 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
1987 /* Ignore standby in case of voip call because the voip input
1988 * stream is closed in adev_close_input_stream()
1989 */
1990 ALOGV("%s: Ignore Standby in VOIP call", __func__);
1991 return status;
1992 }
1993
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001994 pthread_mutex_lock(&in->lock);
1995 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001996 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001997 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001998 if (in->pcm) {
1999 pcm_close(in->pcm);
2000 in->pcm = NULL;
2001 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002002 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002003 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002004 }
2005 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002006 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002007 return status;
2008}
2009
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302010static int in_dump(const struct audio_stream *stream __unused,
2011 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002012{
2013 return 0;
2014}
2015
2016static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2017{
2018 struct stream_in *in = (struct stream_in *)stream;
2019 struct audio_device *adev = in->dev;
2020 struct str_parms *parms;
2021 char *str;
2022 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002023 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002024
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302025 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002026 parms = str_parms_create_str(kvpairs);
2027
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002028 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002029 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002030
2031 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2032 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002033 val = atoi(value);
2034 /* no audio source uses val == 0 */
2035 if ((in->source != val) && (val != 0)) {
2036 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002037 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2038 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2039 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2040 (in->config.rate == 8000 || in->config.rate == 16000) &&
2041 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002042 err = voice_extn_compress_voip_open_input_stream(in);
2043 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002044 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002045 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002046 }
2047 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002048 }
2049 }
2050
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002051 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2052 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002053 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302054 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002055 in->device = val;
2056 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002057 if (!in->standby)
2058 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002059 }
2060 }
2061
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002062done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002063 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002064 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002065
2066 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002067 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002068 return ret;
2069}
2070
2071static char* in_get_parameters(const struct audio_stream *stream,
2072 const char *keys)
2073{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002074 struct stream_in *in = (struct stream_in *)stream;
2075 struct str_parms *query = str_parms_create_str(keys);
2076 char *str;
2077 char value[256];
2078 struct str_parms *reply = str_parms_create();
2079 ALOGV("%s: enter: keys - %s", __func__, keys);
2080
2081 voice_extn_in_get_parameters(in, query, reply);
2082
2083 str = str_parms_to_str(reply);
2084 str_parms_destroy(query);
2085 str_parms_destroy(reply);
2086
2087 ALOGV("%s: exit: returns - %s", __func__, str);
2088 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002089}
2090
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302091static int in_set_gain(struct audio_stream_in *stream __unused,
2092 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002093{
2094 return 0;
2095}
2096
2097static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2098 size_t bytes)
2099{
2100 struct stream_in *in = (struct stream_in *)stream;
2101 struct audio_device *adev = in->dev;
2102 int i, ret = -1;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302103 int scard_state = SND_CARD_STATE_ONLINE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002104
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002105 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302106 pthread_mutex_lock(&adev->snd_card_status.lock);
2107 scard_state = adev->snd_card_status.state;
2108 pthread_mutex_unlock(&adev->snd_card_status.lock);
2109
2110 if (in->pcm) {
2111 if(SND_CARD_STATE_OFFLINE == scard_state) {
2112 ALOGD(" %s: sound card is not active/SSR state", __func__);
2113 ret= -ENETRESET;
2114 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302115 }
2116 }
2117
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002118 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002119 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002120 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2121 ret = voice_extn_compress_voip_start_input_stream(in);
2122 else
2123 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002124 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002125 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002126 goto exit;
2127 }
2128 in->standby = 0;
2129 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002130
2131 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302132 if (audio_extn_ssr_get_enabled() &&
2133 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002134 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002135 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2136 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302137 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2138 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002139 else
2140 ret = pcm_read(in->pcm, buffer, bytes);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002141 }
2142
2143 /*
2144 * Instead of writing zeroes here, we could trust the hardware
2145 * to always provide zeroes when muted.
2146 */
kunleiza1a9ee02014-04-24 18:46:22 +08002147 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002148 memset(buffer, 0, bytes);
2149
2150exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302151 /* ToDo: There may be a corner case when SSR happens back to back during
2152 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302153 if (-ENETRESET == ret) {
2154 pthread_mutex_lock(&adev->snd_card_status.lock);
2155 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302156 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302157 pthread_mutex_unlock(&adev->snd_card_status.lock);
2158 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002159 pthread_mutex_unlock(&in->lock);
2160
2161 if (ret != 0) {
2162 in_standby(&in->stream.common);
2163 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302164 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2165 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002166 }
2167 return bytes;
2168}
2169
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302170static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002171{
2172 return 0;
2173}
2174
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002175static int add_remove_audio_effect(const struct audio_stream *stream,
2176 effect_handle_t effect,
2177 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002178{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002179 struct stream_in *in = (struct stream_in *)stream;
2180 int status = 0;
2181 effect_descriptor_t desc;
2182
2183 status = (*effect)->get_descriptor(effect, &desc);
2184 if (status != 0)
2185 return status;
2186
2187 pthread_mutex_lock(&in->lock);
2188 pthread_mutex_lock(&in->dev->lock);
2189 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2190 in->enable_aec != enable &&
2191 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2192 in->enable_aec = enable;
2193 if (!in->standby)
2194 select_devices(in->dev, in->usecase);
2195 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002196 if (in->enable_ns != enable &&
2197 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2198 in->enable_ns = enable;
2199 if (!in->standby)
2200 select_devices(in->dev, in->usecase);
2201 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002202 pthread_mutex_unlock(&in->dev->lock);
2203 pthread_mutex_unlock(&in->lock);
2204
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002205 return 0;
2206}
2207
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002208static int in_add_audio_effect(const struct audio_stream *stream,
2209 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002210{
Eric Laurent994a6932013-07-17 11:51:42 -07002211 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002212 return add_remove_audio_effect(stream, effect, true);
2213}
2214
2215static int in_remove_audio_effect(const struct audio_stream *stream,
2216 effect_handle_t effect)
2217{
Eric Laurent994a6932013-07-17 11:51:42 -07002218 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002219 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002220}
2221
2222static int adev_open_output_stream(struct audio_hw_device *dev,
2223 audio_io_handle_t handle,
2224 audio_devices_t devices,
2225 audio_output_flags_t flags,
2226 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302227 struct audio_stream_out **stream_out,
2228 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002229{
2230 struct audio_device *adev = (struct audio_device *)dev;
2231 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002232 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002233
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002234 *stream_out = NULL;
2235 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2236
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302237 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2238 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2239 devices, flags, &out->stream);
2240
2241
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002242 if (!out) {
2243 return -ENOMEM;
2244 }
2245
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002246 if (devices == AUDIO_DEVICE_NONE)
2247 devices = AUDIO_DEVICE_OUT_SPEAKER;
2248
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002249 out->flags = flags;
2250 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002251 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002252 out->format = config->format;
2253 out->sample_rate = config->sample_rate;
2254 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2255 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002256 out->handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002257
2258 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002259 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002260 (
2261#ifdef AFE_PROXY_ENABLED
2262 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2263#endif
2264 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002265
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002266 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002267 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2268 ret = read_hdmi_channel_masks(out);
2269
Mingming Yinee733602014-04-03 17:47:22 -07002270#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002271 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2272 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002273#endif
2274
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002275 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002276 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002277 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002278
2279 if (config->sample_rate == 0)
2280 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2281 if (config->channel_mask == 0)
2282 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2283
2284 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002285 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002286 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2287 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002288 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302289 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002290 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002291#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002292 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2293 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002294 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002295 ret = voice_extn_compress_voip_open_output_stream(out);
2296 if (ret != 0) {
2297 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2298 __func__, ret);
2299 goto error_open;
2300 }
Mingming Yinee733602014-04-03 17:47:22 -07002301#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002302 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2303 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2304 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2305 ALOGE("%s: Unsupported Offload information", __func__);
2306 ret = -EINVAL;
2307 goto error_open;
2308 }
Mingming Yin90310102013-11-13 16:57:00 -08002309 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002310 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002311 ALOGE("%s: Unsupported audio format", __func__);
2312 ret = -EINVAL;
2313 goto error_open;
2314 }
2315
2316 out->compr_config.codec = (struct snd_codec *)
2317 calloc(1, sizeof(struct snd_codec));
2318
2319 out->usecase = USECASE_AUDIO_PLAYBACK_OFFLOAD;
2320 if (config->offload_info.channel_mask)
2321 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002322 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002323 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002324 config->offload_info.channel_mask = config->channel_mask;
2325 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002326 out->format = config->offload_info.format;
2327 out->sample_rate = config->offload_info.sample_rate;
2328
2329 out->stream.set_callback = out_set_callback;
2330 out->stream.pause = out_pause;
2331 out->stream.resume = out_resume;
2332 out->stream.drain = out_drain;
2333 out->stream.flush = out_flush;
2334
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002335 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002336 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002337 audio_extn_dolby_get_snd_codec_id(adev, out,
2338 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002339 else
2340 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002341 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002342#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002343 if (audio_is_offload_pcm(config->offload_info.format)) {
2344 out->compr_config.fragment_size =
2345 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002346 } else
2347#endif
2348 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002349 out->compr_config.fragment_size =
2350 platform_get_compress_offload_buffer_size(&config->offload_info);
2351 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002352 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2353 out->compr_config.codec->sample_rate =
2354 compress_get_alsa_rate(config->offload_info.sample_rate);
2355 out->compr_config.codec->bit_rate =
2356 config->offload_info.bit_rate;
2357 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302358 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002359 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08002360 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002361
Mingming Yinee733602014-04-03 17:47:22 -07002362#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002363 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2364 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2365 else if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
2366 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002367#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002368
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002369 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2370 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002371
2372 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002373 out->offload_state = OFFLOAD_STATE_IDLE;
2374 out->playback_started = 0;
2375
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002376 create_offload_callback_thread(out);
2377 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2378 __func__, config->offload_info.version,
2379 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002380 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002381 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002382
Mingming Yinee733602014-04-03 17:47:22 -07002383#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002384 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2385 ret = voice_check_and_set_incall_music_usecase(adev, out);
2386 if (ret != 0) {
2387 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2388 __func__, ret);
2389 goto error_open;
2390 }
Mingming Yinee733602014-04-03 17:47:22 -07002391#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302392 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2393 if (config->sample_rate == 0)
2394 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2395 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2396 config->sample_rate != 8000) {
2397 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2398 ret = -EINVAL;
2399 goto error_open;
2400 }
2401 out->sample_rate = config->sample_rate;
2402 out->config.rate = config->sample_rate;
2403 if (config->format == AUDIO_FORMAT_DEFAULT)
2404 config->format = AUDIO_FORMAT_PCM_16_BIT;
2405 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2406 config->format = AUDIO_FORMAT_PCM_16_BIT;
2407 ret = -EINVAL;
2408 goto error_open;
2409 }
2410 out->format = config->format;
2411 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2412 out->config = pcm_config_afe_proxy_playback;
2413 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002414 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002415 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2416 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002417 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002418 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002419 /* primary path is the default path selected if no other outputs are available/suitable */
2420 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002421 out->config = pcm_config_deep_buffer;
2422 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002423 }
2424
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002425 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2426 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2427 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002428 if(adev->primary_output == NULL)
2429 adev->primary_output = out;
2430 else {
2431 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002432 ret = -EEXIST;
2433 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002434 }
2435 }
2436
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002437 /* Check if this usecase is already existing */
2438 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002439 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2440 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002441 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002442 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002443 ret = -EEXIST;
2444 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002445 }
2446 pthread_mutex_unlock(&adev->lock);
2447
2448 out->stream.common.get_sample_rate = out_get_sample_rate;
2449 out->stream.common.set_sample_rate = out_set_sample_rate;
2450 out->stream.common.get_buffer_size = out_get_buffer_size;
2451 out->stream.common.get_channels = out_get_channels;
2452 out->stream.common.get_format = out_get_format;
2453 out->stream.common.set_format = out_set_format;
2454 out->stream.common.standby = out_standby;
2455 out->stream.common.dump = out_dump;
2456 out->stream.common.set_parameters = out_set_parameters;
2457 out->stream.common.get_parameters = out_get_parameters;
2458 out->stream.common.add_audio_effect = out_add_audio_effect;
2459 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2460 out->stream.get_latency = out_get_latency;
2461 out->stream.set_volume = out_set_volume;
2462 out->stream.write = out_write;
2463 out->stream.get_render_position = out_get_render_position;
2464 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002465 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002466
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002467 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002468 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002469 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002470
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302471 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2472 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2473
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002474 config->format = out->stream.common.get_format(&out->stream.common);
2475 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2476 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2477
2478 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302479 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2480 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002481 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002482 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002483
2484error_open:
2485 free(out);
2486 *stream_out = NULL;
2487 ALOGD("%s: exit: ret %d", __func__, ret);
2488 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002489}
2490
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302491static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002492 struct audio_stream_out *stream)
2493{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002494 struct stream_out *out = (struct stream_out *)stream;
2495 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002496 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002497
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302498 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2499
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002500 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
2501 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
2502 if(ret != 0)
2503 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2504 __func__, ret);
2505 }
2506 else
2507 out_standby(&stream->common);
2508
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002509 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
2510 destroy_offload_callback_thread(out);
2511
2512 if (out->compr_config.codec != NULL)
2513 free(out->compr_config.codec);
2514 }
2515 pthread_cond_destroy(&out->cond);
2516 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002517 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002518 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002519}
2520
2521static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2522{
2523 struct audio_device *adev = (struct audio_device *)dev;
2524 struct str_parms *parms;
2525 char *str;
2526 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002527 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302528 int ret;
2529 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002530
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002531 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002532 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002533
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302534 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2535 if (ret >= 0) {
2536 char *snd_card_status = value+2;
2537 pthread_mutex_lock(&adev->snd_card_status.lock);
2538 if (strstr(snd_card_status, "OFFLINE")) {
2539 ALOGD("Received sound card OFFLINE status");
2540 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
2541 } else if (strstr(snd_card_status, "ONLINE")) {
2542 ALOGD("Received sound card ONLINE status");
2543 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
2544 }
2545 pthread_mutex_unlock(&adev->snd_card_status.lock);
2546 }
2547
2548 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302549 status = voice_set_parameters(adev, parms);
2550 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002551 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002552
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302553 status = platform_set_parameters(adev->platform, parms);
2554 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002555 goto done;
2556
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302557 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2558 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002559 /* When set to false, HAL should disable EC and NS
2560 * But it is currently not supported.
2561 */
2562 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2563 adev->bluetooth_nrec = true;
2564 else
2565 adev->bluetooth_nrec = false;
2566 }
2567
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302568 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2569 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002570 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2571 adev->screen_off = false;
2572 else
2573 adev->screen_off = true;
2574 }
2575
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302576 ret = str_parms_get_int(parms, "rotation", &val);
2577 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002578 bool reverse_speakers = false;
2579 switch(val) {
2580 // FIXME: note that the code below assumes that the speakers are in the correct placement
2581 // relative to the user when the device is rotated 90deg from its default rotation. This
2582 // assumption is device-specific, not platform-specific like this code.
2583 case 270:
2584 reverse_speakers = true;
2585 break;
2586 case 0:
2587 case 90:
2588 case 180:
2589 break;
2590 default:
2591 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302592 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002593 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302594 if (status == 0) {
2595 if (adev->speaker_lr_swap != reverse_speakers) {
2596 adev->speaker_lr_swap = reverse_speakers;
2597 // only update the selected device if there is active pcm playback
2598 struct audio_usecase *usecase;
2599 struct listnode *node;
2600 list_for_each(node, &adev->usecase_list) {
2601 usecase = node_to_item(node, struct audio_usecase, list);
2602 if (usecase->type == PCM_PLAYBACK) {
2603 select_devices(adev, usecase->id);
2604 break;
2605 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002606 }
2607 }
2608 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002609 }
2610
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002611 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002612
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002613done:
2614 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002615 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302616 ALOGV("%s: exit with code(%d)", __func__, status);
2617 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002618}
2619
2620static char* adev_get_parameters(const struct audio_hw_device *dev,
2621 const char *keys)
2622{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002623 struct audio_device *adev = (struct audio_device *)dev;
2624 struct str_parms *reply = str_parms_create();
2625 struct str_parms *query = str_parms_create_str(keys);
2626 char *str;
2627
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002628 pthread_mutex_lock(&adev->lock);
2629
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002630 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002631 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002632 platform_get_parameters(adev->platform, query, reply);
2633 str = str_parms_to_str(reply);
2634 str_parms_destroy(query);
2635 str_parms_destroy(reply);
2636
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002637 pthread_mutex_unlock(&adev->lock);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002638 ALOGV("%s: exit: returns - %s", __func__, str);
2639 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002640}
2641
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302642static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002643{
2644 return 0;
2645}
2646
2647static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2648{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002649 int ret;
2650 struct audio_device *adev = (struct audio_device *)dev;
2651 pthread_mutex_lock(&adev->lock);
2652 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002653 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002654 pthread_mutex_unlock(&adev->lock);
2655 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002656}
2657
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302658static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2659 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002660{
2661 return -ENOSYS;
2662}
2663
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302664static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2665 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002666{
2667 return -ENOSYS;
2668}
2669
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302670static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2671 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002672{
2673 return -ENOSYS;
2674}
2675
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302676static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2677 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002678{
2679 return -ENOSYS;
2680}
2681
2682static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2683{
2684 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002685 pthread_mutex_lock(&adev->lock);
2686 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002687 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002688 adev->mode = mode;
2689 }
2690 pthread_mutex_unlock(&adev->lock);
2691 return 0;
2692}
2693
2694static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2695{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002696 int ret;
2697
2698 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002699 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002700 ret = voice_set_mic_mute((struct audio_device *)dev, state);
2701 pthread_mutex_unlock(&adev->lock);
2702
2703 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002704}
2705
2706static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2707{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002708 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002709 return 0;
2710}
2711
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302712static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002713 const struct audio_config *config)
2714{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302715 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002716
2717 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2718}
2719
2720static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302721 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002722 audio_devices_t devices,
2723 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302724 struct audio_stream_in **stream_in,
2725 audio_input_flags_t flags __unused,
2726 const char *address __unused,
2727 audio_source_t source __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002728{
2729 struct audio_device *adev = (struct audio_device *)dev;
2730 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002731 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302732 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002733
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302734
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002735 *stream_in = NULL;
2736 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2737 return -EINVAL;
2738
2739 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302740 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
2741 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2742 devices, &in->stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002743
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002744 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2745
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002746 in->stream.common.get_sample_rate = in_get_sample_rate;
2747 in->stream.common.set_sample_rate = in_set_sample_rate;
2748 in->stream.common.get_buffer_size = in_get_buffer_size;
2749 in->stream.common.get_channels = in_get_channels;
2750 in->stream.common.get_format = in_get_format;
2751 in->stream.common.set_format = in_set_format;
2752 in->stream.common.standby = in_standby;
2753 in->stream.common.dump = in_dump;
2754 in->stream.common.set_parameters = in_set_parameters;
2755 in->stream.common.get_parameters = in_get_parameters;
2756 in->stream.common.add_audio_effect = in_add_audio_effect;
2757 in->stream.common.remove_audio_effect = in_remove_audio_effect;
2758 in->stream.set_gain = in_set_gain;
2759 in->stream.read = in_read;
2760 in->stream.get_input_frames_lost = in_get_input_frames_lost;
2761
2762 in->device = devices;
2763 in->source = AUDIO_SOURCE_DEFAULT;
2764 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002765 in->standby = 1;
2766 in->channel_mask = config->channel_mask;
2767
2768 /* Update config params with the requested sample rate and channels */
2769 in->usecase = USECASE_AUDIO_RECORD;
2770 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002771 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002772 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002773
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302774 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
2775 if (config->sample_rate == 0)
2776 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2777 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2778 config->sample_rate != 8000) {
2779 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2780 ret = -EINVAL;
2781 goto err_open;
2782 }
2783 if (config->format == AUDIO_FORMAT_DEFAULT)
2784 config->format = AUDIO_FORMAT_PCM_16_BIT;
2785 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2786 config->format = AUDIO_FORMAT_PCM_16_BIT;
2787 ret = -EINVAL;
2788 goto err_open;
2789 }
2790 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
2791 in->config = pcm_config_afe_proxy_record;
2792 in->config.channels = channel_count;
2793 in->config.rate = config->sample_rate;
2794 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002795 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302796 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002797 ALOGE("%s: audio_extn_ssr_init failed", __func__);
2798 ret = -EINVAL;
2799 goto err_open;
2800 }
2801 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07002802 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002803 }
Mingming Yine62d7842013-10-25 16:26:03 -07002804 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002805 audio_extn_compr_cap_format_supported(config->format) &&
2806 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302807 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002808 } else {
2809 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302810 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002811 buffer_size = get_input_buffer_size(config->sample_rate,
2812 config->format,
2813 channel_count);
2814 in->config.period_size = buffer_size / frame_size;
2815 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002816
2817 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07002818 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002819 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002820
2821err_open:
2822 free(in);
2823 *stream_in = NULL;
2824 return ret;
2825}
2826
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302827static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002828 struct audio_stream_in *stream)
2829{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002830 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002831 struct stream_in *in = (struct stream_in *)stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302832 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002833
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002834 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2835 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
2836 if (ret != 0)
2837 ALOGE("%s: Compress voip input cannot be closed, error:%d",
2838 __func__, ret);
2839 } else
2840 in_standby(&stream->common);
2841
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302842 if (audio_extn_ssr_get_enabled() &&
2843 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002844 audio_extn_ssr_deinit();
2845 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002846 free(stream);
2847
Mingming Yine62d7842013-10-25 16:26:03 -07002848 if(audio_extn_compr_cap_enabled() &&
2849 audio_extn_compr_cap_format_supported(in->config.format))
2850 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002851 return;
2852}
2853
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302854static int adev_dump(const audio_hw_device_t *device __unused,
2855 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002856{
2857 return 0;
2858}
2859
2860static int adev_close(hw_device_t *device)
2861{
2862 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07002863
2864 if (!adev)
2865 return 0;
2866
2867 pthread_mutex_lock(&adev_init_lock);
2868
2869 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08002870 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07002871 audio_route_free(adev->audio_route);
2872 free(adev->snd_dev_ref_cnt);
2873 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07002874 free(device);
2875 adev = NULL;
2876 }
2877 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002878 return 0;
2879}
2880
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002881static int adev_open(const hw_module_t *module, const char *name,
2882 hw_device_t **device)
2883{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002884 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002885
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08002886 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002887 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
2888
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002889 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07002890 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002891 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07002892 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002893 ALOGD("%s: returning existing instance of adev", __func__);
2894 ALOGD("%s: exit", __func__);
2895 pthread_mutex_unlock(&adev_init_lock);
2896 return 0;
2897 }
2898
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002899 adev = calloc(1, sizeof(struct audio_device));
2900
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002901 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
2902
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002903 adev->device.common.tag = HARDWARE_DEVICE_TAG;
2904 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
2905 adev->device.common.module = (struct hw_module_t *)module;
2906 adev->device.common.close = adev_close;
2907
2908 adev->device.init_check = adev_init_check;
2909 adev->device.set_voice_volume = adev_set_voice_volume;
2910 adev->device.set_master_volume = adev_set_master_volume;
2911 adev->device.get_master_volume = adev_get_master_volume;
2912 adev->device.set_master_mute = adev_set_master_mute;
2913 adev->device.get_master_mute = adev_get_master_mute;
2914 adev->device.set_mode = adev_set_mode;
2915 adev->device.set_mic_mute = adev_set_mic_mute;
2916 adev->device.get_mic_mute = adev_get_mic_mute;
2917 adev->device.set_parameters = adev_set_parameters;
2918 adev->device.get_parameters = adev_get_parameters;
2919 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
2920 adev->device.open_output_stream = adev_open_output_stream;
2921 adev->device.close_output_stream = adev_close_output_stream;
2922 adev->device.open_input_stream = adev_open_input_stream;
2923 adev->device.close_input_stream = adev_close_input_stream;
2924 adev->device.dump = adev_dump;
2925
2926 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002927 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08002928 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002929 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002930 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002931 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08002932 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07002933 /* adev->cur_hdmi_channels = 0; by calloc() */
Eric Laurentb23d5282013-05-14 15:27:20 -07002934 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002935 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08002936 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08002937 adev->cur_wfd_channels = 2;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002938
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302939 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
2940 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
2941
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002942 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07002943 adev->platform = platform_init(adev);
2944 if (!adev->platform) {
2945 free(adev->snd_dev_ref_cnt);
2946 free(adev);
2947 ALOGE("%s: Failed to init platform data, aborting.", __func__);
2948 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08002949 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07002950 return -EINVAL;
2951 }
Eric Laurentc4aef752013-09-12 17:45:53 -07002952
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302953 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
2954
Eric Laurentc4aef752013-09-12 17:45:53 -07002955 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
2956 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
2957 if (adev->visualizer_lib == NULL) {
2958 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
2959 } else {
2960 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
2961 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002962 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07002963 "visualizer_hal_start_output");
2964 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002965 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07002966 "visualizer_hal_stop_output");
2967 }
2968 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08002969 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07002970
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08002971 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
2972 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
2973 if (adev->offload_effects_lib == NULL) {
2974 ALOGE("%s: DLOPEN failed for %s", __func__,
2975 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
2976 } else {
2977 ALOGV("%s: DLOPEN successful for %s", __func__,
2978 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
2979 adev->offload_effects_start_output =
2980 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
2981 "offload_effects_bundle_hal_start_output");
2982 adev->offload_effects_stop_output =
2983 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
2984 "offload_effects_bundle_hal_stop_output");
2985 }
2986 }
2987
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002988 *device = &adev->device.common;
2989
Kiran Kandi910e1862013-10-29 13:29:42 -07002990 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07002991 pthread_mutex_unlock(&adev_init_lock);
2992
Eric Laurent994a6932013-07-17 11:51:42 -07002993 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002994 return 0;
2995}
2996
Mingming Yin90e2cd82014-06-06 17:11:23 -07002997int pcm_ioctl(struct pcm *pcm, int request, ...)
2998{
2999 va_list ap;
3000 void * arg;
3001 int pcm_fd = *(int*)pcm;
3002
3003 va_start(ap, request);
3004 arg = va_arg(ap, void *);
3005 va_end(ap);
3006
3007 return ioctl(pcm_fd, request, arg);
3008}
3009
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003010static struct hw_module_methods_t hal_module_methods = {
3011 .open = adev_open,
3012};
3013
3014struct audio_module HAL_MODULE_INFO_SYM = {
3015 .common = {
3016 .tag = HARDWARE_MODULE_TAG,
3017 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3018 .hal_api_version = HARDWARE_HAL_API_VERSION,
3019 .id = AUDIO_HARDWARE_MODULE_ID,
3020 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003021 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003022 .methods = &hal_module_methods,
3023 },
3024};