blob: c2bfb2b8af54f4706a03a6f21795136e75ebbc28 [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,
192 USECASE_AUDIO_PLAYBACK_OFFLOAD4,
193 USECASE_AUDIO_PLAYBACK_OFFLOAD5,
194 USECASE_AUDIO_PLAYBACK_OFFLOAD6,
195 USECASE_AUDIO_PLAYBACK_OFFLOAD7,
196 USECASE_AUDIO_PLAYBACK_OFFLOAD8,
197 USECASE_AUDIO_PLAYBACK_OFFLOAD9,
198#endif
199};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800200
201#define STRING_TO_ENUM(string) { #string, string }
202
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800203struct string_to_enum {
204 const char *name;
205 uint32_t value;
206};
207
208static const struct string_to_enum out_channels_name_to_enum_table[] = {
209 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_STEREO),
210 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_5POINT1),
211 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_7POINT1),
212};
213
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700214static struct audio_device *adev = NULL;
215static pthread_mutex_t adev_init_lock;
Kiran Kandi910e1862013-10-29 13:29:42 -0700216static unsigned int audio_device_ref_count;
217
Haynes Mathew George5191a852013-09-11 14:19:36 -0700218static int set_voice_volume_l(struct audio_device *adev, float volume);
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800219
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -0800220static int check_and_set_gapless_mode(struct audio_device *adev) {
221
222
223 char value[PROPERTY_VALUE_MAX] = {0};
224 bool gapless_enabled = false;
225 const char *mixer_ctl_name = "Compress Gapless Playback";
226 struct mixer_ctl *ctl;
227
228 ALOGV("%s:", __func__);
229 property_get("audio.offload.gapless.enabled", value, NULL);
230 gapless_enabled = atoi(value) || !strncmp("true", value, 4);
231
232 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
233 if (!ctl) {
234 ALOGE("%s: Could not get ctl for mixer cmd - %s",
235 __func__, mixer_ctl_name);
236 return -EINVAL;
237 }
238
239 if (mixer_ctl_set_value(ctl, 0, gapless_enabled) < 0) {
240 ALOGE("%s: Could not set gapless mode %d",
241 __func__, gapless_enabled);
242 return -EINVAL;
243 }
244 return 0;
245}
Haynes Mathew George5191a852013-09-11 14:19:36 -0700246
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700247static bool is_supported_format(audio_format_t format)
248{
Eric Laurent86e17132013-09-12 17:49:30 -0700249 if (format == AUDIO_FORMAT_MP3 ||
Mingming Yinee733602014-04-03 17:47:22 -0700250#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -0800251 format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD ||
Mingming Yinee733602014-04-03 17:47:22 -0700252 format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD ||
253#endif
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800254 format == AUDIO_FORMAT_FLAC ||
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530255 format == AUDIO_FORMAT_AAC_LC ||
256 format == AUDIO_FORMAT_AAC_HE_V1 ||
257 format == AUDIO_FORMAT_AAC_HE_V2 ){
258 return true;
259 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700260 return false;
261}
262
263static int get_snd_codec_id(audio_format_t format)
264{
265 int id = 0;
266
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530267 switch (format & AUDIO_FORMAT_MAIN_MASK) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700268 case AUDIO_FORMAT_MP3:
269 id = SND_AUDIOCODEC_MP3;
270 break;
271 case AUDIO_FORMAT_AAC:
272 id = SND_AUDIOCODEC_AAC;
273 break;
Mingming Yinee733602014-04-03 17:47:22 -0700274#ifdef EXTN_OFFLOAD_ENABLED
Ashish Jaincff6e3e2014-08-25 20:36:25 +0530275 case AUDIO_FORMAT_PCM_OFFLOAD:
ApurupaPattapu0c566872014-01-10 14:46:02 -0800276 id = SND_AUDIOCODEC_PCM;
277 break;
Mingming Yinee733602014-04-03 17:47:22 -0700278#endif
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800279 case AUDIO_FORMAT_FLAC:
280 id = SND_AUDIOCODEC_FLAC;
281 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700282 default:
Mingming Yin90310102013-11-13 16:57:00 -0800283 ALOGE("%s: Unsupported audio format :%x", __func__, format);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700284 }
285
286 return id;
287}
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -0800288
Avinash Vaish8005dc82014-07-24 15:36:33 +0530289static int enable_audio_route_for_voice_usecases(struct audio_device *adev,
290 struct audio_usecase *uc_info)
291{
292 struct listnode *node;
293 struct audio_usecase *usecase;
294
295 if (uc_info == NULL)
296 return -EINVAL;
297
298 /* Re-route all voice usecases on the shared backend other than the
299 specified usecase to new snd devices */
300 list_for_each(node, &adev->usecase_list) {
301 usecase = node_to_item(node, struct audio_usecase, list);
302 if ((usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) &&
303 (usecase != uc_info))
304 enable_audio_route(adev, usecase);
305 }
306 return 0;
307}
308
Venkata Narendra Kumar Guttac9e9e2c2014-07-09 16:29:28 +0530309int get_snd_card_state(struct audio_device *adev)
Naresh Tannirucef332d2014-06-04 18:17:56 +0530310{
311 int snd_scard_state;
312
313 if (!adev)
314 return SND_CARD_STATE_OFFLINE;
315
316 pthread_mutex_lock(&adev->snd_card_status.lock);
317 snd_scard_state = adev->snd_card_status.state;
318 pthread_mutex_unlock(&adev->snd_card_status.lock);
319
320 return snd_scard_state;
321}
322
323static int set_snd_card_state(struct audio_device *adev, int snd_scard_state)
324{
325 if (!adev)
326 return -ENOSYS;
327
328 pthread_mutex_lock(&adev->snd_card_status.lock);
329 adev->snd_card_status.state = snd_scard_state;
330 pthread_mutex_unlock(&adev->snd_card_status.lock);
331
332 return 0;
333}
334
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700335int enable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700336 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800337{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700338 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700339 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800340
341 if (usecase == NULL)
342 return -EINVAL;
343
344 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
345
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800346 if (usecase->type == PCM_CAPTURE)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700347 snd_device = usecase->in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800348 else
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700349 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800350
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -0800351#ifdef DS1_DOLBY_DAP_ENABLED
352 audio_extn_dolby_set_dmid(adev);
353 audio_extn_dolby_set_endpoint(adev);
354#endif
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800355 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700356 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700357 ALOGV("%s: apply mixer and update path: %s", __func__, mixer_path);
358 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800359 ALOGV("%s: exit", __func__);
360 return 0;
361}
362
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700363int disable_audio_route(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700364 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800365{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700366 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700367 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800368
369 if (usecase == NULL)
370 return -EINVAL;
371
372 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700373 if (usecase->type == PCM_CAPTURE)
374 snd_device = usecase->in_snd_device;
375 else
376 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800377 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700378 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700379 ALOGV("%s: reset and update mixer path: %s", __func__, mixer_path);
380 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800381 ALOGV("%s: exit", __func__);
382 return 0;
383}
384
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700385int enable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700386 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800387{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700388 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
389
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800390 if (snd_device < SND_DEVICE_MIN ||
391 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800392 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800393 return -EINVAL;
394 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700395
396 adev->snd_dev_ref_cnt[snd_device]++;
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700397
398 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0 ) {
399 ALOGE("%s: Invalid sound device returned", __func__);
400 return -EINVAL;
401 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700402 if (adev->snd_dev_ref_cnt[snd_device] > 1) {
Eric Laurent994a6932013-07-17 11:51:42 -0700403 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700404 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700405 return 0;
406 }
407
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700408 /* start usb playback thread */
409 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
410 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
411 audio_extn_usb_start_playback(adev);
412
413 /* start usb capture thread */
414 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
415 audio_extn_usb_start_capture(adev);
416
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700417 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
418 audio_extn_spkr_prot_is_enabled()) {
419 if (audio_extn_spkr_prot_start_processing(snd_device)) {
420 ALOGE("%s: spkr_start_processing failed", __func__);
421 return -EINVAL;
422 }
423 } else {
424 ALOGV("%s: snd_device(%d: %s)", __func__,
425 snd_device, device_name);
426 if (platform_send_audio_calibration(adev->platform, snd_device) < 0) {
427 adev->snd_dev_ref_cnt[snd_device]--;
428 return -EINVAL;
429 }
Kiran Kandide144c82013-11-20 15:58:32 -0800430 audio_extn_listen_update_status(snd_device,
431 LISTEN_EVENT_SND_DEVICE_BUSY);
432
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700433 audio_route_apply_and_update_path(adev->audio_route, device_name);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800434 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800435 return 0;
436}
437
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700438int disable_snd_device(struct audio_device *adev,
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700439 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800440{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700441 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
442
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800443 if (snd_device < SND_DEVICE_MIN ||
444 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800445 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800446 return -EINVAL;
447 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700448 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
449 ALOGE("%s: device ref cnt is already 0", __func__);
450 return -EINVAL;
451 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700452
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700453 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700454
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700455 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
456 ALOGE("%s: Invalid sound device returned", __func__);
457 return -EINVAL;
458 }
459
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700460 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Eric Laurent994a6932013-07-17 11:51:42 -0700461 ALOGV("%s: snd_device(%d: %s)", __func__,
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700462 snd_device, device_name);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800463 /* exit usb play back thread */
464 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
465 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
466 audio_extn_usb_stop_playback();
467
468 /* exit usb capture thread */
469 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
Rajshekar Eashwarappa4dfa0752014-10-02 20:18:20 +0530470 audio_extn_usb_stop_capture();
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700471 if (snd_device == SND_DEVICE_OUT_SPEAKER &&
472 audio_extn_spkr_prot_is_enabled()) {
473 audio_extn_spkr_prot_stop_processing();
474 } else
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700475 audio_route_reset_and_update_path(adev->audio_route, device_name);
Kiran Kandide144c82013-11-20 15:58:32 -0800476
477 audio_extn_listen_update_status(snd_device,
478 LISTEN_EVENT_SND_DEVICE_FREE);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700479 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700480
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800481 return 0;
482}
483
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700484static void check_usecases_codec_backend(struct audio_device *adev,
485 struct audio_usecase *uc_info,
486 snd_device_t snd_device)
487{
488 struct listnode *node;
489 struct audio_usecase *usecase;
490 bool switch_device[AUDIO_USECASE_MAX];
491 int i, num_uc_to_switch = 0;
492
493 /*
494 * This function is to make sure that all the usecases that are active on
495 * the hardware codec backend are always routed to any one device that is
496 * handled by the hardware codec.
497 * For example, if low-latency and deep-buffer usecases are currently active
498 * on speaker and out_set_parameters(headset) is received on low-latency
499 * output, then we have to make sure deep-buffer is also switched to headset,
500 * because of the limitation that both the devices cannot be enabled
501 * at the same time as they share the same backend.
502 */
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800503 /*
504 * This call is to check if we need to force routing for a particular stream
505 * If there is a backend configuration change for the device when a
506 * new stream starts, then ADM needs to be closed and re-opened with the new
507 * configuraion. This call check if we need to re-route all the streams
508 * associated with the backend. Touch tone + 24 bit playback.
509 */
510 bool force_routing = platform_check_and_set_codec_backend_cfg(adev, uc_info);
511
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700512 /* Disable all the usecases on the shared backend other than the
513 specified usecase */
514 for (i = 0; i < AUDIO_USECASE_MAX; i++)
515 switch_device[i] = false;
516
517 list_for_each(node, &adev->usecase_list) {
518 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800519 if (usecase->type != PCM_CAPTURE &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700520 usecase != uc_info &&
ApurupaPattapu9d6b4362014-02-27 10:24:11 -0800521 (usecase->out_snd_device != snd_device || force_routing) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700522 usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
523 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
524 __func__, use_case_table[usecase->id],
Eric Laurentb23d5282013-05-14 15:27:20 -0700525 platform_get_snd_device_name(usecase->out_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700526 disable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700527 switch_device[usecase->id] = true;
528 num_uc_to_switch++;
529 }
530 }
531
532 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700533 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700534
535 list_for_each(node, &adev->usecase_list) {
536 usecase = node_to_item(node, struct audio_usecase, list);
537 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700538 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700539 }
540 }
541
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700542 list_for_each(node, &adev->usecase_list) {
543 usecase = node_to_item(node, struct audio_usecase, list);
544 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700545 enable_snd_device(adev, snd_device);
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700546 }
547 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700548
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700549 /* Re-route all the usecases on the shared backend other than the
550 specified usecase to new snd devices */
551 list_for_each(node, &adev->usecase_list) {
552 usecase = node_to_item(node, struct audio_usecase, list);
553 /* Update the out_snd_device only before enabling the audio route */
554 if (switch_device[usecase->id] ) {
555 usecase->out_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530556 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
557 enable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700558 }
559 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700560 }
561}
562
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700563static void check_and_route_capture_usecases(struct audio_device *adev,
564 struct audio_usecase *uc_info,
565 snd_device_t snd_device)
566{
567 struct listnode *node;
568 struct audio_usecase *usecase;
569 bool switch_device[AUDIO_USECASE_MAX];
570 int i, num_uc_to_switch = 0;
571
572 /*
573 * This function is to make sure that all the active capture usecases
574 * are always routed to the same input sound device.
575 * For example, if audio-record and voice-call usecases are currently
576 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
577 * is received for voice call then we have to make sure that audio-record
578 * usecase is also switched to earpiece i.e. voice-dmic-ef,
579 * because of the limitation that two devices cannot be enabled
580 * at the same time if they share the same backend.
581 */
582 for (i = 0; i < AUDIO_USECASE_MAX; i++)
583 switch_device[i] = false;
584
585 list_for_each(node, &adev->usecase_list) {
586 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800587 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700588 usecase != uc_info &&
Avinash Vaish44014792015-03-27 14:46:04 +0530589 usecase->in_snd_device != snd_device &&
590 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700591 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
592 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700593 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700594 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700595 switch_device[usecase->id] = true;
596 num_uc_to_switch++;
597 }
598 }
599
600 if (num_uc_to_switch) {
Haynes Mathew Georgef9306752014-04-24 11:53:44 -0700601 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700602
603 list_for_each(node, &adev->usecase_list) {
604 usecase = node_to_item(node, struct audio_usecase, list);
605 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700606 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800607 }
608 }
609
610 list_for_each(node, &adev->usecase_list) {
611 usecase = node_to_item(node, struct audio_usecase, list);
612 if (switch_device[usecase->id]) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700613 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700614 }
615 }
616
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700617 /* Re-route all the usecases on the shared backend other than the
618 specified usecase to new snd devices */
619 list_for_each(node, &adev->usecase_list) {
620 usecase = node_to_item(node, struct audio_usecase, list);
621 /* Update the in_snd_device only before enabling the audio route */
622 if (switch_device[usecase->id] ) {
623 usecase->in_snd_device = snd_device;
Avinash Vaish8005dc82014-07-24 15:36:33 +0530624 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
625 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700626 }
627 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700628 }
629}
630
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800631/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700632static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800633{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700634 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700635 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800636
637 switch (channels) {
638 /*
639 * Do not handle stereo output in Multi-channel cases
640 * Stereo case is handled in normal playback path
641 */
642 case 6:
643 ALOGV("%s: HDMI supports 5.1", __func__);
644 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
645 break;
646 case 8:
647 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
648 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
649 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
650 break;
651 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700652 ALOGE("HDMI does not support multi channel playback");
653 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800654 break;
655 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700656 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800657}
658
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700659static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
660{
661 struct audio_usecase *usecase;
662 struct listnode *node;
663
664 list_for_each(node, &adev->usecase_list) {
665 usecase = node_to_item(node, struct audio_usecase, list);
666 if (usecase->type == VOICE_CALL) {
667 ALOGV("%s: usecase id %d", __func__, usecase->id);
668 return usecase->id;
669 }
670 }
671 return USECASE_INVALID;
672}
673
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700674struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700675 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700676{
677 struct audio_usecase *usecase;
678 struct listnode *node;
679
680 list_for_each(node, &adev->usecase_list) {
681 usecase = node_to_item(node, struct audio_usecase, list);
682 if (usecase->id == uc_id)
683 return usecase;
684 }
685 return NULL;
686}
687
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700688int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800689{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800690 snd_device_t out_snd_device = SND_DEVICE_NONE;
691 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700692 struct audio_usecase *usecase = NULL;
693 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800694 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800695 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800696 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800697 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700698 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800699
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700700 usecase = get_usecase_from_list(adev, uc_id);
701 if (usecase == NULL) {
702 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
703 return -EINVAL;
704 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800705
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800706 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800707 (usecase->type == VOIP_CALL) ||
708 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700709 out_snd_device = platform_get_output_snd_device(adev->platform,
710 usecase->stream.out->devices);
711 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700712 usecase->devices = usecase->stream.out->devices;
713 } else {
714 /*
715 * If the voice call is active, use the sound devices of voice call usecase
716 * so that it would not result any device switch. All the usecases will
717 * be switched to new device when select_devices() is called for voice call
718 * usecase. This is to avoid switching devices for voice call when
719 * check_usecases_codec_backend() is called below.
720 */
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -0700721 if (adev->voice.in_call && adev->mode == AUDIO_MODE_IN_CALL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700722 vc_usecase = get_usecase_from_list(adev,
723 get_voice_usecase_id_from_list(adev));
Mingming Yin6c23f382014-08-14 00:00:51 -0700724 if ((vc_usecase) && ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
725 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700726 in_snd_device = vc_usecase->in_snd_device;
727 out_snd_device = vc_usecase->out_snd_device;
728 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800729 } else if (voice_extn_compress_voip_is_active(adev)) {
730 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Mingming Yin6c23f382014-08-14 00:00:51 -0700731 if ((voip_usecase) && ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish6a4c3372014-06-25 12:20:37 +0530732 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Mingming Yin6c23f382014-08-14 00:00:51 -0700733 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800734 in_snd_device = voip_usecase->in_snd_device;
735 out_snd_device = voip_usecase->out_snd_device;
736 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800737 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed739e7152014-01-23 15:56:53 -0800738 hfp_ucid = audio_extn_hfp_get_usecase();
739 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Mingming Yin6c23f382014-08-14 00:00:51 -0700740 if ((hfp_usecase) && (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800741 in_snd_device = hfp_usecase->in_snd_device;
742 out_snd_device = hfp_usecase->out_snd_device;
743 }
Vimal Puthanveed8fa9eab2014-01-07 16:47:47 -0800744 } else if (audio_extn_hfp_is_active(adev)) {
745 hfp_usecase = get_usecase_from_list(adev, USECASE_AUDIO_HFP_SCO);
746 if (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
747 in_snd_device = hfp_usecase->in_snd_device;
748 out_snd_device = hfp_usecase->out_snd_device;
749 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700750 }
751 if (usecase->type == PCM_PLAYBACK) {
752 usecase->devices = usecase->stream.out->devices;
753 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700754 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700755 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700756 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700757 if (usecase->stream.out == adev->primary_output &&
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530758 adev->active_input ) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700759 select_devices(adev, adev->active_input->usecase);
760 }
761 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700762 } else if (usecase->type == PCM_CAPTURE) {
763 usecase->devices = usecase->stream.in->device;
764 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700765 if (in_snd_device == SND_DEVICE_NONE) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530766 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Shreyas Nagasandra Chandrasekhar23b3af22014-09-03 19:10:01 +0530767 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 -0700768 adev->primary_output && !adev->primary_output->standby) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530769 out_device = adev->primary_output->devices;
770 } else if(usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
771 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700772 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530773 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700774 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700775 }
776 }
777
778 if (out_snd_device == usecase->out_snd_device &&
779 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800780 return 0;
781 }
782
sangwoobc677242013-08-08 16:53:43 +0900783 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700784 out_snd_device, platform_get_snd_device_name(out_snd_device),
785 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800786
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800787 /*
788 * Limitation: While in call, to do a device switch we need to disable
789 * and enable both RX and TX devices though one of them is same as current
790 * device.
791 */
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800792 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700793 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800794 }
795
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700796 /* Disable current sound devices */
797 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700798 disable_audio_route(adev, usecase);
799 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800800 }
801
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700802 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700803 disable_audio_route(adev, usecase);
804 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800805 }
806
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700807 /* Enable new sound devices */
808 if (out_snd_device != SND_DEVICE_NONE) {
809 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
810 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700811 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800812 }
813
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700814 if (in_snd_device != SND_DEVICE_NONE) {
815 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700816 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700817 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700818
Avinash Vaish8005dc82014-07-24 15:36:33 +0530819 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700820 status = platform_switch_voice_call_device_post(adev->platform,
821 out_snd_device,
822 in_snd_device);
Avinash Vaish8005dc82014-07-24 15:36:33 +0530823 enable_audio_route_for_voice_usecases(adev, usecase);
824 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800825
sangwoo170731f2013-06-08 15:36:36 +0900826 usecase->in_snd_device = in_snd_device;
827 usecase->out_snd_device = out_snd_device;
828
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700829 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900830
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800831 /* Applicable only on the targets that has external modem.
832 * Enable device command should be sent to modem only after
833 * enabling voice call mixer controls
834 */
835 if (usecase->type == VOICE_CALL)
836 status = platform_switch_voice_call_usecase_route_post(adev->platform,
837 out_snd_device,
838 in_snd_device);
839
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530840 ALOGD("%s: done",__func__);
841
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800842 return status;
843}
844
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800845static int stop_input_stream(struct stream_in *in)
846{
847 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800848 struct audio_usecase *uc_info;
849 struct audio_device *adev = in->dev;
850
Eric Laurentc8400632013-02-14 19:04:54 -0800851 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800852
Eric Laurent994a6932013-07-17 11:51:42 -0700853 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700854 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800855 uc_info = get_usecase_from_list(adev, in->usecase);
856 if (uc_info == NULL) {
857 ALOGE("%s: Could not find the usecase (%d) in the list",
858 __func__, in->usecase);
859 return -EINVAL;
860 }
861
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800862 /* Close in-call recording streams */
863 voice_check_and_stop_incall_rec_usecase(adev, in);
864
Eric Laurent150dbfe2013-02-27 14:31:02 -0800865 /* 1. Disable stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700866 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700867
868 /* 2. Disable the tx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -0700869 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800870
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800871 list_remove(&uc_info->list);
872 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800873
Eric Laurent994a6932013-07-17 11:51:42 -0700874 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800875 return ret;
876}
877
878int start_input_stream(struct stream_in *in)
879{
880 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800881 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800882 struct audio_usecase *uc_info;
883 struct audio_device *adev = in->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +0530884 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800885
Ramjee Singh240ac652015-07-31 16:12:29 +0530886 int usecase = platform_update_usecase_from_source(in->source,in->usecase);
887 if (get_usecase_from_list(adev, usecase) == NULL)
888 in->usecase = usecase;
889
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +0530890 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
891 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700892
Naresh Tannirucef332d2014-06-04 18:17:56 +0530893 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
894 ALOGE("%s: sound card is not active/SSR returning error ", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530895 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530896 goto error_config;
897 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530898
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700899 /* Check if source matches incall recording usecase criteria */
900 ret = voice_check_and_set_incall_rec_usecase(adev, in);
901 if (ret)
902 goto error_config;
903 else
904 ALOGV("%s: usecase(%d)", __func__, in->usecase);
905
Ramjee Singh240ac652015-07-31 16:12:29 +0530906 if (get_usecase_from_list(adev, in->usecase) != NULL) {
907 ALOGE("%s: use case assigned already in use, stream(%p)usecase(%d: %s)",
908 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
909 goto error_config;
910 }
911
Eric Laurentb23d5282013-05-14 15:27:20 -0700912 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800913 if (in->pcm_device_id < 0) {
914 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
915 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800916 ret = -EINVAL;
917 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800918 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700919
920 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800921 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
922 uc_info->id = in->usecase;
923 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800924 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700925 uc_info->devices = in->device;
926 uc_info->in_snd_device = SND_DEVICE_NONE;
927 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800928
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800929 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700930 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800931
Eric Laurentc8400632013-02-14 19:04:54 -0800932 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +0530933 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
934
935 unsigned int flags = PCM_IN;
936 unsigned int pcm_open_retry_entry_count = 0;
937
938 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
939 flags |= PCM_MMAP | PCM_NOIRQ;
940 pcm_open_retry_entry_count = PROXY_OPEN_RETRY_COUNT;
941 }
942
943 while(1) {
944 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
945 flags, &in->config);
946 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
947 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
948 if (in->pcm != NULL) {
949 pcm_close(in->pcm);
950 in->pcm = NULL;
951 }
952 if (pcm_open_retry_entry_count-- == 0) {
953 ret = -EIO;
954 goto error_open;
955 }
956 usleep(PROXY_OPEN_WAIT_TIME * 1000);
957 continue;
958 }
959 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800960 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +0530961
Eric Laurent994a6932013-07-17 11:51:42 -0700962 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -0800963 return ret;
964
965error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800966 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -0800967
968error_config:
969 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700970 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -0800971
972 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800973}
974
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700975/* must be called with out->lock locked */
976static int send_offload_cmd_l(struct stream_out* out, int command)
977{
978 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
979
980 ALOGVV("%s %d", __func__, command);
981
982 cmd->cmd = command;
983 list_add_tail(&out->offload_cmd_list, &cmd->node);
984 pthread_cond_signal(&out->offload_cond);
985 return 0;
986}
987
988/* must be called iwth out->lock locked */
989static void stop_compressed_output_l(struct stream_out *out)
990{
991 out->offload_state = OFFLOAD_STATE_IDLE;
992 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -0700993 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700994 if (out->compr != NULL) {
995 compress_stop(out->compr);
996 while (out->offload_thread_blocked) {
997 pthread_cond_wait(&out->cond, &out->lock);
998 }
999 }
1000}
1001
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001002bool is_offload_usecase(audio_usecase_t uc_id)
1003{
1004 unsigned int i;
1005 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1006 if (uc_id == offload_usecases[i])
1007 return true;
1008 }
1009 return false;
1010}
1011
1012static audio_usecase_t get_offload_usecase(struct audio_device *adev)
1013{
1014 audio_usecase_t ret = USECASE_AUDIO_PLAYBACK_OFFLOAD;
1015 unsigned int i, num_usecase = sizeof(offload_usecases)/sizeof(offload_usecases[0]);
1016 char value[PROPERTY_VALUE_MAX] = {0};
1017
1018 property_get("audio.offload.multiple.enabled", value, NULL);
1019 if (!(atoi(value) || !strncmp("true", value, 4)))
1020 num_usecase = 1; /* If prop is not set, limit the num of offload usecases to 1 */
1021
1022 ALOGV("%s: num_usecase: %d", __func__, num_usecase);
1023 for (i = 0; i < num_usecase; i++) {
1024 if (!(adev->offload_usecases_state & (0x1<<i))) {
1025 adev->offload_usecases_state |= 0x1 << i;
1026 ret = offload_usecases[i];
1027 break;
1028 }
1029 }
1030 ALOGV("%s: offload usecase is %d", __func__, ret);
1031 return ret;
1032}
1033
1034static void free_offload_usecase(struct audio_device *adev,
1035 audio_usecase_t uc_id)
1036{
1037 unsigned int i;
1038 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1039 if (offload_usecases[i] == uc_id) {
1040 adev->offload_usecases_state &= ~(0x1<<i);
1041 break;
1042 }
1043 }
1044 ALOGV("%s: free offload usecase %d", __func__, uc_id);
1045}
1046
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001047static void *offload_thread_loop(void *context)
1048{
1049 struct stream_out *out = (struct stream_out *) context;
1050 struct listnode *item;
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001051 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001052
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001053 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
1054 set_sched_policy(0, SP_FOREGROUND);
1055 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
1056
1057 ALOGV("%s", __func__);
1058 pthread_mutex_lock(&out->lock);
1059 for (;;) {
1060 struct offload_cmd *cmd = NULL;
1061 stream_callback_event_t event;
1062 bool send_callback = false;
1063
1064 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
1065 __func__, list_empty(&out->offload_cmd_list),
1066 out->offload_state);
1067 if (list_empty(&out->offload_cmd_list)) {
1068 ALOGV("%s SLEEPING", __func__);
1069 pthread_cond_wait(&out->offload_cond, &out->lock);
1070 ALOGV("%s RUNNING", __func__);
1071 continue;
1072 }
1073
1074 item = list_head(&out->offload_cmd_list);
1075 cmd = node_to_item(item, struct offload_cmd, node);
1076 list_remove(item);
1077
1078 ALOGVV("%s STATE %d CMD %d out->compr %p",
1079 __func__, out->offload_state, cmd->cmd, out->compr);
1080
1081 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
1082 free(cmd);
1083 break;
1084 }
1085
1086 if (out->compr == NULL) {
1087 ALOGE("%s: Compress handle is NULL", __func__);
1088 pthread_cond_signal(&out->cond);
1089 continue;
1090 }
1091 out->offload_thread_blocked = true;
1092 pthread_mutex_unlock(&out->lock);
1093 send_callback = false;
1094 switch(cmd->cmd) {
1095 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
1096 compress_wait(out->compr, -1);
1097 send_callback = true;
1098 event = STREAM_CBK_EVENT_WRITE_READY;
1099 break;
1100 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappilly0fe78f02014-01-06 18:33:58 -08001101 ret = compress_next_track(out->compr);
1102 if(ret == 0)
1103 compress_partial_drain(out->compr);
1104 else if(ret == -ETIMEDOUT)
1105 compress_drain(out->compr);
1106 else
1107 ALOGE("%s: Next track returned error %d",__func__, ret);
1108
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001109 send_callback = true;
1110 event = STREAM_CBK_EVENT_DRAIN_READY;
1111 break;
1112 case OFFLOAD_CMD_DRAIN:
1113 compress_drain(out->compr);
1114 send_callback = true;
1115 event = STREAM_CBK_EVENT_DRAIN_READY;
1116 break;
1117 default:
1118 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1119 break;
1120 }
1121 pthread_mutex_lock(&out->lock);
1122 out->offload_thread_blocked = false;
1123 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001124 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001125 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001126 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001127 free(cmd);
1128 }
1129
1130 pthread_cond_signal(&out->cond);
1131 while (!list_empty(&out->offload_cmd_list)) {
1132 item = list_head(&out->offload_cmd_list);
1133 list_remove(item);
1134 free(node_to_item(item, struct offload_cmd, node));
1135 }
1136 pthread_mutex_unlock(&out->lock);
1137
1138 return NULL;
1139}
1140
1141static int create_offload_callback_thread(struct stream_out *out)
1142{
1143 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1144 list_init(&out->offload_cmd_list);
1145 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1146 offload_thread_loop, out);
1147 return 0;
1148}
1149
1150static int destroy_offload_callback_thread(struct stream_out *out)
1151{
1152 pthread_mutex_lock(&out->lock);
1153 stop_compressed_output_l(out);
1154 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1155
1156 pthread_mutex_unlock(&out->lock);
1157 pthread_join(out->offload_thread, (void **) NULL);
1158 pthread_cond_destroy(&out->offload_cond);
1159
1160 return 0;
1161}
1162
Eric Laurent07eeafd2013-10-06 12:52:49 -07001163static bool allow_hdmi_channel_config(struct audio_device *adev)
1164{
1165 struct listnode *node;
1166 struct audio_usecase *usecase;
1167 bool ret = true;
1168
1169 list_for_each(node, &adev->usecase_list) {
1170 usecase = node_to_item(node, struct audio_usecase, list);
1171 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1172 /*
1173 * If voice call is already existing, do not proceed further to avoid
1174 * disabling/enabling both RX and TX devices, CSD calls, etc.
1175 * Once the voice call done, the HDMI channels can be configured to
1176 * max channels of remaining use cases.
1177 */
1178 if (usecase->id == USECASE_VOICE_CALL) {
1179 ALOGD("%s: voice call is active, no change in HDMI channels",
1180 __func__);
1181 ret = false;
1182 break;
1183 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1184 ALOGD("%s: multi channel playback is active, "
1185 "no change in HDMI channels", __func__);
1186 ret = false;
1187 break;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001188 } else if (is_offload_usecase(usecase->id) &&
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301189 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin3ed162b2014-02-24 17:56:01 -08001190 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1191 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1192 ret = false;
1193 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001194 }
1195 }
1196 }
1197 return ret;
1198}
1199
1200static int check_and_set_hdmi_channels(struct audio_device *adev,
1201 unsigned int channels)
1202{
1203 struct listnode *node;
1204 struct audio_usecase *usecase;
1205
1206 /* Check if change in HDMI channel config is allowed */
1207 if (!allow_hdmi_channel_config(adev))
1208 return 0;
1209
1210 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001211 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001212 return 0;
1213 }
1214
1215 platform_set_hdmi_channels(adev->platform, channels);
1216 adev->cur_hdmi_channels = channels;
1217
1218 /*
1219 * Deroute all the playback streams routed to HDMI so that
1220 * the back end is deactivated. Note that backend will not
1221 * be deactivated if any one stream is connected to it.
1222 */
1223 list_for_each(node, &adev->usecase_list) {
1224 usecase = node_to_item(node, struct audio_usecase, list);
1225 if (usecase->type == PCM_PLAYBACK &&
1226 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001227 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001228 }
1229 }
1230
1231 /*
1232 * Enable all the streams disabled above. Now the HDMI backend
1233 * will be activated with new channel configuration
1234 */
1235 list_for_each(node, &adev->usecase_list) {
1236 usecase = node_to_item(node, struct audio_usecase, list);
1237 if (usecase->type == PCM_PLAYBACK &&
1238 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001239 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001240 }
1241 }
1242
1243 return 0;
1244}
1245
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001246static int stop_output_stream(struct stream_out *out)
1247{
1248 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001249 struct audio_usecase *uc_info;
1250 struct audio_device *adev = out->dev;
1251
Eric Laurent994a6932013-07-17 11:51:42 -07001252 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001253 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001254 uc_info = get_usecase_from_list(adev, out->usecase);
1255 if (uc_info == NULL) {
1256 ALOGE("%s: Could not find the usecase (%d) in the list",
1257 __func__, out->usecase);
1258 return -EINVAL;
1259 }
1260
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001261 if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001262 if (adev->visualizer_stop_output != NULL)
1263 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1264 if (adev->offload_effects_stop_output != NULL)
1265 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1266 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001267
Eric Laurent150dbfe2013-02-27 14:31:02 -08001268 /* 1. Get and set stream specific mixer controls */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001269 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001270
1271 /* 2. Disable the rx device */
Haynes Mathew Georgeea098922014-04-24 17:53:50 -07001272 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001273
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001274 list_remove(&uc_info->list);
1275 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001276
Eric Laurent07eeafd2013-10-06 12:52:49 -07001277 /* Must be called after removing the usecase from list */
1278 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1279 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1280
Eric Laurent994a6932013-07-17 11:51:42 -07001281 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001282 return ret;
1283}
1284
1285int start_output_stream(struct stream_out *out)
1286{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001287 int ret = 0;
Mingming Yin6c344432014-05-01 15:37:31 -07001288 int sink_channels = 0;
1289 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001290 struct audio_usecase *uc_info;
1291 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301292 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001293
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301294 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1295 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1296 out->devices);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301297
Naresh Tannirucef332d2014-06-04 18:17:56 +05301298 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301299 ALOGE("%s: sound card is not active/SSR returning error", __func__);
1300 ret = -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301301 goto error_config;
1302 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301303
Eric Laurentb23d5282013-05-14 15:27:20 -07001304 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001305 if (out->pcm_device_id < 0) {
1306 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1307 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001308 ret = -EINVAL;
1309 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001310 }
1311
1312 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
1313 uc_info->id = out->usecase;
1314 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001315 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001316 uc_info->devices = out->devices;
1317 uc_info->in_snd_device = SND_DEVICE_NONE;
1318 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001319
Eric Laurent07eeafd2013-10-06 12:52:49 -07001320 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001321 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin6c344432014-05-01 15:37:31 -07001322 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1323 if (!strncmp("true", prop_value, 4)) {
1324 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1325 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1326 check_and_set_hdmi_channels(adev, sink_channels);
1327 } else {
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001328 if (is_offload_usecase(out->usecase))
Mingming Yin6c344432014-05-01 15:37:31 -07001329 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1330 else
1331 check_and_set_hdmi_channels(adev, out->config.channels);
1332 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001333 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001334
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001335 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001336
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001337 select_devices(adev, out->usecase);
1338
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001339 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
1340 __func__, 0, out->pcm_device_id);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001341 if (!is_offload_usecase(out->usecase)) {
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301342 unsigned int flags = PCM_OUT;
1343 unsigned int pcm_open_retry_count = 0;
1344 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1345 flags |= PCM_MMAP | PCM_NOIRQ;
1346 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1347 } else
1348 flags |= PCM_MONOTONIC;
1349
1350 while (1) {
1351 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1352 flags, &out->config);
1353 if (out->pcm && !pcm_is_ready(out->pcm)) {
1354 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1355 if (out->pcm != NULL) {
1356 pcm_close(out->pcm);
1357 out->pcm = NULL;
1358 }
1359 if (pcm_open_retry_count-- == 0) {
1360 ret = -EIO;
1361 goto error_open;
1362 }
1363 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1364 continue;
1365 }
1366 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001367 }
1368 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001369 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001370 out->compr = compress_open(adev->snd_card,
1371 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001372 COMPRESS_IN, &out->compr_config);
1373 if (out->compr && !is_compress_ready(out->compr)) {
1374 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1375 compress_close(out->compr);
1376 out->compr = NULL;
1377 ret = -EIO;
1378 goto error_open;
1379 }
1380 if (out->offload_callback)
1381 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001382
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08001383#ifdef DS1_DOLBY_DDP_ENABLED
1384 if (audio_extn_is_dolby_format(out->format))
1385 audio_extn_dolby_send_ddp_endp_params(adev);
1386#endif
1387
Eric Laurentc4aef752013-09-12 17:45:53 -07001388 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001389 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1390 if (adev->offload_effects_start_output != NULL)
1391 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001392 }
Eric Laurent994a6932013-07-17 11:51:42 -07001393 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001394 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001395error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001396 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001397error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001398 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001399}
1400
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001401static int check_input_parameters(uint32_t sample_rate,
1402 audio_format_t format,
1403 int channel_count)
1404{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001405 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001406
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001407 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001408 !voice_extn_compress_voip_is_format_supported(format) &&
1409 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001410
1411 switch (channel_count) {
1412 case 1:
1413 case 2:
1414 case 6:
1415 break;
1416 default:
1417 ret = -EINVAL;
1418 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001419
1420 switch (sample_rate) {
1421 case 8000:
1422 case 11025:
1423 case 12000:
1424 case 16000:
1425 case 22050:
1426 case 24000:
1427 case 32000:
1428 case 44100:
1429 case 48000:
1430 break;
1431 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001432 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001433 }
1434
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001435 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001436}
1437
1438static size_t get_input_buffer_size(uint32_t sample_rate,
1439 audio_format_t format,
1440 int channel_count)
1441{
1442 size_t size = 0;
1443
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001444 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1445 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001446
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001447 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
1448 /* ToDo: should use frame_size computed based on the format and
1449 channel_count here. */
1450 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001451
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001452 /* make sure the size is multiple of 64 */
1453 size += 0x3f;
1454 size &= ~0x3f;
1455
1456 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001457}
1458
1459static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1460{
1461 struct stream_out *out = (struct stream_out *)stream;
1462
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001463 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001464}
1465
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301466static int out_set_sample_rate(struct audio_stream *stream __unused,
1467 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001468{
1469 return -ENOSYS;
1470}
1471
1472static size_t out_get_buffer_size(const struct audio_stream *stream)
1473{
1474 struct stream_out *out = (struct stream_out *)stream;
1475
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001476 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001477 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001478 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1479 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001480
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05301481 return out->config.period_size *
1482 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001483}
1484
1485static uint32_t out_get_channels(const struct audio_stream *stream)
1486{
1487 struct stream_out *out = (struct stream_out *)stream;
1488
1489 return out->channel_mask;
1490}
1491
1492static audio_format_t out_get_format(const struct audio_stream *stream)
1493{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001494 struct stream_out *out = (struct stream_out *)stream;
1495
1496 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001497}
1498
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301499static int out_set_format(struct audio_stream *stream __unused,
1500 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001501{
1502 return -ENOSYS;
1503}
1504
1505static int out_standby(struct audio_stream *stream)
1506{
1507 struct stream_out *out = (struct stream_out *)stream;
1508 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001509
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301510 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1511 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001512 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1513 /* Ignore standby in case of voip call because the voip output
1514 * stream is closed in adev_close_output_stream()
1515 */
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05301516 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001517 return 0;
1518 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001519
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001520 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001521 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001522 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001523 out->standby = true;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001524 if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001525 if (out->pcm) {
1526 pcm_close(out->pcm);
1527 out->pcm = NULL;
1528 }
1529 } else {
1530 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001531 out->gapless_mdata.encoder_delay = 0;
1532 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001533 if (out->compr != NULL) {
1534 compress_close(out->compr);
1535 out->compr = NULL;
1536 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001537 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001538 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001539 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001540 }
1541 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001542 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001543 return 0;
1544}
1545
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301546static int out_dump(const struct audio_stream *stream __unused,
1547 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001548{
1549 return 0;
1550}
1551
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001552static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1553{
1554 int ret = 0;
1555 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001556 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001557 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001558 tmp_mdata.encoder_delay = 0;
1559 tmp_mdata.encoder_padding = 0;
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001560
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001561 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001562 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001563 return -EINVAL;
1564 }
1565
Mingming Yinee733602014-04-03 17:47:22 -07001566#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001567 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1568 if (ret >= 0) {
1569 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1570 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1571 ALOGV("ADTS format is set in offload mode");
1572 }
1573 out->send_new_metadata = 1;
1574 }
Mingming Yinee733602014-04-03 17:47:22 -07001575#endif
ApurupaPattapudaa708c2013-12-18 15:47:59 -08001576
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08001577 if (out->format == AUDIO_FORMAT_FLAC) {
1578 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_BLK_SIZE, value, sizeof(value));
1579 if (ret >= 0) {
1580 out->compr_config.codec->options.flac_dec.min_blk_size = atoi(value);
1581 out->send_new_metadata = 1;
1582 }
1583 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_BLK_SIZE, value, sizeof(value));
1584 if (ret >= 0) {
1585 out->compr_config.codec->options.flac_dec.max_blk_size = atoi(value);
1586 out->send_new_metadata = 1;
1587 }
1588 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_FRAME_SIZE, value, sizeof(value));
1589 if (ret >= 0) {
1590 out->compr_config.codec->options.flac_dec.min_frame_size = atoi(value);
1591 out->send_new_metadata = 1;
1592 }
1593 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_FRAME_SIZE, value, sizeof(value));
1594 if (ret >= 0) {
1595 out->compr_config.codec->options.flac_dec.max_frame_size = atoi(value);
1596 out->send_new_metadata = 1;
1597 }
1598 }
1599
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001600 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1601 if(ret >= 0)
1602 is_meta_data_params = true;
1603 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1604 if(ret >= 0 )
1605 is_meta_data_params = true;
1606 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1607 if(ret >= 0 )
1608 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001609 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1610 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001611 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001612 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001613 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001614 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1615 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001616 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001617 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001618 }
1619
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001620 if(!is_meta_data_params) {
1621 ALOGV("%s: Not gapless meta data params", __func__);
1622 return 0;
1623 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001624 out->gapless_mdata = tmp_mdata;
1625 out->send_new_metadata = 1;
1626 ALOGV("%s new encoder delay %u and padding %u", __func__,
1627 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1628
1629 return 0;
1630}
1631
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301632static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1633{
1634 return out == adev->primary_output || out == adev->voice_tx_output;
1635}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001636
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001637static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1638{
1639 struct stream_out *out = (struct stream_out *)stream;
1640 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001641 struct audio_usecase *usecase;
1642 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001643 struct str_parms *parms;
1644 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001645 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001646 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001647
sangwoobc677242013-08-08 16:53:43 +09001648 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001649 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001650 parms = str_parms_create_str(kvpairs);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001651 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1652 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001653 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001654 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001655 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001656
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001657 /*
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301658 * When HDMI cable is unplugged/usb hs is disconnected the
1659 * music playback is paused and the policy manager sends routing=0
1660 * But the audioflingercontinues to write data until standby time
1661 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001662 * Avoid this by routing audio to speaker until standby.
1663 */
Dhanalakshmi Siddani523ae412014-04-18 22:26:56 +05301664 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
Steve Kondikeadb6c82014-09-03 18:40:06 -07001665 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET ||
1666 out->devices == AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001667 val == AUDIO_DEVICE_NONE) {
1668 val = AUDIO_DEVICE_OUT_SPEAKER;
1669 }
1670
1671 /*
1672 * select_devices() call below switches all the usecases on the same
1673 * backend to the new device. Refer to check_usecases_codec_backend() in
1674 * the select_devices(). But how do we undo this?
1675 *
1676 * For example, music playback is active on headset (deep-buffer usecase)
1677 * and if we go to ringtones and select a ringtone, low-latency usecase
1678 * will be started on headset+speaker. As we can't enable headset+speaker
1679 * and headset devices at the same time, select_devices() switches the music
1680 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1681 * So when the ringtone playback is completed, how do we undo the same?
1682 *
1683 * We are relying on the out_set_parameters() call on deep-buffer output,
1684 * once the ringtone playback is ended.
1685 * NOTE: We should not check if the current devices are same as new devices.
1686 * Because select_devices() must be called to switch back the music
1687 * playback to headset.
1688 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001689 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001690 out->devices = val;
1691
1692 if (!out->standby)
1693 select_devices(adev, out->usecase);
1694
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001695 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301696 output_drives_call(adev, out)) {
1697 adev->current_call_output = out;
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001698 if (!adev->voice.in_call)
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301699 ret = voice_start_call(adev);
1700 else
1701 voice_update_devices_for_all_voice_usecases(adev);
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001702 }
1703 }
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001704
Vidyakumar Athotaf85f6a22014-08-05 18:20:42 -07001705 if ((adev->mode == AUDIO_MODE_NORMAL) &&
1706 adev->voice.in_call &&
1707 output_drives_call(adev, out)) {
1708 ret = voice_stop_call(adev);
1709 adev->current_call_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001710 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001711
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001712 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001713 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001714 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001715
1716 if (out == adev->primary_output) {
1717 pthread_mutex_lock(&adev->lock);
1718 audio_extn_set_parameters(adev, parms);
1719 pthread_mutex_unlock(&adev->lock);
1720 }
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001721 if (is_offload_usecase(out->usecase)) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001722 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001723 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001724 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001725 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001726
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001727 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07001728 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001729 return ret;
1730}
1731
1732static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1733{
1734 struct stream_out *out = (struct stream_out *)stream;
1735 struct str_parms *query = str_parms_create_str(keys);
1736 char *str;
1737 char value[256];
1738 struct str_parms *reply = str_parms_create();
1739 size_t i, j;
1740 int ret;
1741 bool first = true;
Eric Laurent994a6932013-07-17 11:51:42 -07001742 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001743 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1744 if (ret >= 0) {
1745 value[0] = '\0';
1746 i = 0;
1747 while (out->supported_channel_masks[i] != 0) {
1748 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1749 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1750 if (!first) {
1751 strcat(value, "|");
1752 }
1753 strcat(value, out_channels_name_to_enum_table[j].name);
1754 first = false;
1755 break;
1756 }
1757 }
1758 i++;
1759 }
1760 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1761 str = str_parms_to_str(reply);
1762 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001763 voice_extn_out_get_parameters(out, query, reply);
1764 str = str_parms_to_str(reply);
1765 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella2e032352014-01-29 12:52:19 -08001766 free(str);
1767 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001768 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001769 }
1770 str_parms_destroy(query);
1771 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001772 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001773 return str;
1774}
1775
1776static uint32_t out_get_latency(const struct audio_stream_out *stream)
1777{
1778 struct stream_out *out = (struct stream_out *)stream;
1779
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001780 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001781 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1782
1783 return (out->config.period_count * out->config.period_size * 1000) /
1784 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001785}
1786
1787static int out_set_volume(struct audio_stream_out *stream, float left,
1788 float right)
1789{
Eric Laurenta9024de2013-04-04 09:19:12 -07001790 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001791 int volume[2];
1792
Eric Laurenta9024de2013-04-04 09:19:12 -07001793 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1794 /* only take left channel into account: the API is for stereo anyway */
1795 out->muted = (left == 0.0f);
1796 return 0;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001797 } else if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001798 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001799 struct audio_device *adev = out->dev;
1800 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001801 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1802 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001803
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001804 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1805 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001806 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1807 if (!ctl) {
1808 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1809 __func__, mixer_ctl_name);
1810 return -EINVAL;
1811 }
1812 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1813 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1814 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1815 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001816 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001817
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001818 return -ENOSYS;
1819}
1820
1821static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1822 size_t bytes)
1823{
1824 struct stream_out *out = (struct stream_out *)stream;
1825 struct audio_device *adev = out->dev;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301826 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001827 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001828
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001829 pthread_mutex_lock(&out->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301830
Naresh Tannirucef332d2014-06-04 18:17:56 +05301831 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1832 if (out->pcm) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301833 ALOGD(" %s: sound card is not active/SSR state", __func__);
1834 ret= -ENETRESET;
1835 goto exit;
Naresh Tannirucef332d2014-06-04 18:17:56 +05301836 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1837 //during SSR for compress usecase we should return error to flinger
1838 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1839 pthread_mutex_unlock(&out->lock);
1840 return -ENETRESET;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301841 }
1842 }
1843
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001844 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001845 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001846 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001847 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1848 ret = voice_extn_compress_voip_start_output_stream(out);
1849 else
1850 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001851 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001852 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001853 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001854 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001855 goto exit;
1856 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001857 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001858
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001859 if (is_offload_usecase(out->usecase)) {
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001860 ALOGVV("%s: writing buffer (%d bytes) to compress device", __func__, bytes);
1861 if (out->send_new_metadata) {
1862 ALOGVV("send new gapless metadata");
1863 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1864 out->send_new_metadata = 0;
1865 }
1866
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001867 ret = compress_write(out->compr, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301868 if (ret < 0)
1869 ret = -errno;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001870 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001871 if (ret >= 0 && ret < (ssize_t)bytes) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001872 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301873 } else if (-ENETRESET == ret) {
1874 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1875 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1876 pthread_mutex_unlock(&out->lock);
1877 out_standby(&out->stream.common);
1878 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001879 }
Naresh Tannirucef332d2014-06-04 18:17:56 +05301880 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001881 compress_start(out->compr);
1882 out->playback_started = 1;
1883 out->offload_state = OFFLOAD_STATE_PLAYING;
1884 }
1885 pthread_mutex_unlock(&out->lock);
1886 return ret;
1887 } else {
1888 if (out->pcm) {
1889 if (out->muted)
1890 memset((void *)buffer, 0, bytes);
1891 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05301892 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1893 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1894 else
1895 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301896 if (ret < 0)
1897 ret = -errno;
1898 else if (ret == 0)
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001899 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001900 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001901 }
1902
1903exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05301904 /* ToDo: There may be a corner case when SSR happens back to back during
1905 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301906 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301907 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301908 }
1909
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001910 pthread_mutex_unlock(&out->lock);
1911
1912 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001913 if (out->pcm)
1914 ALOGE("%s: error %d - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301915 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301916 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301917 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05301918 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05301919 out->standby = true;
1920 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001921 out_standby(&out->stream.common);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05301922 usleep(bytes * 1000000 / audio_stream_frame_size(&out->stream.common) /
1923 out_get_sample_rate(&out->stream.common));
1924
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001925 }
1926 return bytes;
1927}
1928
1929static int out_get_render_position(const struct audio_stream_out *stream,
1930 uint32_t *dsp_frames)
1931{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001932 struct stream_out *out = (struct stream_out *)stream;
1933 *dsp_frames = 0;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001934 if (is_offload_usecase(out->usecase) && (dsp_frames != NULL)) {
1935 ssize_t ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001936 pthread_mutex_lock(&out->lock);
1937 if (out->compr != NULL) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05301938 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001939 &out->sample_rate);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05301940 if (ret < 0)
1941 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001942 ALOGVV("%s rendered frames %d sample_rate %d",
1943 __func__, *dsp_frames, out->sample_rate);
1944 }
1945 pthread_mutex_unlock(&out->lock);
Naresh Tannirucef332d2014-06-04 18:17:56 +05301946 if (-ENETRESET == ret) {
1947 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
1948 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1949 return -EINVAL;
1950 } else if(ret < 0) {
1951 ALOGE(" ERROR: Unable to get time stamp from compress driver");
1952 return -EINVAL;
1953 } else {
1954 return 0;
1955 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001956 } else
1957 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001958}
1959
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301960static int out_add_audio_effect(const struct audio_stream *stream __unused,
1961 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001962{
1963 return 0;
1964}
1965
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301966static int out_remove_audio_effect(const struct audio_stream *stream __unused,
1967 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001968{
1969 return 0;
1970}
1971
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05301972static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
1973 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001974{
1975 return -EINVAL;
1976}
1977
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001978static int out_get_presentation_position(const struct audio_stream_out *stream,
1979 uint64_t *frames, struct timespec *timestamp)
1980{
1981 struct stream_out *out = (struct stream_out *)stream;
1982 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07001983 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001984
1985 pthread_mutex_lock(&out->lock);
1986
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07001987 if (is_offload_usecase(out->usecase)) {
Eric Laurent949a0892013-09-20 09:20:13 -07001988 if (out->compr != NULL) {
1989 compress_get_tstamp(out->compr, &dsp_frames,
1990 &out->sample_rate);
1991 ALOGVV("%s rendered frames %ld sample_rate %d",
1992 __func__, dsp_frames, out->sample_rate);
1993 *frames = dsp_frames;
1994 ret = 0;
1995 /* this is the best we can do */
1996 clock_gettime(CLOCK_MONOTONIC, timestamp);
1997 }
1998 } else {
1999 if (out->pcm) {
2000 size_t avail;
2001 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
2002 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07002003 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07002004 // This adjustment accounts for buffering after app processor.
2005 // It is based on estimated DSP latency per use case, rather than exact.
2006 signed_frames -=
2007 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
2008
Eric Laurent949a0892013-09-20 09:20:13 -07002009 // It would be unusual for this value to be negative, but check just in case ...
2010 if (signed_frames >= 0) {
2011 *frames = signed_frames;
2012 ret = 0;
2013 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002014 }
2015 }
2016 }
2017
2018 pthread_mutex_unlock(&out->lock);
2019
2020 return ret;
2021}
2022
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002023static int out_set_callback(struct audio_stream_out *stream,
2024 stream_callback_t callback, void *cookie)
2025{
2026 struct stream_out *out = (struct stream_out *)stream;
2027
2028 ALOGV("%s", __func__);
2029 pthread_mutex_lock(&out->lock);
2030 out->offload_callback = callback;
2031 out->offload_cookie = cookie;
2032 pthread_mutex_unlock(&out->lock);
2033 return 0;
2034}
2035
2036static int out_pause(struct audio_stream_out* stream)
2037{
2038 struct stream_out *out = (struct stream_out *)stream;
2039 int status = -ENOSYS;
2040 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002041 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002042 pthread_mutex_lock(&out->lock);
2043 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302044 struct audio_device *adev = out->dev;
2045 int snd_scard_state = get_snd_card_state(adev);
2046
2047 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2048 status = compress_pause(out->compr);
2049
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002050 out->offload_state = OFFLOAD_STATE_PAUSED;
2051 }
2052 pthread_mutex_unlock(&out->lock);
2053 }
2054 return status;
2055}
2056
2057static int out_resume(struct audio_stream_out* stream)
2058{
2059 struct stream_out *out = (struct stream_out *)stream;
2060 int status = -ENOSYS;
2061 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002062 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002063 status = 0;
2064 pthread_mutex_lock(&out->lock);
2065 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302066 struct audio_device *adev = out->dev;
2067 int snd_scard_state = get_snd_card_state(adev);
2068
2069 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2070 status = compress_resume(out->compr);
2071
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002072 out->offload_state = OFFLOAD_STATE_PLAYING;
2073 }
2074 pthread_mutex_unlock(&out->lock);
2075 }
2076 return status;
2077}
2078
2079static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
2080{
2081 struct stream_out *out = (struct stream_out *)stream;
2082 int status = -ENOSYS;
2083 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002084 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002085 pthread_mutex_lock(&out->lock);
2086 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
2087 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
2088 else
2089 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
2090 pthread_mutex_unlock(&out->lock);
2091 }
2092 return status;
2093}
2094
2095static int out_flush(struct audio_stream_out* stream)
2096{
2097 struct stream_out *out = (struct stream_out *)stream;
2098 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002099 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002100 pthread_mutex_lock(&out->lock);
2101 stop_compressed_output_l(out);
2102 pthread_mutex_unlock(&out->lock);
2103 return 0;
2104 }
2105 return -ENOSYS;
2106}
2107
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002108/** audio_stream_in implementation **/
2109static uint32_t in_get_sample_rate(const struct audio_stream *stream)
2110{
2111 struct stream_in *in = (struct stream_in *)stream;
2112
2113 return in->config.rate;
2114}
2115
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302116static int in_set_sample_rate(struct audio_stream *stream __unused,
2117 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002118{
2119 return -ENOSYS;
2120}
2121
2122static size_t in_get_buffer_size(const struct audio_stream *stream)
2123{
2124 struct stream_in *in = (struct stream_in *)stream;
2125
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002126 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2127 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002128 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2129 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002130
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302131 return in->config.period_size *
2132 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002133}
2134
2135static uint32_t in_get_channels(const struct audio_stream *stream)
2136{
2137 struct stream_in *in = (struct stream_in *)stream;
2138
2139 return in->channel_mask;
2140}
2141
2142static audio_format_t in_get_format(const struct audio_stream *stream)
2143{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002144 struct stream_in *in = (struct stream_in *)stream;
2145
2146 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002147}
2148
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302149static int in_set_format(struct audio_stream *stream __unused,
2150 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002151{
2152 return -ENOSYS;
2153}
2154
2155static int in_standby(struct audio_stream *stream)
2156{
2157 struct stream_in *in = (struct stream_in *)stream;
2158 struct audio_device *adev = in->dev;
2159 int status = 0;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302160 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2161 stream, in->usecase, use_case_table[in->usecase]);
2162
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002163
2164 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2165 /* Ignore standby in case of voip call because the voip input
2166 * stream is closed in adev_close_input_stream()
2167 */
2168 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2169 return status;
2170 }
2171
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002172 pthread_mutex_lock(&in->lock);
2173 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002174 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002175 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002176 if (in->pcm) {
2177 pcm_close(in->pcm);
2178 in->pcm = NULL;
2179 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002180 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002181 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002182 }
2183 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002184 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002185 return status;
2186}
2187
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302188static int in_dump(const struct audio_stream *stream __unused,
2189 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002190{
2191 return 0;
2192}
2193
2194static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2195{
2196 struct stream_in *in = (struct stream_in *)stream;
2197 struct audio_device *adev = in->dev;
2198 struct str_parms *parms;
2199 char *str;
2200 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002201 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002202
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302203 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002204 parms = str_parms_create_str(kvpairs);
2205
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002206 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002207 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002208
2209 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2210 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002211 val = atoi(value);
2212 /* no audio source uses val == 0 */
2213 if ((in->source != val) && (val != 0)) {
2214 in->source = val;
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002215 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2216 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2217 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2218 (in->config.rate == 8000 || in->config.rate == 16000) &&
2219 (popcount(in->channel_mask) == 1)) {
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002220 err = voice_extn_compress_voip_open_input_stream(in);
2221 if (err != 0) {
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002222 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella287b8162014-02-04 16:23:52 -08002223 __func__, err);
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002224 }
2225 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002226 }
2227 }
2228
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002229 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2230 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002231 val = atoi(value);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302232 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002233 in->device = val;
2234 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002235 if (!in->standby)
2236 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002237 }
2238 }
2239
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08002240done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002241 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002242 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002243
2244 str_parms_destroy(parms);
Eric Laurent994a6932013-07-17 11:51:42 -07002245 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002246 return ret;
2247}
2248
2249static char* in_get_parameters(const struct audio_stream *stream,
2250 const char *keys)
2251{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002252 struct stream_in *in = (struct stream_in *)stream;
2253 struct str_parms *query = str_parms_create_str(keys);
2254 char *str;
2255 char value[256];
2256 struct str_parms *reply = str_parms_create();
2257 ALOGV("%s: enter: keys - %s", __func__, keys);
2258
2259 voice_extn_in_get_parameters(in, query, reply);
2260
2261 str = str_parms_to_str(reply);
2262 str_parms_destroy(query);
2263 str_parms_destroy(reply);
2264
2265 ALOGV("%s: exit: returns - %s", __func__, str);
2266 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002267}
2268
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302269static int in_set_gain(struct audio_stream_in *stream __unused,
2270 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002271{
2272 return 0;
2273}
2274
2275static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2276 size_t bytes)
2277{
2278 struct stream_in *in = (struct stream_in *)stream;
2279 struct audio_device *adev = in->dev;
2280 int i, ret = -1;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302281 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002282
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002283 pthread_mutex_lock(&in->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302284
2285 if (in->pcm) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302286 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302287 ALOGD(" %s: sound card is not active/SSR state", __func__);
2288 ret= -ENETRESET;
2289 goto exit;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302290 }
2291 }
2292
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002293 if (in->standby) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002294 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002295 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2296 ret = voice_extn_compress_voip_start_input_stream(in);
2297 else
2298 ret = start_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002299 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002300 if (ret != 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002301 goto exit;
2302 }
2303 in->standby = 0;
2304 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002305
2306 if (in->pcm) {
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302307 if (audio_extn_ssr_get_enabled() &&
2308 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002309 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002310 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2311 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302312 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2313 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002314 else
2315 ret = pcm_read(in->pcm, buffer, bytes);
Dhanalakshmi Siddani834b22f2014-08-20 12:28:34 +05302316 if (ret < 0)
2317 ret = -errno;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002318 }
2319
2320 /*
2321 * Instead of writing zeroes here, we could trust the hardware
2322 * to always provide zeroes when muted.
2323 */
Pavan Chikkala6c183fd2014-12-04 10:48:28 +05302324 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in) &&
2325 in->usecase != USECASE_AUDIO_RECORD_AFE_PROXY)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002326 memset(buffer, 0, bytes);
2327
2328exit:
Dhanalakshmi Siddani4fe3e512014-05-26 18:03:42 +05302329 /* ToDo: There may be a corner case when SSR happens back to back during
2330 start/stop. Need to post different error to handle that. */
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302331 if (-ENETRESET == ret) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302332 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302333 memset(buffer, 0, bytes);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302334 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002335 pthread_mutex_unlock(&in->lock);
2336
2337 if (ret != 0) {
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302338 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302339 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302340 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302341 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Gutta369dd682014-06-25 20:38:03 +05302342 in->standby = true;
2343 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002344 in_standby(&in->stream.common);
2345 ALOGV("%s: read failed - sleeping for buffer duration", __func__);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302346 usleep(bytes * 1000000 / audio_stream_frame_size(&in->stream.common) /
2347 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002348 }
2349 return bytes;
2350}
2351
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302352static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002353{
2354 return 0;
2355}
2356
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002357static int add_remove_audio_effect(const struct audio_stream *stream,
2358 effect_handle_t effect,
2359 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002360{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002361 struct stream_in *in = (struct stream_in *)stream;
2362 int status = 0;
2363 effect_descriptor_t desc;
2364
2365 status = (*effect)->get_descriptor(effect, &desc);
2366 if (status != 0)
2367 return status;
2368
2369 pthread_mutex_lock(&in->lock);
2370 pthread_mutex_lock(&in->dev->lock);
2371 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2372 in->enable_aec != enable &&
2373 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2374 in->enable_aec = enable;
2375 if (!in->standby)
2376 select_devices(in->dev, in->usecase);
2377 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002378 if (in->enable_ns != enable &&
2379 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2380 in->enable_ns = enable;
2381 if (!in->standby)
2382 select_devices(in->dev, in->usecase);
2383 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002384 pthread_mutex_unlock(&in->dev->lock);
2385 pthread_mutex_unlock(&in->lock);
2386
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002387 return 0;
2388}
2389
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002390static int in_add_audio_effect(const struct audio_stream *stream,
2391 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002392{
Eric Laurent994a6932013-07-17 11:51:42 -07002393 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002394 return add_remove_audio_effect(stream, effect, true);
2395}
2396
2397static int in_remove_audio_effect(const struct audio_stream *stream,
2398 effect_handle_t effect)
2399{
Eric Laurent994a6932013-07-17 11:51:42 -07002400 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002401 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002402}
2403
2404static int adev_open_output_stream(struct audio_hw_device *dev,
2405 audio_io_handle_t handle,
2406 audio_devices_t devices,
2407 audio_output_flags_t flags,
2408 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302409 struct audio_stream_out **stream_out,
2410 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002411{
2412 struct audio_device *adev = (struct audio_device *)dev;
2413 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002414 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002415
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002416 *stream_out = NULL;
Naresh Tannirucef332d2014-06-04 18:17:56 +05302417
2418 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2419 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2420 ALOGE(" sound card is not active rejecting compress output open request");
2421 return -EINVAL;
2422 }
2423
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002424 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2425
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302426 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2427 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2428 devices, flags, &out->stream);
2429
2430
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002431 if (!out) {
2432 return -ENOMEM;
2433 }
2434
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002435 if (devices == AUDIO_DEVICE_NONE)
2436 devices = AUDIO_DEVICE_OUT_SPEAKER;
2437
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002438 out->flags = flags;
2439 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002440 out->dev = adev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002441 out->format = config->format;
2442 out->sample_rate = config->sample_rate;
2443 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2444 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002445 out->handle = handle;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002446 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002447
2448 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002449 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
Mingming Yinee733602014-04-03 17:47:22 -07002450 (
2451#ifdef AFE_PROXY_ENABLED
2452 out->devices & AUDIO_DEVICE_OUT_PROXY ||
2453#endif
2454 out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)) {
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002455
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002456 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002457 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2458 ret = read_hdmi_channel_masks(out);
2459
Mingming Yinee733602014-04-03 17:47:22 -07002460#ifdef AFE_PROXY_ENABLED
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002461 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2462 ret = audio_extn_read_afe_proxy_channel_masks(out);
Mingming Yinee733602014-04-03 17:47:22 -07002463#endif
2464
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002465 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002466 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002467 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002468
2469 if (config->sample_rate == 0)
2470 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2471 if (config->channel_mask == 0)
2472 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2473
2474 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002475 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002476 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2477 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002478 out->config.rate = config->sample_rate;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302479 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002480 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Mingming Yinee733602014-04-03 17:47:22 -07002481#ifdef COMPRESS_VOIP_ENABLED
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002482 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2483 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002484 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002485 ret = voice_extn_compress_voip_open_output_stream(out);
2486 if (ret != 0) {
2487 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2488 __func__, ret);
2489 goto error_open;
2490 }
Mingming Yinee733602014-04-03 17:47:22 -07002491#endif
Steve Kondikb045f472014-11-12 23:24:07 -08002492#ifdef LOW_LATENCY_PRIMARY
2493 } else if (out->flags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER) {
2494 out->usecase = USECASE_AUDIO_PLAYBACK_DEEP_BUFFER;
2495 out->config = pcm_config_deep_buffer;
2496 out->sample_rate = out->config.rate;
2497#endif
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002498 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2499 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2500 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2501 ALOGE("%s: Unsupported Offload information", __func__);
2502 ret = -EINVAL;
2503 goto error_open;
2504 }
Mingming Yin90310102013-11-13 16:57:00 -08002505 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002506 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002507 ALOGE("%s: Unsupported audio format", __func__);
2508 ret = -EINVAL;
2509 goto error_open;
2510 }
2511
2512 out->compr_config.codec = (struct snd_codec *)
2513 calloc(1, sizeof(struct snd_codec));
2514
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002515 out->usecase = get_offload_usecase(adev);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002516 if (config->offload_info.channel_mask)
2517 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002518 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002519 out->channel_mask = config->channel_mask;
ApurupaPattapu0c566872014-01-10 14:46:02 -08002520 config->offload_info.channel_mask = config->channel_mask;
2521 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002522 out->format = config->offload_info.format;
2523 out->sample_rate = config->offload_info.sample_rate;
2524
2525 out->stream.set_callback = out_set_callback;
2526 out->stream.pause = out_pause;
2527 out->stream.resume = out_resume;
2528 out->stream.drain = out_drain;
2529 out->stream.flush = out_flush;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002530 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002531
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002532 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002533 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddye0a07122013-12-14 00:34:53 -08002534 audio_extn_dolby_get_snd_codec_id(adev, out,
2535 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002536 else
2537 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002538 get_snd_codec_id(config->offload_info.format);
Mingming Yinee733602014-04-03 17:47:22 -07002539#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002540 if (audio_is_offload_pcm(config->offload_info.format)) {
2541 out->compr_config.fragment_size =
2542 platform_get_pcm_offload_buffer_size(&config->offload_info);
Mingming Yinee733602014-04-03 17:47:22 -07002543 } else
2544#endif
2545 {
ApurupaPattapu0c566872014-01-10 14:46:02 -08002546 out->compr_config.fragment_size =
2547 platform_get_compress_offload_buffer_size(&config->offload_info);
2548 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002549 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2550 out->compr_config.codec->sample_rate =
2551 compress_get_alsa_rate(config->offload_info.sample_rate);
2552 out->compr_config.codec->bit_rate =
2553 config->offload_info.bit_rate;
2554 out->compr_config.codec->ch_in =
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302555 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002556 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002557 out->bit_width = config->offload_info.bit_width;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002558
Mingming Yinee733602014-04-03 17:47:22 -07002559#ifdef EXTN_OFFLOAD_ENABLED
ApurupaPattapu0c566872014-01-10 14:46:02 -08002560 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2561 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002562 if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
ApurupaPattapu0c566872014-01-10 14:46:02 -08002563 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
Mingming Yinee733602014-04-03 17:47:22 -07002564#endif
ApurupaPattapu0c566872014-01-10 14:46:02 -08002565
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08002566 if (config->offload_info.bit_width == 24) {
2567 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
2568 }
2569
2570 if (out->bit_width == 24 && !platform_check_24_bit_support()) {
2571 ALOGW("24 bit support is not enabled, using 16 bit backend");
2572 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
2573 }
2574
2575 out->compr_config.codec->options.flac_dec.sample_size = config->offload_info.bit_width;
2576
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002577 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2578 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002579
2580 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002581 out->offload_state = OFFLOAD_STATE_IDLE;
2582 out->playback_started = 0;
2583
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002584 create_offload_callback_thread(out);
2585 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2586 __func__, config->offload_info.version,
2587 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002588 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly9d1632f2014-01-09 12:45:31 -08002589 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002590
Mingming Yinee733602014-04-03 17:47:22 -07002591#ifdef INCALL_MUSIC_ENABLED
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002592 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2593 ret = voice_check_and_set_incall_music_usecase(adev, out);
2594 if (ret != 0) {
2595 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2596 __func__, ret);
2597 goto error_open;
2598 }
Mingming Yinee733602014-04-03 17:47:22 -07002599#endif
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05302600 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2601 if (config->sample_rate == 0)
2602 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2603 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2604 config->sample_rate != 8000) {
2605 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2606 ret = -EINVAL;
2607 goto error_open;
2608 }
2609 out->sample_rate = config->sample_rate;
2610 out->config.rate = config->sample_rate;
2611 if (config->format == AUDIO_FORMAT_DEFAULT)
2612 config->format = AUDIO_FORMAT_PCM_16_BIT;
2613 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2614 config->format = AUDIO_FORMAT_PCM_16_BIT;
2615 ret = -EINVAL;
2616 goto error_open;
2617 }
2618 out->format = config->format;
2619 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2620 out->config = pcm_config_afe_proxy_playback;
2621 adev->voice_tx_output = out;
Steve Kondikb045f472014-11-12 23:24:07 -08002622#ifndef LOW_LATENCY_PRIMARY
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002623 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002624 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2625 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002626 out->sample_rate = out->config.rate;
Steve Kondikb045f472014-11-12 23:24:07 -08002627#endif
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002628 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002629 /* primary path is the default path selected if no other outputs are available/suitable */
2630 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Steve Kondikb045f472014-11-12 23:24:07 -08002631#ifdef LOW_LATENCY_PRIMARY
2632 out->config = pcm_config_low_latency;
2633#else
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002634 out->config = pcm_config_deep_buffer;
Steve Kondikb045f472014-11-12 23:24:07 -08002635#endif
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002636 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002637 }
2638
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002639 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2640 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2641 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002642 if(adev->primary_output == NULL)
2643 adev->primary_output = out;
2644 else {
2645 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002646 ret = -EEXIST;
2647 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002648 }
2649 }
2650
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002651 /* Check if this usecase is already existing */
2652 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella0d06c8e2014-04-17 20:00:41 -07002653 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2654 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002655 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002656 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002657 ret = -EEXIST;
2658 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002659 }
2660 pthread_mutex_unlock(&adev->lock);
2661
2662 out->stream.common.get_sample_rate = out_get_sample_rate;
2663 out->stream.common.set_sample_rate = out_set_sample_rate;
2664 out->stream.common.get_buffer_size = out_get_buffer_size;
2665 out->stream.common.get_channels = out_get_channels;
2666 out->stream.common.get_format = out_get_format;
2667 out->stream.common.set_format = out_set_format;
2668 out->stream.common.standby = out_standby;
2669 out->stream.common.dump = out_dump;
2670 out->stream.common.set_parameters = out_set_parameters;
2671 out->stream.common.get_parameters = out_get_parameters;
2672 out->stream.common.add_audio_effect = out_add_audio_effect;
2673 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2674 out->stream.get_latency = out_get_latency;
2675 out->stream.set_volume = out_set_volume;
2676 out->stream.write = out_write;
2677 out->stream.get_render_position = out_get_render_position;
2678 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002679 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002680
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002681 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002682 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002683 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002684
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302685 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2686 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2687
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002688 config->format = out->stream.common.get_format(&out->stream.common);
2689 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2690 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2691
2692 *stream_out = &out->stream;
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302693 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2694 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002695 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002696 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002697
2698error_open:
2699 free(out);
2700 *stream_out = NULL;
2701 ALOGD("%s: exit: ret %d", __func__, ret);
2702 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002703}
2704
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302705static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002706 struct audio_stream_out *stream)
2707{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002708 struct stream_out *out = (struct stream_out *)stream;
2709 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002710 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002711
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302712 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2713
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002714 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302715 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002716 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05302717 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002718 if(ret != 0)
2719 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2720 __func__, ret);
2721 }
2722 else
2723 out_standby(&stream->common);
2724
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002725 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002726 destroy_offload_callback_thread(out);
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07002727 free_offload_usecase(adev, out->usecase);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002728 if (out->compr_config.codec != NULL)
2729 free(out->compr_config.codec);
2730 }
2731 pthread_cond_destroy(&out->cond);
2732 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002733 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002734 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002735}
2736
2737static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2738{
2739 struct audio_device *adev = (struct audio_device *)dev;
2740 struct str_parms *parms;
2741 char *str;
2742 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002743 int val;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302744 int ret;
2745 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002746
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002747 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002748 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002749
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302750 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2751 if (ret >= 0) {
2752 char *snd_card_status = value+2;
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302753 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tannirucef332d2014-06-04 18:17:56 +05302754 struct listnode *node;
2755 struct audio_usecase *usecase;
2756
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302757 ALOGD("Received sound card OFFLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302758 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2759
2760 pthread_mutex_lock(&adev->lock);
2761 //close compress session on OFFLINE status
2762 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2763 if (usecase && usecase->stream.out) {
2764 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2765
2766 struct stream_out *out = usecase->stream.out;
2767
2768 pthread_mutex_unlock(&adev->lock);
2769 out_standby(&out->stream.common);
2770 } else
2771 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302772 } else if (strstr(snd_card_status, "ONLINE")) {
2773 ALOGD("Received sound card ONLINE status");
Naresh Tannirucef332d2014-06-04 18:17:56 +05302774 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302775 }
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05302776 }
2777
2778 pthread_mutex_lock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302779 status = voice_set_parameters(adev, parms);
2780 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002781 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002782
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302783 status = platform_set_parameters(adev->platform, parms);
2784 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002785 goto done;
2786
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302787 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2788 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002789 /* When set to false, HAL should disable EC and NS
2790 * But it is currently not supported.
2791 */
2792 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2793 adev->bluetooth_nrec = true;
2794 else
2795 adev->bluetooth_nrec = false;
2796 }
2797
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302798 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2799 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002800 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2801 adev->screen_off = false;
2802 else
2803 adev->screen_off = true;
2804 }
2805
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302806 ret = str_parms_get_int(parms, "rotation", &val);
2807 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002808 bool reverse_speakers = false;
2809 switch(val) {
2810 // FIXME: note that the code below assumes that the speakers are in the correct placement
2811 // relative to the user when the device is rotated 90deg from its default rotation. This
2812 // assumption is device-specific, not platform-specific like this code.
2813 case 270:
2814 reverse_speakers = true;
2815 break;
2816 case 0:
2817 case 90:
2818 case 180:
2819 break;
2820 default:
2821 ALOGE("%s: unexpected rotation of %d", __func__, val);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302822 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002823 }
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302824 if (status == 0) {
2825 if (adev->speaker_lr_swap != reverse_speakers) {
2826 adev->speaker_lr_swap = reverse_speakers;
2827 // only update the selected device if there is active pcm playback
2828 struct audio_usecase *usecase;
2829 struct listnode *node;
2830 list_for_each(node, &adev->usecase_list) {
2831 usecase = node_to_item(node, struct audio_usecase, list);
2832 if (usecase->type == PCM_PLAYBACK) {
2833 select_devices(adev, usecase->id);
2834 break;
2835 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002836 }
2837 }
2838 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002839 }
2840
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002841 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002842
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002843done:
2844 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002845 pthread_mutex_unlock(&adev->lock);
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302846 ALOGV("%s: exit with code(%d)", __func__, status);
2847 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002848}
2849
2850static char* adev_get_parameters(const struct audio_hw_device *dev,
2851 const char *keys)
2852{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002853 struct audio_device *adev = (struct audio_device *)dev;
2854 struct str_parms *reply = str_parms_create();
2855 struct str_parms *query = str_parms_create_str(keys);
2856 char *str;
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302857 char value[256] = {0};
2858 int ret = 0;
2859
2860 ret = str_parms_get_str(query, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, value,
2861 sizeof(value));
2862 if (ret >=0) {
2863 int val = 1;
2864 pthread_mutex_lock(&adev->snd_card_status.lock);
2865 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2866 val = 0;
2867 pthread_mutex_unlock(&adev->snd_card_status.lock);
2868 str_parms_add_int(reply, AUDIO_PARAMETER_KEY_SND_CARD_STATUS, val);
2869 goto exit;
2870 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002871
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002872 pthread_mutex_lock(&adev->lock);
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302873
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002874 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002875 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002876 platform_get_parameters(adev->platform, query, reply);
Naresh Tannirucef332d2014-06-04 18:17:56 +05302877 pthread_mutex_unlock(&adev->lock);
2878
Naresh Tanniruc6ca6352014-06-20 02:54:48 +05302879exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002880 str = str_parms_to_str(reply);
2881 str_parms_destroy(query);
2882 str_parms_destroy(reply);
2883
2884 ALOGV("%s: exit: returns - %s", __func__, str);
2885 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002886}
2887
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302888static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002889{
2890 return 0;
2891}
2892
2893static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
2894{
Haynes Mathew George5191a852013-09-11 14:19:36 -07002895 int ret;
2896 struct audio_device *adev = (struct audio_device *)dev;
2897 pthread_mutex_lock(&adev->lock);
2898 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07002899 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07002900 pthread_mutex_unlock(&adev->lock);
2901 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002902}
2903
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302904static int adev_set_master_volume(struct audio_hw_device *dev __unused,
2905 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002906{
2907 return -ENOSYS;
2908}
2909
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302910static int adev_get_master_volume(struct audio_hw_device *dev __unused,
2911 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002912{
2913 return -ENOSYS;
2914}
2915
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302916static int adev_set_master_mute(struct audio_hw_device *dev __unused,
2917 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002918{
2919 return -ENOSYS;
2920}
2921
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302922static int adev_get_master_mute(struct audio_hw_device *dev __unused,
2923 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002924{
2925 return -ENOSYS;
2926}
2927
2928static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
2929{
2930 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002931 pthread_mutex_lock(&adev->lock);
2932 if (adev->mode != mode) {
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002933 ALOGD("%s mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002934 adev->mode = mode;
2935 }
2936 pthread_mutex_unlock(&adev->lock);
2937 return 0;
2938}
2939
2940static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
2941{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002942 int ret;
2943
2944 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08002945 ALOGD("%s state %d\n", __func__, state);
Shreyas Nagasandra Chandrasekhar9781c6c2014-12-01 05:49:35 -08002946 ret = voice_set_mic_mute((struct audio_device *)dev, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002947 pthread_mutex_unlock(&adev->lock);
2948
2949 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002950}
2951
2952static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
2953{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002954 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002955 return 0;
2956}
2957
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302958static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002959 const struct audio_config *config)
2960{
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302961 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002962
2963 return get_input_buffer_size(config->sample_rate, config->format, channel_count);
2964}
2965
2966static int adev_open_input_stream(struct audio_hw_device *dev,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302967 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002968 audio_devices_t devices,
2969 struct audio_config *config,
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05302970 struct audio_stream_in **stream_in,
2971 audio_input_flags_t flags __unused,
2972 const char *address __unused,
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002973 audio_source_t source)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002974{
2975 struct audio_device *adev = (struct audio_device *)dev;
2976 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08002977 int ret = 0, buffer_size, frame_size;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05302978 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002979
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302980
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002981 *stream_in = NULL;
2982 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
2983 return -EINVAL;
2984
2985 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05302986 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07002987 stream_handle(%p) io_handle(%d) source(%d)",__func__, config->sample_rate, config->channel_mask,
2988 devices, &in->stream, handle, source);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002989
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07002990 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
2991
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002992 in->stream.common.get_sample_rate = in_get_sample_rate;
2993 in->stream.common.set_sample_rate = in_set_sample_rate;
2994 in->stream.common.get_buffer_size = in_get_buffer_size;
2995 in->stream.common.get_channels = in_get_channels;
2996 in->stream.common.get_format = in_get_format;
2997 in->stream.common.set_format = in_set_format;
2998 in->stream.common.standby = in_standby;
2999 in->stream.common.dump = in_dump;
3000 in->stream.common.set_parameters = in_set_parameters;
3001 in->stream.common.get_parameters = in_get_parameters;
3002 in->stream.common.add_audio_effect = in_add_audio_effect;
3003 in->stream.common.remove_audio_effect = in_remove_audio_effect;
3004 in->stream.set_gain = in_set_gain;
3005 in->stream.read = in_read;
3006 in->stream.get_input_frames_lost = in_get_input_frames_lost;
3007
3008 in->device = devices;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003009 in->source = source;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003010 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003011 in->standby = 1;
3012 in->channel_mask = config->channel_mask;
3013
3014 /* Update config params with the requested sample rate and channels */
3015 in->usecase = USECASE_AUDIO_RECORD;
3016 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003017 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003018 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003019
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05303020 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
Pavan Chikkala3c0036d2014-12-17 16:45:10 +05303021 if (adev->mode != AUDIO_MODE_IN_CALL) {
3022 ret = -EINVAL;
3023 goto err_open;
Pavan Chikkala3ec42ef2014-11-21 20:57:48 +05303024 }
Divya Narayanan Poojaryab9b1ef2014-09-12 15:52:36 +05303025 if (config->sample_rate == 0)
3026 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3027 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
3028 config->sample_rate != 8000) {
3029 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3030 ret = -EINVAL;
3031 goto err_open;
3032 }
3033 if (config->format == AUDIO_FORMAT_DEFAULT)
3034 config->format = AUDIO_FORMAT_PCM_16_BIT;
3035 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
3036 config->format = AUDIO_FORMAT_PCM_16_BIT;
3037 ret = -EINVAL;
3038 goto err_open;
3039 }
3040 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
3041 in->config = pcm_config_afe_proxy_record;
3042 in->config.channels = channel_count;
3043 in->config.rate = config->sample_rate;
3044 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003045 if(audio_extn_ssr_get_enabled()) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303046 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003047 ALOGE("%s: audio_extn_ssr_init failed", __func__);
3048 ret = -EINVAL;
3049 goto err_open;
3050 }
3051 } else {
Mingming Yindaf9c542014-09-16 17:41:33 -07003052 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003053 }
Mingming Yine62d7842013-10-25 16:26:03 -07003054 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chellab0668ee2014-01-24 15:33:23 -08003055 audio_extn_compr_cap_format_supported(config->format) &&
3056 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303057 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003058 } else {
3059 in->config.channels = channel_count;
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303060 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003061 buffer_size = get_input_buffer_size(config->sample_rate,
3062 config->format,
3063 channel_count);
3064 in->config.period_size = buffer_size / frame_size;
Vidyakumar Athota7e6ba2e2015-03-31 21:53:21 -07003065 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
3066 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
3067 (voice_extn_compress_voip_is_format_supported(in->format)) &&
3068 (in->config.rate == 8000 || in->config.rate == 16000) &&
3069 (audio_channel_count_from_in_mask(in->channel_mask) == 1)) {
3070 voice_extn_compress_voip_open_input_stream(in);
3071 }
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003072 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003073
3074 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07003075 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003076 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003077
3078err_open:
3079 free(in);
3080 *stream_in = NULL;
3081 return ret;
3082}
3083
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303084static void adev_close_input_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003085 struct audio_stream_in *stream)
3086{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003087 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003088 struct stream_in *in = (struct stream_in *)stream;
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303089 struct audio_device *adev = in->dev;
3090
Sidipotu Ashoke4514fa2014-05-02 16:21:50 +05303091 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003092
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003093 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303094 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003095 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta593b7c12014-08-11 18:20:49 +05303096 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003097 if (ret != 0)
3098 ALOGE("%s: Compress voip input cannot be closed, error:%d",
3099 __func__, ret);
3100 } else
3101 in_standby(&stream->common);
3102
Divya Narayanan Poojary69236ba2014-09-18 11:57:57 +05303103 if (audio_extn_ssr_get_enabled() &&
3104 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003105 audio_extn_ssr_deinit();
3106 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003107 free(stream);
3108
Mingming Yine62d7842013-10-25 16:26:03 -07003109 if(audio_extn_compr_cap_enabled() &&
3110 audio_extn_compr_cap_format_supported(in->config.format))
3111 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003112 return;
3113}
3114
Divya Narayanan Poojarybd9f33f2014-09-17 17:35:59 +05303115static int adev_dump(const audio_hw_device_t *device __unused,
3116 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003117{
3118 return 0;
3119}
3120
3121static int adev_close(hw_device_t *device)
3122{
3123 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07003124
3125 if (!adev)
3126 return 0;
3127
3128 pthread_mutex_lock(&adev_init_lock);
3129
3130 if ((--audio_device_ref_count) == 0) {
Kiran Kandide144c82013-11-20 15:58:32 -08003131 audio_extn_listen_deinit(adev);
Kiran Kandi910e1862013-10-29 13:29:42 -07003132 audio_route_free(adev->audio_route);
3133 free(adev->snd_dev_ref_cnt);
3134 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07003135 free(device);
3136 adev = NULL;
3137 }
3138 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003139 return 0;
3140}
3141
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003142static int adev_open(const hw_module_t *module, const char *name,
3143 hw_device_t **device)
3144{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003145 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003146
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003147 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003148 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
3149
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003150 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07003151 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003152 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07003153 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003154 ALOGD("%s: returning existing instance of adev", __func__);
3155 ALOGD("%s: exit", __func__);
3156 pthread_mutex_unlock(&adev_init_lock);
3157 return 0;
3158 }
3159
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003160 adev = calloc(1, sizeof(struct audio_device));
3161
Ravi Kumar Alamanda33de8142014-04-24 10:34:41 -07003162 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
3163
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003164 adev->device.common.tag = HARDWARE_DEVICE_TAG;
3165 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
3166 adev->device.common.module = (struct hw_module_t *)module;
3167 adev->device.common.close = adev_close;
3168
3169 adev->device.init_check = adev_init_check;
3170 adev->device.set_voice_volume = adev_set_voice_volume;
3171 adev->device.set_master_volume = adev_set_master_volume;
3172 adev->device.get_master_volume = adev_get_master_volume;
3173 adev->device.set_master_mute = adev_set_master_mute;
3174 adev->device.get_master_mute = adev_get_master_mute;
3175 adev->device.set_mode = adev_set_mode;
3176 adev->device.set_mic_mute = adev_set_mic_mute;
3177 adev->device.get_mic_mute = adev_get_mic_mute;
3178 adev->device.set_parameters = adev_set_parameters;
3179 adev->device.get_parameters = adev_get_parameters;
3180 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3181 adev->device.open_output_stream = adev_open_output_stream;
3182 adev->device.close_output_stream = adev_close_output_stream;
3183 adev->device.open_input_stream = adev_open_input_stream;
3184 adev->device.close_input_stream = adev_close_input_stream;
3185 adev->device.dump = adev_dump;
3186
3187 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003188 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003189 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003190 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003191 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003192 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003193 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003194 /* adev->cur_hdmi_channels = 0; by calloc() */
ApurupaPattapu9d6b4362014-02-27 10:24:11 -08003195 adev->cur_codec_backend_samplerate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
3196 adev->cur_codec_backend_bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Eric Laurentb23d5282013-05-14 15:27:20 -07003197 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003198 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003199 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly9b7e96b2014-02-14 14:45:49 -08003200 adev->cur_wfd_channels = 2;
Subhash Chandra Bose Naripeddy148144e2014-04-01 21:03:10 -07003201 adev->offload_usecases_state = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003202
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303203 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3204 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
3205
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003206 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003207 adev->platform = platform_init(adev);
3208 if (!adev->platform) {
3209 free(adev->snd_dev_ref_cnt);
3210 free(adev);
3211 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3212 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003213 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003214 return -EINVAL;
3215 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003216
Naresh Tanniru2d19ab42014-05-11 19:56:25 +05303217 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3218
Eric Laurentc4aef752013-09-12 17:45:53 -07003219 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3220 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3221 if (adev->visualizer_lib == NULL) {
3222 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3223 } else {
3224 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3225 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003226 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003227 "visualizer_hal_start_output");
3228 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003229 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003230 "visualizer_hal_stop_output");
3231 }
3232 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003233 audio_extn_listen_init(adev, adev->snd_card);
Eric Laurentc4aef752013-09-12 17:45:53 -07003234
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003235 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3236 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3237 if (adev->offload_effects_lib == NULL) {
3238 ALOGE("%s: DLOPEN failed for %s", __func__,
3239 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3240 } else {
3241 ALOGV("%s: DLOPEN successful for %s", __func__,
3242 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3243 adev->offload_effects_start_output =
3244 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3245 "offload_effects_bundle_hal_start_output");
3246 adev->offload_effects_stop_output =
3247 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3248 "offload_effects_bundle_hal_stop_output");
3249 }
3250 }
3251
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003252 *device = &adev->device.common;
3253
Kiran Kandi910e1862013-10-29 13:29:42 -07003254 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003255 pthread_mutex_unlock(&adev_init_lock);
3256
Eric Laurent994a6932013-07-17 11:51:42 -07003257 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003258 return 0;
3259}
3260
Mingming Yin90e2cd82014-06-06 17:11:23 -07003261int pcm_ioctl(struct pcm *pcm, int request, ...)
3262{
3263 va_list ap;
3264 void * arg;
3265 int pcm_fd = *(int*)pcm;
3266
3267 va_start(ap, request);
3268 arg = va_arg(ap, void *);
3269 va_end(ap);
3270
3271 return ioctl(pcm_fd, request, arg);
3272}
3273
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003274static struct hw_module_methods_t hal_module_methods = {
3275 .open = adev_open,
3276};
3277
3278struct audio_module HAL_MODULE_INFO_SYM = {
3279 .common = {
3280 .tag = HARDWARE_MODULE_TAG,
3281 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3282 .hal_api_version = HARDWARE_HAL_API_VERSION,
3283 .id = AUDIO_HARDWARE_MODULE_ID,
3284 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003285 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003286 .methods = &hal_module_methods,
3287 },
3288};