blob: a17d77e037baa23d7b29ad82a27bed1b97fe31ea [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
Steve Kondikb045f472014-11-12 23:24:07 -080066#ifdef LOW_LATENCY_PRIMARY
67#define USECASE_AUDIO_PLAYBACK_PRIMARY USECASE_AUDIO_PLAYBACK_LOW_LATENCY
68#else
Haynes Mathew Georgebf143712013-12-03 13:02:53 -080069#define USECASE_AUDIO_PLAYBACK_PRIMARY USECASE_AUDIO_PLAYBACK_DEEP_BUFFER
Steve Kondikb045f472014-11-12 23:24:07 -080070#endif
Haynes Mathew Georgebf143712013-12-03 13:02:53 -080071
Eric Laurentb23d5282013-05-14 15:27:20 -070072struct pcm_config pcm_config_deep_buffer = {
73 .channels = 2,
74 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
75 .period_size = DEEP_BUFFER_OUTPUT_PERIOD_SIZE,
76 .period_count = DEEP_BUFFER_OUTPUT_PERIOD_COUNT,
77 .format = PCM_FORMAT_S16_LE,
78 .start_threshold = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
79 .stop_threshold = INT_MAX,
80 .avail_min = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
81};
82
83struct pcm_config pcm_config_low_latency = {
84 .channels = 2,
85 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
86 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
87 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
88 .format = PCM_FORMAT_S16_LE,
89 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
90 .stop_threshold = INT_MAX,
91 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
92};
93
94struct pcm_config pcm_config_hdmi_multi = {
95 .channels = HDMI_MULTI_DEFAULT_CHANNEL_COUNT, /* changed when the stream is opened */
96 .rate = DEFAULT_OUTPUT_SAMPLING_RATE, /* changed when the stream is opened */
97 .period_size = HDMI_MULTI_PERIOD_SIZE,
98 .period_count = HDMI_MULTI_PERIOD_COUNT,
99 .format = PCM_FORMAT_S16_LE,
100 .start_threshold = 0,
101 .stop_threshold = INT_MAX,
102 .avail_min = 0,
103};
104
105struct pcm_config pcm_config_audio_capture = {
106 .channels = 2,
Eric Laurentb23d5282013-05-14 15:27:20 -0700107 .period_count = AUDIO_CAPTURE_PERIOD_COUNT,
108 .format = PCM_FORMAT_S16_LE,
109};
110
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530111#define AFE_PROXY_CHANNEL_COUNT 2
112#define AFE_PROXY_SAMPLING_RATE 48000
113
114#define AFE_PROXY_PLAYBACK_PERIOD_SIZE 768
115#define AFE_PROXY_PLAYBACK_PERIOD_COUNT 4
116
117struct pcm_config pcm_config_afe_proxy_playback = {
118 .channels = AFE_PROXY_CHANNEL_COUNT,
119 .rate = AFE_PROXY_SAMPLING_RATE,
120 .period_size = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
121 .period_count = AFE_PROXY_PLAYBACK_PERIOD_COUNT,
122 .format = PCM_FORMAT_S16_LE,
123 .start_threshold = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
124 .stop_threshold = INT_MAX,
125 .avail_min = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
126};
127
128#define AFE_PROXY_RECORD_PERIOD_SIZE 768
129#define AFE_PROXY_RECORD_PERIOD_COUNT 4
130
131struct pcm_config pcm_config_afe_proxy_record = {
132 .channels = AFE_PROXY_CHANNEL_COUNT,
133 .rate = AFE_PROXY_SAMPLING_RATE,
134 .period_size = AFE_PROXY_RECORD_PERIOD_SIZE,
135 .period_count = AFE_PROXY_RECORD_PERIOD_COUNT,
136 .format = PCM_FORMAT_S16_LE,
137 .start_threshold = AFE_PROXY_RECORD_PERIOD_SIZE,
138 .stop_threshold = INT_MAX,
139 .avail_min = AFE_PROXY_RECORD_PERIOD_SIZE,
140};
141
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -0800142const char * const use_case_table[AUDIO_USECASE_MAX] = {
Eric Laurentb23d5282013-05-14 15:27:20 -0700143 [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = "deep-buffer-playback",
144 [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = "low-latency-playback",
145 [USECASE_AUDIO_PLAYBACK_MULTI_CH] = "multi-channel-playback",
Shruthi Krishnaace10852013-10-25 14:32:12 -0700146 [USECASE_AUDIO_PLAYBACK_OFFLOAD] = "compress-offload-playback",
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700147#ifdef MULTIPLE_OFFLOAD_ENABLED
148 [USECASE_AUDIO_PLAYBACK_OFFLOAD2] = "compress-offload-playback2",
149 [USECASE_AUDIO_PLAYBACK_OFFLOAD3] = "compress-offload-playback3",
150 [USECASE_AUDIO_PLAYBACK_OFFLOAD4] = "compress-offload-playback4",
151 [USECASE_AUDIO_PLAYBACK_OFFLOAD5] = "compress-offload-playback5",
152 [USECASE_AUDIO_PLAYBACK_OFFLOAD6] = "compress-offload-playback6",
153 [USECASE_AUDIO_PLAYBACK_OFFLOAD7] = "compress-offload-playback7",
154 [USECASE_AUDIO_PLAYBACK_OFFLOAD8] = "compress-offload-playback8",
155 [USECASE_AUDIO_PLAYBACK_OFFLOAD9] = "compress-offload-playback9",
156#endif
Eric Laurentb23d5282013-05-14 15:27:20 -0700157 [USECASE_AUDIO_RECORD] = "audio-record",
Mingming Yine62d7842013-10-25 16:26:03 -0700158 [USECASE_AUDIO_RECORD_COMPRESS] = "audio-record-compress",
Eric Laurentb23d5282013-05-14 15:27:20 -0700159 [USECASE_AUDIO_RECORD_LOW_LATENCY] = "low-latency-record",
Preetam Singh Ranawatde84f1a2013-11-01 14:58:16 -0700160 [USECASE_AUDIO_RECORD_FM_VIRTUAL] = "fm-virtual-record",
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700161 [USECASE_AUDIO_PLAYBACK_FM] = "play-fm",
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800162 [USECASE_AUDIO_HFP_SCO] = "hfp-sco",
Vimal Puthanveed47e64852013-12-20 13:23:39 -0800163 [USECASE_AUDIO_HFP_SCO_WB] = "hfp-sco-wb",
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700164 [USECASE_VOICE_CALL] = "voice-call",
Mingming Yinee733602014-04-03 17:47:22 -0700165
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700166 [USECASE_VOICE2_CALL] = "voice2-call",
167 [USECASE_VOLTE_CALL] = "volte-call",
168 [USECASE_QCHAT_CALL] = "qchat-call",
Vicky Sehrawat111aeb32014-02-12 17:58:59 -0800169 [USECASE_VOWLAN_CALL] = "vowlan-call",
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800170 [USECASE_COMPRESS_VOIP_CALL] = "compress-voip-call",
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700171 [USECASE_INCALL_REC_UPLINK] = "incall-rec-uplink",
172 [USECASE_INCALL_REC_DOWNLINK] = "incall-rec-downlink",
173 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK] = "incall-rec-uplink-and-downlink",
Helen Zenge56b4852013-12-03 16:54:40 -0800174 [USECASE_INCALL_REC_UPLINK_COMPRESS] = "incall-rec-uplink-compress",
175 [USECASE_INCALL_REC_DOWNLINK_COMPRESS] = "incall-rec-downlink-compress",
176 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK_COMPRESS] = "incall-rec-uplink-and-downlink-compress",
177
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -0700178 [USECASE_INCALL_MUSIC_UPLINK] = "incall_music_uplink",
179 [USECASE_INCALL_MUSIC_UPLINK2] = "incall_music_uplink2",
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700180 [USECASE_AUDIO_SPKR_CALIB_RX] = "spkr-rx-calib",
181 [USECASE_AUDIO_SPKR_CALIB_TX] = "spkr-vi-record",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530182
183 [USECASE_AUDIO_PLAYBACK_AFE_PROXY] = "afe-proxy-playback",
184 [USECASE_AUDIO_RECORD_AFE_PROXY] = "afe-proxy-record",
Eric Laurentb23d5282013-05-14 15:27:20 -0700185};
186
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700187static const audio_usecase_t offload_usecases[] = {
188 USECASE_AUDIO_PLAYBACK_OFFLOAD,
189#ifdef MULTIPLE_OFFLOAD_ENABLED
190 USECASE_AUDIO_PLAYBACK_OFFLOAD2,
191 USECASE_AUDIO_PLAYBACK_OFFLOAD3,
Steve Kondikac72feb2014-07-20 23:15:34 -0700192#ifndef PLATFORM_MSM8974
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700193 USECASE_AUDIO_PLAYBACK_OFFLOAD4,
194 USECASE_AUDIO_PLAYBACK_OFFLOAD5,
195 USECASE_AUDIO_PLAYBACK_OFFLOAD6,
196 USECASE_AUDIO_PLAYBACK_OFFLOAD7,
Steve Kondikac72feb2014-07-20 23:15:34 -0700197#endif
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700198 USECASE_AUDIO_PLAYBACK_OFFLOAD8,
Steve Kondikac72feb2014-07-20 23:15:34 -0700199#ifndef PLATFORM_MSM8974
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700200 USECASE_AUDIO_PLAYBACK_OFFLOAD9,
201#endif
Steve Kondikac72feb2014-07-20 23:15:34 -0700202#endif
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -0700203};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800204
205#define STRING_TO_ENUM(string) { #string, string }
206
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800207struct string_to_enum {
208 const char *name;
209 uint32_t value;
210};
211
212static const struct string_to_enum out_channels_name_to_enum_table[] = {
213 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_STEREO),
214 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_5POINT1),
215 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_7POINT1),
216};
217
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700218static struct audio_device *adev = NULL;
219static pthread_mutex_t adev_init_lock;
Kiran Kandi910e1862013-10-29 13:29:42 -0700220static unsigned int audio_device_ref_count;
221
Haynes Mathew George5191a852013-09-11 14:19:36 -0700222static int set_voice_volume_l(struct audio_device *adev, float volume);
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800223
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800224static int check_and_set_gapless_mode(struct audio_device *adev) {
225
226
227 char value[PROPERTY_VALUE_MAX] = {0};
228 bool gapless_enabled = false;
229 const char *mixer_ctl_name = "Compress Gapless Playback";
230 struct mixer_ctl *ctl;
231
232 ALOGV("%s:", __func__);
233 property_get("audio.offload.gapless.enabled", value, NULL);
234 gapless_enabled = atoi(value) || !strncmp("true", value, 4);
235
236 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
237 if (!ctl) {
238 ALOGE("%s: Could not get ctl for mixer cmd - %s",
239 __func__, mixer_ctl_name);
240 return -EINVAL;
241 }
242
243 if (mixer_ctl_set_value(ctl, 0, gapless_enabled) < 0) {
244 ALOGE("%s: Could not set gapless mode %d",
245 __func__, gapless_enabled);
246 return -EINVAL;
247 }
248 return 0;
249}
Haynes Mathew George5191a852013-09-11 14:19:36 -0700250
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700251static bool is_supported_format(audio_format_t format)
252{
Eric Laurent86e17132013-09-12 17:49:30 -0700253 if (format == AUDIO_FORMAT_MP3 ||
Mingming Yinee733602014-04-03 17:47:22 -0700254#ifdef EXTN_OFFLOAD_ENABLED
Steve Kondikba3b35d2014-07-18 01:49:48 -0700255 format == AUDIO_FORMAT_PCM_OFFLOAD ||
ApurupaPattapu0c566872014-01-10 14:46:02 -0800256 format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD ||
Mingming Yinee733602014-04-03 17:47:22 -0700257 format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD ||
258#endif
Steve Kondik6bedcdf2014-07-21 11:48:30 -0700259#ifdef FLAC_OFFLOAD_ENABLED
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800260 format == AUDIO_FORMAT_FLAC ||
Steve Kondik6bedcdf2014-07-21 11:48:30 -0700261#endif
Steve Kondikba3b35d2014-07-18 01:49:48 -0700262 format == AUDIO_FORMAT_WMA ||
263 format == AUDIO_FORMAT_WMA_PRO ||
264 format == AUDIO_FORMAT_MP2 ||
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530265 format == AUDIO_FORMAT_AAC_LC ||
266 format == AUDIO_FORMAT_AAC_HE_V1 ||
267 format == AUDIO_FORMAT_AAC_HE_V2 ){
268 return true;
269 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700270 return false;
271}
272
273static int get_snd_codec_id(audio_format_t format)
274{
275 int id = 0;
276
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530277 switch (format & AUDIO_FORMAT_MAIN_MASK) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700278 case AUDIO_FORMAT_MP3:
279 id = SND_AUDIOCODEC_MP3;
280 break;
281 case AUDIO_FORMAT_AAC:
282 id = SND_AUDIOCODEC_AAC;
283 break;
Mingming Yinee733602014-04-03 17:47:22 -0700284#ifdef EXTN_OFFLOAD_ENABLED
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530285 case AUDIO_FORMAT_PCM_OFFLOAD:
Steve Kondikba3b35d2014-07-18 01:49:48 -0700286 case AUDIO_FORMAT_PCM_16_BIT_OFFLOAD:
287 case AUDIO_FORMAT_PCM_24_BIT_OFFLOAD:
ApurupaPattapu0c566872014-01-10 14:46:02 -0800288 id = SND_AUDIOCODEC_PCM;
289 break;
Mingming Yinee733602014-04-03 17:47:22 -0700290#endif
Steve Kondik6bedcdf2014-07-21 11:48:30 -0700291#ifdef FLAC_OFFLOAD_ENABLED
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800292 case AUDIO_FORMAT_FLAC:
293 id = SND_AUDIOCODEC_FLAC;
294 break;
Steve Kondik6bedcdf2014-07-21 11:48:30 -0700295#endif
Steve Kondikba3b35d2014-07-18 01:49:48 -0700296 case AUDIO_FORMAT_WMA:
297 id = SND_AUDIOCODEC_WMA;
298 break;
299 case AUDIO_FORMAT_WMA_PRO:
300 id = SND_AUDIOCODEC_WMA_PRO;
301 break;
302 case AUDIO_FORMAT_MP2:
303 id = SND_AUDIOCODEC_MP2;
304 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700305 default:
Mingming Yin90310102013-11-13 16:57:00 -0800306 ALOGE("%s: Unsupported audio format :%x", __func__, format);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700307 }
308
309 return id;
310}
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -0800311
Avinash Vaish8005dc82014-07-24 15:36:33 +0530312static int enable_audio_route_for_voice_usecases(struct audio_device *adev,
313 struct audio_usecase *uc_info)
314{
315 struct listnode *node;
316 struct audio_usecase *usecase;
317
318 if (uc_info == NULL)
319 return -EINVAL;
320
321 /* Re-route all voice usecases on the shared backend other than the
322 specified usecase to new snd devices */
323 list_for_each(node, &adev->usecase_list) {
324 usecase = node_to_item(node, struct audio_usecase, list);
325 if ((usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) &&
326 (usecase != uc_info))
327 enable_audio_route(adev, usecase);
328 }
329 return 0;
330}
331
Venkata Narendra Kumar Guttac9e9e2c2014-07-09 16:29:28 +0530332int get_snd_card_state(struct audio_device *adev)
Naresh Tannirucef332d2014-06-04 18:17:56 +0530333{
334 int snd_scard_state;
335
336 if (!adev)
337 return SND_CARD_STATE_OFFLINE;
338
339 pthread_mutex_lock(&adev->snd_card_status.lock);
340 snd_scard_state = adev->snd_card_status.state;
341 pthread_mutex_unlock(&adev->snd_card_status.lock);
342
343 return snd_scard_state;
344}
345
346static int set_snd_card_state(struct audio_device *adev, int snd_scard_state)
347{
348 if (!adev)
349 return -ENOSYS;
350
351 pthread_mutex_lock(&adev->snd_card_status.lock);
352 adev->snd_card_status.state = snd_scard_state;
353 pthread_mutex_unlock(&adev->snd_card_status.lock);
354
355 return 0;
356}
357
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700358int enable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700359 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800360{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700361 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700362 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800363
364 if (usecase == NULL)
365 return -EINVAL;
366
367 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
368
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800369 if (usecase->type == PCM_CAPTURE)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700370 snd_device = usecase->in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800371 else
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700372 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800373
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -0800374#ifdef DS1_DOLBY_DAP_ENABLED
375 audio_extn_dolby_set_dmid(adev);
376 audio_extn_dolby_set_endpoint(adev);
377#endif
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800378 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700379 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700380 ALOGV("%s: apply mixer and update path: %s", __func__, mixer_path);
381 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800382 ALOGV("%s: exit", __func__);
383 return 0;
384}
385
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700386int disable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700387 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800388{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700389 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700390 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800391
392 if (usecase == NULL)
393 return -EINVAL;
394
395 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700396 if (usecase->type == PCM_CAPTURE)
397 snd_device = usecase->in_snd_device;
398 else
399 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800400 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700401 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700402 ALOGV("%s: reset and update mixer path: %s", __func__, mixer_path);
403 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800404 ALOGV("%s: exit", __func__);
405 return 0;
406}
407
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700408int enable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700409 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800410{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700411 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
412
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800413 if (snd_device < SND_DEVICE_MIN ||
414 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800415 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800416 return -EINVAL;
417 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700418
419 adev->snd_dev_ref_cnt[snd_device]++;
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700420
421 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0 ) {
422 ALOGE("%s: Invalid sound device returned", __func__);
423 return -EINVAL;
424 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700425 if (adev->snd_dev_ref_cnt[snd_device] > 1) {
Eric Laurent994a6932013-07-17 11:51:42 -0700426 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700427 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700428 return 0;
429 }
430
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700431 /* start usb playback thread */
432 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
433 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
434 audio_extn_usb_start_playback(adev);
435
436 /* start usb capture thread */
437 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
438 audio_extn_usb_start_capture(adev);
439
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700440 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
441 audio_extn_spkr_prot_is_enabled()) {
442 if (audio_extn_spkr_prot_start_processing(snd_device)) {
443 ALOGE("%s: spkr_start_processing failed", __func__);
444 return -EINVAL;
445 }
446 } else {
447 ALOGV("%s: snd_device(%d: %s)", __func__,
448 snd_device, device_name);
449 if (platform_send_audio_calibration(adev->platform, snd_device) < 0) {
450 adev->snd_dev_ref_cnt[snd_device]--;
451 return -EINVAL;
452 }
Kiran Kandide144c82013-11-20 15:58:32 -0800453 audio_extn_listen_update_status(snd_device,
454 LISTEN_EVENT_SND_DEVICE_BUSY);
455
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700456 audio_route_apply_and_update_path(adev->audio_route, device_name);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800457 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800458 return 0;
459}
460
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700461int disable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700462 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800463{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700464 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
465
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800466 if (snd_device < SND_DEVICE_MIN ||
467 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800468 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800469 return -EINVAL;
470 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700471 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
472 ALOGE("%s: device ref cnt is already 0", __func__);
473 return -EINVAL;
474 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700475
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700476 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700477
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700478 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
479 ALOGE("%s: Invalid sound device returned", __func__);
480 return -EINVAL;
481 }
482
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700483 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Eric Laurent994a6932013-07-17 11:51:42 -0700484 ALOGV("%s: snd_device(%d: %s)", __func__,
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700485 snd_device, device_name);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800486 /* exit usb play back thread */
487 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
488 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
489 audio_extn_usb_stop_playback();
490
491 /* exit usb capture thread */
492 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
Rajshekar Eashwarappa4dfa0752014-10-02 20:18:20 +0530493 audio_extn_usb_stop_capture();
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700494 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
495 audio_extn_spkr_prot_is_enabled()) {
496 audio_extn_spkr_prot_stop_processing();
497 } else
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700498 audio_route_reset_and_update_path(adev->audio_route, device_name);
Kiran Kandide144c82013-11-20 15:58:32 -0800499
500 audio_extn_listen_update_status(snd_device,
501 LISTEN_EVENT_SND_DEVICE_FREE);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700502 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700503
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800504 return 0;
505}
506
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700507static void check_usecases_codec_backend(struct audio_device *adev,
508 struct audio_usecase *uc_info,
509 snd_device_t snd_device)
510{
511 struct listnode *node;
512 struct audio_usecase *usecase;
513 bool switch_device[AUDIO_USECASE_MAX];
514 int i, num_uc_to_switch = 0;
515
516 /*
517 * This function is to make sure that all the usecases that are active on
518 * the hardware codec backend are always routed to any one device that is
519 * handled by the hardware codec.
520 * For example, if low-latency and deep-buffer usecases are currently active
521 * on speaker and out_set_parameters(headset) is received on low-latency
522 * output, then we have to make sure deep-buffer is also switched to headset,
523 * because of the limitation that both the devices cannot be enabled
524 * at the same time as they share the same backend.
525 */
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800526 /*
527 * This call is to check if we need to force routing for a particular stream
528 * If there is a backend configuration change for the device when a
529 * new stream starts, then ADM needs to be closed and re-opened with the new
530 * configuraion. This call check if we need to re-route all the streams
531 * associated with the backend. Touch tone + 24 bit playback.
532 */
533 bool force_routing = platform_check_and_set_codec_backend_cfg(adev, uc_info);
534
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700535 /* Disable all the usecases on the shared backend other than the
536 specified usecase */
537 for (i = 0; i < AUDIO_USECASE_MAX; i++)
538 switch_device[i] = false;
539
540 list_for_each(node, &adev->usecase_list) {
541 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800542 if (usecase->type != PCM_CAPTURE &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700543 usecase != uc_info &&
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800544 (usecase->out_snd_device != snd_device || force_routing) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700545 usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
546 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
547 __func__, use_case_table[usecase->id],
Eric Laurentb23d5282013-05-14 15:27:20 -0700548 platform_get_snd_device_name(usecase->out_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700549 disable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700550 switch_device[usecase->id] = true;
551 num_uc_to_switch++;
552 }
553 }
554
555 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700556 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700557
558 list_for_each(node, &adev->usecase_list) {
559 usecase = node_to_item(node, struct audio_usecase, list);
560 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700561 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700562 }
563 }
564
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700565 list_for_each(node, &adev->usecase_list) {
566 usecase = node_to_item(node, struct audio_usecase, list);
567 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700568 enable_snd_device(adev, snd_device);
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700569 }
570 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700571
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700572 /* Re-route all the usecases on the shared backend other than the
573 specified usecase to new snd devices */
574 list_for_each(node, &adev->usecase_list) {
575 usecase = node_to_item(node, struct audio_usecase, list);
576 /* Update the out_snd_device only before enabling the audio route */
577 if (switch_device[usecase->id] ) {
578 usecase->out_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530579 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
580 enable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700581 }
582 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700583 }
584}
585
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700586static void check_and_route_capture_usecases(struct audio_device *adev,
587 struct audio_usecase *uc_info,
588 snd_device_t snd_device)
589{
590 struct listnode *node;
591 struct audio_usecase *usecase;
592 bool switch_device[AUDIO_USECASE_MAX];
593 int i, num_uc_to_switch = 0;
594
595 /*
596 * This function is to make sure that all the active capture usecases
597 * are always routed to the same input sound device.
598 * For example, if audio-record and voice-call usecases are currently
599 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
600 * is received for voice call then we have to make sure that audio-record
601 * usecase is also switched to earpiece i.e. voice-dmic-ef,
602 * because of the limitation that two devices cannot be enabled
603 * at the same time if they share the same backend.
604 */
605 for (i = 0; i < AUDIO_USECASE_MAX; i++)
606 switch_device[i] = false;
607
608 list_for_each(node, &adev->usecase_list) {
609 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800610 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700611 usecase != uc_info &&
Avinash Vaish44014792015-03-27 14:46:04 +0530612 usecase->in_snd_device != snd_device &&
613 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700614 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
615 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700616 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700617 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700618 switch_device[usecase->id] = true;
619 num_uc_to_switch++;
620 }
621 }
622
623 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700624 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700625
626 list_for_each(node, &adev->usecase_list) {
627 usecase = node_to_item(node, struct audio_usecase, list);
628 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700629 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800630 }
631 }
632
633 list_for_each(node, &adev->usecase_list) {
634 usecase = node_to_item(node, struct audio_usecase, list);
635 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700636 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700637 }
638 }
639
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700640 /* Re-route all the usecases on the shared backend other than the
641 specified usecase to new snd devices */
642 list_for_each(node, &adev->usecase_list) {
643 usecase = node_to_item(node, struct audio_usecase, list);
644 /* Update the in_snd_device only before enabling the audio route */
645 if (switch_device[usecase->id] ) {
646 usecase->in_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530647 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
648 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700649 }
650 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700651 }
652}
653
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800654/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700655static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800656{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700657 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700658 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800659
660 switch (channels) {
661 /*
662 * Do not handle stereo output in Multi-channel cases
663 * Stereo case is handled in normal playback path
664 */
665 case 6:
666 ALOGV("%s: HDMI supports 5.1", __func__);
667 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
668 break;
669 case 8:
670 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
671 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
672 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
673 break;
674 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700675 ALOGE("HDMI does not support multi channel playback");
676 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800677 break;
678 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700679 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800680}
681
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700682static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
683{
684 struct audio_usecase *usecase;
685 struct listnode *node;
686
687 list_for_each(node, &adev->usecase_list) {
688 usecase = node_to_item(node, struct audio_usecase, list);
689 if (usecase->type == VOICE_CALL) {
690 ALOGV("%s: usecase id %d", __func__, usecase->id);
691 return usecase->id;
692 }
693 }
694 return USECASE_INVALID;
695}
696
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700697struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700698 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700699{
700 struct audio_usecase *usecase;
701 struct listnode *node;
702
703 list_for_each(node, &adev->usecase_list) {
704 usecase = node_to_item(node, struct audio_usecase, list);
705 if (usecase->id == uc_id)
706 return usecase;
707 }
708 return NULL;
709}
710
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700711int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800712{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800713 snd_device_t out_snd_device = SND_DEVICE_NONE;
714 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700715 struct audio_usecase *usecase = NULL;
716 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800717 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800718 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800719 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800720 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700721 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800722
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700723 usecase = get_usecase_from_list(adev, uc_id);
724 if (usecase == NULL) {
725 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
726 return -EINVAL;
727 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800728
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800729 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800730 (usecase->type == VOIP_CALL) ||
731 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700732 out_snd_device = platform_get_output_snd_device(adev->platform,
733 usecase->stream.out->devices);
734 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700735 usecase->devices = usecase->stream.out->devices;
736 } else {
737 /*
738 * If the voice call is active, use the sound devices of voice call usecase
739 * so that it would not result any device switch. All the usecases will
740 * be switched to new device when select_devices() is called for voice call
741 * usecase. This is to avoid switching devices for voice call when
742 * check_usecases_codec_backend() is called below.
743 */
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -0700744 if (adev->voice.in_call && adev->mode == AUDIO_MODE_IN_CALL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700745 vc_usecase = get_usecase_from_list(adev,
746 get_voice_usecase_id_from_list(adev));
Mingming Yin6c23f382014-08-14 00:00:51 -0700747 if ((vc_usecase) && ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
748 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700749 in_snd_device = vc_usecase->in_snd_device;
750 out_snd_device = vc_usecase->out_snd_device;
751 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800752 } else if (voice_extn_compress_voip_is_active(adev)) {
753 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Mingming Yin6c23f382014-08-14 00:00:51 -0700754 if ((voip_usecase) && ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish6a4c3372014-06-25 12:20:37 +0530755 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Mingming Yin6c23f382014-08-14 00:00:51 -0700756 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800757 in_snd_device = voip_usecase->in_snd_device;
758 out_snd_device = voip_usecase->out_snd_device;
759 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800760 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800761 hfp_ucid = audio_extn_hfp_get_usecase();
762 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Mingming Yin6c23f382014-08-14 00:00:51 -0700763 if ((hfp_usecase) && (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800764 in_snd_device = hfp_usecase->in_snd_device;
765 out_snd_device = hfp_usecase->out_snd_device;
766 }
Vimal Puthanveed8fa9eab2014-01-07 16:47:47 -0800767 } else if (audio_extn_hfp_is_active(adev)) {
768 hfp_usecase = get_usecase_from_list(adev, USECASE_AUDIO_HFP_SCO);
769 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
770 in_snd_device = hfp_usecase->in_snd_device;
771 out_snd_device = hfp_usecase->out_snd_device;
772 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700773 }
774 if (usecase->type == PCM_PLAYBACK) {
775 usecase->devices = usecase->stream.out->devices;
776 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700777 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700778 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700779 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700780 if (usecase->stream.out == adev->primary_output &&
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530781 adev->active_input ) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700782 select_devices(adev, adev->active_input->usecase);
783 }
784 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700785 } else if (usecase->type == PCM_CAPTURE) {
786 usecase->devices = usecase->stream.in->device;
787 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700788 if (in_snd_device == SND_DEVICE_NONE) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530789 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530790 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 -0700791 adev->primary_output && !adev->primary_output->standby) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530792 out_device = adev->primary_output->devices;
793 } else if(usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
794 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700795 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530796 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700797 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700798 }
799 }
800
801 if (out_snd_device == usecase->out_snd_device &&
802 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800803 return 0;
804 }
805
sangwoobc677242013-08-08 16:53:43 +0900806 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700807 out_snd_device, platform_get_snd_device_name(out_snd_device),
808 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800809
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800810 /*
811 * Limitation: While in call, to do a device switch we need to disable
812 * and enable both RX and TX devices though one of them is same as current
813 * device.
814 */
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800815 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700816 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800817 }
818
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700819 /* Disable current sound devices */
820 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700821 disable_audio_route(adev, usecase);
822 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800823 }
824
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700825 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700826 disable_audio_route(adev, usecase);
827 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800828 }
829
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700830 /* Enable new sound devices */
831 if (out_snd_device != SND_DEVICE_NONE) {
832 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
833 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700834 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800835 }
836
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700837 if (in_snd_device != SND_DEVICE_NONE) {
838 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700839 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700840 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700841
Avinash Vaish8005dc82014-07-24 15:36:33 +0530842 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700843 status = platform_switch_voice_call_device_post(adev->platform,
844 out_snd_device,
845 in_snd_device);
Avinash Vaish8005dc82014-07-24 15:36:33 +0530846 enable_audio_route_for_voice_usecases(adev, usecase);
847 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800848
sangwoo170731f2013-06-08 15:36:36 +0900849 usecase->in_snd_device = in_snd_device;
850 usecase->out_snd_device = out_snd_device;
851
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700852 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900853
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800854 /* Applicable only on the targets that has external modem.
855 * Enable device command should be sent to modem only after
856 * enabling voice call mixer controls
857 */
858 if (usecase->type == VOICE_CALL)
859 status = platform_switch_voice_call_usecase_route_post(adev->platform,
860 out_snd_device,
861 in_snd_device);
862
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530863 ALOGD("%s: done",__func__);
864
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800865 return status;
866}
867
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800868static int stop_input_stream(struct stream_in *in)
869{
870 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800871 struct audio_usecase *uc_info;
872 struct audio_device *adev = in->dev;
873
Eric Laurentc8400632013-02-14 19:04:54 -0800874 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800875
Eric Laurent994a6932013-07-17 11:51:42 -0700876 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700877 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800878 uc_info = get_usecase_from_list(adev, in->usecase);
879 if (uc_info == NULL) {
880 ALOGE("%s: Could not find the usecase (%d) in the list",
881 __func__, in->usecase);
882 return -EINVAL;
883 }
884
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800885 /* Close in-call recording streams */
886 voice_check_and_stop_incall_rec_usecase(adev, in);
887
Eric Laurent150dbfe2013-02-27 14:31:02 -0800888 /* 1. Disable stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700889 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700890
891 /* 2. Disable the tx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700892 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800893
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800894 list_remove(&uc_info->list);
895 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800896
Eric Laurent994a6932013-07-17 11:51:42 -0700897 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800898 return ret;
899}
900
901int start_input_stream(struct stream_in *in)
902{
903 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800904 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800905 struct audio_usecase *uc_info;
906 struct audio_device *adev = in->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +0530907 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800908
Ramjee Singh240ac652015-07-31 16:12:29 +0530909 int usecase = platform_update_usecase_from_source(in->source,in->usecase);
910 if (get_usecase_from_list(adev, usecase) == NULL)
911 in->usecase = usecase;
912
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530913 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
914 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700915
Naresh Tannirucef332d2014-06-04 18:17:56 +0530916 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
917 ALOGE("%s: sound card is not active/SSR returning error ", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530918 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530919 goto error_config;
920 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530921
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700922 /* Check if source matches incall recording usecase criteria */
923 ret = voice_check_and_set_incall_rec_usecase(adev, in);
924 if (ret)
925 goto error_config;
926 else
927 ALOGV("%s: usecase(%d)", __func__, in->usecase);
928
Ramjee Singh240ac652015-07-31 16:12:29 +0530929 if (get_usecase_from_list(adev, in->usecase) != NULL) {
930 ALOGE("%s: use case assigned already in use, stream(%p)usecase(%d: %s)",
931 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
932 goto error_config;
933 }
934
Eric Laurentb23d5282013-05-14 15:27:20 -0700935 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800936 if (in->pcm_device_id < 0) {
937 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
938 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800939 ret = -EINVAL;
940 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800941 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700942
943 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800944 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
945 uc_info->id = in->usecase;
946 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800947 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700948 uc_info->devices = in->device;
949 uc_info->in_snd_device = SND_DEVICE_NONE;
950 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800951
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800952 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700953 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800954
Eric Laurentc8400632013-02-14 19:04:54 -0800955 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530956 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
957
958 unsigned int flags = PCM_IN;
959 unsigned int pcm_open_retry_entry_count = 0;
960
961 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
962 flags |= PCM_MMAP | PCM_NOIRQ;
963 pcm_open_retry_entry_count = PROXY_OPEN_RETRY_COUNT;
964 }
965
966 while(1) {
967 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
968 flags, &in->config);
969 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
970 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
971 if (in->pcm != NULL) {
972 pcm_close(in->pcm);
973 in->pcm = NULL;
974 }
975 if (pcm_open_retry_entry_count-- == 0) {
976 ret = -EIO;
977 goto error_open;
978 }
979 usleep(PROXY_OPEN_WAIT_TIME * 1000);
980 continue;
981 }
982 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800983 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530984
Eric Laurent994a6932013-07-17 11:51:42 -0700985 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800986 return ret;
987
988error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800989 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800990
991error_config:
992 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700993 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800994
995 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800996}
997
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700998/* must be called with out->lock locked */
999static int send_offload_cmd_l(struct stream_out* out, int command)
1000{
1001 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
1002
1003 ALOGVV("%s %d", __func__, command);
1004
1005 cmd->cmd = command;
1006 list_add_tail(&out->offload_cmd_list, &cmd->node);
1007 pthread_cond_signal(&out->offload_cond);
1008 return 0;
1009}
1010
1011/* must be called iwth out->lock locked */
1012static void stop_compressed_output_l(struct stream_out *out)
1013{
1014 out->offload_state = OFFLOAD_STATE_IDLE;
1015 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001016 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001017 if (out->compr != NULL) {
1018 compress_stop(out->compr);
1019 while (out->offload_thread_blocked) {
1020 pthread_cond_wait(&out->cond, &out->lock);
1021 }
1022 }
1023}
1024
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001025bool is_offload_usecase(audio_usecase_t uc_id)
1026{
1027 unsigned int i;
1028 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1029 if (uc_id == offload_usecases[i])
1030 return true;
1031 }
1032 return false;
1033}
1034
1035static audio_usecase_t get_offload_usecase(struct audio_device *adev)
1036{
1037 audio_usecase_t ret = USECASE_AUDIO_PLAYBACK_OFFLOAD;
1038 unsigned int i, num_usecase = sizeof(offload_usecases)/sizeof(offload_usecases[0]);
1039 char value[PROPERTY_VALUE_MAX] = {0};
1040
1041 property_get("audio.offload.multiple.enabled", value, NULL);
1042 if (!(atoi(value) || !strncmp("true", value, 4)))
1043 num_usecase = 1; /* If prop is not set, limit the num of offload usecases to 1 */
1044
1045 ALOGV("%s: num_usecase: %d", __func__, num_usecase);
1046 for (i = 0; i < num_usecase; i++) {
1047 if (!(adev->offload_usecases_state & (0x1<<i))) {
1048 adev->offload_usecases_state |= 0x1 << i;
1049 ret = offload_usecases[i];
1050 break;
1051 }
1052 }
1053 ALOGV("%s: offload usecase is %d", __func__, ret);
1054 return ret;
1055}
1056
1057static void free_offload_usecase(struct audio_device *adev,
1058 audio_usecase_t uc_id)
1059{
1060 unsigned int i;
1061 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1062 if (offload_usecases[i] == uc_id) {
1063 adev->offload_usecases_state &= ~(0x1<<i);
1064 break;
1065 }
1066 }
1067 ALOGV("%s: free offload usecase %d", __func__, uc_id);
1068}
1069
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001070static void *offload_thread_loop(void *context)
1071{
1072 struct stream_out *out = (struct stream_out *) context;
1073 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001074 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001075
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001076 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
1077 set_sched_policy(0, SP_FOREGROUND);
1078 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
1079
1080 ALOGV("%s", __func__);
1081 pthread_mutex_lock(&out->lock);
1082 for (;;) {
1083 struct offload_cmd *cmd = NULL;
1084 stream_callback_event_t event;
1085 bool send_callback = false;
1086
1087 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
1088 __func__, list_empty(&out->offload_cmd_list),
1089 out->offload_state);
1090 if (list_empty(&out->offload_cmd_list)) {
1091 ALOGV("%s SLEEPING", __func__);
1092 pthread_cond_wait(&out->offload_cond, &out->lock);
1093 ALOGV("%s RUNNING", __func__);
1094 continue;
1095 }
1096
1097 item = list_head(&out->offload_cmd_list);
1098 cmd = node_to_item(item, struct offload_cmd, node);
1099 list_remove(item);
1100
1101 ALOGVV("%s STATE %d CMD %d out->compr %p",
1102 __func__, out->offload_state, cmd->cmd, out->compr);
1103
1104 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
1105 free(cmd);
1106 break;
1107 }
1108
1109 if (out->compr == NULL) {
1110 ALOGE("%s: Compress handle is NULL", __func__);
1111 pthread_cond_signal(&out->cond);
1112 continue;
1113 }
1114 out->offload_thread_blocked = true;
1115 pthread_mutex_unlock(&out->lock);
1116 send_callback = false;
1117 switch(cmd->cmd) {
1118 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
1119 compress_wait(out->compr, -1);
1120 send_callback = true;
1121 event = STREAM_CBK_EVENT_WRITE_READY;
1122 break;
1123 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001124 ret = compress_next_track(out->compr);
1125 if(ret == 0)
1126 compress_partial_drain(out->compr);
1127 else if(ret == -ETIMEDOUT)
1128 compress_drain(out->compr);
1129 else
1130 ALOGE("%s: Next track returned error %d",__func__, ret);
1131
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001132 send_callback = true;
1133 event = STREAM_CBK_EVENT_DRAIN_READY;
1134 break;
1135 case OFFLOAD_CMD_DRAIN:
1136 compress_drain(out->compr);
1137 send_callback = true;
1138 event = STREAM_CBK_EVENT_DRAIN_READY;
1139 break;
1140 default:
1141 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1142 break;
1143 }
1144 pthread_mutex_lock(&out->lock);
1145 out->offload_thread_blocked = false;
1146 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001147 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001148 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001149 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001150 free(cmd);
1151 }
1152
1153 pthread_cond_signal(&out->cond);
1154 while (!list_empty(&out->offload_cmd_list)) {
1155 item = list_head(&out->offload_cmd_list);
1156 list_remove(item);
1157 free(node_to_item(item, struct offload_cmd, node));
1158 }
1159 pthread_mutex_unlock(&out->lock);
1160
1161 return NULL;
1162}
1163
1164static int create_offload_callback_thread(struct stream_out *out)
1165{
1166 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1167 list_init(&out->offload_cmd_list);
1168 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1169 offload_thread_loop, out);
1170 return 0;
1171}
1172
1173static int destroy_offload_callback_thread(struct stream_out *out)
1174{
1175 pthread_mutex_lock(&out->lock);
1176 stop_compressed_output_l(out);
1177 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1178
1179 pthread_mutex_unlock(&out->lock);
1180 pthread_join(out->offload_thread, (void **) NULL);
1181 pthread_cond_destroy(&out->offload_cond);
1182
1183 return 0;
1184}
1185
Eric Laurent07eeafd2013-10-06 12:52:49 -07001186static bool allow_hdmi_channel_config(struct audio_device *adev)
1187{
1188 struct listnode *node;
1189 struct audio_usecase *usecase;
1190 bool ret = true;
1191
1192 list_for_each(node, &adev->usecase_list) {
1193 usecase = node_to_item(node, struct audio_usecase, list);
1194 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1195 /*
1196 * If voice call is already existing, do not proceed further to avoid
1197 * disabling/enabling both RX and TX devices, CSD calls, etc.
1198 * Once the voice call done, the HDMI channels can be configured to
1199 * max channels of remaining use cases.
1200 */
1201 if (usecase->id == USECASE_VOICE_CALL) {
1202 ALOGD("%s: voice call is active, no change in HDMI channels",
1203 __func__);
1204 ret = false;
1205 break;
1206 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1207 ALOGD("%s: multi channel playback is active, "
1208 "no change in HDMI channels", __func__);
1209 ret = false;
1210 break;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001211 } else if (is_offload_usecase(usecase->id) &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301212 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001213 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1214 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1215 ret = false;
1216 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001217 }
1218 }
1219 }
1220 return ret;
1221}
1222
1223static int check_and_set_hdmi_channels(struct audio_device *adev,
1224 unsigned int channels)
1225{
1226 struct listnode *node;
1227 struct audio_usecase *usecase;
1228
1229 /* Check if change in HDMI channel config is allowed */
1230 if (!allow_hdmi_channel_config(adev))
1231 return 0;
1232
1233 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001234 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001235 return 0;
1236 }
1237
1238 platform_set_hdmi_channels(adev->platform, channels);
1239 adev->cur_hdmi_channels = channels;
1240
1241 /*
1242 * Deroute all the playback streams routed to HDMI so that
1243 * the back end is deactivated. Note that backend will not
1244 * be deactivated if any one stream is connected to it.
1245 */
1246 list_for_each(node, &adev->usecase_list) {
1247 usecase = node_to_item(node, struct audio_usecase, list);
1248 if (usecase->type == PCM_PLAYBACK &&
1249 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001250 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001251 }
1252 }
1253
1254 /*
1255 * Enable all the streams disabled above. Now the HDMI backend
1256 * will be activated with new channel configuration
1257 */
1258 list_for_each(node, &adev->usecase_list) {
1259 usecase = node_to_item(node, struct audio_usecase, list);
1260 if (usecase->type == PCM_PLAYBACK &&
1261 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001262 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001263 }
1264 }
1265
1266 return 0;
1267}
1268
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001269static int stop_output_stream(struct stream_out *out)
1270{
1271 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001272 struct audio_usecase *uc_info;
1273 struct audio_device *adev = out->dev;
1274
Eric Laurent994a6932013-07-17 11:51:42 -07001275 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001276 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001277 uc_info = get_usecase_from_list(adev, out->usecase);
1278 if (uc_info == NULL) {
1279 ALOGE("%s: Could not find the usecase (%d) in the list",
1280 __func__, out->usecase);
1281 return -EINVAL;
1282 }
1283
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001284 if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001285 if (adev->visualizer_stop_output != NULL)
1286 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1287 if (adev->offload_effects_stop_output != NULL)
1288 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1289 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001290
Eric Laurent150dbfe2013-02-27 14:31:02 -08001291 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001292 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001293
1294 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001295 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001296
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001297 list_remove(&uc_info->list);
1298 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001299
Eric Laurent07eeafd2013-10-06 12:52:49 -07001300 /* Must be called after removing the usecase from list */
1301 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1302 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1303
Eric Laurent994a6932013-07-17 11:51:42 -07001304 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001305 return ret;
1306}
1307
1308int start_output_stream(struct stream_out *out)
1309{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001310 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001311 int sink_channels = 0;
1312 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001313 struct audio_usecase *uc_info;
1314 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301315 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001316
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301317 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1318 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1319 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301320
Naresh Tannirucef332d2014-06-04 18:17:56 +05301321 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301322 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1323 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301324 goto error_config;
1325 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301326
Eric Laurentb23d5282013-05-14 15:27:20 -07001327 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001328 if (out->pcm_device_id < 0) {
1329 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1330 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001331 ret = -EINVAL;
1332 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001333 }
1334
1335 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1336 uc_info->id = out->usecase;
1337 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001338 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001339 uc_info->devices = out->devices;
1340 uc_info->in_snd_device = SND_DEVICE_NONE;
1341 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001342
Eric Laurent07eeafd2013-10-06 12:52:49 -07001343 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001344 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001345 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1346 if (!strncmp("true", prop_value, 4)) {
1347 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1348 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1349 check_and_set_hdmi_channels(adev, sink_channels);
1350 } else {
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001351 if (is_offload_usecase(out->usecase))
Mingming Yin6c344432014-05-01 15:37:31 -07001352 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1353 else
1354 check_and_set_hdmi_channels(adev, out->config.channels);
1355 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001356 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001357
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001358 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001359
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001360 select_devices(adev, out->usecase);
1361
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001362 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1363 __func__, 0, out->pcm_device_id);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001364 if (!is_offload_usecase(out->usecase)) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301365 unsigned int flags = PCM_OUT;
1366 unsigned int pcm_open_retry_count = 0;
1367 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1368 flags |= PCM_MMAP | PCM_NOIRQ;
1369 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1370 } else
1371 flags |= PCM_MONOTONIC;
1372
1373 while (1) {
1374 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1375 flags, &out->config);
1376 if (out->pcm && !pcm_is_ready(out->pcm)) {
1377 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1378 if (out->pcm != NULL) {
1379 pcm_close(out->pcm);
1380 out->pcm = NULL;
1381 }
1382 if (pcm_open_retry_count-- == 0) {
1383 ret = -EIO;
1384 goto error_open;
1385 }
1386 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1387 continue;
1388 }
1389 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001390 }
1391 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001392 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001393 out->compr = compress_open(adev->snd_card,
1394 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001395 COMPRESS_IN, &out->compr_config);
1396 if (out->compr && !is_compress_ready(out->compr)) {
1397 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1398 compress_close(out->compr);
1399 out->compr = NULL;
1400 ret = -EIO;
1401 goto error_open;
1402 }
1403 if (out->offload_callback)
1404 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001405
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001406#ifdef DS1_DOLBY_DDP_ENABLED
1407 if (audio_extn_is_dolby_format(out->format))
1408 audio_extn_dolby_send_ddp_endp_params(adev);
1409#endif
1410
Eric Laurentc4aef752013-09-12 17:45:53 -07001411 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001412 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1413 if (adev->offload_effects_start_output != NULL)
1414 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001415 }
Eric Laurent994a6932013-07-17 11:51:42 -07001416 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001417 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001418error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001419 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001420error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001421 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001422}
1423
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001424static int check_input_parameters(uint32_t sample_rate,
1425 audio_format_t format,
1426 int channel_count)
1427{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001428 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001429
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001430 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001431 !voice_extn_compress_voip_is_format_supported(format) &&
1432 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001433
1434 switch (channel_count) {
1435 case 1:
1436 case 2:
1437 case 6:
1438 break;
1439 default:
1440 ret = -EINVAL;
1441 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001442
1443 switch (sample_rate) {
1444 case 8000:
1445 case 11025:
1446 case 12000:
1447 case 16000:
1448 case 22050:
1449 case 24000:
1450 case 32000:
1451 case 44100:
1452 case 48000:
1453 break;
1454 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001455 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001456 }
1457
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001458 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001459}
1460
1461static size_t get_input_buffer_size(uint32_t sample_rate,
1462 audio_format_t format,
1463 int channel_count)
1464{
1465 size_t size = 0;
1466
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001467 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1468 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001469
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001470 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1471 /* ToDo: should use frame_size computed based on the format and
1472 channel_count here. */
1473 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001474
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001475 /* make sure the size is multiple of 64 */
1476 size += 0x3f;
1477 size &= ~0x3f;
1478
1479 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001480}
1481
1482static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1483{
1484 struct stream_out *out = (struct stream_out *)stream;
1485
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001486 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001487}
1488
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301489static int out_set_sample_rate(struct audio_stream *stream __unused,
1490 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001491{
1492 return -ENOSYS;
1493}
1494
1495static size_t out_get_buffer_size(const struct audio_stream *stream)
1496{
1497 struct stream_out *out = (struct stream_out *)stream;
1498
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001499 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001500 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001501 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1502 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001503
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301504 return out->config.period_size *
1505 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001506}
1507
1508static uint32_t out_get_channels(const struct audio_stream *stream)
1509{
1510 struct stream_out *out = (struct stream_out *)stream;
1511
1512 return out->channel_mask;
1513}
1514
1515static audio_format_t out_get_format(const struct audio_stream *stream)
1516{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001517 struct stream_out *out = (struct stream_out *)stream;
1518
1519 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001520}
1521
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301522static int out_set_format(struct audio_stream *stream __unused,
1523 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001524{
1525 return -ENOSYS;
1526}
1527
1528static int out_standby(struct audio_stream *stream)
1529{
1530 struct stream_out *out = (struct stream_out *)stream;
1531 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001532
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301533 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1534 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001535 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1536 /* Ignore standby in case of voip call because the voip output
1537 * stream is closed in adev_close_output_stream()
1538 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301539 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001540 return 0;
1541 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001542
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001543 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001544 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001545 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001546 out->standby = true;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001547 if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001548 if (out->pcm) {
1549 pcm_close(out->pcm);
1550 out->pcm = NULL;
1551 }
1552 } else {
1553 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001554 out->gapless_mdata.encoder_delay = 0;
1555 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001556 if (out->compr != NULL) {
1557 compress_close(out->compr);
1558 out->compr = NULL;
1559 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001560 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001561 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001562 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001563 }
1564 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001565 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001566 return 0;
1567}
1568
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301569static int out_dump(const struct audio_stream *stream __unused,
1570 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001571{
1572 return 0;
1573}
1574
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001575static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1576{
1577 int ret = 0;
1578 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001579 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001580 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001581 tmp_mdata.encoder_delay = 0;
1582 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001583
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001584 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001585 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001586 return -EINVAL;
1587 }
1588
Mingming Yinee733602014-04-03 17:47:22 -07001589#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001590 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1591 if (ret >= 0) {
1592 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1593 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1594 ALOGV("ADTS format is set in offload mode");
1595 }
1596 out->send_new_metadata = 1;
1597 }
Mingming Yinee733602014-04-03 17:47:22 -07001598#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001599
Steve Kondik6bedcdf2014-07-21 11:48:30 -07001600#ifdef FLAC_OFFLOAD_ENABLED
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08001601 if (out->format == AUDIO_FORMAT_FLAC) {
1602 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_BLK_SIZE, value, sizeof(value));
1603 if (ret >= 0) {
1604 out->compr_config.codec->options.flac_dec.min_blk_size = atoi(value);
1605 out->send_new_metadata = 1;
1606 }
1607 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_BLK_SIZE, value, sizeof(value));
1608 if (ret >= 0) {
1609 out->compr_config.codec->options.flac_dec.max_blk_size = atoi(value);
1610 out->send_new_metadata = 1;
1611 }
1612 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_FRAME_SIZE, value, sizeof(value));
1613 if (ret >= 0) {
1614 out->compr_config.codec->options.flac_dec.min_frame_size = atoi(value);
1615 out->send_new_metadata = 1;
1616 }
1617 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_FRAME_SIZE, value, sizeof(value));
1618 if (ret >= 0) {
1619 out->compr_config.codec->options.flac_dec.max_frame_size = atoi(value);
1620 out->send_new_metadata = 1;
1621 }
1622 }
Steve Kondik6bedcdf2014-07-21 11:48:30 -07001623#endif
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08001624
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001625 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1626 if(ret >= 0)
1627 is_meta_data_params = true;
1628 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1629 if(ret >= 0 )
1630 is_meta_data_params = true;
1631 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1632 if(ret >= 0 )
1633 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001634 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1635 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001636 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001637 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001638 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001639 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1640 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001641 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001642 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001643 }
1644
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001645 if(!is_meta_data_params) {
1646 ALOGV("%s: Not gapless meta data params", __func__);
1647 return 0;
1648 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001649 out->gapless_mdata = tmp_mdata;
1650 out->send_new_metadata = 1;
1651 ALOGV("%s new encoder delay %u and padding %u", __func__,
1652 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1653
Steve Kondikba3b35d2014-07-18 01:49:48 -07001654 if(out->format == AUDIO_FORMAT_WMA || out->format == AUDIO_FORMAT_WMA_PRO) {
1655 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_FORMAT_TAG, value, sizeof(value));
1656 if (ret >= 0) {
1657 out->compr_config.codec->format = atoi(value);
1658 }
1659 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_BLOCK_ALIGN, value, sizeof(value));
1660 if (ret >= 0) {
1661 out->compr_config.codec->options.wma.super_block_align = atoi(value);
1662 }
1663 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_BIT_PER_SAMPLE, value, sizeof(value));
1664 if (ret >= 0) {
1665 out->compr_config.codec->options.wma.bits_per_sample = atoi(value);
1666 }
1667 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_CHANNEL_MASK, value, sizeof(value));
1668 if (ret >= 0) {
1669 out->compr_config.codec->options.wma.channelmask = atoi(value);
1670 }
1671 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_ENCODE_OPTION, value, sizeof(value));
1672 if (ret >= 0) {
1673 out->compr_config.codec->options.wma.encodeopt = atoi(value);
1674 }
1675 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_ENCODE_OPTION1, value, sizeof(value));
1676 if (ret >= 0) {
1677 out->compr_config.codec->options.wma.encodeopt1 = atoi(value);
1678 }
1679 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_WMA_ENCODE_OPTION2, value, sizeof(value));
1680 if (ret >= 0) {
1681 out->compr_config.codec->options.wma.encodeopt2 = atoi(value);
1682 }
1683 ALOGV("WMA params: fmt %x, balgn %x, sr %d, chmsk %x, encop %x, op1 %x, op2 %x",
1684 out->compr_config.codec->format,
1685 out->compr_config.codec->options.wma.super_block_align,
1686 out->compr_config.codec->options.wma.bits_per_sample,
1687 out->compr_config.codec->options.wma.channelmask,
1688 out->compr_config.codec->options.wma.encodeopt,
1689 out->compr_config.codec->options.wma.encodeopt1,
1690 out->compr_config.codec->options.wma.encodeopt2);
1691 }
1692
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001693 return 0;
1694}
1695
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301696static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1697{
1698 return out == adev->primary_output || out == adev->voice_tx_output;
1699}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001700
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001701static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1702{
1703 struct stream_out *out = (struct stream_out *)stream;
1704 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001705 struct audio_usecase *usecase;
1706 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001707 struct str_parms *parms;
1708 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001709 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001710 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001711
sangwoobc677242013-08-08 16:53:43 +09001712 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001713 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001714 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001715 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1716 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001717 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001718 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001719 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001720
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001721 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301722 * When HDMI cable is unplugged/usb hs is disconnected the
1723 * music playback is paused and the policy manager sends routing=0
1724 * But the audioflingercontinues to write data until standby time
1725 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001726 * Avoid this by routing audio to speaker until standby.
1727 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301728 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
Steve Kondikeadb6c82014-09-03 18:40:06 -07001729 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET ||
1730 out->devices == AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001731 val == AUDIO_DEVICE_NONE) {
1732 val = AUDIO_DEVICE_OUT_SPEAKER;
1733 }
1734
1735 /*
1736 * select_devices() call below switches all the usecases on the same
1737 * backend to the new device. Refer to check_usecases_codec_backend() in
1738 * the select_devices(). But how do we undo this?
1739 *
1740 * For example, music playback is active on headset (deep-buffer usecase)
1741 * and if we go to ringtones and select a ringtone, low-latency usecase
1742 * will be started on headset+speaker. As we can't enable headset+speaker
1743 * and headset devices at the same time, select_devices() switches the music
1744 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1745 * So when the ringtone playback is completed, how do we undo the same?
1746 *
1747 * We are relying on the out_set_parameters() call on deep-buffer output,
1748 * once the ringtone playback is ended.
1749 * NOTE: We should not check if the current devices are same as new devices.
1750 * Because select_devices() must be called to switch back the music
1751 * playback to headset.
1752 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001753 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001754 out->devices = val;
1755
1756 if (!out->standby)
1757 select_devices(adev, out->usecase);
1758
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001759 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301760 output_drives_call(adev, out)) {
1761 adev->current_call_output = out;
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001762 if (!adev->voice.in_call)
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301763 ret = voice_start_call(adev);
1764 else
1765 voice_update_devices_for_all_voice_usecases(adev);
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001766 }
1767 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001768
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001769 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1770 adev->voice.in_call &&
1771 output_drives_call(adev, out)) {
1772 ret = voice_stop_call(adev);
1773 adev->current_call_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001774 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001775
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001776 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001777 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001778 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001779
1780 if (out == adev->primary_output) {
1781 pthread_mutex_lock(&adev->lock);
1782 audio_extn_set_parameters(adev, parms);
1783 pthread_mutex_unlock(&adev->lock);
1784 }
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001785 if (is_offload_usecase(out->usecase)) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001786 pthread_mutex_lock(&out->lock);
Steve Kondikba3b35d2014-07-18 01:49:48 -07001787 ret = parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001788 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001789 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001790
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001791 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001792 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001793 return ret;
1794}
1795
1796static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1797{
1798 struct stream_out *out = (struct stream_out *)stream;
1799 struct str_parms *query = str_parms_create_str(keys);
1800 char *str;
1801 char value[256];
1802 struct str_parms *reply = str_parms_create();
1803 size_t i, j;
1804 int ret;
1805 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001806 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001807 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1808 if (ret >= 0) {
1809 value[0] = '\0';
1810 i = 0;
1811 while (out->supported_channel_masks[i] != 0) {
1812 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1813 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1814 if (!first) {
1815 strcat(value, "|");
1816 }
1817 strcat(value, out_channels_name_to_enum_table[j].name);
1818 first = false;
1819 break;
1820 }
1821 }
1822 i++;
1823 }
1824 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1825 str = str_parms_to_str(reply);
1826 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001827 voice_extn_out_get_parameters(out, query, reply);
1828 str = str_parms_to_str(reply);
1829 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001830 free(str);
1831 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001832 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001833 }
1834 str_parms_destroy(query);
1835 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001836 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001837 return str;
1838}
1839
1840static uint32_t out_get_latency(const struct audio_stream_out *stream)
1841{
1842 struct stream_out *out = (struct stream_out *)stream;
1843
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001844 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001845 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1846
1847 return (out->config.period_count * out->config.period_size * 1000) /
1848 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001849}
1850
1851static int out_set_volume(struct audio_stream_out *stream, float left,
1852 float right)
1853{
Eric Laurenta9024de2013-04-04 09:19:12 -07001854 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001855 int volume[2];
1856
Eric Laurenta9024de2013-04-04 09:19:12 -07001857 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1858 /* only take left channel into account: the API is for stereo anyway */
1859 out->muted = (left == 0.0f);
1860 return 0;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001861 } else if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001862 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001863 struct audio_device *adev = out->dev;
1864 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001865 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1866 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001867
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001868 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1869 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001870 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1871 if (!ctl) {
1872 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1873 __func__, mixer_ctl_name);
1874 return -EINVAL;
1875 }
1876 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1877 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1878 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1879 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001880 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001881
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001882 return -ENOSYS;
1883}
1884
1885static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1886 size_t bytes)
1887{
1888 struct stream_out *out = (struct stream_out *)stream;
1889 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301890 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001891 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001892
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001893 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301894
Naresh Tannirucef332d2014-06-04 18:17:56 +05301895 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1896 if (out->pcm) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301897 ALOGD(" %s: sound card is not active/SSR state", __func__);
1898 ret= -ENETRESET;
1899 goto exit;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301900 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1901 //during SSR for compress usecase we should return error to flinger
1902 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1903 pthread_mutex_unlock(&out->lock);
1904 return -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301905 }
1906 }
1907
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001908 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001909 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001910 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001911 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1912 ret = voice_extn_compress_voip_start_output_stream(out);
1913 else
1914 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001915 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001916 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001917 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001918 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001919 goto exit;
1920 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001921 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001922
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001923 if (is_offload_usecase(out->usecase)) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001924 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1925 if (out->send_new_metadata) {
1926 ALOGVV("send new gapless metadata");
1927 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1928 out->send_new_metadata = 0;
1929 }
1930
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001931 ret = compress_write(out->compr, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301932 if (ret < 0)
1933 ret = -errno;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001934 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001935 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001936 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301937 } else if (-ENETRESET == ret) {
1938 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1939 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1940 pthread_mutex_unlock(&out->lock);
1941 out_standby(&out->stream.common);
1942 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001943 }
Naresh Tannirucef332d2014-06-04 18:17:56 +05301944 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001945 compress_start(out->compr);
1946 out->playback_started = 1;
1947 out->offload_state = OFFLOAD_STATE_PLAYING;
1948 }
1949 pthread_mutex_unlock(&out->lock);
1950 return ret;
1951 } else {
1952 if (out->pcm) {
1953 if (out->muted)
1954 memset((void *)buffer, 0, bytes);
1955 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301956 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1957 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1958 else
1959 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301960 if (ret < 0)
1961 ret = -errno;
1962 else if (ret == 0)
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001963 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001964 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001965 }
1966
1967exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301968 /* ToDo: There may be a corner case when SSR happens back to back during
1969 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301970 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301971 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301972 }
1973
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001974 pthread_mutex_unlock(&out->lock);
1975
1976 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001977 if (out->pcm)
1978 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301979 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301980 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301981 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301982 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301983 out->standby = true;
1984 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001985 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301986 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1987 out_get_sample_rate(&out->stream.common));
1988
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001989 }
1990 return bytes;
1991}
1992
1993static int out_get_render_position(const struct audio_stream_out *stream,
1994 uint32_t *dsp_frames)
1995{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001996 struct stream_out *out = (struct stream_out *)stream;
1997 *dsp_frames = 0;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001998 if (is_offload_usecase(out->usecase) && (dsp_frames != NULL)) {
1999 ssize_t ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002000 pthread_mutex_lock(&out->lock);
2001 if (out->compr != NULL) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302002 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002003 &out->sample_rate);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05302004 if (ret < 0)
2005 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002006 ALOGVV("%s rendered frames %d sample_rate %d",
2007 __func__, *dsp_frames, out->sample_rate);
2008 }
2009 pthread_mutex_unlock(&out->lock);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302010 if (-ENETRESET == ret) {
2011 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
2012 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2013 return -EINVAL;
2014 } else if(ret < 0) {
Steve Kondik81506242014-07-21 16:12:57 -07002015 if (out->compr == NULL) {
2016 return 0;
2017 }
2018 ALOGE(" ERROR: Unable to get time stamp from compress driver ret=%d", ret);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302019 return -EINVAL;
2020 } else {
2021 return 0;
2022 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002023 } else
2024 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002025}
2026
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302027static int out_add_audio_effect(const struct audio_stream *stream __unused,
2028 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002029{
2030 return 0;
2031}
2032
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302033static int out_remove_audio_effect(const struct audio_stream *stream __unused,
2034 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002035{
2036 return 0;
2037}
2038
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302039static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
2040 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002041{
2042 return -EINVAL;
2043}
2044
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002045static int out_get_presentation_position(const struct audio_stream_out *stream,
2046 uint64_t *frames, struct timespec *timestamp)
2047{
2048 struct stream_out *out = (struct stream_out *)stream;
2049 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07002050 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002051
2052 pthread_mutex_lock(&out->lock);
2053
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002054 if (is_offload_usecase(out->usecase)) {
Eric Laurent949a0892013-09-20 09:20:13 -07002055 if (out->compr != NULL) {
2056 compress_get_tstamp(out->compr, &dsp_frames,
2057 &out->sample_rate);
2058 ALOGVV("%s rendered frames %ld sample_rate %d",
2059 __func__, dsp_frames, out->sample_rate);
2060 *frames = dsp_frames;
2061 ret = 0;
2062 /* this is the best we can do */
2063 clock_gettime(CLOCK_MONOTONIC, timestamp);
2064 }
2065 } else {
2066 if (out->pcm) {
2067 size_t avail;
2068 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
2069 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07002070 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07002071 // This adjustment accounts for buffering after app processor.
2072 // It is based on estimated DSP latency per use case, rather than exact.
2073 signed_frames -=
2074 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
2075
Eric Laurent949a0892013-09-20 09:20:13 -07002076 // It would be unusual for this value to be negative, but check just in case ...
2077 if (signed_frames >= 0) {
2078 *frames = signed_frames;
2079 ret = 0;
2080 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002081 }
2082 }
2083 }
2084
2085 pthread_mutex_unlock(&out->lock);
2086
2087 return ret;
2088}
2089
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002090static int out_set_callback(struct audio_stream_out *stream,
2091 stream_callback_t callback, void *cookie)
2092{
2093 struct stream_out *out = (struct stream_out *)stream;
2094
2095 ALOGV("%s", __func__);
2096 pthread_mutex_lock(&out->lock);
2097 out->offload_callback = callback;
2098 out->offload_cookie = cookie;
2099 pthread_mutex_unlock(&out->lock);
2100 return 0;
2101}
2102
2103static int out_pause(struct audio_stream_out* stream)
2104{
2105 struct stream_out *out = (struct stream_out *)stream;
2106 int status = -ENOSYS;
2107 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002108 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002109 pthread_mutex_lock(&out->lock);
2110 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302111 struct audio_device *adev = out->dev;
2112 int snd_scard_state = get_snd_card_state(adev);
2113
2114 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2115 status = compress_pause(out->compr);
2116
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002117 out->offload_state = OFFLOAD_STATE_PAUSED;
2118 }
2119 pthread_mutex_unlock(&out->lock);
2120 }
2121 return status;
2122}
2123
2124static int out_resume(struct audio_stream_out* stream)
2125{
2126 struct stream_out *out = (struct stream_out *)stream;
2127 int status = -ENOSYS;
2128 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002129 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002130 status = 0;
2131 pthread_mutex_lock(&out->lock);
2132 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302133 struct audio_device *adev = out->dev;
2134 int snd_scard_state = get_snd_card_state(adev);
2135
2136 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2137 status = compress_resume(out->compr);
2138
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002139 out->offload_state = OFFLOAD_STATE_PLAYING;
2140 }
2141 pthread_mutex_unlock(&out->lock);
2142 }
2143 return status;
2144}
2145
2146static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
2147{
2148 struct stream_out *out = (struct stream_out *)stream;
2149 int status = -ENOSYS;
2150 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002151 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002152 pthread_mutex_lock(&out->lock);
2153 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
2154 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
2155 else
2156 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
2157 pthread_mutex_unlock(&out->lock);
2158 }
2159 return status;
2160}
2161
2162static int out_flush(struct audio_stream_out* stream)
2163{
2164 struct stream_out *out = (struct stream_out *)stream;
2165 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002166 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002167 pthread_mutex_lock(&out->lock);
2168 stop_compressed_output_l(out);
2169 pthread_mutex_unlock(&out->lock);
2170 return 0;
2171 }
2172 return -ENOSYS;
2173}
2174
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002175/** audio_stream_in implementation **/
2176static uint32_t in_get_sample_rate(const struct audio_stream *stream)
2177{
2178 struct stream_in *in = (struct stream_in *)stream;
2179
2180 return in->config.rate;
2181}
2182
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302183static int in_set_sample_rate(struct audio_stream *stream __unused,
2184 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002185{
2186 return -ENOSYS;
2187}
2188
2189static size_t in_get_buffer_size(const struct audio_stream *stream)
2190{
2191 struct stream_in *in = (struct stream_in *)stream;
2192
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002193 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2194 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002195 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2196 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002197
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302198 return in->config.period_size *
2199 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002200}
2201
2202static uint32_t in_get_channels(const struct audio_stream *stream)
2203{
2204 struct stream_in *in = (struct stream_in *)stream;
2205
2206 return in->channel_mask;
2207}
2208
2209static audio_format_t in_get_format(const struct audio_stream *stream)
2210{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002211 struct stream_in *in = (struct stream_in *)stream;
2212
2213 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002214}
2215
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302216static int in_set_format(struct audio_stream *stream __unused,
2217 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002218{
2219 return -ENOSYS;
2220}
2221
2222static int in_standby(struct audio_stream *stream)
2223{
2224 struct stream_in *in = (struct stream_in *)stream;
2225 struct audio_device *adev = in->dev;
2226 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302227 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2228 stream, in->usecase, use_case_table[in->usecase]);
2229
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002230
2231 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2232 /* Ignore standby in case of voip call because the voip input
2233 * stream is closed in adev_close_input_stream()
2234 */
2235 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2236 return status;
2237 }
2238
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002239 pthread_mutex_lock(&in->lock);
2240 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002241 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002242 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002243 if (in->pcm) {
2244 pcm_close(in->pcm);
2245 in->pcm = NULL;
2246 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002247 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002248 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002249 }
2250 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002251 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002252 return status;
2253}
2254
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302255static int in_dump(const struct audio_stream *stream __unused,
2256 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002257{
2258 return 0;
2259}
2260
2261static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2262{
2263 struct stream_in *in = (struct stream_in *)stream;
2264 struct audio_device *adev = in->dev;
2265 struct str_parms *parms;
2266 char *str;
2267 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002268 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002269
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302270 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002271 parms = str_parms_create_str(kvpairs);
2272
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002273 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002274 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002275
2276 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2277 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002278 val = atoi(value);
2279 /* no audio source uses val == 0 */
2280 if ((in->source != val) && (val != 0)) {
2281 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002282 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2283 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2284 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2285 (in->config.rate == 8000 || in->config.rate == 16000) &&
2286 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002287 err = voice_extn_compress_voip_open_input_stream(in);
2288 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002289 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002290 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002291 }
2292 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002293 }
2294 }
2295
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002296 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2297 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002298 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302299 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002300 in->device = val;
2301 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002302 if (!in->standby)
2303 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002304 }
2305 }
2306
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002307done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002308 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002309 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002310
2311 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002312 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002313 return ret;
2314}
2315
2316static char* in_get_parameters(const struct audio_stream *stream,
2317 const char *keys)
2318{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002319 struct stream_in *in = (struct stream_in *)stream;
2320 struct str_parms *query = str_parms_create_str(keys);
2321 char *str;
2322 char value[256];
2323 struct str_parms *reply = str_parms_create();
2324 ALOGV("%s: enter: keys - %s", __func__, keys);
2325
2326 voice_extn_in_get_parameters(in, query, reply);
2327
2328 str = str_parms_to_str(reply);
2329 str_parms_destroy(query);
2330 str_parms_destroy(reply);
2331
2332 ALOGV("%s: exit: returns - %s", __func__, str);
2333 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002334}
2335
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302336static int in_set_gain(struct audio_stream_in *stream __unused,
2337 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002338{
2339 return 0;
2340}
2341
2342static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2343 size_t bytes)
2344{
2345 struct stream_in *in = (struct stream_in *)stream;
2346 struct audio_device *adev = in->dev;
2347 int i, ret = -1;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302348 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002349
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002350 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302351
2352 if (in->pcm) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302353 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302354 ALOGD(" %s: sound card is not active/SSR state", __func__);
2355 ret= -ENETRESET;
2356 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302357 }
2358 }
2359
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002360 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002361 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002362 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2363 ret = voice_extn_compress_voip_start_input_stream(in);
2364 else
2365 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002366 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002367 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002368 goto exit;
2369 }
2370 in->standby = 0;
2371 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002372
2373 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302374 if (audio_extn_ssr_get_enabled() &&
2375 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002376 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002377 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2378 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302379 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2380 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002381 else
2382 ret = pcm_read(in->pcm, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05302383 if (ret < 0)
2384 ret = -errno;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002385 }
2386
2387 /*
2388 * Instead of writing zeroes here, we could trust the hardware
2389 * to always provide zeroes when muted.
2390 */
Pavan Chikkala6c183fd2014-12-04 10:48:28 +05302391 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in) &&
2392 in->usecase != USECASE_AUDIO_RECORD_AFE_PROXY)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002393 memset(buffer, 0, bytes);
2394
2395exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302396 /* ToDo: There may be a corner case when SSR happens back to back during
2397 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302398 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302399 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302400 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302401 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002402 pthread_mutex_unlock(&in->lock);
2403
2404 if (ret != 0) {
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302405 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302406 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302407 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302408 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302409 in->standby = true;
2410 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002411 in_standby(&in->stream.common);
2412 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302413 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2414 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002415 }
2416 return bytes;
2417}
2418
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302419static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002420{
2421 return 0;
2422}
2423
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002424static int add_remove_audio_effect(const struct audio_stream *stream,
2425 effect_handle_t effect,
2426 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002427{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002428 struct stream_in *in = (struct stream_in *)stream;
2429 int status = 0;
2430 effect_descriptor_t desc;
2431
2432 status = (*effect)->get_descriptor(effect, &desc);
2433 if (status != 0)
2434 return status;
2435
2436 pthread_mutex_lock(&in->lock);
2437 pthread_mutex_lock(&in->dev->lock);
2438 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2439 in->enable_aec != enable &&
2440 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2441 in->enable_aec = enable;
2442 if (!in->standby)
2443 select_devices(in->dev, in->usecase);
2444 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002445 if (in->enable_ns != enable &&
2446 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2447 in->enable_ns = enable;
2448 if (!in->standby)
2449 select_devices(in->dev, in->usecase);
2450 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002451 pthread_mutex_unlock(&in->dev->lock);
2452 pthread_mutex_unlock(&in->lock);
2453
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002454 return 0;
2455}
2456
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002457static int in_add_audio_effect(const struct audio_stream *stream,
2458 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002459{
Eric Laurent994a6932013-07-17 11:51:42 -07002460 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002461 return add_remove_audio_effect(stream, effect, true);
2462}
2463
2464static int in_remove_audio_effect(const struct audio_stream *stream,
2465 effect_handle_t effect)
2466{
Eric Laurent994a6932013-07-17 11:51:42 -07002467 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002468 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002469}
2470
2471static int adev_open_output_stream(struct audio_hw_device *dev,
2472 audio_io_handle_t handle,
2473 audio_devices_t devices,
2474 audio_output_flags_t flags,
2475 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302476 struct audio_stream_out **stream_out,
2477 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002478{
2479 struct audio_device *adev = (struct audio_device *)dev;
2480 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002481 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002482
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002483 *stream_out = NULL;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302484
2485 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2486 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2487 ALOGE(" sound card is not active rejecting compress output open request");
2488 return -EINVAL;
2489 }
2490
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002491 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2492
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302493 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2494 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2495 devices, flags, &out->stream);
2496
2497
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002498 if (!out) {
2499 return -ENOMEM;
2500 }
2501
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002502 if (devices == AUDIO_DEVICE_NONE)
2503 devices = AUDIO_DEVICE_OUT_SPEAKER;
2504
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002505 out->flags = flags;
2506 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002507 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002508 out->format = config->format;
2509 out->sample_rate = config->sample_rate;
2510 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2511 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002512 out->handle = handle;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002513 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002514
2515 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002516 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002517 (
2518#ifdef AFE_PROXY_ENABLED
2519 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2520#endif
2521 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002522
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002523 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002524 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2525 ret = read_hdmi_channel_masks(out);
2526
Mingming Yinee733602014-04-03 17:47:22 -07002527#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002528 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2529 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002530#endif
2531
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002532 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002533 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002534 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002535
2536 if (config->sample_rate == 0)
2537 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2538 if (config->channel_mask == 0)
2539 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2540
2541 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002542 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002543 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2544 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002545 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302546 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002547 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002548#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002549 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2550 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002551 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002552 ret = voice_extn_compress_voip_open_output_stream(out);
2553 if (ret != 0) {
2554 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2555 __func__, ret);
2556 goto error_open;
2557 }
Mingming Yinee733602014-04-03 17:47:22 -07002558#endif
Steve Kondikb045f472014-11-12 23:24:07 -08002559#ifdef LOW_LATENCY_PRIMARY
2560 } else if (out->flags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) {
2561 out->usecase = USECASE_AUDIO_PLAYBACK_DEEP_BUFFER;
2562 out->config = pcm_config_deep_buffer;
2563 out->sample_rate = out->config.rate;
2564#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002565 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2566 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2567 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2568 ALOGE("%s: Unsupported Offload information", __func__);
2569 ret = -EINVAL;
2570 goto error_open;
2571 }
Mingming Yin90310102013-11-13 16:57:00 -08002572 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002573 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002574 ALOGE("%s: Unsupported audio format", __func__);
2575 ret = -EINVAL;
2576 goto error_open;
2577 }
2578
2579 out->compr_config.codec = (struct snd_codec *)
2580 calloc(1, sizeof(struct snd_codec));
2581
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002582 out->usecase = get_offload_usecase(adev);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002583 if (config->offload_info.channel_mask)
2584 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002585 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002586 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002587 config->offload_info.channel_mask = config->channel_mask;
2588 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002589 out->format = config->offload_info.format;
2590 out->sample_rate = config->offload_info.sample_rate;
2591
2592 out->stream.set_callback = out_set_callback;
2593 out->stream.pause = out_pause;
2594 out->stream.resume = out_resume;
2595 out->stream.drain = out_drain;
2596 out->stream.flush = out_flush;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002597 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002598
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002599 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002600 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002601 audio_extn_dolby_get_snd_codec_id(adev, out,
2602 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002603 else
2604 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002605 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002606#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002607 if (audio_is_offload_pcm(config->offload_info.format)) {
2608 out->compr_config.fragment_size =
2609 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002610 } else
2611#endif
2612 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002613 out->compr_config.fragment_size =
2614 platform_get_compress_offload_buffer_size(&config->offload_info);
2615 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002616 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2617 out->compr_config.codec->sample_rate =
2618 compress_get_alsa_rate(config->offload_info.sample_rate);
2619 out->compr_config.codec->bit_rate =
2620 config->offload_info.bit_rate;
2621 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302622 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002623 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002624 out->bit_width = config->offload_info.bit_width;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002625
Mingming Yinee733602014-04-03 17:47:22 -07002626#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002627 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2628 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002629 if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
ApurupaPattapu0c566872014-01-10 14:46:02 -08002630 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002631#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002632
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002633 if (config->offload_info.bit_width == 24) {
2634 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
2635 }
2636
2637 if (out->bit_width == 24 && !platform_check_24_bit_support()) {
2638 ALOGW("24 bit support is not enabled, using 16 bit backend");
2639 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2640 }
2641
Steve Kondik6bedcdf2014-07-21 11:48:30 -07002642#ifdef FLAC_OFFLOAD_ENABLED
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002643 out->compr_config.codec->options.flac_dec.sample_size = config->offload_info.bit_width;
Steve Kondik6bedcdf2014-07-21 11:48:30 -07002644#endif
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002645
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002646 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2647 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002648
2649 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002650 out->offload_state = OFFLOAD_STATE_IDLE;
2651 out->playback_started = 0;
2652
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002653 create_offload_callback_thread(out);
2654 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2655 __func__, config->offload_info.version,
2656 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002657 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002658 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002659
Mingming Yinee733602014-04-03 17:47:22 -07002660#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002661 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2662 ret = voice_check_and_set_incall_music_usecase(adev, out);
2663 if (ret != 0) {
2664 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2665 __func__, ret);
2666 goto error_open;
2667 }
Mingming Yinee733602014-04-03 17:47:22 -07002668#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302669 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2670 if (config->sample_rate == 0)
2671 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2672 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2673 config->sample_rate != 8000) {
2674 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2675 ret = -EINVAL;
2676 goto error_open;
2677 }
2678 out->sample_rate = config->sample_rate;
2679 out->config.rate = config->sample_rate;
2680 if (config->format == AUDIO_FORMAT_DEFAULT)
2681 config->format = AUDIO_FORMAT_PCM_16_BIT;
2682 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2683 config->format = AUDIO_FORMAT_PCM_16_BIT;
2684 ret = -EINVAL;
2685 goto error_open;
2686 }
2687 out->format = config->format;
2688 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2689 out->config = pcm_config_afe_proxy_playback;
2690 adev->voice_tx_output = out;
Steve Kondikb045f472014-11-12 23:24:07 -08002691#ifndef LOW_LATENCY_PRIMARY
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002692 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002693 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2694 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002695 out->sample_rate = out->config.rate;
Steve Kondikb045f472014-11-12 23:24:07 -08002696#endif
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002697 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002698 /* primary path is the default path selected if no other outputs are available/suitable */
2699 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Steve Kondikb045f472014-11-12 23:24:07 -08002700#ifdef LOW_LATENCY_PRIMARY
2701 out->config = pcm_config_low_latency;
2702#else
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002703 out->config = pcm_config_deep_buffer;
Steve Kondikb045f472014-11-12 23:24:07 -08002704#endif
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002705 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002706 }
2707
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002708 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2709 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2710 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002711 if(adev->primary_output == NULL)
2712 adev->primary_output = out;
2713 else {
2714 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002715 ret = -EEXIST;
2716 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002717 }
2718 }
2719
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002720 /* Check if this usecase is already existing */
2721 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002722 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2723 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002724 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002725 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002726 ret = -EEXIST;
2727 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002728 }
2729 pthread_mutex_unlock(&adev->lock);
2730
2731 out->stream.common.get_sample_rate = out_get_sample_rate;
2732 out->stream.common.set_sample_rate = out_set_sample_rate;
2733 out->stream.common.get_buffer_size = out_get_buffer_size;
2734 out->stream.common.get_channels = out_get_channels;
2735 out->stream.common.get_format = out_get_format;
2736 out->stream.common.set_format = out_set_format;
2737 out->stream.common.standby = out_standby;
2738 out->stream.common.dump = out_dump;
2739 out->stream.common.set_parameters = out_set_parameters;
2740 out->stream.common.get_parameters = out_get_parameters;
2741 out->stream.common.add_audio_effect = out_add_audio_effect;
2742 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2743 out->stream.get_latency = out_get_latency;
2744 out->stream.set_volume = out_set_volume;
2745 out->stream.write = out_write;
2746 out->stream.get_render_position = out_get_render_position;
2747 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002748 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002749
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002750 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002751 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002752 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002753
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302754 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2755 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2756
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002757 config->format = out->stream.common.get_format(&out->stream.common);
2758 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2759 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2760
2761 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302762 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2763 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002764 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002765 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002766
2767error_open:
2768 free(out);
2769 *stream_out = NULL;
2770 ALOGD("%s: exit: ret %d", __func__, ret);
2771 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002772}
2773
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302774static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002775 struct audio_stream_out *stream)
2776{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002777 struct stream_out *out = (struct stream_out *)stream;
2778 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002779 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002780
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302781 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2782
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002783 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302784 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002785 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302786 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002787 if(ret != 0)
2788 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2789 __func__, ret);
2790 }
2791 else
2792 out_standby(&stream->common);
2793
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002794 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002795 destroy_offload_callback_thread(out);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002796 free_offload_usecase(adev, out->usecase);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002797 if (out->compr_config.codec != NULL)
2798 free(out->compr_config.codec);
2799 }
2800 pthread_cond_destroy(&out->cond);
2801 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002802 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002803 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002804}
2805
2806static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2807{
2808 struct audio_device *adev = (struct audio_device *)dev;
2809 struct str_parms *parms;
2810 char *str;
2811 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002812 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302813 int ret;
2814 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002815
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002816 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002817 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002818
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302819 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2820 if (ret >= 0) {
2821 char *snd_card_status = value+2;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302822 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302823 struct listnode *node;
2824 struct audio_usecase *usecase;
2825
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302826 ALOGD("Received sound card OFFLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302827 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2828
2829 pthread_mutex_lock(&adev->lock);
2830 //close compress session on OFFLINE status
2831 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2832 if (usecase && usecase->stream.out) {
2833 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2834
2835 struct stream_out *out = usecase->stream.out;
2836
2837 pthread_mutex_unlock(&adev->lock);
2838 out_standby(&out->stream.common);
2839 } else
2840 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302841 } else if (strstr(snd_card_status, "ONLINE")) {
2842 ALOGD("Received sound card ONLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302843 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302844 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302845 }
2846
2847 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302848 status = voice_set_parameters(adev, parms);
2849 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002850 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002851
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302852 status = platform_set_parameters(adev->platform, parms);
2853 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002854 goto done;
2855
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302856 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2857 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002858 /* When set to false, HAL should disable EC and NS
2859 * But it is currently not supported.
2860 */
2861 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2862 adev->bluetooth_nrec = true;
2863 else
2864 adev->bluetooth_nrec = false;
2865 }
2866
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302867 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2868 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002869 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2870 adev->screen_off = false;
2871 else
2872 adev->screen_off = true;
2873 }
2874
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302875 ret = str_parms_get_int(parms, "rotation", &val);
2876 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002877 bool reverse_speakers = false;
2878 switch(val) {
2879 // FIXME: note that the code below assumes that the speakers are in the correct placement
2880 // relative to the user when the device is rotated 90deg from its default rotation. This
2881 // assumption is device-specific, not platform-specific like this code.
2882 case 270:
2883 reverse_speakers = true;
2884 break;
2885 case 0:
2886 case 90:
2887 case 180:
2888 break;
2889 default:
2890 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302891 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002892 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302893 if (status == 0) {
2894 if (adev->speaker_lr_swap != reverse_speakers) {
2895 adev->speaker_lr_swap = reverse_speakers;
2896 // only update the selected device if there is active pcm playback
2897 struct audio_usecase *usecase;
2898 struct listnode *node;
2899 list_for_each(node, &adev->usecase_list) {
2900 usecase = node_to_item(node, struct audio_usecase, list);
2901 if (usecase->type == PCM_PLAYBACK) {
2902 select_devices(adev, usecase->id);
2903 break;
2904 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002905 }
2906 }
2907 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002908 }
2909
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002910 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002911
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002912done:
2913 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002914 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302915 ALOGV("%s: exit with code(%d)", __func__, status);
2916 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002917}
2918
2919static char* adev_get_parameters(const struct audio_hw_device *dev,
2920 const char *keys)
2921{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002922 struct audio_device *adev = (struct audio_device *)dev;
2923 struct str_parms *reply = str_parms_create();
2924 struct str_parms *query = str_parms_create_str(keys);
2925 char *str;
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302926 char value[256] = {0};
2927 int ret = 0;
2928
2929 ret = str_parms_get_str(query, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, value,
2930 sizeof(value));
2931 if (ret >=0) {
2932 int val = 1;
2933 pthread_mutex_lock(&adev->snd_card_status.lock);
2934 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2935 val = 0;
2936 pthread_mutex_unlock(&adev->snd_card_status.lock);
2937 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, val);
2938 goto exit;
2939 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002940
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002941 pthread_mutex_lock(&adev->lock);
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302942
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002943 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002944 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002945 platform_get_parameters(adev->platform, query, reply);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302946 pthread_mutex_unlock(&adev->lock);
2947
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302948exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002949 str = str_parms_to_str(reply);
2950 str_parms_destroy(query);
2951 str_parms_destroy(reply);
2952
2953 ALOGV("%s: exit: returns - %s", __func__, str);
2954 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002955}
2956
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302957static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002958{
2959 return 0;
2960}
2961
2962static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2963{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002964 int ret;
2965 struct audio_device *adev = (struct audio_device *)dev;
2966 pthread_mutex_lock(&adev->lock);
2967 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002968 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002969 pthread_mutex_unlock(&adev->lock);
2970 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002971}
2972
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302973static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2974 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002975{
2976 return -ENOSYS;
2977}
2978
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302979static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2980 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002981{
2982 return -ENOSYS;
2983}
2984
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302985static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2986 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002987{
2988 return -ENOSYS;
2989}
2990
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302991static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2992 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002993{
2994 return -ENOSYS;
2995}
2996
2997static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2998{
2999 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003000 pthread_mutex_lock(&adev->lock);
3001 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07003002 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003003 adev->mode = mode;
3004 }
3005 pthread_mutex_unlock(&adev->lock);
3006 return 0;
3007}
3008
3009static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
3010{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08003011 int ret;
3012
3013 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08003014 ALOGD("%s state %d\n", __func__, state);
Shreyas Nagasandra Chandrasekhar9781c6c2014-12-01 05:49:35 -08003015 ret = voice_set_mic_mute((struct audio_device *)dev, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08003016 pthread_mutex_unlock(&adev->lock);
3017
3018 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003019}
3020
3021static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
3022{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003023 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003024 return 0;
3025}
3026
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303027static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003028 const struct audio_config *config)
3029{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303030 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003031
3032 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
3033}
3034
3035static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303036 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003037 audio_devices_t devices,
3038 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303039 struct audio_stream_in **stream_in,
3040 audio_input_flags_t flags __unused,
3041 const char *address __unused,
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003042 audio_source_t source)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003043{
3044 struct audio_device *adev = (struct audio_device *)dev;
3045 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003046 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303047 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003048
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05303049
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003050 *stream_in = NULL;
3051 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
3052 return -EINVAL;
3053
3054 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05303055 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003056 stream_handle(%p) io_handle(%d) source(%d)",__func__, config->sample_rate, config->channel_mask,
3057 devices, &in->stream, handle, source);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003058
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07003059 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
3060
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003061 in->stream.common.get_sample_rate = in_get_sample_rate;
3062 in->stream.common.set_sample_rate = in_set_sample_rate;
3063 in->stream.common.get_buffer_size = in_get_buffer_size;
3064 in->stream.common.get_channels = in_get_channels;
3065 in->stream.common.get_format = in_get_format;
3066 in->stream.common.set_format = in_set_format;
3067 in->stream.common.standby = in_standby;
3068 in->stream.common.dump = in_dump;
3069 in->stream.common.set_parameters = in_set_parameters;
3070 in->stream.common.get_parameters = in_get_parameters;
3071 in->stream.common.add_audio_effect = in_add_audio_effect;
3072 in->stream.common.remove_audio_effect = in_remove_audio_effect;
3073 in->stream.set_gain = in_set_gain;
3074 in->stream.read = in_read;
3075 in->stream.get_input_frames_lost = in_get_input_frames_lost;
3076
3077 in->device = devices;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003078 in->source = source;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003079 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003080 in->standby = 1;
3081 in->channel_mask = config->channel_mask;
3082
3083 /* Update config params with the requested sample rate and channels */
3084 in->usecase = USECASE_AUDIO_RECORD;
3085 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003086 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003087 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003088
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05303089 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Pavan Chikkala3c0036d2014-12-17 16:45:10 +05303090 if (adev->mode != AUDIO_MODE_IN_CALL) {
3091 ret = -EINVAL;
3092 goto err_open;
Pavan Chikkala3ec42ef2014-11-21 20:57:48 +05303093 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05303094 if (config->sample_rate == 0)
3095 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3096 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
3097 config->sample_rate != 8000) {
3098 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3099 ret = -EINVAL;
3100 goto err_open;
3101 }
3102 if (config->format == AUDIO_FORMAT_DEFAULT)
3103 config->format = AUDIO_FORMAT_PCM_16_BIT;
3104 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
3105 config->format = AUDIO_FORMAT_PCM_16_BIT;
3106 ret = -EINVAL;
3107 goto err_open;
3108 }
3109 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
3110 in->config = pcm_config_afe_proxy_record;
3111 in->config.channels = channel_count;
3112 in->config.rate = config->sample_rate;
3113 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003114 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303115 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003116 ALOGE("%s: audio_extn_ssr_init failed", __func__);
3117 ret = -EINVAL;
3118 goto err_open;
3119 }
3120 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07003121 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003122 }
Mingming Yine62d7842013-10-25 16:26:03 -07003123 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08003124 audio_extn_compr_cap_format_supported(config->format) &&
3125 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303126 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003127 } else {
3128 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303129 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003130 buffer_size = get_input_buffer_size(config->sample_rate,
3131 config->format,
3132 channel_count);
3133 in->config.period_size = buffer_size / frame_size;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003134 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
3135 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
3136 (voice_extn_compress_voip_is_format_supported(in->format)) &&
3137 (in->config.rate == 8000 || in->config.rate == 16000) &&
3138 (audio_channel_count_from_in_mask(in->channel_mask) == 1)) {
3139 voice_extn_compress_voip_open_input_stream(in);
3140 }
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003141 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003142
3143 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07003144 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003145 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003146
3147err_open:
3148 free(in);
3149 *stream_in = NULL;
3150 return ret;
3151}
3152
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303153static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003154 struct audio_stream_in *stream)
3155{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003156 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003157 struct stream_in *in = (struct stream_in *)stream;
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303158 struct audio_device *adev = in->dev;
3159
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05303160 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003161
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003162 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303163 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003164 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303165 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003166 if (ret != 0)
3167 ALOGE("%s: Compress voip input cannot be closed, error:%d",
3168 __func__, ret);
3169 } else
3170 in_standby(&stream->common);
3171
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303172 if (audio_extn_ssr_get_enabled() &&
3173 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003174 audio_extn_ssr_deinit();
3175 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003176 free(stream);
3177
Mingming Yine62d7842013-10-25 16:26:03 -07003178 if(audio_extn_compr_cap_enabled() &&
3179 audio_extn_compr_cap_format_supported(in->config.format))
3180 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003181 return;
3182}
3183
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303184static int adev_dump(const audio_hw_device_t *device __unused,
3185 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003186{
3187 return 0;
3188}
3189
3190static int adev_close(hw_device_t *device)
3191{
3192 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07003193
3194 if (!adev)
3195 return 0;
3196
3197 pthread_mutex_lock(&adev_init_lock);
3198
3199 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08003200 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07003201 audio_route_free(adev->audio_route);
3202 free(adev->snd_dev_ref_cnt);
3203 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07003204 free(device);
3205 adev = NULL;
3206 }
3207 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003208 return 0;
3209}
3210
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003211static int adev_open(const hw_module_t *module, const char *name,
3212 hw_device_t **device)
3213{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003214 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003215
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003216 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003217 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
3218
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003219 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07003220 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003221 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07003222 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003223 ALOGD("%s: returning existing instance of adev", __func__);
3224 ALOGD("%s: exit", __func__);
3225 pthread_mutex_unlock(&adev_init_lock);
3226 return 0;
3227 }
3228
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003229 adev = calloc(1, sizeof(struct audio_device));
3230
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07003231 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
3232
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003233 adev->device.common.tag = HARDWARE_DEVICE_TAG;
3234 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
3235 adev->device.common.module = (struct hw_module_t *)module;
3236 adev->device.common.close = adev_close;
3237
3238 adev->device.init_check = adev_init_check;
3239 adev->device.set_voice_volume = adev_set_voice_volume;
3240 adev->device.set_master_volume = adev_set_master_volume;
3241 adev->device.get_master_volume = adev_get_master_volume;
3242 adev->device.set_master_mute = adev_set_master_mute;
3243 adev->device.get_master_mute = adev_get_master_mute;
3244 adev->device.set_mode = adev_set_mode;
3245 adev->device.set_mic_mute = adev_set_mic_mute;
3246 adev->device.get_mic_mute = adev_get_mic_mute;
3247 adev->device.set_parameters = adev_set_parameters;
3248 adev->device.get_parameters = adev_get_parameters;
3249 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3250 adev->device.open_output_stream = adev_open_output_stream;
3251 adev->device.close_output_stream = adev_close_output_stream;
3252 adev->device.open_input_stream = adev_open_input_stream;
3253 adev->device.close_input_stream = adev_close_input_stream;
3254 adev->device.dump = adev_dump;
3255
3256 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003257 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003258 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003259 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003260 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003261 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003262 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003263 /* adev->cur_hdmi_channels = 0; by calloc() */
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08003264 adev->cur_codec_backend_samplerate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
3265 adev->cur_codec_backend_bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Eric Laurentb23d5282013-05-14 15:27:20 -07003266 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003267 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003268 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08003269 adev->cur_wfd_channels = 2;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07003270 adev->offload_usecases_state = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003271
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303272 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3273 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
3274
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003275 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003276 adev->platform = platform_init(adev);
3277 if (!adev->platform) {
3278 free(adev->snd_dev_ref_cnt);
3279 free(adev);
3280 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3281 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003282 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003283 return -EINVAL;
3284 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003285
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303286 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3287
Eric Laurentc4aef752013-09-12 17:45:53 -07003288 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3289 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3290 if (adev->visualizer_lib == NULL) {
3291 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3292 } else {
3293 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3294 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003295 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003296 "visualizer_hal_start_output");
3297 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003298 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003299 "visualizer_hal_stop_output");
3300 }
3301 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003302 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07003303
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003304 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3305 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3306 if (adev->offload_effects_lib == NULL) {
3307 ALOGE("%s: DLOPEN failed for %s", __func__,
3308 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3309 } else {
3310 ALOGV("%s: DLOPEN successful for %s", __func__,
3311 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3312 adev->offload_effects_start_output =
3313 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3314 "offload_effects_bundle_hal_start_output");
3315 adev->offload_effects_stop_output =
3316 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3317 "offload_effects_bundle_hal_stop_output");
3318 }
3319 }
3320
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003321 *device = &adev->device.common;
3322
Kiran Kandi910e1862013-10-29 13:29:42 -07003323 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003324 pthread_mutex_unlock(&adev_init_lock);
3325
Eric Laurent994a6932013-07-17 11:51:42 -07003326 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003327 return 0;
3328}
3329
Mingming Yin90e2cd82014-06-06 17:11:23 -07003330int pcm_ioctl(struct pcm *pcm, int request, ...)
3331{
3332 va_list ap;
3333 void * arg;
3334 int pcm_fd = *(int*)pcm;
3335
3336 va_start(ap, request);
3337 arg = va_arg(ap, void *);
3338 va_end(ap);
3339
3340 return ioctl(pcm_fd, request, arg);
3341}
3342
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003343static struct hw_module_methods_t hal_module_methods = {
3344 .open = adev_open,
3345};
3346
3347struct audio_module HAL_MODULE_INFO_SYM = {
3348 .common = {
3349 .tag = HARDWARE_MODULE_TAG,
3350 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3351 .hal_api_version = HARDWARE_HAL_API_VERSION,
3352 .id = AUDIO_HARDWARE_MODULE_ID,
3353 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003354 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003355 .methods = &hal_module_methods,
3356 },
3357};