blob: 390fb46c1c1b5b10fc101703b84c7199a78e3d0d [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"
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -080056#include "sound/asound.h"
ApurupaPattapu2e084df2013-12-18 15:47:59 -080057
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
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -070063#define PROXY_OPEN_RETRY_COUNT 100
64#define PROXY_OPEN_WAIT_TIME 20
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -080065
Haynes Mathew Georgebf143712013-12-03 13:02:53 -080066#define USECASE_AUDIO_PLAYBACK_PRIMARY USECASE_AUDIO_PLAYBACK_DEEP_BUFFER
67
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -070068static unsigned int configured_low_latency_capture_period_size =
69 LOW_LATENCY_CAPTURE_PERIOD_SIZE;
70
Eric Laurentb23d5282013-05-14 15:27:20 -070071struct pcm_config pcm_config_deep_buffer = {
72 .channels = 2,
73 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
74 .period_size = DEEP_BUFFER_OUTPUT_PERIOD_SIZE,
75 .period_count = DEEP_BUFFER_OUTPUT_PERIOD_COUNT,
76 .format = PCM_FORMAT_S16_LE,
77 .start_threshold = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
78 .stop_threshold = INT_MAX,
79 .avail_min = DEEP_BUFFER_OUTPUT_PERIOD_SIZE / 4,
80};
81
82struct pcm_config pcm_config_low_latency = {
83 .channels = 2,
84 .rate = DEFAULT_OUTPUT_SAMPLING_RATE,
85 .period_size = LOW_LATENCY_OUTPUT_PERIOD_SIZE,
86 .period_count = LOW_LATENCY_OUTPUT_PERIOD_COUNT,
87 .format = PCM_FORMAT_S16_LE,
88 .start_threshold = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
89 .stop_threshold = INT_MAX,
90 .avail_min = LOW_LATENCY_OUTPUT_PERIOD_SIZE / 4,
91};
92
93struct pcm_config pcm_config_hdmi_multi = {
94 .channels = HDMI_MULTI_DEFAULT_CHANNEL_COUNT, /* changed when the stream is opened */
95 .rate = DEFAULT_OUTPUT_SAMPLING_RATE, /* changed when the stream is opened */
96 .period_size = HDMI_MULTI_PERIOD_SIZE,
97 .period_count = HDMI_MULTI_PERIOD_COUNT,
98 .format = PCM_FORMAT_S16_LE,
99 .start_threshold = 0,
100 .stop_threshold = INT_MAX,
101 .avail_min = 0,
102};
103
104struct pcm_config pcm_config_audio_capture = {
105 .channels = 2,
Eric Laurentb23d5282013-05-14 15:27:20 -0700106 .period_count = AUDIO_CAPTURE_PERIOD_COUNT,
107 .format = PCM_FORMAT_S16_LE,
108};
109
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700110#define AFE_PROXY_CHANNEL_COUNT 2
111#define AFE_PROXY_SAMPLING_RATE 48000
112
113#define AFE_PROXY_PLAYBACK_PERIOD_SIZE 768
114#define AFE_PROXY_PLAYBACK_PERIOD_COUNT 4
115
116struct pcm_config pcm_config_afe_proxy_playback = {
117 .channels = AFE_PROXY_CHANNEL_COUNT,
118 .rate = AFE_PROXY_SAMPLING_RATE,
119 .period_size = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
120 .period_count = AFE_PROXY_PLAYBACK_PERIOD_COUNT,
121 .format = PCM_FORMAT_S16_LE,
122 .start_threshold = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
123 .stop_threshold = INT_MAX,
124 .avail_min = AFE_PROXY_PLAYBACK_PERIOD_SIZE,
125};
126
127#define AFE_PROXY_RECORD_PERIOD_SIZE 768
128#define AFE_PROXY_RECORD_PERIOD_COUNT 4
129
130struct pcm_config pcm_config_afe_proxy_record = {
131 .channels = AFE_PROXY_CHANNEL_COUNT,
132 .rate = AFE_PROXY_SAMPLING_RATE,
133 .period_size = AFE_PROXY_RECORD_PERIOD_SIZE,
134 .period_count = AFE_PROXY_RECORD_PERIOD_COUNT,
135 .format = PCM_FORMAT_S16_LE,
136 .start_threshold = AFE_PROXY_RECORD_PERIOD_SIZE,
137 .stop_threshold = INT_MAX,
138 .avail_min = AFE_PROXY_RECORD_PERIOD_SIZE,
139};
140
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -0800141const char * const use_case_table[AUDIO_USECASE_MAX] = {
Eric Laurentb23d5282013-05-14 15:27:20 -0700142 [USECASE_AUDIO_PLAYBACK_DEEP_BUFFER] = "deep-buffer-playback",
143 [USECASE_AUDIO_PLAYBACK_LOW_LATENCY] = "low-latency-playback",
144 [USECASE_AUDIO_PLAYBACK_MULTI_CH] = "multi-channel-playback",
Shruthi Krishnaace10852013-10-25 14:32:12 -0700145 [USECASE_AUDIO_PLAYBACK_OFFLOAD] = "compress-offload-playback",
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700146#ifdef MULTIPLE_OFFLOAD_ENABLED
147 [USECASE_AUDIO_PLAYBACK_OFFLOAD2] = "compress-offload-playback2",
148 [USECASE_AUDIO_PLAYBACK_OFFLOAD3] = "compress-offload-playback3",
149 [USECASE_AUDIO_PLAYBACK_OFFLOAD4] = "compress-offload-playback4",
150 [USECASE_AUDIO_PLAYBACK_OFFLOAD5] = "compress-offload-playback5",
151 [USECASE_AUDIO_PLAYBACK_OFFLOAD6] = "compress-offload-playback6",
152 [USECASE_AUDIO_PLAYBACK_OFFLOAD7] = "compress-offload-playback7",
153 [USECASE_AUDIO_PLAYBACK_OFFLOAD8] = "compress-offload-playback8",
154 [USECASE_AUDIO_PLAYBACK_OFFLOAD9] = "compress-offload-playback9",
155#endif
Eric Laurentb23d5282013-05-14 15:27:20 -0700156 [USECASE_AUDIO_RECORD] = "audio-record",
Mingming Yine62d7842013-10-25 16:26:03 -0700157 [USECASE_AUDIO_RECORD_COMPRESS] = "audio-record-compress",
Eric Laurentb23d5282013-05-14 15:27:20 -0700158 [USECASE_AUDIO_RECORD_LOW_LATENCY] = "low-latency-record",
Preetam Singh Ranawatde84f1a2013-11-01 14:58:16 -0700159 [USECASE_AUDIO_RECORD_FM_VIRTUAL] = "fm-virtual-record",
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700160 [USECASE_AUDIO_PLAYBACK_FM] = "play-fm",
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800161 [USECASE_AUDIO_HFP_SCO] = "hfp-sco",
Vimal Puthanveed47e64852013-12-20 13:23:39 -0800162 [USECASE_AUDIO_HFP_SCO_WB] = "hfp-sco-wb",
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700163 [USECASE_VOICE_CALL] = "voice-call",
Mingming Yin3ee55c62014-08-04 14:23:35 -0700164
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700165 [USECASE_VOICE2_CALL] = "voice2-call",
166 [USECASE_VOLTE_CALL] = "volte-call",
167 [USECASE_QCHAT_CALL] = "qchat-call",
Vicky Sehrawat7e4fc152014-02-12 17:58:59 -0800168 [USECASE_VOWLAN_CALL] = "vowlan-call",
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800169 [USECASE_COMPRESS_VOIP_CALL] = "compress-voip-call",
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700170 [USECASE_INCALL_REC_UPLINK] = "incall-rec-uplink",
171 [USECASE_INCALL_REC_DOWNLINK] = "incall-rec-downlink",
172 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK] = "incall-rec-uplink-and-downlink",
Helen Zenge56b4852013-12-03 16:54:40 -0800173 [USECASE_INCALL_REC_UPLINK_COMPRESS] = "incall-rec-uplink-compress",
174 [USECASE_INCALL_REC_DOWNLINK_COMPRESS] = "incall-rec-downlink-compress",
175 [USECASE_INCALL_REC_UPLINK_AND_DOWNLINK_COMPRESS] = "incall-rec-uplink-and-downlink-compress",
176
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -0700177 [USECASE_INCALL_MUSIC_UPLINK] = "incall_music_uplink",
178 [USECASE_INCALL_MUSIC_UPLINK2] = "incall_music_uplink2",
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700179 [USECASE_AUDIO_SPKR_CALIB_RX] = "spkr-rx-calib",
180 [USECASE_AUDIO_SPKR_CALIB_TX] = "spkr-vi-record",
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700181
182 [USECASE_AUDIO_PLAYBACK_AFE_PROXY] = "afe-proxy-playback",
183 [USECASE_AUDIO_RECORD_AFE_PROXY] = "afe-proxy-record",
Eric Laurentb23d5282013-05-14 15:27:20 -0700184};
185
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -0700186static const audio_usecase_t offload_usecases[] = {
187 USECASE_AUDIO_PLAYBACK_OFFLOAD,
188#ifdef MULTIPLE_OFFLOAD_ENABLED
189 USECASE_AUDIO_PLAYBACK_OFFLOAD2,
190 USECASE_AUDIO_PLAYBACK_OFFLOAD3,
191 USECASE_AUDIO_PLAYBACK_OFFLOAD4,
192 USECASE_AUDIO_PLAYBACK_OFFLOAD5,
193 USECASE_AUDIO_PLAYBACK_OFFLOAD6,
194 USECASE_AUDIO_PLAYBACK_OFFLOAD7,
195 USECASE_AUDIO_PLAYBACK_OFFLOAD8,
196 USECASE_AUDIO_PLAYBACK_OFFLOAD9,
197#endif
198};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800199
200#define STRING_TO_ENUM(string) { #string, string }
201
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800202struct string_to_enum {
203 const char *name;
204 uint32_t value;
205};
206
207static const struct string_to_enum out_channels_name_to_enum_table[] = {
208 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_STEREO),
209 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_5POINT1),
210 STRING_TO_ENUM(AUDIO_CHANNEL_OUT_7POINT1),
211};
212
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700213static struct audio_device *adev = NULL;
214static pthread_mutex_t adev_init_lock;
Kiran Kandi910e1862013-10-29 13:29:42 -0700215static unsigned int audio_device_ref_count;
216
Haynes Mathew George5191a852013-09-11 14:19:36 -0700217static int set_voice_volume_l(struct audio_device *adev, float volume);
Krishnankutty Kolathappilly6d8788b2014-01-09 12:45:31 -0800218
Krishnankutty Kolathappilly6d8788b2014-01-09 12:45:31 -0800219static int check_and_set_gapless_mode(struct audio_device *adev) {
220
221
222 char value[PROPERTY_VALUE_MAX] = {0};
223 bool gapless_enabled = false;
224 const char *mixer_ctl_name = "Compress Gapless Playback";
225 struct mixer_ctl *ctl;
226
227 ALOGV("%s:", __func__);
228 property_get("audio.offload.gapless.enabled", value, NULL);
229 gapless_enabled = atoi(value) || !strncmp("true", value, 4);
230
231 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
232 if (!ctl) {
233 ALOGE("%s: Could not get ctl for mixer cmd - %s",
234 __func__, mixer_ctl_name);
235 return -EINVAL;
236 }
237
238 if (mixer_ctl_set_value(ctl, 0, gapless_enabled) < 0) {
239 ALOGE("%s: Could not set gapless mode %d",
240 __func__, gapless_enabled);
241 return -EINVAL;
242 }
243 return 0;
244}
Haynes Mathew George5191a852013-09-11 14:19:36 -0700245
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700246static bool is_supported_format(audio_format_t format)
247{
Eric Laurent86e17132013-09-12 17:49:30 -0700248 if (format == AUDIO_FORMAT_MP3 ||
Ashish Jainf9b78162014-08-25 20:36:25 +0530249 format == AUDIO_FORMAT_AAC_LC ||
250 format == AUDIO_FORMAT_AAC_HE_V1 ||
251 format == AUDIO_FORMAT_AAC_HE_V2 ||
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800252 format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD ||
Mingming Yin3ee55c62014-08-04 14:23:35 -0700253 format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD ||
254 format == AUDIO_FORMAT_FLAC)
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800255 return true;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700256
257 return false;
258}
259
260static int get_snd_codec_id(audio_format_t format)
261{
262 int id = 0;
263
Ashish Jainf9b78162014-08-25 20:36:25 +0530264 switch (format & AUDIO_FORMAT_MAIN_MASK) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700265 case AUDIO_FORMAT_MP3:
266 id = SND_AUDIOCODEC_MP3;
267 break;
268 case AUDIO_FORMAT_AAC:
269 id = SND_AUDIOCODEC_AAC;
270 break;
Ashish Jainf9b78162014-08-25 20:36:25 +0530271 case AUDIO_FORMAT_PCM_OFFLOAD:
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800272 id = SND_AUDIOCODEC_PCM;
273 break;
Mingming Yin3ee55c62014-08-04 14:23:35 -0700274 case AUDIO_FORMAT_FLAC:
275 id = SND_AUDIOCODEC_FLAC;
276 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700277 default:
Mingming Yin90310102013-11-13 16:57:00 -0800278 ALOGE("%s: Unsupported audio format :%x", __func__, format);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -0700279 }
280
281 return id;
282}
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -0800283
Venkata Narendra Kumar Guttaed0f94f2014-07-09 16:29:28 +0530284int get_snd_card_state(struct audio_device *adev)
Naresh Tanniru80659832014-06-04 18:17:56 +0530285{
286 int snd_scard_state;
287
288 if (!adev)
289 return SND_CARD_STATE_OFFLINE;
290
291 pthread_mutex_lock(&adev->snd_card_status.lock);
292 snd_scard_state = adev->snd_card_status.state;
293 pthread_mutex_unlock(&adev->snd_card_status.lock);
294
295 return snd_scard_state;
296}
297
298static int set_snd_card_state(struct audio_device *adev, int snd_scard_state)
299{
300 if (!adev)
301 return -ENOSYS;
302
303 pthread_mutex_lock(&adev->snd_card_status.lock);
304 adev->snd_card_status.state = snd_scard_state;
305 pthread_mutex_unlock(&adev->snd_card_status.lock);
306
307 return 0;
308}
309
Avinash Vaish71a8b972014-07-24 15:36:33 +0530310static int enable_audio_route_for_voice_usecases(struct audio_device *adev,
311 struct audio_usecase *uc_info)
312{
313 struct listnode *node;
314 struct audio_usecase *usecase;
315
316 if (uc_info == NULL)
317 return -EINVAL;
318
319 /* Re-route all voice usecases on the shared backend other than the
320 specified usecase to new snd devices */
321 list_for_each(node, &adev->usecase_list) {
322 usecase = node_to_item(node, struct audio_usecase, list);
323 if ((usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) &&
324 (usecase != uc_info))
325 enable_audio_route(adev, usecase);
326 }
327 return 0;
328}
329
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -0700330int pcm_ioctl(struct pcm *pcm, int request, ...)
331{
332 va_list ap;
333 void * arg;
334 int pcm_fd = *(int*)pcm;
335
336 va_start(ap, request);
337 arg = va_arg(ap, void *);
338 va_end(ap);
339
340 return ioctl(pcm_fd, request, arg);
341}
342
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700343int enable_audio_route(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700344 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800345{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700346 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700347 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800348
349 if (usecase == NULL)
350 return -EINVAL;
351
352 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
353
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800354 if (usecase->type == PCM_CAPTURE)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700355 snd_device = usecase->in_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800356 else
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700357 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800358
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -0800359#ifdef DS1_DOLBY_DAP_ENABLED
360 audio_extn_dolby_set_dmid(adev);
361 audio_extn_dolby_set_endpoint(adev);
362#endif
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700363 audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_BUSY);
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530364 audio_extn_listen_update_stream_status(usecase, LISTEN_EVENT_STREAM_BUSY);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700365 audio_extn_utils_send_audio_calibration(adev, usecase);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700366 audio_extn_utils_send_app_type_cfg(usecase);
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800367 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700368 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700369 ALOGV("%s: apply mixer and update path: %s", __func__, mixer_path);
370 audio_route_apply_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800371 ALOGV("%s: exit", __func__);
372 return 0;
373}
374
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700375int disable_audio_route(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700376 struct audio_usecase *usecase)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800377{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700378 snd_device_t snd_device;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700379 char mixer_path[MIXER_PATH_MAX_LENGTH];
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800380
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +0530381 if (usecase == NULL || usecase->id == USECASE_INVALID)
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800382 return -EINVAL;
383
384 ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700385 if (usecase->type == PCM_CAPTURE)
386 snd_device = usecase->in_snd_device;
387 else
388 snd_device = usecase->out_snd_device;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800389 strcpy(mixer_path, use_case_table[usecase->id]);
Eric Laurentb23d5282013-05-14 15:27:20 -0700390 platform_add_backend_name(mixer_path, snd_device);
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700391 ALOGV("%s: reset and update mixer path: %s", __func__, mixer_path);
392 audio_route_reset_and_update_path(adev->audio_route, mixer_path);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700393 audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_FREE);
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530394 audio_extn_listen_update_stream_status(usecase, LISTEN_EVENT_STREAM_FREE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800395 ALOGV("%s: exit", __func__);
396 return 0;
397}
398
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700399int enable_snd_device(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700400 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800401{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700402 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
403
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800404 if (snd_device < SND_DEVICE_MIN ||
405 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800406 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800407 return -EINVAL;
408 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700409
410 adev->snd_dev_ref_cnt[snd_device]++;
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700411
412 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0 ) {
413 ALOGE("%s: Invalid sound device returned", __func__);
414 return -EINVAL;
415 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700416 if (adev->snd_dev_ref_cnt[snd_device] > 1) {
Eric Laurent994a6932013-07-17 11:51:42 -0700417 ALOGV("%s: snd_device(%d: %s) is already active",
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700418 __func__, snd_device, device_name);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700419 return 0;
420 }
421
Gopikrishnaiah Anandane85d0462014-06-30 21:41:20 -0700422 if (audio_extn_spkr_prot_is_enabled())
423 audio_extn_spkr_prot_calib_cancel(adev);
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700424 /* start usb playback thread */
425 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
426 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
427 audio_extn_usb_start_playback(adev);
428
429 /* start usb capture thread */
430 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
431 audio_extn_usb_start_capture(adev);
432
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -0800433 if ((snd_device == SND_DEVICE_OUT_SPEAKER ||
434 snd_device == SND_DEVICE_OUT_VOICE_SPEAKER) &&
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700435 audio_extn_spkr_prot_is_enabled()) {
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700436 if (audio_extn_spkr_prot_get_acdb_id(snd_device) < 0) {
437 adev->snd_dev_ref_cnt[snd_device]--;
438 return -EINVAL;
439 }
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -0800440 if (audio_extn_spkr_prot_start_processing(snd_device)) {
441 ALOGE("%s: spkr_start_processing failed", __func__);
442 return -EINVAL;
443 }
444 } else {
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700445 ALOGV("%s: snd_device(%d: %s)", __func__,
446 snd_device, device_name);
Bharath Ramachandramurthy0de16782014-03-28 21:34:33 -0700447 /* due to the possibility of calibration overwrite between listen
448 and audio, notify listen hal before audio calibration is sent */
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700449 audio_extn_sound_trigger_update_device_status(snd_device,
450 ST_EVENT_SND_DEVICE_BUSY);
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530451 audio_extn_listen_update_device_status(snd_device,
452 LISTEN_EVENT_SND_DEVICE_BUSY);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700453 if (platform_get_snd_device_acdb_id(snd_device) < 0) {
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700454 adev->snd_dev_ref_cnt[snd_device]--;
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700455 audio_extn_sound_trigger_update_device_status(snd_device,
456 ST_EVENT_SND_DEVICE_FREE);
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530457 audio_extn_listen_update_device_status(snd_device,
458 LISTEN_EVENT_SND_DEVICE_FREE);
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700459 return -EINVAL;
460 }
Lior Barenboim0b61bc72014-05-13 13:01:37 +0300461 audio_extn_dev_arbi_acquire(snd_device);
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700462 audio_route_apply_and_update_path(adev->audio_route, device_name);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800463 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800464 return 0;
465}
466
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700467int disable_snd_device(struct audio_device *adev,
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700468 snd_device_t snd_device)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800469{
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700470 char device_name[DEVICE_NAME_MAX_SIZE] = {0};
471
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800472 if (snd_device < SND_DEVICE_MIN ||
473 snd_device >= SND_DEVICE_MAX) {
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800474 ALOGE("%s: Invalid sound device %d", __func__, snd_device);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800475 return -EINVAL;
476 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700477 if (adev->snd_dev_ref_cnt[snd_device] <= 0) {
478 ALOGE("%s: device ref cnt is already 0", __func__);
479 return -EINVAL;
480 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700481
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700482 adev->snd_dev_ref_cnt[snd_device]--;
Apoorv Raghuvanshi5792d4b2013-10-07 18:40:05 -0700483
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700484 if(platform_get_snd_device_name_extn(adev->platform, snd_device, device_name) < 0) {
485 ALOGE("%s: Invalid sound device returned", __func__);
486 return -EINVAL;
487 }
488
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700489 if (adev->snd_dev_ref_cnt[snd_device] == 0) {
Eric Laurent994a6932013-07-17 11:51:42 -0700490 ALOGV("%s: snd_device(%d: %s)", __func__,
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700491 snd_device, device_name);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800492 /* exit usb play back thread */
493 if(SND_DEVICE_OUT_USB_HEADSET == snd_device ||
494 SND_DEVICE_OUT_SPEAKER_AND_USB_HEADSET == snd_device)
495 audio_extn_usb_stop_playback();
496
497 /* exit usb capture thread */
498 if(SND_DEVICE_IN_USB_HEADSET_MIC == snd_device)
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -0700499 audio_extn_usb_stop_capture();
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -0800500
Vidyakumar Athota1c6419a2014-01-10 14:47:34 -0800501 if ((snd_device == SND_DEVICE_OUT_SPEAKER ||
502 snd_device == SND_DEVICE_OUT_VOICE_SPEAKER) &&
Gopikrishnaiah Anandanf538cef2013-10-28 14:06:03 -0700503 audio_extn_spkr_prot_is_enabled()) {
Anish Kumar46c7b872014-09-09 01:49:44 -0700504 audio_extn_spkr_prot_stop_processing(snd_device);
Lior Barenboim0b61bc72014-05-13 13:01:37 +0300505 } else {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700506 audio_route_reset_and_update_path(adev->audio_route, device_name);
Lior Barenboim0b61bc72014-05-13 13:01:37 +0300507 audio_extn_dev_arbi_release(snd_device);
508 }
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700509
510 audio_extn_sound_trigger_update_device_status(snd_device,
511 ST_EVENT_SND_DEVICE_FREE);
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530512 audio_extn_listen_update_device_status(snd_device,
Kiran Kandide144c82013-11-20 15:58:32 -0800513 LISTEN_EVENT_SND_DEVICE_FREE);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700514 }
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700515
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800516 return 0;
517}
518
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700519static void check_usecases_codec_backend(struct audio_device *adev,
520 struct audio_usecase *uc_info,
521 snd_device_t snd_device)
522{
523 struct listnode *node;
524 struct audio_usecase *usecase;
525 bool switch_device[AUDIO_USECASE_MAX];
526 int i, num_uc_to_switch = 0;
527
528 /*
529 * This function is to make sure that all the usecases that are active on
530 * the hardware codec backend are always routed to any one device that is
531 * handled by the hardware codec.
532 * For example, if low-latency and deep-buffer usecases are currently active
533 * on speaker and out_set_parameters(headset) is received on low-latency
534 * output, then we have to make sure deep-buffer is also switched to headset,
535 * because of the limitation that both the devices cannot be enabled
536 * at the same time as they share the same backend.
537 */
Mingming Yin3ee55c62014-08-04 14:23:35 -0700538 /*
539 * This call is to check if we need to force routing for a particular stream
540 * If there is a backend configuration change for the device when a
541 * new stream starts, then ADM needs to be closed and re-opened with the new
542 * configuraion. This call check if we need to re-route all the streams
543 * associated with the backend. Touch tone + 24 bit playback.
544 */
545 bool force_routing = platform_check_and_set_codec_backend_cfg(adev, uc_info);
546
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700547 /* Disable all the usecases on the shared backend other than the
548 specified usecase */
549 for (i = 0; i < AUDIO_USECASE_MAX; i++)
550 switch_device[i] = false;
551
552 list_for_each(node, &adev->usecase_list) {
553 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800554 if (usecase->type != PCM_CAPTURE &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700555 usecase != uc_info &&
Mingming Yin3ee55c62014-08-04 14:23:35 -0700556 (usecase->out_snd_device != snd_device || force_routing) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700557 usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) {
558 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
559 __func__, use_case_table[usecase->id],
Eric Laurentb23d5282013-05-14 15:27:20 -0700560 platform_get_snd_device_name(usecase->out_snd_device));
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700561 disable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700562 switch_device[usecase->id] = true;
563 num_uc_to_switch++;
564 }
565 }
566
567 if (num_uc_to_switch) {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700568 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700569
Venkata Narendra Kumar Gutta7610e632014-04-14 23:16:38 +0530570 /* Make sure the previous devices to be disabled first and then enable the
571 selected devices */
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700572 list_for_each(node, &adev->usecase_list) {
573 usecase = node_to_item(node, struct audio_usecase, list);
574 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700575 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700576 }
577 }
578
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700579 list_for_each(node, &adev->usecase_list) {
580 usecase = node_to_item(node, struct audio_usecase, list);
581 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700582 enable_snd_device(adev, snd_device);
Krishnankutty Kolathappillydc4f7572013-11-01 20:07:13 -0700583 }
584 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700585
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700586 /* Re-route all the usecases on the shared backend other than the
587 specified usecase to new snd devices */
588 list_for_each(node, &adev->usecase_list) {
589 usecase = node_to_item(node, struct audio_usecase, list);
590 /* Update the out_snd_device only before enabling the audio route */
591 if (switch_device[usecase->id] ) {
592 usecase->out_snd_device = snd_device;
Avinash Vaish71a8b972014-07-24 15:36:33 +0530593 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
594 enable_audio_route(adev, usecase);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700595 }
596 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700597 }
598}
599
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700600static void check_and_route_capture_usecases(struct audio_device *adev,
601 struct audio_usecase *uc_info,
602 snd_device_t snd_device)
603{
604 struct listnode *node;
605 struct audio_usecase *usecase;
606 bool switch_device[AUDIO_USECASE_MAX];
607 int i, num_uc_to_switch = 0;
608
609 /*
610 * This function is to make sure that all the active capture usecases
611 * are always routed to the same input sound device.
612 * For example, if audio-record and voice-call usecases are currently
613 * active on speaker(rx) and speaker-mic (tx) and out_set_parameters(earpiece)
614 * is received for voice call then we have to make sure that audio-record
615 * usecase is also switched to earpiece i.e. voice-dmic-ef,
616 * because of the limitation that two devices cannot be enabled
617 * at the same time if they share the same backend.
618 */
619 for (i = 0; i < AUDIO_USECASE_MAX; i++)
620 switch_device[i] = false;
621
622 list_for_each(node, &adev->usecase_list) {
623 usecase = node_to_item(node, struct audio_usecase, list);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800624 if (usecase->type != PCM_PLAYBACK &&
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700625 usecase != uc_info &&
626 usecase->in_snd_device != snd_device) {
627 ALOGV("%s: Usecase (%s) is active on (%s) - disabling ..",
628 __func__, use_case_table[usecase->id],
Devin Kim1e5f3532013-08-09 07:48:29 -0700629 platform_get_snd_device_name(usecase->in_snd_device));
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700630 disable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700631 switch_device[usecase->id] = true;
632 num_uc_to_switch++;
633 }
634 }
635
636 if (num_uc_to_switch) {
Haynes Mathew Georgeef1e3d32014-04-24 11:53:44 -0700637 /* All streams have been de-routed. Disable the device */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700638
Venkata Narendra Kumar Gutta7610e632014-04-14 23:16:38 +0530639 /* Make sure the previous devices to be disabled first and then enable the
640 selected devices */
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700641 list_for_each(node, &adev->usecase_list) {
642 usecase = node_to_item(node, struct audio_usecase, list);
643 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700644 disable_snd_device(adev, usecase->in_snd_device);
Shiv Maliyappanahalli80ac6282013-12-20 18:56:15 -0800645 }
646 }
647
648 list_for_each(node, &adev->usecase_list) {
649 usecase = node_to_item(node, struct audio_usecase, list);
650 if (switch_device[usecase->id]) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700651 enable_snd_device(adev, snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700652 }
653 }
654
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700655 /* Re-route all the usecases on the shared backend other than the
656 specified usecase to new snd devices */
657 list_for_each(node, &adev->usecase_list) {
658 usecase = node_to_item(node, struct audio_usecase, list);
659 /* Update the in_snd_device only before enabling the audio route */
660 if (switch_device[usecase->id] ) {
661 usecase->in_snd_device = snd_device;
Avinash Vaish71a8b972014-07-24 15:36:33 +0530662 if (usecase->type != VOICE_CALL && usecase->type != VOIP_CALL)
663 enable_audio_route(adev, usecase);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700664 }
665 }
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700666 }
667}
668
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800669/* must be called with hw device mutex locked */
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700670static int read_hdmi_channel_masks(struct stream_out *out)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800671{
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700672 int ret = 0;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700673 int channels = platform_edid_get_max_channels(out->dev->platform);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800674
675 switch (channels) {
676 /*
677 * Do not handle stereo output in Multi-channel cases
678 * Stereo case is handled in normal playback path
679 */
680 case 6:
681 ALOGV("%s: HDMI supports 5.1", __func__);
682 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
683 break;
684 case 8:
685 ALOGV("%s: HDMI supports 5.1 and 7.1 channels", __func__);
686 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_5POINT1;
687 out->supported_channel_masks[1] = AUDIO_CHANNEL_OUT_7POINT1;
688 break;
689 default:
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700690 ALOGE("HDMI does not support multi channel playback");
691 ret = -ENOSYS;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800692 break;
693 }
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -0700694 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800695}
696
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700697static audio_usecase_t get_voice_usecase_id_from_list(struct audio_device *adev)
698{
699 struct audio_usecase *usecase;
700 struct listnode *node;
701
702 list_for_each(node, &adev->usecase_list) {
703 usecase = node_to_item(node, struct audio_usecase, list);
704 if (usecase->type == VOICE_CALL) {
705 ALOGV("%s: usecase id %d", __func__, usecase->id);
706 return usecase->id;
707 }
708 }
709 return USECASE_INVALID;
710}
711
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -0700712struct audio_usecase *get_usecase_from_list(struct audio_device *adev,
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700713 audio_usecase_t uc_id)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700714{
715 struct audio_usecase *usecase;
716 struct listnode *node;
717
718 list_for_each(node, &adev->usecase_list) {
719 usecase = node_to_item(node, struct audio_usecase, list);
720 if (usecase->id == uc_id)
721 return usecase;
722 }
723 return NULL;
724}
725
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700726int select_devices(struct audio_device *adev, audio_usecase_t uc_id)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800727{
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800728 snd_device_t out_snd_device = SND_DEVICE_NONE;
729 snd_device_t in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700730 struct audio_usecase *usecase = NULL;
731 struct audio_usecase *vc_usecase = NULL;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800732 struct audio_usecase *voip_usecase = NULL;
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800733 struct audio_usecase *hfp_usecase = NULL;
Vimal Puthanveed41fcff22014-01-23 15:56:53 -0800734 audio_usecase_t hfp_ucid;
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800735 struct listnode *node;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700736 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800737
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700738 usecase = get_usecase_from_list(adev, uc_id);
739 if (usecase == NULL) {
740 ALOGE("%s: Could not find the usecase(%d)", __func__, uc_id);
741 return -EINVAL;
742 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800743
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800744 if ((usecase->type == VOICE_CALL) ||
Vimal Puthanveed5b4d3f12013-11-05 15:57:39 -0800745 (usecase->type == VOIP_CALL) ||
746 (usecase->type == PCM_HFP_CALL)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700747 out_snd_device = platform_get_output_snd_device(adev->platform,
748 usecase->stream.out->devices);
749 in_snd_device = platform_get_input_snd_device(adev->platform, usecase->stream.out->devices);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700750 usecase->devices = usecase->stream.out->devices;
751 } else {
752 /*
753 * If the voice call is active, use the sound devices of voice call usecase
754 * so that it would not result any device switch. All the usecases will
755 * be switched to new device when select_devices() is called for voice call
756 * usecase. This is to avoid switching devices for voice call when
757 * check_usecases_codec_backend() is called below.
758 */
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700759 if (voice_is_in_call(adev) && adev->mode == AUDIO_MODE_IN_CALL) {
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700760 vc_usecase = get_usecase_from_list(adev,
761 get_voice_usecase_id_from_list(adev));
Mingming Yin2d8aa2e2014-08-14 00:00:51 -0700762 if ((vc_usecase) && ((vc_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) ||
763 (usecase->devices == AUDIO_DEVICE_IN_VOICE_CALL))) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700764 in_snd_device = vc_usecase->in_snd_device;
765 out_snd_device = vc_usecase->out_snd_device;
766 }
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800767 } else if (voice_extn_compress_voip_is_active(adev)) {
768 voip_usecase = get_usecase_from_list(adev, USECASE_COMPRESS_VOIP_CALL);
Mingming Yin2d8aa2e2014-08-14 00:00:51 -0700769 if ((voip_usecase) && ((voip_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Avinash Vaish4d6167d2014-06-25 12:20:37 +0530770 (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND) &&
Mingming Yin2d8aa2e2014-08-14 00:00:51 -0700771 (voip_usecase->stream.out != adev->primary_output))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -0800772 in_snd_device = voip_usecase->in_snd_device;
773 out_snd_device = voip_usecase->out_snd_device;
774 }
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800775 } else if (audio_extn_hfp_is_active(adev)) {
Vimal Puthanveed41fcff22014-01-23 15:56:53 -0800776 hfp_ucid = audio_extn_hfp_get_usecase();
777 hfp_usecase = get_usecase_from_list(adev, hfp_ucid);
Mingming Yin2d8aa2e2014-08-14 00:00:51 -0700778 if ((hfp_usecase) && (hfp_usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)) {
Vimal Puthanveed37b4a1c2014-01-07 16:47:47 -0800779 in_snd_device = hfp_usecase->in_snd_device;
780 out_snd_device = hfp_usecase->out_snd_device;
781 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700782 }
783 if (usecase->type == PCM_PLAYBACK) {
784 usecase->devices = usecase->stream.out->devices;
785 in_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700786 if (out_snd_device == SND_DEVICE_NONE) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700787 out_snd_device = platform_get_output_snd_device(adev->platform,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700788 usecase->stream.out->devices);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700789 if (usecase->stream.out == adev->primary_output &&
790 adev->active_input &&
791 adev->active_input->source == AUDIO_SOURCE_VOICE_COMMUNICATION) {
792 select_devices(adev, adev->active_input->usecase);
793 }
794 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700795 } else if (usecase->type == PCM_CAPTURE) {
796 usecase->devices = usecase->stream.in->device;
797 out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700798 if (in_snd_device == SND_DEVICE_NONE) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700799 audio_devices_t out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700800 if (adev->active_input->source == AUDIO_SOURCE_VOICE_COMMUNICATION &&
801 adev->primary_output && !adev->primary_output->standby) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700802 out_device = adev->primary_output->devices;
803 } else if (usecase->id == USECASE_AUDIO_RECORD_AFE_PROXY) {
804 out_device = AUDIO_DEVICE_OUT_TELEPHONY_TX;
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700805 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700806 in_snd_device = platform_get_input_snd_device(adev->platform, out_device);
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -0700807 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700808 }
809 }
810
811 if (out_snd_device == usecase->out_snd_device &&
812 in_snd_device == usecase->in_snd_device) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800813 return 0;
814 }
815
sangwoobc677242013-08-08 16:53:43 +0900816 ALOGD("%s: out_snd_device(%d: %s) in_snd_device(%d: %s)", __func__,
Eric Laurentb23d5282013-05-14 15:27:20 -0700817 out_snd_device, platform_get_snd_device_name(out_snd_device),
818 in_snd_device, platform_get_snd_device_name(in_snd_device));
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -0800819
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800820 /*
821 * Limitation: While in call, to do a device switch we need to disable
822 * and enable both RX and TX devices though one of them is same as current
823 * device.
824 */
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700825 if ((usecase->type == VOICE_CALL) &&
826 (usecase->in_snd_device != SND_DEVICE_NONE) &&
827 (usecase->out_snd_device != SND_DEVICE_NONE)) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700828 status = platform_switch_voice_call_device_pre(adev->platform);
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800829 }
830
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700831 /* Disable current sound devices */
832 if (usecase->out_snd_device != SND_DEVICE_NONE) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700833 disable_audio_route(adev, usecase);
834 disable_snd_device(adev, usecase->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800835 }
836
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700837 if (usecase->in_snd_device != SND_DEVICE_NONE) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700838 disable_audio_route(adev, usecase);
839 disable_snd_device(adev, usecase->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800840 }
841
Vidyakumar Athota545dbd32013-11-13 17:30:53 -0800842 /* Applicable only on the targets that has external modem.
843 * New device information should be sent to modem before enabling
844 * the devices to reduce in-call device switch time.
845 */
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700846 if ((usecase->type == VOICE_CALL) &&
847 (usecase->in_snd_device != SND_DEVICE_NONE) &&
848 (usecase->out_snd_device != SND_DEVICE_NONE)) {
Vidyakumar Athota545dbd32013-11-13 17:30:53 -0800849 status = platform_switch_voice_call_enable_device_config(adev->platform,
850 out_snd_device,
851 in_snd_device);
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700852 }
Vidyakumar Athota545dbd32013-11-13 17:30:53 -0800853
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700854 /* Enable new sound devices */
855 if (out_snd_device != SND_DEVICE_NONE) {
856 if (usecase->devices & AUDIO_DEVICE_OUT_ALL_CODEC_BACKEND)
857 check_usecases_codec_backend(adev, usecase, out_snd_device);
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700858 enable_snd_device(adev, out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800859 }
860
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700861 if (in_snd_device != SND_DEVICE_NONE) {
862 check_and_route_capture_usecases(adev, usecase, in_snd_device);
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700863 enable_snd_device(adev, in_snd_device);
Ravi Kumar Alamandac4ba7432013-06-05 14:11:39 -0700864 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700865
Avinash Vaish71a8b972014-07-24 15:36:33 +0530866 if (usecase->type == VOICE_CALL || usecase->type == VOIP_CALL) {
Eric Laurentb23d5282013-05-14 15:27:20 -0700867 status = platform_switch_voice_call_device_post(adev->platform,
868 out_snd_device,
869 in_snd_device);
Avinash Vaish71a8b972014-07-24 15:36:33 +0530870 enable_audio_route_for_voice_usecases(adev, usecase);
871 }
Ravi Kumar Alamanda610e8cc2013-02-12 01:42:38 -0800872
sangwoo170731f2013-06-08 15:36:36 +0900873 usecase->in_snd_device = in_snd_device;
874 usecase->out_snd_device = out_snd_device;
875
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530876 if (usecase->type == PCM_PLAYBACK) {
Amit Shekhar1d896042014-10-03 13:16:09 -0700877 audio_extn_utils_update_stream_app_type_cfg(adev->platform,
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530878 &adev->streams_output_cfg_list,
Amit Shekhar1d896042014-10-03 13:16:09 -0700879 usecase->stream.out->devices,
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530880 usecase->stream.out->flags,
881 usecase->stream.out->format,
882 usecase->stream.out->sample_rate,
883 usecase->stream.out->bit_width,
884 &usecase->stream.out->app_type_cfg);
Amit Shekhar1d896042014-10-03 13:16:09 -0700885 ALOGI("%s Selected apptype: %d", __func__, usecase->stream.out->app_type_cfg.app_type);
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530886 }
Amit Shekhar1d896042014-10-03 13:16:09 -0700887
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700888 enable_audio_route(adev, usecase);
sangwoo170731f2013-06-08 15:36:36 +0900889
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800890 /* Applicable only on the targets that has external modem.
891 * Enable device command should be sent to modem only after
892 * enabling voice call mixer controls
893 */
Vidyakumar Athota339342f2014-07-01 15:30:57 -0700894 if (usecase->type == VOICE_CALL)
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800895 status = platform_switch_voice_call_usecase_route_post(adev->platform,
896 out_snd_device,
897 in_snd_device);
Sidipotu Ashokf43018c2014-05-02 16:21:50 +0530898 ALOGD("%s: done",__func__);
899
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800900 return status;
901}
902
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800903static int stop_input_stream(struct stream_in *in)
904{
905 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800906 struct audio_usecase *uc_info;
907 struct audio_device *adev = in->dev;
908
Eric Laurentc8400632013-02-14 19:04:54 -0800909 adev->active_input = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800910
Eric Laurent994a6932013-07-17 11:51:42 -0700911 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700912 in->usecase, use_case_table[in->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800913 uc_info = get_usecase_from_list(adev, in->usecase);
914 if (uc_info == NULL) {
915 ALOGE("%s: Could not find the usecase (%d) in the list",
916 __func__, in->usecase);
917 return -EINVAL;
918 }
919
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800920 /* Close in-call recording streams */
921 voice_check_and_stop_incall_rec_usecase(adev, in);
922
Eric Laurent150dbfe2013-02-27 14:31:02 -0800923 /* 1. Disable stream specific mixer controls */
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700924 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700925
926 /* 2. Disable the tx device */
Haynes Mathew George1376ca62014-04-24 11:55:48 -0700927 disable_snd_device(adev, uc_info->in_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800928
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800929 list_remove(&uc_info->list);
930 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800931
Eric Laurent994a6932013-07-17 11:51:42 -0700932 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800933 return ret;
934}
935
936int start_input_stream(struct stream_in *in)
937{
938 /* 1. Enable output device and stream routing controls */
Eric Laurentc8400632013-02-14 19:04:54 -0800939 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800940 struct audio_usecase *uc_info;
941 struct audio_device *adev = in->dev;
Naresh Tanniru80659832014-06-04 18:17:56 +0530942 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800943
Mingming Yine62d7842013-10-25 16:26:03 -0700944 in->usecase = platform_update_usecase_from_source(in->source,in->usecase);
Sidipotu Ashokf43018c2014-05-02 16:21:50 +0530945 ALOGD("%s: enter: stream(%p)usecase(%d: %s)",
946 __func__, &in->stream, in->usecase, use_case_table[in->usecase]);
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700947
Naresh Tanniru80659832014-06-04 18:17:56 +0530948
949 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru4c630392014-05-12 01:05:52 +0530950 ALOGE("%s: sound card is not active/SSR returning error", __func__);
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +0530951 ret = -EIO;
Naresh Tanniru4c630392014-05-12 01:05:52 +0530952 goto error_config;
953 }
Naresh Tanniru4c630392014-05-12 01:05:52 +0530954
Shiv Maliyappanahallida107642013-10-17 11:16:13 -0700955 /* Check if source matches incall recording usecase criteria */
956 ret = voice_check_and_set_incall_rec_usecase(adev, in);
957 if (ret)
958 goto error_config;
959 else
960 ALOGV("%s: usecase(%d)", __func__, in->usecase);
961
Eric Laurentb23d5282013-05-14 15:27:20 -0700962 in->pcm_device_id = platform_get_pcm_device_id(in->usecase, PCM_CAPTURE);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800963 if (in->pcm_device_id < 0) {
964 ALOGE("%s: Could not find PCM device id for the usecase(%d)",
965 __func__, in->usecase);
Eric Laurentc8400632013-02-14 19:04:54 -0800966 ret = -EINVAL;
967 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800968 }
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700969
970 adev->active_input = in;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800971 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -0700972
973 if (!uc_info) {
974 ret = -ENOMEM;
975 goto error_config;
976 }
977
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800978 uc_info->id = in->usecase;
979 uc_info->type = PCM_CAPTURE;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -0800980 uc_info->stream.in = in;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700981 uc_info->devices = in->device;
982 uc_info->in_snd_device = SND_DEVICE_NONE;
983 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800984
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -0800985 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -0700986 select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -0800987
Eric Laurentc8400632013-02-14 19:04:54 -0800988 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d), channels %d",
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -0700989 __func__, adev->snd_card, in->pcm_device_id, in->config.channels);
990
991 unsigned int flags = PCM_IN;
992 unsigned int pcm_open_retry_count = 0;
993
994 if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY) {
995 flags |= PCM_MMAP | PCM_NOIRQ;
996 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
997 }
998
999 while (1) {
1000 in->pcm = pcm_open(adev->snd_card, in->pcm_device_id,
1001 flags, &in->config);
1002 if (in->pcm == NULL || !pcm_is_ready(in->pcm)) {
1003 ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
1004 if (in->pcm != NULL) {
1005 pcm_close(in->pcm);
1006 in->pcm = NULL;
1007 }
1008 if (pcm_open_retry_count-- == 0) {
1009 ret = -EIO;
1010 goto error_open;
1011 }
1012 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1013 continue;
1014 }
1015 break;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001016 }
Naresh Tanniru4c630392014-05-12 01:05:52 +05301017
Eric Laurent994a6932013-07-17 11:51:42 -07001018 ALOGV("%s: exit", __func__);
Eric Laurentc8400632013-02-14 19:04:54 -08001019 return ret;
1020
1021error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001022 stop_input_stream(in);
Eric Laurentc8400632013-02-14 19:04:54 -08001023
1024error_config:
1025 adev->active_input = NULL;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001026 ALOGD("%s: exit: status(%d)", __func__, ret);
Eric Laurentc8400632013-02-14 19:04:54 -08001027
1028 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001029}
1030
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001031/* must be called with out->lock locked */
1032static int send_offload_cmd_l(struct stream_out* out, int command)
1033{
1034 struct offload_cmd *cmd = (struct offload_cmd *)calloc(1, sizeof(struct offload_cmd));
1035
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07001036 if (!cmd) {
1037 ALOGE("failed to allocate mem for command 0x%x", command);
1038 return -ENOMEM;
1039 }
1040
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001041 ALOGVV("%s %d", __func__, command);
1042
1043 cmd->cmd = command;
1044 list_add_tail(&out->offload_cmd_list, &cmd->node);
1045 pthread_cond_signal(&out->offload_cond);
1046 return 0;
1047}
1048
1049/* must be called iwth out->lock locked */
1050static void stop_compressed_output_l(struct stream_out *out)
1051{
1052 out->offload_state = OFFLOAD_STATE_IDLE;
1053 out->playback_started = 0;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001054 out->send_new_metadata = 1;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001055 if (out->compr != NULL) {
1056 compress_stop(out->compr);
1057 while (out->offload_thread_blocked) {
1058 pthread_cond_wait(&out->cond, &out->lock);
1059 }
1060 }
1061}
1062
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001063bool is_offload_usecase(audio_usecase_t uc_id)
1064{
1065 unsigned int i;
1066 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1067 if (uc_id == offload_usecases[i])
1068 return true;
1069 }
1070 return false;
1071}
1072
1073static audio_usecase_t get_offload_usecase(struct audio_device *adev)
1074{
1075 audio_usecase_t ret = USECASE_AUDIO_PLAYBACK_OFFLOAD;
1076 unsigned int i, num_usecase = sizeof(offload_usecases)/sizeof(offload_usecases[0]);
1077 char value[PROPERTY_VALUE_MAX] = {0};
1078
1079 property_get("audio.offload.multiple.enabled", value, NULL);
1080 if (!(atoi(value) || !strncmp("true", value, 4)))
1081 num_usecase = 1; /* If prop is not set, limit the num of offload usecases to 1 */
1082
1083 ALOGV("%s: num_usecase: %d", __func__, num_usecase);
1084 for (i = 0; i < num_usecase; i++) {
1085 if (!(adev->offload_usecases_state & (0x1<<i))) {
1086 adev->offload_usecases_state |= 0x1 << i;
1087 ret = offload_usecases[i];
1088 break;
1089 }
1090 }
1091 ALOGV("%s: offload usecase is %d", __func__, ret);
1092 return ret;
1093}
1094
1095static void free_offload_usecase(struct audio_device *adev,
1096 audio_usecase_t uc_id)
1097{
1098 unsigned int i;
1099 for (i = 0; i < sizeof(offload_usecases)/sizeof(offload_usecases[0]); i++) {
1100 if (offload_usecases[i] == uc_id) {
1101 adev->offload_usecases_state &= ~(0x1<<i);
1102 break;
1103 }
1104 }
1105 ALOGV("%s: free offload usecase %d", __func__, uc_id);
1106}
1107
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001108static void *offload_thread_loop(void *context)
1109{
1110 struct stream_out *out = (struct stream_out *) context;
1111 struct listnode *item;
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08001112 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001113
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001114 setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_AUDIO);
1115 set_sched_policy(0, SP_FOREGROUND);
1116 prctl(PR_SET_NAME, (unsigned long)"Offload Callback", 0, 0, 0);
1117
1118 ALOGV("%s", __func__);
1119 pthread_mutex_lock(&out->lock);
1120 for (;;) {
1121 struct offload_cmd *cmd = NULL;
1122 stream_callback_event_t event;
1123 bool send_callback = false;
1124
1125 ALOGVV("%s offload_cmd_list %d out->offload_state %d",
1126 __func__, list_empty(&out->offload_cmd_list),
1127 out->offload_state);
1128 if (list_empty(&out->offload_cmd_list)) {
1129 ALOGV("%s SLEEPING", __func__);
1130 pthread_cond_wait(&out->offload_cond, &out->lock);
1131 ALOGV("%s RUNNING", __func__);
1132 continue;
1133 }
1134
1135 item = list_head(&out->offload_cmd_list);
1136 cmd = node_to_item(item, struct offload_cmd, node);
1137 list_remove(item);
1138
1139 ALOGVV("%s STATE %d CMD %d out->compr %p",
1140 __func__, out->offload_state, cmd->cmd, out->compr);
1141
1142 if (cmd->cmd == OFFLOAD_CMD_EXIT) {
1143 free(cmd);
1144 break;
1145 }
1146
1147 if (out->compr == NULL) {
1148 ALOGE("%s: Compress handle is NULL", __func__);
1149 pthread_cond_signal(&out->cond);
1150 continue;
1151 }
1152 out->offload_thread_blocked = true;
1153 pthread_mutex_unlock(&out->lock);
1154 send_callback = false;
1155 switch(cmd->cmd) {
1156 case OFFLOAD_CMD_WAIT_FOR_BUFFER:
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001157 ALOGD("copl(%p):calling compress_wait", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001158 compress_wait(out->compr, -1);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001159 ALOGD("copl(%p):out of compress_wait", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001160 send_callback = true;
1161 event = STREAM_CBK_EVENT_WRITE_READY;
1162 break;
1163 case OFFLOAD_CMD_PARTIAL_DRAIN:
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08001164 ret = compress_next_track(out->compr);
Sidipotu Ashok55820562014-02-10 16:16:38 +05301165 if(ret == 0) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001166 ALOGD("copl(%p):calling compress_partial_drain", out);
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08001167 compress_partial_drain(out->compr);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001168 ALOGD("copl(%p):out of compress_partial_drain", out);
Sidipotu Ashok55820562014-02-10 16:16:38 +05301169 }
Krishnankutty Kolathappillyd4f1d132014-01-06 18:33:58 -08001170 else if(ret == -ETIMEDOUT)
1171 compress_drain(out->compr);
1172 else
1173 ALOGE("%s: Next track returned error %d",__func__, ret);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001174 send_callback = true;
1175 event = STREAM_CBK_EVENT_DRAIN_READY;
1176 break;
1177 case OFFLOAD_CMD_DRAIN:
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001178 ALOGD("copl(%p):calling compress_drain", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001179 compress_drain(out->compr);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001180 ALOGD("copl(%p):calling compress_drain", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001181 send_callback = true;
1182 event = STREAM_CBK_EVENT_DRAIN_READY;
1183 break;
1184 default:
1185 ALOGE("%s unknown command received: %d", __func__, cmd->cmd);
1186 break;
1187 }
1188 pthread_mutex_lock(&out->lock);
1189 out->offload_thread_blocked = false;
1190 pthread_cond_signal(&out->cond);
Eric Laurent6e895242013-09-05 16:10:57 -07001191 if (send_callback) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001192 out->offload_callback(event, NULL, out->offload_cookie);
Eric Laurent6e895242013-09-05 16:10:57 -07001193 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001194 free(cmd);
1195 }
1196
1197 pthread_cond_signal(&out->cond);
1198 while (!list_empty(&out->offload_cmd_list)) {
1199 item = list_head(&out->offload_cmd_list);
1200 list_remove(item);
1201 free(node_to_item(item, struct offload_cmd, node));
1202 }
1203 pthread_mutex_unlock(&out->lock);
1204
1205 return NULL;
1206}
1207
1208static int create_offload_callback_thread(struct stream_out *out)
1209{
1210 pthread_cond_init(&out->offload_cond, (const pthread_condattr_t *) NULL);
1211 list_init(&out->offload_cmd_list);
1212 pthread_create(&out->offload_thread, (const pthread_attr_t *) NULL,
1213 offload_thread_loop, out);
1214 return 0;
1215}
1216
1217static int destroy_offload_callback_thread(struct stream_out *out)
1218{
1219 pthread_mutex_lock(&out->lock);
1220 stop_compressed_output_l(out);
1221 send_offload_cmd_l(out, OFFLOAD_CMD_EXIT);
1222
1223 pthread_mutex_unlock(&out->lock);
1224 pthread_join(out->offload_thread, (void **) NULL);
1225 pthread_cond_destroy(&out->offload_cond);
1226
1227 return 0;
1228}
1229
Eric Laurent07eeafd2013-10-06 12:52:49 -07001230static bool allow_hdmi_channel_config(struct audio_device *adev)
1231{
1232 struct listnode *node;
1233 struct audio_usecase *usecase;
1234 bool ret = true;
1235
1236 list_for_each(node, &adev->usecase_list) {
1237 usecase = node_to_item(node, struct audio_usecase, list);
1238 if (usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
1239 /*
1240 * If voice call is already existing, do not proceed further to avoid
1241 * disabling/enabling both RX and TX devices, CSD calls, etc.
1242 * Once the voice call done, the HDMI channels can be configured to
1243 * max channels of remaining use cases.
1244 */
1245 if (usecase->id == USECASE_VOICE_CALL) {
1246 ALOGD("%s: voice call is active, no change in HDMI channels",
1247 __func__);
1248 ret = false;
1249 break;
1250 } else if (usecase->id == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1251 ALOGD("%s: multi channel playback is active, "
1252 "no change in HDMI channels", __func__);
1253 ret = false;
1254 break;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001255 } else if (is_offload_usecase(usecase->id) &&
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07001256 audio_channel_count_from_out_mask(usecase->stream.out->channel_mask) > 2) {
Mingming Yin139f1072014-02-24 17:56:01 -08001257 ALOGD("%s: multi-channel(%x) compress offload playback is active, "
1258 "no change in HDMI channels", __func__, usecase->stream.out->channel_mask);
1259 ret = false;
1260 break;
Eric Laurent07eeafd2013-10-06 12:52:49 -07001261 }
1262 }
1263 }
1264 return ret;
1265}
1266
1267static int check_and_set_hdmi_channels(struct audio_device *adev,
1268 unsigned int channels)
1269{
1270 struct listnode *node;
1271 struct audio_usecase *usecase;
1272
1273 /* Check if change in HDMI channel config is allowed */
1274 if (!allow_hdmi_channel_config(adev))
1275 return 0;
1276
1277 if (channels == adev->cur_hdmi_channels) {
Mingming Yin10fef6a2013-11-26 17:17:01 -08001278 ALOGD("%s: Requested channels are same as current channels(%d)", __func__, channels);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001279 return 0;
1280 }
1281
1282 platform_set_hdmi_channels(adev->platform, channels);
1283 adev->cur_hdmi_channels = channels;
1284
1285 /*
1286 * Deroute all the playback streams routed to HDMI so that
1287 * the back end is deactivated. Note that backend will not
1288 * be deactivated if any one stream is connected to it.
1289 */
1290 list_for_each(node, &adev->usecase_list) {
1291 usecase = node_to_item(node, struct audio_usecase, list);
1292 if (usecase->type == PCM_PLAYBACK &&
1293 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001294 disable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001295 }
1296 }
1297
1298 /*
1299 * Enable all the streams disabled above. Now the HDMI backend
1300 * will be activated with new channel configuration
1301 */
1302 list_for_each(node, &adev->usecase_list) {
1303 usecase = node_to_item(node, struct audio_usecase, list);
1304 if (usecase->type == PCM_PLAYBACK &&
1305 usecase->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001306 enable_audio_route(adev, usecase);
Eric Laurent07eeafd2013-10-06 12:52:49 -07001307 }
1308 }
1309
1310 return 0;
1311}
1312
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001313static int stop_output_stream(struct stream_out *out)
1314{
1315 int i, ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001316 struct audio_usecase *uc_info;
1317 struct audio_device *adev = out->dev;
1318
Eric Laurent994a6932013-07-17 11:51:42 -07001319 ALOGV("%s: enter: usecase(%d: %s)", __func__,
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001320 out->usecase, use_case_table[out->usecase]);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001321 uc_info = get_usecase_from_list(adev, out->usecase);
1322 if (uc_info == NULL) {
1323 ALOGE("%s: Could not find the usecase (%d) in the list",
1324 __func__, out->usecase);
1325 return -EINVAL;
1326 }
1327
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001328 if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001329 if (adev->visualizer_stop_output != NULL)
1330 adev->visualizer_stop_output(out->handle, out->pcm_device_id);
1331 if (adev->offload_effects_stop_output != NULL)
1332 adev->offload_effects_stop_output(out->handle, out->pcm_device_id);
1333 }
Eric Laurentc4aef752013-09-12 17:45:53 -07001334
Eric Laurent150dbfe2013-02-27 14:31:02 -08001335 /* 1. Get and set stream specific mixer controls */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001336 disable_audio_route(adev, uc_info);
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001337
1338 /* 2. Disable the rx device */
Haynes Mathew George1376ca62014-04-24 11:55:48 -07001339 disable_snd_device(adev, uc_info->out_snd_device);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001340
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001341 list_remove(&uc_info->list);
1342 free(uc_info);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001343
Eric Laurent07eeafd2013-10-06 12:52:49 -07001344 /* Must be called after removing the usecase from list */
1345 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
1346 check_and_set_hdmi_channels(adev, DEFAULT_HDMI_OUT_CHANNELS);
1347
Eric Laurent994a6932013-07-17 11:51:42 -07001348 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001349 return ret;
1350}
1351
1352int start_output_stream(struct stream_out *out)
1353{
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001354 int ret = 0;
Mingming Yin9c041392014-05-01 15:37:31 -07001355 int sink_channels = 0;
1356 char prop_value[PROPERTY_VALUE_MAX] = {0};
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001357 struct audio_usecase *uc_info;
1358 struct audio_device *adev = out->dev;
Naresh Tanniru80659832014-06-04 18:17:56 +05301359 int snd_card_status = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001360
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07001361 if ((out->usecase < 0) || (out->usecase >= AUDIO_USECASE_MAX)) {
1362 ret = -EINVAL;
1363 goto error_config;
1364 }
1365
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05301366 ALOGD("%s: enter: stream(%p)usecase(%d: %s) devices(%#x)",
1367 __func__, &out->stream, out->usecase, use_case_table[out->usecase],
1368 out->devices);
Naresh Tanniru4c630392014-05-12 01:05:52 +05301369
Naresh Tanniru80659832014-06-04 18:17:56 +05301370 if (SND_CARD_STATE_OFFLINE == snd_card_status) {
Naresh Tanniru4c630392014-05-12 01:05:52 +05301371 ALOGE("%s: sound card is not active/SSR returning error", __func__);
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05301372 ret = -EIO;
Naresh Tanniru4c630392014-05-12 01:05:52 +05301373 goto error_config;
1374 }
Naresh Tanniru4c630392014-05-12 01:05:52 +05301375
Eric Laurentb23d5282013-05-14 15:27:20 -07001376 out->pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001377 if (out->pcm_device_id < 0) {
1378 ALOGE("%s: Invalid PCM device id(%d) for the usecase(%d)",
1379 __func__, out->pcm_device_id, out->usecase);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001380 ret = -EINVAL;
1381 goto error_config;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001382 }
1383
1384 uc_info = (struct audio_usecase *)calloc(1, sizeof(struct audio_usecase));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07001385
1386 if (!uc_info) {
1387 ret = -ENOMEM;
1388 goto error_config;
1389 }
1390
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001391 uc_info->id = out->usecase;
1392 uc_info->type = PCM_PLAYBACK;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001393 uc_info->stream.out = out;
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001394 uc_info->devices = out->devices;
1395 uc_info->in_snd_device = SND_DEVICE_NONE;
1396 uc_info->out_snd_device = SND_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001397
Eric Laurent07eeafd2013-10-06 12:52:49 -07001398 /* This must be called before adding this usecase to the list */
Mingming Yin10fef6a2013-11-26 17:17:01 -08001399 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL) {
Mingming Yin9c041392014-05-01 15:37:31 -07001400 property_get("audio.use.hdmi.sink.cap", prop_value, NULL);
1401 if (!strncmp("true", prop_value, 4)) {
1402 sink_channels = platform_edid_get_max_channels(out->dev->platform);
1403 ALOGD("%s: set HDMI channel count[%d] based on sink capability", __func__, sink_channels);
1404 check_and_set_hdmi_channels(adev, sink_channels);
1405 } else {
1406 if (is_offload_usecase(out->usecase))
1407 check_and_set_hdmi_channels(adev, out->compr_config.codec->ch_in);
1408 else
1409 check_and_set_hdmi_channels(adev, out->config.channels);
1410 }
Mingming Yin10fef6a2013-11-26 17:17:01 -08001411 }
Eric Laurent07eeafd2013-10-06 12:52:49 -07001412
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08001413 list_add_tail(&adev->usecase_list, &uc_info->list);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001414
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001415 select_devices(adev, out->usecase);
1416
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07001417 ALOGV("%s: Opening PCM device card_id(%d) device_id(%d) format(%#x)",
1418 __func__, adev->snd_card, out->pcm_device_id, out->config.format);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001419 if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07001420 unsigned int flags = PCM_OUT;
1421 unsigned int pcm_open_retry_count = 0;
1422 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY) {
1423 flags |= PCM_MMAP | PCM_NOIRQ;
1424 pcm_open_retry_count = PROXY_OPEN_RETRY_COUNT;
1425 } else
1426 flags |= PCM_MONOTONIC;
1427
1428 while (1) {
1429 out->pcm = pcm_open(adev->snd_card, out->pcm_device_id,
1430 flags, &out->config);
1431 if (out->pcm == NULL || !pcm_is_ready(out->pcm)) {
1432 ALOGE("%s: %s", __func__, pcm_get_error(out->pcm));
1433 if (out->pcm != NULL) {
1434 pcm_close(out->pcm);
1435 out->pcm = NULL;
1436 }
1437 if (pcm_open_retry_count-- == 0) {
1438 ret = -EIO;
1439 goto error_open;
1440 }
1441 usleep(PROXY_OPEN_WAIT_TIME * 1000);
1442 continue;
1443 }
1444 break;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001445 }
1446 } else {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001447 out->pcm = NULL;
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08001448 out->compr = compress_open(adev->snd_card,
1449 out->pcm_device_id,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001450 COMPRESS_IN, &out->compr_config);
1451 if (out->compr && !is_compress_ready(out->compr)) {
1452 ALOGE("%s: %s", __func__, compress_get_error(out->compr));
1453 compress_close(out->compr);
1454 out->compr = NULL;
1455 ret = -EIO;
1456 goto error_open;
1457 }
1458 if (out->offload_callback)
1459 compress_nonblock(out->compr, out->non_blocking);
Eric Laurentc4aef752013-09-12 17:45:53 -07001460
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08001461#ifdef DS1_DOLBY_DDP_ENABLED
1462 if (audio_extn_is_dolby_format(out->format))
1463 audio_extn_dolby_send_ddp_endp_params(adev);
1464#endif
1465
Eric Laurentc4aef752013-09-12 17:45:53 -07001466 if (adev->visualizer_start_output != NULL)
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001467 adev->visualizer_start_output(out->handle, out->pcm_device_id);
1468 if (adev->offload_effects_start_output != NULL)
1469 adev->offload_effects_start_output(out->handle, out->pcm_device_id);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001470 }
Eric Laurent994a6932013-07-17 11:51:42 -07001471 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001472 return 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001473error_open:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001474 stop_output_stream(out);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001475error_config:
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08001476 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001477}
1478
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001479static int check_input_parameters(uint32_t sample_rate,
1480 audio_format_t format,
1481 int channel_count)
1482{
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001483 int ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001484
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001485 if ((format != AUDIO_FORMAT_PCM_16_BIT) &&
Mingming Yine62d7842013-10-25 16:26:03 -07001486 !voice_extn_compress_voip_is_format_supported(format) &&
1487 !audio_extn_compr_cap_format_supported(format)) ret = -EINVAL;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001488
1489 switch (channel_count) {
1490 case 1:
1491 case 2:
1492 case 6:
1493 break;
1494 default:
1495 ret = -EINVAL;
1496 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001497
1498 switch (sample_rate) {
1499 case 8000:
1500 case 11025:
1501 case 12000:
1502 case 16000:
1503 case 22050:
1504 case 24000:
1505 case 32000:
1506 case 44100:
1507 case 48000:
1508 break;
1509 default:
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001510 ret = -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001511 }
1512
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08001513 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001514}
1515
1516static size_t get_input_buffer_size(uint32_t sample_rate,
1517 audio_format_t format,
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07001518 int channel_count,
1519 bool is_low_latency)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001520{
1521 size_t size = 0;
1522
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001523 if (check_input_parameters(sample_rate, format, channel_count) != 0)
1524 return 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001525
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001526 size = (sample_rate * AUDIO_CAPTURE_PERIOD_DURATION_MSEC) / 1000;
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07001527 if (is_low_latency)
1528 size = configured_low_latency_capture_period_size;
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001529 /* ToDo: should use frame_size computed based on the format and
1530 channel_count here. */
1531 size *= sizeof(short) * channel_count;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001532
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07001533 /* make sure the size is multiple of 32 bytes
1534 * At 48 kHz mono 16-bit PCM:
1535 * 5.000 ms = 240 frames = 15*16*1*2 = 480, a whole multiple of 32 (15)
1536 * 3.333 ms = 160 frames = 10*16*1*2 = 320, a whole multiple of 32 (10)
1537 */
1538 size += 0x1f;
1539 size &= ~0x1f;
Ravi Kumar Alamanda33d33062013-06-11 14:40:01 -07001540
1541 return size;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001542}
1543
1544static uint32_t out_get_sample_rate(const struct audio_stream *stream)
1545{
1546 struct stream_out *out = (struct stream_out *)stream;
1547
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001548 return out->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001549}
1550
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07001551static int out_set_sample_rate(struct audio_stream *stream __unused,
1552 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001553{
1554 return -ENOSYS;
1555}
1556
1557static size_t out_get_buffer_size(const struct audio_stream *stream)
1558{
1559 struct stream_out *out = (struct stream_out *)stream;
1560
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001561 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001562 return out->compr_config.fragment_size;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001563 else if(out->usecase == USECASE_COMPRESS_VOIP_CALL)
1564 return voice_extn_compress_voip_out_get_buffer_size(out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001565
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07001566 return out->config.period_size *
1567 audio_stream_out_frame_size((const struct audio_stream_out *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001568}
1569
1570static uint32_t out_get_channels(const struct audio_stream *stream)
1571{
1572 struct stream_out *out = (struct stream_out *)stream;
1573
1574 return out->channel_mask;
1575}
1576
1577static audio_format_t out_get_format(const struct audio_stream *stream)
1578{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001579 struct stream_out *out = (struct stream_out *)stream;
1580
1581 return out->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001582}
1583
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07001584static int out_set_format(struct audio_stream *stream __unused,
1585 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001586{
1587 return -ENOSYS;
1588}
1589
1590static int out_standby(struct audio_stream *stream)
1591{
1592 struct stream_out *out = (struct stream_out *)stream;
1593 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001594
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05301595 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
1596 stream, out->usecase, use_case_table[out->usecase]);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001597 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
1598 /* Ignore standby in case of voip call because the voip output
1599 * stream is closed in adev_close_output_stream()
1600 */
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05301601 ALOGD("%s: Ignore Standby in VOIP call", __func__);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001602 return 0;
1603 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001604
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001605 pthread_mutex_lock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001606 if (!out->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08001607 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001608 out->standby = true;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001609 if (!is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001610 if (out->pcm) {
1611 pcm_close(out->pcm);
1612 out->pcm = NULL;
1613 }
1614 } else {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001615 ALOGD("copl(%p):standby", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001616 stop_compressed_output_l(out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001617 out->gapless_mdata.encoder_delay = 0;
1618 out->gapless_mdata.encoder_padding = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001619 if (out->compr != NULL) {
1620 compress_close(out->compr);
1621 out->compr = NULL;
1622 }
Eric Laurent150dbfe2013-02-27 14:31:02 -08001623 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001624 stop_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001625 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001626 }
1627 pthread_mutex_unlock(&out->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07001628 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001629 return 0;
1630}
1631
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07001632static int out_dump(const struct audio_stream *stream __unused,
1633 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001634{
1635 return 0;
1636}
1637
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001638static int parse_compress_metadata(struct stream_out *out, struct str_parms *parms)
1639{
1640 int ret = 0;
1641 char value[32];
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001642 bool is_meta_data_params = false;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001643 struct compr_gapless_mdata tmp_mdata;
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001644 tmp_mdata.encoder_delay = 0;
1645 tmp_mdata.encoder_padding = 0;
ApurupaPattapu2e084df2013-12-18 15:47:59 -08001646
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001647 if (!out || !parms) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001648 ALOGE("%s: return invalid ",__func__);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001649 return -EINVAL;
1650 }
1651
ApurupaPattapu2e084df2013-12-18 15:47:59 -08001652 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FORMAT, value, sizeof(value));
1653 if (ret >= 0) {
1654 if (atoi(value) == SND_AUDIOSTREAMFORMAT_MP4ADTS) {
1655 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_MP4ADTS;
1656 ALOGV("ADTS format is set in offload mode");
1657 }
1658 out->send_new_metadata = 1;
1659 }
1660
Mingming Yin3ee55c62014-08-04 14:23:35 -07001661 if (out->format == AUDIO_FORMAT_FLAC) {
1662 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_BLK_SIZE, value, sizeof(value));
1663 if (ret >= 0) {
1664 out->compr_config.codec->options.flac_dec.min_blk_size = atoi(value);
1665 out->send_new_metadata = 1;
1666 }
1667 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_BLK_SIZE, value, sizeof(value));
1668 if (ret >= 0) {
1669 out->compr_config.codec->options.flac_dec.max_blk_size = atoi(value);
1670 out->send_new_metadata = 1;
1671 }
1672 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MIN_FRAME_SIZE, value, sizeof(value));
1673 if (ret >= 0) {
1674 out->compr_config.codec->options.flac_dec.min_frame_size = atoi(value);
1675 out->send_new_metadata = 1;
1676 }
1677 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_FLAC_MAX_FRAME_SIZE, value, sizeof(value));
1678 if (ret >= 0) {
1679 out->compr_config.codec->options.flac_dec.max_frame_size = atoi(value);
1680 out->send_new_metadata = 1;
1681 }
1682 }
1683
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001684 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_SAMPLE_RATE, value, sizeof(value));
1685 if(ret >= 0)
1686 is_meta_data_params = true;
1687 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_NUM_CHANNEL, value, sizeof(value));
1688 if(ret >= 0 )
1689 is_meta_data_params = true;
1690 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_AVG_BIT_RATE, value, sizeof(value));
1691 if(ret >= 0 )
1692 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001693 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_DELAY_SAMPLES, value, sizeof(value));
1694 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001695 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001696 tmp_mdata.encoder_delay = atoi(value); //whats a good limit check?
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001697 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001698 ret = str_parms_get_str(parms, AUDIO_OFFLOAD_CODEC_PADDING_SAMPLES, value, sizeof(value));
1699 if (ret >= 0) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001700 is_meta_data_params = true;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001701 tmp_mdata.encoder_padding = atoi(value);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001702 }
1703
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001704 if(!is_meta_data_params) {
1705 ALOGV("%s: Not gapless meta data params", __func__);
1706 return 0;
1707 }
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001708 out->gapless_mdata = tmp_mdata;
1709 out->send_new_metadata = 1;
1710 ALOGV("%s new encoder delay %u and padding %u", __func__,
1711 out->gapless_mdata.encoder_delay, out->gapless_mdata.encoder_padding);
1712
1713 return 0;
1714}
1715
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07001716static bool output_drives_call(struct audio_device *adev, struct stream_out *out)
1717{
1718 return out == adev->primary_output || out == adev->voice_tx_output;
1719}
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001720
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001721static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
1722{
1723 struct stream_out *out = (struct stream_out *)stream;
1724 struct audio_device *adev = out->dev;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001725 struct audio_usecase *usecase;
1726 struct listnode *node;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001727 struct str_parms *parms;
1728 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001729 int ret = 0, val = 0, err;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001730 bool select_new_device = false;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001731
sangwoobc677242013-08-08 16:53:43 +09001732 ALOGD("%s: enter: usecase(%d: %s) kvpairs: %s",
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001733 __func__, out->usecase, use_case_table[out->usecase], kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001734 parms = str_parms_create_str(kvpairs);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05301735 if (!parms)
1736 goto error;
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08001737 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
1738 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001739 val = atoi(value);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001740 pthread_mutex_lock(&out->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001741 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001742
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001743 /*
Dhanalakshmi Siddani929a1f12014-04-18 22:26:56 +05301744 * When HDMI cable is unplugged/usb hs is disconnected the
1745 * music playback is paused and the policy manager sends routing=0
1746 * But the audioflingercontinues to write data until standby time
1747 * (3sec). As the HDMI core is turned off, the write gets blocked.
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001748 * Avoid this by routing audio to speaker until standby.
1749 */
Dhanalakshmi Siddani929a1f12014-04-18 22:26:56 +05301750 if ((out->devices == AUDIO_DEVICE_OUT_AUX_DIGITAL ||
1751 out->devices == AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET) &&
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001752 val == AUDIO_DEVICE_NONE) {
1753 val = AUDIO_DEVICE_OUT_SPEAKER;
1754 }
1755
1756 /*
1757 * select_devices() call below switches all the usecases on the same
1758 * backend to the new device. Refer to check_usecases_codec_backend() in
1759 * the select_devices(). But how do we undo this?
1760 *
1761 * For example, music playback is active on headset (deep-buffer usecase)
1762 * and if we go to ringtones and select a ringtone, low-latency usecase
1763 * will be started on headset+speaker. As we can't enable headset+speaker
1764 * and headset devices at the same time, select_devices() switches the music
1765 * playback to headset+speaker while starting low-lateny usecase for ringtone.
1766 * So when the ringtone playback is completed, how do we undo the same?
1767 *
1768 * We are relying on the out_set_parameters() call on deep-buffer output,
1769 * once the ringtone playback is ended.
1770 * NOTE: We should not check if the current devices are same as new devices.
1771 * Because select_devices() must be called to switch back the music
1772 * playback to headset.
1773 */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001774 if (val != 0) {
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07001775 out->devices = val;
1776
1777 if (!out->standby)
1778 select_devices(adev, out->usecase);
1779
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07001780 if ((adev->mode == AUDIO_MODE_IN_CALL) &&
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07001781 output_drives_call(adev, out)) {
1782 adev->current_call_output = out;
1783 if (!voice_is_in_call(adev))
1784 ret = voice_start_call(adev);
1785 else
1786 voice_update_devices_for_all_voice_usecases(adev);
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08001787 }
1788 }
1789
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001790 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001791 pthread_mutex_unlock(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001792 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001793
1794 if (out == adev->primary_output) {
1795 pthread_mutex_lock(&adev->lock);
1796 audio_extn_set_parameters(adev, parms);
1797 pthread_mutex_unlock(&adev->lock);
1798 }
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001799 if (is_offload_usecase(out->usecase)) {
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001800 pthread_mutex_lock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001801 parse_compress_metadata(out, parms);
Krishnankutty Kolathappillyeb78be72013-12-15 12:03:07 -08001802 pthread_mutex_unlock(&out->lock);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001803 }
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07001804
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001805 str_parms_destroy(parms);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05301806error:
Eric Laurent994a6932013-07-17 11:51:42 -07001807 ALOGV("%s: exit: code(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001808 return ret;
1809}
1810
1811static char* out_get_parameters(const struct audio_stream *stream, const char *keys)
1812{
1813 struct stream_out *out = (struct stream_out *)stream;
1814 struct str_parms *query = str_parms_create_str(keys);
1815 char *str;
1816 char value[256];
1817 struct str_parms *reply = str_parms_create();
1818 size_t i, j;
1819 int ret;
1820 bool first = true;
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07001821
1822 if (!query || !reply) {
1823 ALOGE("out_get_parameters: failed to allocate mem for query or reply");
1824 return NULL;
1825 }
1826
Eric Laurent994a6932013-07-17 11:51:42 -07001827 ALOGV("%s: enter: keys - %s", __func__, keys);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001828 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value, sizeof(value));
1829 if (ret >= 0) {
1830 value[0] = '\0';
1831 i = 0;
1832 while (out->supported_channel_masks[i] != 0) {
1833 for (j = 0; j < ARRAY_SIZE(out_channels_name_to_enum_table); j++) {
1834 if (out_channels_name_to_enum_table[j].value == out->supported_channel_masks[i]) {
1835 if (!first) {
1836 strcat(value, "|");
1837 }
1838 strcat(value, out_channels_name_to_enum_table[j].name);
1839 first = false;
1840 break;
1841 }
1842 }
1843 i++;
1844 }
1845 str_parms_add_str(reply, AUDIO_PARAMETER_STREAM_SUP_CHANNELS, value);
1846 str = str_parms_to_str(reply);
1847 } else {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001848 voice_extn_out_get_parameters(out, query, reply);
1849 str = str_parms_to_str(reply);
1850 if (!strncmp(str, "", sizeof(""))) {
Narsinga Rao Chella29b8fc72014-01-29 12:52:19 -08001851 free(str);
1852 str = strdup(keys);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001853 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001854 }
1855 str_parms_destroy(query);
1856 str_parms_destroy(reply);
Eric Laurent994a6932013-07-17 11:51:42 -07001857 ALOGV("%s: exit: returns - %s", __func__, str);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001858 return str;
1859}
1860
1861static uint32_t out_get_latency(const struct audio_stream_out *stream)
1862{
1863 struct stream_out *out = (struct stream_out *)stream;
1864
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001865 if (is_offload_usecase(out->usecase))
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001866 return COMPRESS_OFFLOAD_PLAYBACK_LATENCY;
1867
1868 return (out->config.period_count * out->config.period_size * 1000) /
1869 (out->config.rate);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001870}
1871
1872static int out_set_volume(struct audio_stream_out *stream, float left,
1873 float right)
1874{
Eric Laurenta9024de2013-04-04 09:19:12 -07001875 struct stream_out *out = (struct stream_out *)stream;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001876 int volume[2];
1877
Eric Laurenta9024de2013-04-04 09:19:12 -07001878 if (out->usecase == USECASE_AUDIO_PLAYBACK_MULTI_CH) {
1879 /* only take left channel into account: the API is for stereo anyway */
1880 out->muted = (left == 0.0f);
1881 return 0;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001882 } else if (is_offload_usecase(out->usecase)) {
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001883 char mixer_ctl_name[128];
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001884 struct audio_device *adev = out->dev;
1885 struct mixer_ctl *ctl;
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001886 int pcm_device_id = platform_get_pcm_device_id(out->usecase,
1887 PCM_PLAYBACK);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001888
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08001889 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
1890 "Compress Playback %d Volume", pcm_device_id);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001891 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
1892 if (!ctl) {
1893 ALOGE("%s: Could not get ctl for mixer cmd - %s",
1894 __func__, mixer_ctl_name);
1895 return -EINVAL;
1896 }
1897 volume[0] = (int)(left * COMPRESS_PLAYBACK_VOLUME_MAX);
1898 volume[1] = (int)(right * COMPRESS_PLAYBACK_VOLUME_MAX);
1899 mixer_ctl_set_array(ctl, volume, sizeof(volume)/sizeof(volume[0]));
1900 return 0;
Eric Laurenta9024de2013-04-04 09:19:12 -07001901 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001902
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001903 return -ENOSYS;
1904}
1905
1906static ssize_t out_write(struct audio_stream_out *stream, const void *buffer,
1907 size_t bytes)
1908{
1909 struct stream_out *out = (struct stream_out *)stream;
1910 struct audio_device *adev = out->dev;
Naresh Tanniru80659832014-06-04 18:17:56 +05301911 int snd_scard_state = get_snd_card_state(adev);
Eric Laurent6e895242013-09-05 16:10:57 -07001912 ssize_t ret = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001913
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001914 pthread_mutex_lock(&out->lock);
Naresh Tanniru4c630392014-05-12 01:05:52 +05301915
Naresh Tanniru80659832014-06-04 18:17:56 +05301916 if (SND_CARD_STATE_OFFLINE == snd_scard_state) {
1917 if (out->pcm) {
Naresh Tanniru4c630392014-05-12 01:05:52 +05301918 ALOGD(" %s: sound card is not active/SSR state", __func__);
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05301919 ret= -EIO;
Naresh Tanniru4c630392014-05-12 01:05:52 +05301920 goto exit;
Naresh Tanniru80659832014-06-04 18:17:56 +05301921 } else if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
1922 //during SSR for compress usecase we should return error to flinger
1923 ALOGD(" copl %s: sound card is not active/SSR state", __func__);
1924 pthread_mutex_unlock(&out->lock);
1925 return -ENETRESET;
Naresh Tanniru4c630392014-05-12 01:05:52 +05301926 }
1927 }
1928
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001929 if (out->standby) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001930 out->standby = false;
Eric Laurent150dbfe2013-02-27 14:31:02 -08001931 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08001932 if (out->usecase == USECASE_COMPRESS_VOIP_CALL)
1933 ret = voice_extn_compress_voip_start_output_stream(out);
1934 else
1935 ret = start_output_stream(out);
Eric Laurent150dbfe2013-02-27 14:31:02 -08001936 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001937 /* ToDo: If use case is compress offload should return 0 */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001938 if (ret != 0) {
Ravi Kumar Alamanda59d296d2013-05-02 11:25:27 -07001939 out->standby = true;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001940 goto exit;
1941 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001942 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001943
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07001944 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07001945 ALOGD("copl(%p): writing buffer (%zu bytes) to compress device", out, bytes);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001946 if (out->send_new_metadata) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07001947 ALOGD("copl(%p):send new gapless metadata", out);
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001948 compress_set_gapless_metadata(out->compr, &out->gapless_mdata);
1949 out->send_new_metadata = 0;
1950 }
1951
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001952 ret = compress_write(out->compr, buffer, bytes);
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05301953 if (ret < 0)
1954 ret = -errno;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07001955 ALOGVV("%s: writing buffer (%d bytes) to compress device returned %d", __func__, bytes, ret);
Eric Laurent6e895242013-09-05 16:10:57 -07001956 if (ret >= 0 && ret < (ssize_t)bytes) {
Sidipotu Ashok55820562014-02-10 16:16:38 +05301957 ALOGD("No space available in compress driver, post msg to cb thread");
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001958 send_offload_cmd_l(out, OFFLOAD_CMD_WAIT_FOR_BUFFER);
Naresh Tanniru80659832014-06-04 18:17:56 +05301959 } else if (-ENETRESET == ret) {
1960 ALOGE("copl %s: received sound card offline state on compress write", __func__);
1961 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
1962 pthread_mutex_unlock(&out->lock);
1963 out_standby(&out->stream.common);
1964 return ret;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001965 }
Naresh Tanniru80659832014-06-04 18:17:56 +05301966 if (!out->playback_started && ret >= 0) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001967 compress_start(out->compr);
1968 out->playback_started = 1;
1969 out->offload_state = OFFLOAD_STATE_PLAYING;
1970 }
1971 pthread_mutex_unlock(&out->lock);
1972 return ret;
1973 } else {
1974 if (out->pcm) {
1975 if (out->muted)
1976 memset((void *)buffer, 0, bytes);
1977 ALOGVV("%s: writing buffer (%d bytes) to pcm device", __func__, bytes);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07001978 if (out->usecase == USECASE_AUDIO_PLAYBACK_AFE_PROXY)
1979 ret = pcm_mmap_write(out->pcm, (void *)buffer, bytes);
1980 else
1981 ret = pcm_write(out->pcm, (void *)buffer, bytes);
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05301982 if (ret < 0)
1983 ret = -errno;
1984 else if (ret == 0)
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07001985 out->written += bytes / (out->config.channels * sizeof(short));
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07001986 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001987 }
1988
1989exit:
Dhanalakshmi Siddani8fc6d912014-05-26 18:03:42 +05301990 /* ToDo: There may be a corner case when SSR happens back to back during
1991 start/stop. Need to post different error to handle that. */
Naresh Tanniru4c630392014-05-12 01:05:52 +05301992 if (-ENETRESET == ret) {
Naresh Tanniru80659832014-06-04 18:17:56 +05301993 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru4c630392014-05-12 01:05:52 +05301994 }
1995
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08001996 pthread_mutex_unlock(&out->lock);
1997
1998 if (ret != 0) {
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07001999 if (out->pcm)
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002000 ALOGE("%s: error %ld - %s", __func__, ret, pcm_get_error(out->pcm));
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302001 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302002 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302003 voice_extn_compress_voip_close_output_stream(&out->stream.common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302004 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302005 out->standby = true;
2006 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002007 out_standby(&out->stream.common);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002008 usleep(bytes * 1000000 / audio_stream_out_frame_size(stream) /
Naresh Tanniru4c630392014-05-12 01:05:52 +05302009 out_get_sample_rate(&out->stream.common));
2010
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002011 }
2012 return bytes;
2013}
2014
2015static int out_get_render_position(const struct audio_stream_out *stream,
2016 uint32_t *dsp_frames)
2017{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002018 struct stream_out *out = (struct stream_out *)stream;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002019 if (is_offload_usecase(out->usecase) && (dsp_frames != NULL)) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302020 ssize_t ret = -EINVAL;
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07002021 *dsp_frames = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002022 pthread_mutex_lock(&out->lock);
2023 if (out->compr != NULL) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302024 ret = compress_get_tstamp(out->compr, (unsigned long *)dsp_frames,
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002025 &out->sample_rate);
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05302026 if (ret < 0)
2027 ret = -errno;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002028 ALOGVV("%s rendered frames %d sample_rate %d",
2029 __func__, *dsp_frames, out->sample_rate);
2030 }
2031 pthread_mutex_unlock(&out->lock);
Naresh Tanniru80659832014-06-04 18:17:56 +05302032 if (-ENETRESET == ret) {
2033 ALOGE(" ERROR: sound card not active Unable to get time stamp from compress driver");
2034 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2035 return -EINVAL;
2036 } else if(ret < 0) {
2037 ALOGE(" ERROR: Unable to get time stamp from compress driver");
2038 return -EINVAL;
2039 } else {
2040 return 0;
2041 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002042 } else
2043 return -EINVAL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002044}
2045
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002046static int out_add_audio_effect(const struct audio_stream *stream __unused,
2047 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002048{
2049 return 0;
2050}
2051
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002052static int out_remove_audio_effect(const struct audio_stream *stream __unused,
2053 effect_handle_t effect __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002054{
2055 return 0;
2056}
2057
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002058static int out_get_next_write_timestamp(const struct audio_stream_out *stream __unused,
2059 int64_t *timestamp __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002060{
2061 return -EINVAL;
2062}
2063
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002064static int out_get_presentation_position(const struct audio_stream_out *stream,
2065 uint64_t *frames, struct timespec *timestamp)
2066{
2067 struct stream_out *out = (struct stream_out *)stream;
2068 int ret = -1;
Eric Laurent949a0892013-09-20 09:20:13 -07002069 unsigned long dsp_frames;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002070
2071 pthread_mutex_lock(&out->lock);
2072
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002073 if (is_offload_usecase(out->usecase)) {
Eric Laurent949a0892013-09-20 09:20:13 -07002074 if (out->compr != NULL) {
2075 compress_get_tstamp(out->compr, &dsp_frames,
2076 &out->sample_rate);
2077 ALOGVV("%s rendered frames %ld sample_rate %d",
2078 __func__, dsp_frames, out->sample_rate);
2079 *frames = dsp_frames;
2080 ret = 0;
2081 /* this is the best we can do */
2082 clock_gettime(CLOCK_MONOTONIC, timestamp);
2083 }
2084 } else {
2085 if (out->pcm) {
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002086 unsigned int avail;
Eric Laurent949a0892013-09-20 09:20:13 -07002087 if (pcm_get_htimestamp(out->pcm, &avail, timestamp) == 0) {
2088 size_t kernel_buffer_size = out->config.period_size * out->config.period_count;
Eric Laurent949a0892013-09-20 09:20:13 -07002089 int64_t signed_frames = out->written - kernel_buffer_size + avail;
Haynes Mathew George7ff216f2013-09-11 19:51:41 -07002090 // This adjustment accounts for buffering after app processor.
2091 // It is based on estimated DSP latency per use case, rather than exact.
2092 signed_frames -=
2093 (platform_render_latency(out->usecase) * out->sample_rate / 1000000LL);
2094
Eric Laurent949a0892013-09-20 09:20:13 -07002095 // It would be unusual for this value to be negative, but check just in case ...
2096 if (signed_frames >= 0) {
2097 *frames = signed_frames;
2098 ret = 0;
2099 }
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002100 }
2101 }
2102 }
2103
2104 pthread_mutex_unlock(&out->lock);
2105
2106 return ret;
2107}
2108
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002109static int out_set_callback(struct audio_stream_out *stream,
2110 stream_callback_t callback, void *cookie)
2111{
2112 struct stream_out *out = (struct stream_out *)stream;
2113
2114 ALOGV("%s", __func__);
2115 pthread_mutex_lock(&out->lock);
2116 out->offload_callback = callback;
2117 out->offload_cookie = cookie;
2118 pthread_mutex_unlock(&out->lock);
2119 return 0;
2120}
2121
2122static int out_pause(struct audio_stream_out* stream)
2123{
2124 struct stream_out *out = (struct stream_out *)stream;
2125 int status = -ENOSYS;
2126 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002127 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07002128 ALOGD("copl(%p):pause compress driver", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002129 pthread_mutex_lock(&out->lock);
2130 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PLAYING) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302131 struct audio_device *adev = out->dev;
2132 int snd_scard_state = get_snd_card_state(adev);
2133
2134 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2135 status = compress_pause(out->compr);
2136
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002137 out->offload_state = OFFLOAD_STATE_PAUSED;
2138 }
2139 pthread_mutex_unlock(&out->lock);
2140 }
2141 return status;
2142}
2143
2144static int out_resume(struct audio_stream_out* stream)
2145{
2146 struct stream_out *out = (struct stream_out *)stream;
2147 int status = -ENOSYS;
2148 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002149 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07002150 ALOGD("copl(%p):resume compress driver", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002151 status = 0;
2152 pthread_mutex_lock(&out->lock);
2153 if (out->compr != NULL && out->offload_state == OFFLOAD_STATE_PAUSED) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302154 struct audio_device *adev = out->dev;
2155 int snd_scard_state = get_snd_card_state(adev);
2156
2157 if (SND_CARD_STATE_ONLINE == snd_scard_state)
2158 status = compress_resume(out->compr);
2159
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002160 out->offload_state = OFFLOAD_STATE_PLAYING;
2161 }
2162 pthread_mutex_unlock(&out->lock);
2163 }
2164 return status;
2165}
2166
2167static int out_drain(struct audio_stream_out* stream, audio_drain_type_t type )
2168{
2169 struct stream_out *out = (struct stream_out *)stream;
2170 int status = -ENOSYS;
2171 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002172 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002173 pthread_mutex_lock(&out->lock);
2174 if (type == AUDIO_DRAIN_EARLY_NOTIFY)
2175 status = send_offload_cmd_l(out, OFFLOAD_CMD_PARTIAL_DRAIN);
2176 else
2177 status = send_offload_cmd_l(out, OFFLOAD_CMD_DRAIN);
2178 pthread_mutex_unlock(&out->lock);
2179 }
2180 return status;
2181}
2182
2183static int out_flush(struct audio_stream_out* stream)
2184{
2185 struct stream_out *out = (struct stream_out *)stream;
2186 ALOGV("%s", __func__);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002187 if (is_offload_usecase(out->usecase)) {
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07002188 ALOGD("copl(%p):calling compress flush", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002189 pthread_mutex_lock(&out->lock);
2190 stop_compressed_output_l(out);
2191 pthread_mutex_unlock(&out->lock);
Apoorv Raghuvanshi44bd9172014-05-28 14:50:07 -07002192 ALOGD("copl(%p):out of compress flush", out);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002193 return 0;
2194 }
2195 return -ENOSYS;
2196}
2197
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002198/** audio_stream_in implementation **/
2199static uint32_t in_get_sample_rate(const struct audio_stream *stream)
2200{
2201 struct stream_in *in = (struct stream_in *)stream;
2202
2203 return in->config.rate;
2204}
2205
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002206static int in_set_sample_rate(struct audio_stream *stream __unused,
2207 uint32_t rate __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002208{
2209 return -ENOSYS;
2210}
2211
2212static size_t in_get_buffer_size(const struct audio_stream *stream)
2213{
2214 struct stream_in *in = (struct stream_in *)stream;
2215
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002216 if(in->usecase == USECASE_COMPRESS_VOIP_CALL)
2217 return voice_extn_compress_voip_in_get_buffer_size(in);
Mingming Yine62d7842013-10-25 16:26:03 -07002218 else if(audio_extn_compr_cap_usecase_supported(in->usecase))
2219 return audio_extn_compr_cap_get_buffer_size(in->config.format);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002220
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002221 return in->config.period_size *
2222 audio_stream_in_frame_size((const struct audio_stream_in *)stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002223}
2224
2225static uint32_t in_get_channels(const struct audio_stream *stream)
2226{
2227 struct stream_in *in = (struct stream_in *)stream;
2228
2229 return in->channel_mask;
2230}
2231
2232static audio_format_t in_get_format(const struct audio_stream *stream)
2233{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002234 struct stream_in *in = (struct stream_in *)stream;
2235
2236 return in->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002237}
2238
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002239static int in_set_format(struct audio_stream *stream __unused,
2240 audio_format_t format __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002241{
2242 return -ENOSYS;
2243}
2244
2245static int in_standby(struct audio_stream *stream)
2246{
2247 struct stream_in *in = (struct stream_in *)stream;
2248 struct audio_device *adev = in->dev;
2249 int status = 0;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302250 ALOGD("%s: enter: stream (%p) usecase(%d: %s)", __func__,
2251 stream, in->usecase, use_case_table[in->usecase]);
2252
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002253 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
2254 /* Ignore standby in case of voip call because the voip input
2255 * stream is closed in adev_close_input_stream()
2256 */
2257 ALOGV("%s: Ignore Standby in VOIP call", __func__);
2258 return status;
2259 }
2260
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002261 pthread_mutex_lock(&in->lock);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07002262 if (!in->standby && in->is_st_session) {
2263 ALOGD("%s: sound trigger pcm stop lab", __func__);
2264 audio_extn_sound_trigger_stop_lab(in);
2265 in->standby = 1;
2266 }
2267
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002268 if (!in->standby) {
Ravi Kumar Alamanda8bba9e92013-11-11 21:09:07 -08002269 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002270 in->standby = true;
Eric Laurent150dbfe2013-02-27 14:31:02 -08002271 if (in->pcm) {
2272 pcm_close(in->pcm);
2273 in->pcm = NULL;
2274 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002275 status = stop_input_stream(in);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002276 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002277 }
2278 pthread_mutex_unlock(&in->lock);
Eric Laurent994a6932013-07-17 11:51:42 -07002279 ALOGV("%s: exit: status(%d)", __func__, status);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002280 return status;
2281}
2282
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002283static int in_dump(const struct audio_stream *stream __unused,
2284 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002285{
2286 return 0;
2287}
2288
2289static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
2290{
2291 struct stream_in *in = (struct stream_in *)stream;
2292 struct audio_device *adev = in->dev;
2293 struct str_parms *parms;
2294 char *str;
2295 char value[32];
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002296 int ret = 0, val = 0, err;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002297
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302298 ALOGD("%s: enter: kvpairs=%s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002299 parms = str_parms_create_str(kvpairs);
2300
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05302301 if (!parms)
2302 goto error;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002303 pthread_mutex_lock(&in->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002304 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002305
2306 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_INPUT_SOURCE, value, sizeof(value));
2307 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002308 val = atoi(value);
2309 /* no audio source uses val == 0 */
2310 if ((in->source != val) && (val != 0)) {
2311 in->source = val;
Narsinga Rao Chella2a99dea2014-01-24 15:33:23 -08002312 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2313 (in->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2314 (voice_extn_compress_voip_is_format_supported(in->format)) &&
2315 (in->config.rate == 8000 || in->config.rate == 16000) &&
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002316 (audio_channel_count_from_in_mask(in->channel_mask) == 1)) {
Narsinga Rao Chella7d5a3e82014-02-04 16:23:52 -08002317 err = voice_extn_compress_voip_open_input_stream(in);
2318 if (err != 0) {
Narsinga Rao Chella2a99dea2014-01-24 15:33:23 -08002319 ALOGE("%s: Compress voip input cannot be opened, error:%d",
Narsinga Rao Chella7d5a3e82014-02-04 16:23:52 -08002320 __func__, err);
Narsinga Rao Chella2a99dea2014-01-24 15:33:23 -08002321 }
2322 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002323 }
2324 }
2325
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002326 err = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
2327 if (err >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002328 val = atoi(value);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07002329 if (((int)in->device != val) && (val != 0)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002330 in->device = val;
2331 /* If recording is in progress, change the tx device to new device */
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07002332 if (!in->standby && !in->is_st_session)
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07002333 ret = select_devices(adev, in->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002334 }
2335 }
2336
Narsinga Rao Chella2a99dea2014-01-24 15:33:23 -08002337done:
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002338 pthread_mutex_unlock(&adev->lock);
Eric Laurent150dbfe2013-02-27 14:31:02 -08002339 pthread_mutex_unlock(&in->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002340
2341 str_parms_destroy(parms);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05302342error:
Eric Laurent994a6932013-07-17 11:51:42 -07002343 ALOGV("%s: exit: status(%d)", __func__, ret);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002344 return ret;
2345}
2346
2347static char* in_get_parameters(const struct audio_stream *stream,
2348 const char *keys)
2349{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002350 struct stream_in *in = (struct stream_in *)stream;
2351 struct str_parms *query = str_parms_create_str(keys);
2352 char *str;
2353 char value[256];
2354 struct str_parms *reply = str_parms_create();
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07002355
2356 if (!query || !reply) {
2357 ALOGE("in_get_parameters: failed to create query or reply");
2358 return NULL;
2359 }
2360
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002361 ALOGV("%s: enter: keys - %s", __func__, keys);
2362
2363 voice_extn_in_get_parameters(in, query, reply);
2364
2365 str = str_parms_to_str(reply);
2366 str_parms_destroy(query);
2367 str_parms_destroy(reply);
2368
2369 ALOGV("%s: exit: returns - %s", __func__, str);
2370 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002371}
2372
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002373static int in_set_gain(struct audio_stream_in *stream __unused,
2374 float gain __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002375{
2376 return 0;
2377}
2378
2379static ssize_t in_read(struct audio_stream_in *stream, void *buffer,
2380 size_t bytes)
2381{
2382 struct stream_in *in = (struct stream_in *)stream;
2383 struct audio_device *adev = in->dev;
2384 int i, ret = -1;
Naresh Tanniru80659832014-06-04 18:17:56 +05302385 int snd_scard_state = get_snd_card_state(adev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002386
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002387 pthread_mutex_lock(&in->lock);
Naresh Tanniru4c630392014-05-12 01:05:52 +05302388
2389 if (in->pcm) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302390 if(SND_CARD_STATE_OFFLINE == snd_scard_state) {
Naresh Tanniru4c630392014-05-12 01:05:52 +05302391 ALOGD(" %s: sound card is not active/SSR state", __func__);
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05302392 ret= -EIO;;
Naresh Tanniru4c630392014-05-12 01:05:52 +05302393 goto exit;
Naresh Tanniru4c630392014-05-12 01:05:52 +05302394 }
2395 }
2396
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002397 if (in->standby) {
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07002398 if (!in->is_st_session) {
2399 pthread_mutex_lock(&adev->lock);
2400 if (in->usecase == USECASE_COMPRESS_VOIP_CALL)
2401 ret = voice_extn_compress_voip_start_input_stream(in);
2402 else
2403 ret = start_input_stream(in);
2404 pthread_mutex_unlock(&adev->lock);
2405 if (ret != 0) {
2406 goto exit;
2407 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002408 }
2409 in->standby = 0;
2410 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002411
2412 if (in->pcm) {
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002413 if (audio_extn_ssr_get_enabled() &&
2414 audio_channel_count_from_in_mask(in->channel_mask) == 6)
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002415 ret = audio_extn_ssr_read(stream, buffer, bytes);
Mingming Yine62d7842013-10-25 16:26:03 -07002416 else if (audio_extn_compr_cap_usecase_supported(in->usecase))
2417 ret = audio_extn_compr_cap_read(in, buffer, bytes);
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07002418 else if (in->usecase == USECASE_AUDIO_RECORD_AFE_PROXY)
2419 ret = pcm_mmap_read(in->pcm, buffer, bytes);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07002420 else
2421 ret = pcm_read(in->pcm, buffer, bytes);
Dhanalakshmi Siddani37ca1d62014-08-20 12:28:34 +05302422 if (ret < 0)
2423 ret = -errno;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002424 }
2425
2426 /*
2427 * Instead of writing zeroes here, we could trust the hardware
2428 * to always provide zeroes when muted.
2429 */
kunleizc5a639b2014-04-24 18:46:22 +08002430 if (ret == 0 && voice_get_mic_mute(adev) && !voice_is_in_call_rec_stream(in))
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002431 memset(buffer, 0, bytes);
2432
2433exit:
Dhanalakshmi Siddani8fc6d912014-05-26 18:03:42 +05302434 /* ToDo: There may be a corner case when SSR happens back to back during
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05302435 start/stop. Need to post different error to handle that. */
Naresh Tanniru4c630392014-05-12 01:05:52 +05302436 if (-ENETRESET == ret) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302437 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
Naresh Tanniru4c630392014-05-12 01:05:52 +05302438 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002439 pthread_mutex_unlock(&in->lock);
2440
2441 if (ret != 0) {
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302442 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302443 pthread_mutex_lock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302444 voice_extn_compress_voip_close_input_stream(&in->stream.common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302445 pthread_mutex_unlock(&adev->lock);
Venkata Narendra Kumar Guttabc9c9ca2014-06-25 20:38:03 +05302446 in->standby = true;
2447 }
Dhanalakshmi Siddani4d57e992014-07-17 16:37:51 +05302448 memset(buffer, 0, bytes);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002449 in_standby(&in->stream.common);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07002450 ALOGV("%s: read failed status %d- sleeping for buffer duration", __func__, ret);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002451 usleep(bytes * 1000000 / audio_stream_in_frame_size(stream) /
Naresh Tanniru4c630392014-05-12 01:05:52 +05302452 in_get_sample_rate(&in->stream.common));
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002453 }
2454 return bytes;
2455}
2456
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002457static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002458{
2459 return 0;
2460}
2461
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002462static int add_remove_audio_effect(const struct audio_stream *stream,
2463 effect_handle_t effect,
2464 bool enable)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002465{
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002466 struct stream_in *in = (struct stream_in *)stream;
2467 int status = 0;
2468 effect_descriptor_t desc;
2469
2470 status = (*effect)->get_descriptor(effect, &desc);
2471 if (status != 0)
2472 return status;
2473
2474 pthread_mutex_lock(&in->lock);
2475 pthread_mutex_lock(&in->dev->lock);
2476 if ((in->source == AUDIO_SOURCE_VOICE_COMMUNICATION) &&
2477 in->enable_aec != enable &&
2478 (memcmp(&desc.type, FX_IID_AEC, sizeof(effect_uuid_t)) == 0)) {
2479 in->enable_aec = enable;
2480 if (!in->standby)
2481 select_devices(in->dev, in->usecase);
2482 }
Ravi Kumar Alamanda198185e2013-11-07 15:42:19 -08002483 if (in->enable_ns != enable &&
2484 (memcmp(&desc.type, FX_IID_NS, sizeof(effect_uuid_t)) == 0)) {
2485 in->enable_ns = enable;
2486 if (!in->standby)
2487 select_devices(in->dev, in->usecase);
2488 }
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002489 pthread_mutex_unlock(&in->dev->lock);
2490 pthread_mutex_unlock(&in->lock);
2491
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002492 return 0;
2493}
2494
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002495static int in_add_audio_effect(const struct audio_stream *stream,
2496 effect_handle_t effect)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002497{
Eric Laurent994a6932013-07-17 11:51:42 -07002498 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002499 return add_remove_audio_effect(stream, effect, true);
2500}
2501
2502static int in_remove_audio_effect(const struct audio_stream *stream,
2503 effect_handle_t effect)
2504{
Eric Laurent994a6932013-07-17 11:51:42 -07002505 ALOGV("%s: effect %p", __func__, effect);
Ravi Kumar Alamandaf70ffb42013-04-16 15:55:53 -07002506 return add_remove_audio_effect(stream, effect, false);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002507}
2508
2509static int adev_open_output_stream(struct audio_hw_device *dev,
2510 audio_io_handle_t handle,
2511 audio_devices_t devices,
2512 audio_output_flags_t flags,
2513 struct audio_config *config,
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002514 struct audio_stream_out **stream_out,
2515 const char *address __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002516{
2517 struct audio_device *adev = (struct audio_device *)dev;
2518 struct stream_out *out;
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002519 int i, ret = 0;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002520 audio_format_t format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002521
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002522 *stream_out = NULL;
Naresh Tanniru80659832014-06-04 18:17:56 +05302523
2524 if ((flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) &&
2525 (SND_CARD_STATE_OFFLINE == get_snd_card_state(adev))) {
2526 ALOGE(" sound card is not active rejecting compress output open request");
2527 return -EINVAL;
2528 }
2529
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002530 out = (struct stream_out *)calloc(1, sizeof(struct stream_out));
2531
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302532 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x) flags(%#x)\
2533 stream_handle(%p)",__func__, config->sample_rate, config->channel_mask,
2534 devices, flags, &out->stream);
2535
2536
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002537 if (!out) {
2538 return -ENOMEM;
2539 }
2540
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002541 if (devices == AUDIO_DEVICE_NONE)
2542 devices = AUDIO_DEVICE_OUT_SPEAKER;
2543
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002544 out->flags = flags;
2545 out->devices = devices;
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -07002546 out->dev = adev;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002547 format = out->format = config->format;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002548 out->sample_rate = config->sample_rate;
2549 out->channel_mask = AUDIO_CHANNEL_OUT_STEREO;
2550 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_STEREO;
Eric Laurentc4aef752013-09-12 17:45:53 -07002551 out->handle = handle;
Mingming Yin3ee55c62014-08-04 14:23:35 -07002552 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002553
2554 /* Init use case and pcm_config */
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002555 if ((out->flags == AUDIO_OUTPUT_FLAG_DIRECT) &&
2556 (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL ||
2557 out->devices & AUDIO_DEVICE_OUT_PROXY)) {
2558
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002559 pthread_mutex_lock(&adev->lock);
Apoorv Raghuvanshi947cb902013-12-09 13:45:39 -08002560 if (out->devices & AUDIO_DEVICE_OUT_AUX_DIGITAL)
2561 ret = read_hdmi_channel_masks(out);
2562
2563 if (out->devices & AUDIO_DEVICE_OUT_PROXY)
2564 ret = audio_extn_read_afe_proxy_channel_masks(out);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002565 pthread_mutex_unlock(&adev->lock);
Eric Laurent07eeafd2013-10-06 12:52:49 -07002566 if (ret != 0)
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002567 goto error_open;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002568
2569 if (config->sample_rate == 0)
2570 config->sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
2571 if (config->channel_mask == 0)
2572 config->channel_mask = AUDIO_CHANNEL_OUT_5POINT1;
2573
2574 out->channel_mask = config->channel_mask;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002575 out->sample_rate = config->sample_rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002576 out->usecase = USECASE_AUDIO_PLAYBACK_MULTI_CH;
2577 out->config = pcm_config_hdmi_multi;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002578 out->config.rate = config->sample_rate;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002579 out->config.channels = audio_channel_count_from_out_mask(out->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002580 out->config.period_size = HDMI_MULTI_PERIOD_BYTES / (out->config.channels * 2);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002581 } else if ((out->dev->mode == AUDIO_MODE_IN_COMMUNICATION) &&
2582 (out->flags == (AUDIO_OUTPUT_FLAG_DIRECT | AUDIO_OUTPUT_FLAG_VOIP_RX)) &&
Narsinga Rao Chella1eceff82013-12-02 19:25:28 -08002583 (voice_extn_compress_voip_is_config_supported(config))) {
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002584 ret = voice_extn_compress_voip_open_output_stream(out);
2585 if (ret != 0) {
2586 ALOGE("%s: Compress voip output cannot be opened, error:%d",
2587 __func__, ret);
2588 goto error_open;
2589 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002590 } else if (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD) {
2591 if (config->offload_info.version != AUDIO_INFO_INITIALIZER.version ||
2592 config->offload_info.size != AUDIO_INFO_INITIALIZER.size) {
2593 ALOGE("%s: Unsupported Offload information", __func__);
2594 ret = -EINVAL;
2595 goto error_open;
2596 }
Mingming Yin90310102013-11-13 16:57:00 -08002597 if (!is_supported_format(config->offload_info.format) &&
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08002598 !audio_extn_is_dolby_format(config->offload_info.format)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002599 ALOGE("%s: Unsupported audio format", __func__);
2600 ret = -EINVAL;
2601 goto error_open;
2602 }
2603
2604 out->compr_config.codec = (struct snd_codec *)
2605 calloc(1, sizeof(struct snd_codec));
2606
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07002607 if (!out->compr_config.codec) {
2608 ret = -ENOMEM;
2609 goto error_open;
2610 }
2611
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002612 out->usecase = get_offload_usecase(adev);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002613 if (config->offload_info.channel_mask)
2614 out->channel_mask = config->offload_info.channel_mask;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08002615 else if (config->channel_mask) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002616 out->channel_mask = config->channel_mask;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08002617 config->offload_info.channel_mask = config->channel_mask;
2618 }
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002619 format = out->format = config->offload_info.format;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002620 out->sample_rate = config->offload_info.sample_rate;
2621
2622 out->stream.set_callback = out_set_callback;
2623 out->stream.pause = out_pause;
2624 out->stream.resume = out_resume;
2625 out->stream.drain = out_drain;
2626 out->stream.flush = out_flush;
Mingming Yin3ee55c62014-08-04 14:23:35 -07002627 out->bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002628
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08002629 if (audio_extn_is_dolby_format(config->offload_info.format))
Mingming Yin90310102013-11-13 16:57:00 -08002630 out->compr_config.codec->id =
Subhash Chandra Bose Naripeddy7690c562013-12-14 00:34:53 -08002631 audio_extn_dolby_get_snd_codec_id(adev, out,
2632 config->offload_info.format);
Mingming Yin90310102013-11-13 16:57:00 -08002633 else
2634 out->compr_config.codec->id =
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002635 get_snd_codec_id(config->offload_info.format);
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08002636 if (audio_is_offload_pcm(config->offload_info.format)) {
2637 out->compr_config.fragment_size =
2638 platform_get_pcm_offload_buffer_size(&config->offload_info);
2639 } else {
2640 out->compr_config.fragment_size =
2641 platform_get_compress_offload_buffer_size(&config->offload_info);
2642 }
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002643 out->compr_config.fragments = COMPRESS_OFFLOAD_NUM_FRAGMENTS;
2644 out->compr_config.codec->sample_rate =
2645 compress_get_alsa_rate(config->offload_info.sample_rate);
2646 out->compr_config.codec->bit_rate =
2647 config->offload_info.bit_rate;
2648 out->compr_config.codec->ch_in =
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002649 audio_channel_count_from_out_mask(config->channel_mask);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002650 out->compr_config.codec->ch_out = out->compr_config.codec->ch_in;
Mingming Yin3ee55c62014-08-04 14:23:35 -07002651 out->bit_width = PCM_OUTPUT_BIT_WIDTH;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002652
Mingming Yin3ee55c62014-08-04 14:23:35 -07002653 if (config->offload_info.format == AUDIO_FORMAT_AAC)
2654 out->compr_config.codec->format = SND_AUDIOSTREAMFORMAT_RAW;
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08002655 if (config->offload_info.format == AUDIO_FORMAT_PCM_16_BIT_OFFLOAD)
2656 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S16_LE;
Mingming Yin3ee55c62014-08-04 14:23:35 -07002657 if(config->offload_info.format == AUDIO_FORMAT_PCM_24_BIT_OFFLOAD)
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -08002658 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
2659
Mingming Yin3ee55c62014-08-04 14:23:35 -07002660 if (out->bit_width == 24) {
2661 out->compr_config.codec->format = SNDRV_PCM_FORMAT_S24_LE;
2662 }
2663
Amit Shekhar6f461b12014-08-01 14:52:58 -07002664 if (config->offload_info.format == AUDIO_FORMAT_FLAC)
Mingming Yinc9efb4f2014-09-19 12:16:36 -07002665 out->compr_config.codec->options.flac_dec.sample_size = PCM_OUTPUT_BIT_WIDTH;
Mingming Yin3ee55c62014-08-04 14:23:35 -07002666
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002667 if (flags & AUDIO_OUTPUT_FLAG_NON_BLOCKING)
2668 out->non_blocking = 1;
Haynes Mathew George352f27b2013-07-26 00:00:15 -07002669
2670 out->send_new_metadata = 1;
Haynes Mathew Georgeb9012ab2013-12-10 13:44:56 -08002671 out->offload_state = OFFLOAD_STATE_IDLE;
2672 out->playback_started = 0;
2673
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002674 create_offload_callback_thread(out);
2675 ALOGV("%s: offloaded output offload_info version %04x bit rate %d",
2676 __func__, config->offload_info.version,
2677 config->offload_info.bit_rate);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002678 //Decide if we need to use gapless mode by default
Krishnankutty Kolathappilly6d8788b2014-01-09 12:45:31 -08002679 check_and_set_gapless_mode(adev);
Krishnankutty Kolathappillyb165a8a2014-01-07 11:25:51 -08002680
Shiv Maliyappanahallif3b9a422013-10-22 16:38:08 -07002681 } else if (out->flags & AUDIO_OUTPUT_FLAG_INCALL_MUSIC) {
2682 ret = voice_check_and_set_incall_music_usecase(adev, out);
2683 if (ret != 0) {
2684 ALOGE("%s: Incall music delivery usecase cannot be set error:%d",
2685 __func__, ret);
2686 goto error_open;
2687 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07002688 } else if (out->devices == AUDIO_DEVICE_OUT_TELEPHONY_TX) {
2689 if (config->sample_rate == 0)
2690 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2691 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
2692 config->sample_rate != 8000) {
2693 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
2694 ret = -EINVAL;
2695 goto error_open;
2696 }
2697 out->sample_rate = config->sample_rate;
2698 out->config.rate = config->sample_rate;
2699 if (config->format == AUDIO_FORMAT_DEFAULT)
2700 config->format = AUDIO_FORMAT_PCM_16_BIT;
2701 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
2702 config->format = AUDIO_FORMAT_PCM_16_BIT;
2703 ret = -EINVAL;
2704 goto error_open;
2705 }
2706 out->format = config->format;
2707 out->usecase = USECASE_AUDIO_PLAYBACK_AFE_PROXY;
2708 out->config = pcm_config_afe_proxy_playback;
2709 adev->voice_tx_output = out;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002710 } else if (out->flags & AUDIO_OUTPUT_FLAG_FAST) {
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002711 format = AUDIO_FORMAT_PCM_16_BIT;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002712 out->usecase = USECASE_AUDIO_PLAYBACK_LOW_LATENCY;
2713 out->config = pcm_config_low_latency;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002714 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002715 } else {
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002716 /* primary path is the default path selected if no other outputs are available/suitable */
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002717 format = AUDIO_FORMAT_PCM_16_BIT;
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002718 out->usecase = USECASE_AUDIO_PLAYBACK_PRIMARY;
Ravi Kumar Alamanda8f715d92013-11-01 20:37:38 -07002719 out->config = pcm_config_deep_buffer;
2720 out->sample_rate = out->config.rate;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002721 }
2722
Amit Shekhar1d896042014-10-03 13:16:09 -07002723 ALOGV("%s devices %d,flags %x, format %x, out->sample_rate %d, out->bit_width %d",
2724 __func__, devices, flags, format, out->sample_rate, out->bit_width);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07002725 audio_extn_utils_update_stream_app_type_cfg(adev->platform,
2726 &adev->streams_output_cfg_list,
Amit Shekhar1d896042014-10-03 13:16:09 -07002727 devices, flags, format, out->sample_rate,
Amit Shekhar6f461b12014-08-01 14:52:58 -07002728 out->bit_width, &out->app_type_cfg);
Haynes Mathew Georgebf143712013-12-03 13:02:53 -08002729 if ((out->usecase == USECASE_AUDIO_PLAYBACK_PRIMARY) ||
2730 (flags & AUDIO_OUTPUT_FLAG_PRIMARY)) {
2731 /* Ensure the default output is not selected twice */
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002732 if(adev->primary_output == NULL)
2733 adev->primary_output = out;
2734 else {
2735 ALOGE("%s: Primary output is already opened", __func__);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002736 ret = -EEXIST;
2737 goto error_open;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08002738 }
2739 }
2740
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002741 /* Check if this usecase is already existing */
2742 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella7ce05352014-04-17 20:00:41 -07002743 if ((get_usecase_from_list(adev, out->usecase) != NULL) &&
2744 (out->usecase != USECASE_COMPRESS_VOIP_CALL)) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002745 ALOGE("%s: Usecase (%d) is already present", __func__, out->usecase);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002746 pthread_mutex_unlock(&adev->lock);
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002747 ret = -EEXIST;
2748 goto error_open;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002749 }
2750 pthread_mutex_unlock(&adev->lock);
2751
2752 out->stream.common.get_sample_rate = out_get_sample_rate;
2753 out->stream.common.set_sample_rate = out_set_sample_rate;
2754 out->stream.common.get_buffer_size = out_get_buffer_size;
2755 out->stream.common.get_channels = out_get_channels;
2756 out->stream.common.get_format = out_get_format;
2757 out->stream.common.set_format = out_set_format;
2758 out->stream.common.standby = out_standby;
2759 out->stream.common.dump = out_dump;
2760 out->stream.common.set_parameters = out_set_parameters;
2761 out->stream.common.get_parameters = out_get_parameters;
2762 out->stream.common.add_audio_effect = out_add_audio_effect;
2763 out->stream.common.remove_audio_effect = out_remove_audio_effect;
2764 out->stream.get_latency = out_get_latency;
2765 out->stream.set_volume = out_set_volume;
2766 out->stream.write = out_write;
2767 out->stream.get_render_position = out_get_render_position;
2768 out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002769 out->stream.get_presentation_position = out_get_presentation_position;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002770
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002771 out->standby = 1;
Eric Laurenta9024de2013-04-04 09:19:12 -07002772 /* out->muted = false; by calloc() */
Glenn Kasten2ccd7ba2013-09-10 09:04:31 -07002773 /* out->written = 0; by calloc() */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002774
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002775 pthread_mutex_init(&out->lock, (const pthread_mutexattr_t *) NULL);
2776 pthread_cond_init(&out->cond, (const pthread_condattr_t *) NULL);
2777
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002778 config->format = out->stream.common.get_format(&out->stream.common);
2779 config->channel_mask = out->stream.common.get_channels(&out->stream.common);
2780 config->sample_rate = out->stream.common.get_sample_rate(&out->stream.common);
2781
2782 *stream_out = &out->stream;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302783 ALOGD("%s: Stream (%p) picks up usecase (%s)", __func__, &out->stream,
2784 use_case_table[out->usecase]);
Eric Laurent994a6932013-07-17 11:51:42 -07002785 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002786 return 0;
Ravi Kumar Alamandab1995062013-03-21 23:18:20 -07002787
2788error_open:
2789 free(out);
2790 *stream_out = NULL;
2791 ALOGD("%s: exit: ret %d", __func__, ret);
2792 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002793}
2794
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002795static void adev_close_output_stream(struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002796 struct audio_stream_out *stream)
2797{
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002798 struct stream_out *out = (struct stream_out *)stream;
2799 struct audio_device *adev = out->dev;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002800 int ret = 0;
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002801
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05302802 ALOGD("%s: enter:stream_handle(%p)",__func__, out);
2803
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002804 if (out->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302805 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002806 ret = voice_extn_compress_voip_close_output_stream(&stream->common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05302807 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002808 if(ret != 0)
2809 ALOGE("%s: Compress voip output cannot be closed, error:%d",
2810 __func__, ret);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002811 } else
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08002812 out_standby(&stream->common);
2813
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002814 if (is_offload_usecase(out->usecase)) {
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002815 destroy_offload_callback_thread(out);
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07002816 free_offload_usecase(adev, out->usecase);
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002817 if (out->compr_config.codec != NULL)
2818 free(out->compr_config.codec);
2819 }
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07002820
2821 if (adev->voice_tx_output == out)
2822 adev->voice_tx_output = NULL;
2823
Ravi Kumar Alamanda4e02e552013-07-17 15:22:04 -07002824 pthread_cond_destroy(&out->cond);
2825 pthread_mutex_destroy(&out->lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002826 free(stream);
Eric Laurent994a6932013-07-17 11:51:42 -07002827 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002828}
2829
2830static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
2831{
2832 struct audio_device *adev = (struct audio_device *)dev;
2833 struct str_parms *parms;
2834 char *str;
2835 char value[32];
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002836 int val;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002837 int ret;
2838 int status = 0;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002839
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002840 ALOGD("%s: enter: %s", __func__, kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002841 parms = str_parms_create_str(kvpairs);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002842
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05302843 if (!parms)
2844 goto error;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002845 ret = str_parms_get_str(parms, "SND_CARD_STATUS", value, sizeof(value));
2846 if (ret >= 0) {
Naresh Tanniru4c630392014-05-12 01:05:52 +05302847 char *snd_card_status = value+2;
Naresh Tanniru4c630392014-05-12 01:05:52 +05302848 if (strstr(snd_card_status, "OFFLINE")) {
Naresh Tanniru80659832014-06-04 18:17:56 +05302849 struct listnode *node;
2850 struct audio_usecase *usecase;
2851
Naresh Tanniru4c630392014-05-12 01:05:52 +05302852 ALOGD("Received sound card OFFLINE status");
Naresh Tanniru80659832014-06-04 18:17:56 +05302853 set_snd_card_state(adev,SND_CARD_STATE_OFFLINE);
2854
2855 pthread_mutex_lock(&adev->lock);
2856 //close compress session on OFFLINE status
2857 usecase = get_usecase_from_list(adev,USECASE_AUDIO_PLAYBACK_OFFLOAD);
2858 if (usecase && usecase->stream.out) {
2859 ALOGD(" %s closing compress session on OFFLINE state", __func__);
2860
2861 struct stream_out *out = usecase->stream.out;
2862
2863 pthread_mutex_unlock(&adev->lock);
2864 out_standby(&out->stream.common);
2865 } else
2866 pthread_mutex_unlock(&adev->lock);
Naresh Tanniru4c630392014-05-12 01:05:52 +05302867 } else if (strstr(snd_card_status, "ONLINE")) {
2868 ALOGD("Received sound card ONLINE status");
Naresh Tanniru80659832014-06-04 18:17:56 +05302869 set_snd_card_state(adev,SND_CARD_STATE_ONLINE);
Naresh Tanniru4c630392014-05-12 01:05:52 +05302870 }
Naresh Tanniru4c630392014-05-12 01:05:52 +05302871 }
2872
2873 pthread_mutex_lock(&adev->lock);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002874 status = voice_set_parameters(adev, parms);
2875 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002876 goto done;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002877
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002878 status = platform_set_parameters(adev->platform, parms);
2879 if (status != 0)
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002880 goto done;
2881
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002882 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_NREC, value, sizeof(value));
2883 if (ret >= 0) {
Vicky Sehrawate240e5d2014-08-12 17:17:04 -07002884 /* When set to false, HAL should disable EC and NS */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002885 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2886 adev->bluetooth_nrec = true;
2887 else
2888 adev->bluetooth_nrec = false;
2889 }
2890
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002891 ret = str_parms_get_str(parms, "screen_state", value, sizeof(value));
2892 if (ret >= 0) {
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002893 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2894 adev->screen_off = false;
2895 else
2896 adev->screen_off = true;
2897 }
2898
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002899 ret = str_parms_get_int(parms, "rotation", &val);
2900 if (ret >= 0) {
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002901 bool reverse_speakers = false;
2902 switch(val) {
2903 // FIXME: note that the code below assumes that the speakers are in the correct placement
2904 // relative to the user when the device is rotated 90deg from its default rotation. This
2905 // assumption is device-specific, not platform-specific like this code.
2906 case 270:
2907 reverse_speakers = true;
2908 break;
2909 case 0:
2910 case 90:
2911 case 180:
2912 break;
2913 default:
2914 ALOGE("%s: unexpected rotation of %d", __func__, val);
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002915 status = -EINVAL;
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002916 }
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002917 if (status == 0) {
2918 if (adev->speaker_lr_swap != reverse_speakers) {
2919 adev->speaker_lr_swap = reverse_speakers;
2920 // only update the selected device if there is active pcm playback
2921 struct audio_usecase *usecase;
2922 struct listnode *node;
2923 list_for_each(node, &adev->usecase_list) {
2924 usecase = node_to_item(node, struct audio_usecase, list);
2925 if (usecase->type == PCM_PLAYBACK) {
2926 select_devices(adev, usecase->id);
2927 break;
2928 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002929 }
2930 }
2931 }
Jean-Michel Trivic56336b2013-05-24 16:55:17 -07002932 }
2933
Mingming Yin514a8bc2014-07-29 15:22:21 -07002934 ret = str_parms_get_str(parms, AUDIO_PARAMETER_KEY_BT_SCO_WB, value, sizeof(value));
2935 if (ret >= 0) {
2936 if (strcmp(value, AUDIO_PARAMETER_VALUE_ON) == 0)
2937 adev->bt_wb_speech_enabled = true;
2938 else
2939 adev->bt_wb_speech_enabled = false;
2940 }
2941
Apoorv Raghuvanshi9eaf94e2013-10-04 16:13:44 -07002942 audio_extn_set_parameters(adev, parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002943
Shiv Maliyappanahalli3e064fd2013-12-16 15:54:40 -08002944done:
2945 str_parms_destroy(parms);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002946 pthread_mutex_unlock(&adev->lock);
Preetam Singh Ranawata5f32b42014-09-23 12:12:47 +05302947error:
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07002948 ALOGV("%s: exit with code(%d)", __func__, status);
2949 return status;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002950}
2951
2952static char* adev_get_parameters(const struct audio_hw_device *dev,
2953 const char *keys)
2954{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002955 struct audio_device *adev = (struct audio_device *)dev;
2956 struct str_parms *reply = str_parms_create();
2957 struct str_parms *query = str_parms_create_str(keys);
2958 char *str;
Naresh Tannirud7205b62014-06-20 02:54:48 +05302959 char value[256] = {0};
2960 int ret = 0;
2961
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07002962 if (!query || !reply) {
2963 ALOGE("adev_get_parameters: failed to create query or reply");
2964 return NULL;
2965 }
2966
Naresh Tannirud7205b62014-06-20 02:54:48 +05302967 ret = str_parms_get_str(query, "SND_CARD_STATUS", value,
2968 sizeof(value));
2969 if (ret >=0) {
2970 int val = 1;
2971 pthread_mutex_lock(&adev->snd_card_status.lock);
2972 if (SND_CARD_STATE_OFFLINE == adev->snd_card_status.state)
2973 val = 0;
2974 pthread_mutex_unlock(&adev->snd_card_status.lock);
2975 str_parms_add_int(reply, "SND_CARD_STATUS", val);
2976 goto exit;
2977 }
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002978
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08002979 pthread_mutex_lock(&adev->lock);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002980 audio_extn_get_parameters(adev, query, reply);
Shiv Maliyappanahallif9308492013-12-12 12:18:09 -08002981 voice_get_parameters(adev, query, reply);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002982 platform_get_parameters(adev->platform, query, reply);
Naresh Tanniru80659832014-06-04 18:17:56 +05302983 pthread_mutex_unlock(&adev->lock);
2984
Naresh Tannirud7205b62014-06-20 02:54:48 +05302985exit:
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07002986 str = str_parms_to_str(reply);
2987 str_parms_destroy(query);
2988 str_parms_destroy(reply);
2989
2990 ALOGV("%s: exit: returns - %s", __func__, str);
2991 return str;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002992}
2993
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07002994static int adev_init_check(const struct audio_hw_device *dev __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08002995{
2996 return 0;
2997}
2998
2999static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
3000{
Haynes Mathew George5191a852013-09-11 14:19:36 -07003001 int ret;
3002 struct audio_device *adev = (struct audio_device *)dev;
3003 pthread_mutex_lock(&adev->lock);
3004 /* cache volume */
Shruthi Krishnaace10852013-10-25 14:32:12 -07003005 ret = voice_set_volume(adev, volume);
Haynes Mathew George5191a852013-09-11 14:19:36 -07003006 pthread_mutex_unlock(&adev->lock);
3007 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003008}
3009
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003010static int adev_set_master_volume(struct audio_hw_device *dev __unused,
3011 float volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003012{
3013 return -ENOSYS;
3014}
3015
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003016static int adev_get_master_volume(struct audio_hw_device *dev __unused,
3017 float *volume __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003018{
3019 return -ENOSYS;
3020}
3021
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003022static int adev_set_master_mute(struct audio_hw_device *dev __unused,
3023 bool muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003024{
3025 return -ENOSYS;
3026}
3027
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003028static int adev_get_master_mute(struct audio_hw_device *dev __unused,
3029 bool *muted __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003030{
3031 return -ENOSYS;
3032}
3033
3034static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
3035{
3036 struct audio_device *adev = (struct audio_device *)dev;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003037
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003038 pthread_mutex_lock(&adev->lock);
3039 if (adev->mode != mode) {
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003040 ALOGD("%s: mode %d\n", __func__, mode);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003041 adev->mode = mode;
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003042 if ((mode == AUDIO_MODE_NORMAL || mode == AUDIO_MODE_IN_COMMUNICATION) &&
3043 voice_is_in_call(adev)) {
3044 voice_stop_call(adev);
3045 adev->current_call_output = NULL;
3046 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003047 }
3048 pthread_mutex_unlock(&adev->lock);
3049 return 0;
3050}
3051
3052static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
3053{
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08003054 int ret;
3055
3056 pthread_mutex_lock(&adev->lock);
Vidyakumar Athota2850d532013-11-19 16:02:12 -08003057 ALOGD("%s state %d\n", __func__, state);
Shiv Maliyappanahalli3bb73582013-11-05 12:49:15 -08003058 ret = voice_set_mic_mute((struct audio_device *)dev, state);
3059 pthread_mutex_unlock(&adev->lock);
3060
3061 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003062}
3063
3064static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
3065{
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003066 *state = voice_get_mic_mute((struct audio_device *)dev);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003067 return 0;
3068}
3069
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003070static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003071 const struct audio_config *config)
3072{
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07003073 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003074
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003075 return get_input_buffer_size(config->sample_rate, config->format, channel_count,
3076 false /* is_low_latency: since we don't know, be conservative */);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003077}
3078
3079static int adev_open_input_stream(struct audio_hw_device *dev,
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003080 audio_io_handle_t handle __unused,
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003081 audio_devices_t devices,
3082 struct audio_config *config,
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07003083 struct audio_stream_in **stream_in,
3084 audio_input_flags_t flags __unused,
3085 const char *address __unused,
3086 audio_source_t source __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003087{
3088 struct audio_device *adev = (struct audio_device *)dev;
3089 struct stream_in *in;
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003090 int ret = 0, buffer_size, frame_size;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07003091 int channel_count = audio_channel_count_from_in_mask(config->channel_mask);
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003092 bool is_low_latency = false;
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05303093
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003094 *stream_in = NULL;
3095 if (check_input_parameters(config->sample_rate, config->format, channel_count) != 0)
3096 return -EINVAL;
3097
3098 in = (struct stream_in *)calloc(1, sizeof(struct stream_in));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003099
3100 if (!in) {
3101 ALOGE("failed to allocate input stream");
3102 return -ENOMEM;
3103 }
3104
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05303105 ALOGD("%s: enter: sample_rate(%d) channel_mask(%#x) devices(%#x)\
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003106 stream_handle(%p) io_handle(%d)",__func__, config->sample_rate, config->channel_mask,
3107 devices, &in->stream, handle);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003108
Ravi Kumar Alamanda40703102014-04-24 10:34:41 -07003109 pthread_mutex_init(&in->lock, (const pthread_mutexattr_t *) NULL);
3110
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003111 in->stream.common.get_sample_rate = in_get_sample_rate;
3112 in->stream.common.set_sample_rate = in_set_sample_rate;
3113 in->stream.common.get_buffer_size = in_get_buffer_size;
3114 in->stream.common.get_channels = in_get_channels;
3115 in->stream.common.get_format = in_get_format;
3116 in->stream.common.set_format = in_set_format;
3117 in->stream.common.standby = in_standby;
3118 in->stream.common.dump = in_dump;
3119 in->stream.common.set_parameters = in_set_parameters;
3120 in->stream.common.get_parameters = in_get_parameters;
3121 in->stream.common.add_audio_effect = in_add_audio_effect;
3122 in->stream.common.remove_audio_effect = in_remove_audio_effect;
3123 in->stream.set_gain = in_set_gain;
3124 in->stream.read = in_read;
3125 in->stream.get_input_frames_lost = in_get_input_frames_lost;
3126
3127 in->device = devices;
3128 in->source = AUDIO_SOURCE_DEFAULT;
3129 in->dev = adev;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003130 in->standby = 1;
3131 in->channel_mask = config->channel_mask;
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003132 in->capture_handle = handle;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003133
3134 /* Update config params with the requested sample rate and channels */
3135 in->usecase = USECASE_AUDIO_RECORD;
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003136 if (config->sample_rate == LOW_LATENCY_CAPTURE_SAMPLE_RATE &&
3137 (flags & AUDIO_INPUT_FLAG_FAST) != 0) {
3138 is_low_latency = true;
3139#if LOW_LATENCY_CAPTURE_USE_CASE
3140 in->usecase = USECASE_AUDIO_RECORD_LOW_LATENCY;
3141#endif
3142 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003143 in->config = pcm_config_audio_capture;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003144 in->config.rate = config->sample_rate;
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003145 in->format = config->format;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003146
Ravi Kumar Alamanda060bc5a2014-09-05 13:51:35 -07003147 if (in->device == AUDIO_DEVICE_IN_TELEPHONY_RX) {
3148 if (config->sample_rate == 0)
3149 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3150 if (config->sample_rate != 48000 && config->sample_rate != 16000 &&
3151 config->sample_rate != 8000) {
3152 config->sample_rate = AFE_PROXY_SAMPLING_RATE;
3153 ret = -EINVAL;
3154 goto err_open;
3155 }
3156 if (config->format == AUDIO_FORMAT_DEFAULT)
3157 config->format = AUDIO_FORMAT_PCM_16_BIT;
3158 if (config->format != AUDIO_FORMAT_PCM_16_BIT) {
3159 config->format = AUDIO_FORMAT_PCM_16_BIT;
3160 ret = -EINVAL;
3161 goto err_open;
3162 }
3163
3164 in->usecase = USECASE_AUDIO_RECORD_AFE_PROXY;
3165 in->config = pcm_config_afe_proxy_record;
3166 in->config.channels = channel_count;
3167 in->config.rate = config->sample_rate;
3168 } else if (channel_count == 6) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003169 if(audio_extn_ssr_get_enabled()) {
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003170 if(audio_extn_ssr_init(in)) {
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003171 ALOGE("%s: audio_extn_ssr_init failed", __func__);
3172 ret = -EINVAL;
3173 goto err_open;
3174 }
3175 } else {
Mingming Yin3cf99da2014-09-16 17:41:33 -07003176 ALOGW("%s: surround sound recording is not supported", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003177 }
Mingming Yine62d7842013-10-25 16:26:03 -07003178 } else if (audio_extn_compr_cap_enabled() &&
Narsinga Rao Chella2a99dea2014-01-24 15:33:23 -08003179 audio_extn_compr_cap_format_supported(config->format) &&
3180 (in->dev->mode != AUDIO_MODE_IN_COMMUNICATION)) {
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003181 audio_extn_compr_cap_init(in);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003182 } else {
3183 in->config.channels = channel_count;
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07003184 frame_size = audio_stream_in_frame_size(&in->stream);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003185 buffer_size = get_input_buffer_size(config->sample_rate,
3186 config->format,
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003187 channel_count,
3188 is_low_latency);
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003189 in->config.period_size = buffer_size / frame_size;
3190 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003191
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003192 /* This stream could be for sound trigger lab,
3193 get sound trigger pcm if present */
3194 audio_extn_sound_trigger_check_and_get_session(in);
3195
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003196 *stream_in = &in->stream;
Eric Laurent994a6932013-07-17 11:51:42 -07003197 ALOGV("%s: exit", __func__);
Ravi Kumar Alamandafae42112013-11-07 23:31:54 -08003198 return ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003199
3200err_open:
3201 free(in);
3202 *stream_in = NULL;
3203 return ret;
3204}
3205
3206static void adev_close_input_stream(struct audio_hw_device *dev,
3207 struct audio_stream_in *stream)
3208{
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003209 int ret;
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003210 struct stream_in *in = (struct stream_in *)stream;
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003211 struct audio_device *adev = (struct audio_device *)dev;
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05303212
Sidipotu Ashokf43018c2014-05-02 16:21:50 +05303213 ALOGD("%s: enter:stream_handle(%p)",__func__, in);
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003214
Venkata Narendra Kumar Gutta1bbbf542014-09-04 19:11:25 +05303215 /* Disable echo reference while closing input stream */
3216 platform_set_echo_reference(adev->platform, false);
3217
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003218 if (in->usecase == USECASE_COMPRESS_VOIP_CALL) {
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05303219 pthread_mutex_lock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003220 ret = voice_extn_compress_voip_close_input_stream(&stream->common);
Venkata Narendra Kumar Gutta91812142014-08-11 18:20:49 +05303221 pthread_mutex_unlock(&adev->lock);
Narsinga Rao Chella05573b72013-11-15 15:21:40 -08003222 if (ret != 0)
3223 ALOGE("%s: Compress voip input cannot be closed, error:%d",
3224 __func__, ret);
3225 } else
3226 in_standby(&stream->common);
3227
Ravi Kumar Alamandac3bc0812014-09-08 15:34:32 -07003228 if (audio_extn_ssr_get_enabled() &&
3229 (audio_channel_count_from_in_mask(in->channel_mask) == 6)) {
Apoorv Raghuvanshi6178a3f2013-10-19 12:38:54 -07003230 audio_extn_ssr_deinit();
3231 }
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003232
Mingming Yine62d7842013-10-25 16:26:03 -07003233 if(audio_extn_compr_cap_enabled() &&
3234 audio_extn_compr_cap_format_supported(in->config.format))
3235 audio_extn_compr_cap_deinit();
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003236
3237 free(stream);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003238 return;
3239}
3240
Ravi Kumar Alamandabdf14162014-09-05 16:14:17 -07003241static int adev_dump(const audio_hw_device_t *device __unused,
3242 int fd __unused)
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003243{
3244 return 0;
3245}
3246
3247static int adev_close(hw_device_t *device)
3248{
3249 struct audio_device *adev = (struct audio_device *)device;
Kiran Kandi910e1862013-10-29 13:29:42 -07003250
3251 if (!adev)
3252 return 0;
3253
3254 pthread_mutex_lock(&adev_init_lock);
3255
3256 if ((--audio_device_ref_count) == 0) {
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003257 audio_extn_sound_trigger_deinit(adev);
Kiran Kandide144c82013-11-20 15:58:32 -08003258 audio_extn_listen_deinit(adev);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07003259 audio_extn_utils_release_streams_output_cfg_list(&adev->streams_output_cfg_list);
Kiran Kandi910e1862013-10-29 13:29:42 -07003260 audio_route_free(adev->audio_route);
3261 free(adev->snd_dev_ref_cnt);
3262 platform_deinit(adev->platform);
Kiran Kandi910e1862013-10-29 13:29:42 -07003263 free(device);
3264 adev = NULL;
3265 }
3266 pthread_mutex_unlock(&adev_init_lock);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003267 return 0;
3268}
3269
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003270/* This returns 1 if the input parameter looks at all plausible as a low latency period size,
3271 * or 0 otherwise. A return value of 1 doesn't mean the value is guaranteed to work,
3272 * just that it _might_ work.
3273 */
3274static int period_size_is_plausible_for_low_latency(int period_size)
3275{
3276 switch (period_size) {
3277 case 160:
3278 case 240:
3279 case 320:
3280 case 480:
3281 return 1;
3282 default:
3283 return 0;
3284 }
3285}
3286
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003287static int adev_open(const hw_module_t *module, const char *name,
3288 hw_device_t **device)
3289{
Ravi Kumar Alamanda71c84b72013-03-10 23:50:28 -07003290 int i, ret;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003291
Ravi Kumar Alamanda75d924d2013-02-20 21:30:08 -08003292 ALOGD("%s: enter", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003293 if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0) return -EINVAL;
3294
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003295 pthread_mutex_lock(&adev_init_lock);
Kiran Kandi910e1862013-10-29 13:29:42 -07003296 if (audio_device_ref_count != 0){
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003297 *device = &adev->device.common;
Kiran Kandi910e1862013-10-29 13:29:42 -07003298 audio_device_ref_count++;
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003299 ALOGD("%s: returning existing instance of adev", __func__);
3300 ALOGD("%s: exit", __func__);
3301 pthread_mutex_unlock(&adev_init_lock);
3302 return 0;
3303 }
3304
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003305 adev = calloc(1, sizeof(struct audio_device));
3306
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -07003307 if (!adev) {
3308 pthread_mutex_unlock(&adev_init_lock);
3309 return -ENOMEM;
3310 }
3311
Ravi Kumar Alamanda40703102014-04-24 10:34:41 -07003312 pthread_mutex_init(&adev->lock, (const pthread_mutexattr_t *) NULL);
3313
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003314 adev->device.common.tag = HARDWARE_DEVICE_TAG;
3315 adev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
3316 adev->device.common.module = (struct hw_module_t *)module;
3317 adev->device.common.close = adev_close;
3318
3319 adev->device.init_check = adev_init_check;
3320 adev->device.set_voice_volume = adev_set_voice_volume;
3321 adev->device.set_master_volume = adev_set_master_volume;
3322 adev->device.get_master_volume = adev_get_master_volume;
3323 adev->device.set_master_mute = adev_set_master_mute;
3324 adev->device.get_master_mute = adev_get_master_mute;
3325 adev->device.set_mode = adev_set_mode;
3326 adev->device.set_mic_mute = adev_set_mic_mute;
3327 adev->device.get_mic_mute = adev_get_mic_mute;
3328 adev->device.set_parameters = adev_set_parameters;
3329 adev->device.get_parameters = adev_get_parameters;
3330 adev->device.get_input_buffer_size = adev_get_input_buffer_size;
3331 adev->device.open_output_stream = adev_open_output_stream;
3332 adev->device.close_output_stream = adev_close_output_stream;
3333 adev->device.open_input_stream = adev_open_input_stream;
3334 adev->device.close_input_stream = adev_close_input_stream;
3335 adev->device.dump = adev_dump;
3336
3337 /* Set the default route before the PCM stream is opened */
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003338 adev->mode = AUDIO_MODE_NORMAL;
Eric Laurentc8400632013-02-14 19:04:54 -08003339 adev->active_input = NULL;
Ravi Kumar Alamanda096c87f2013-02-28 20:54:57 -08003340 adev->primary_output = NULL;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003341 adev->out_device = AUDIO_DEVICE_NONE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003342 adev->bluetooth_nrec = true;
Ravi Kumar Alamandaf9967042013-02-14 19:35:14 -08003343 adev->acdb_settings = TTY_MODE_OFF;
Eric Laurent07eeafd2013-10-06 12:52:49 -07003344 /* adev->cur_hdmi_channels = 0; by calloc() */
Mingming Yin3ee55c62014-08-04 14:23:35 -07003345 adev->cur_codec_backend_samplerate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
3346 adev->cur_codec_backend_bit_width = CODEC_BACKEND_DEFAULT_BIT_WIDTH;
Eric Laurentb23d5282013-05-14 15:27:20 -07003347 adev->snd_dev_ref_cnt = calloc(SND_DEVICE_MAX, sizeof(int));
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003348 voice_init(adev);
Ravi Kumar Alamanda3b1816c2013-02-27 23:01:21 -08003349 list_init(&adev->usecase_list);
Krishnankutty Kolathappilly0b2de1c2014-02-14 14:45:49 -08003350 adev->cur_wfd_channels = 2;
Subhash Chandra Bose Naripeddy16ff4f82014-04-01 21:03:10 -07003351 adev->offload_usecases_state = 0;
Naresh Tanniru4c630392014-05-12 01:05:52 +05303352
3353 pthread_mutex_init(&adev->snd_card_status.lock, (const pthread_mutexattr_t *) NULL);
3354 adev->snd_card_status.state = SND_CARD_STATE_OFFLINE;
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003355 /* Loads platform specific libraries dynamically */
Eric Laurentb23d5282013-05-14 15:27:20 -07003356 adev->platform = platform_init(adev);
3357 if (!adev->platform) {
3358 free(adev->snd_dev_ref_cnt);
3359 free(adev);
3360 ALOGE("%s: Failed to init platform data, aborting.", __func__);
3361 *device = NULL;
Apoorv Raghuvanshi6e57d7e2013-12-16 16:02:45 -08003362 pthread_mutex_unlock(&adev_init_lock);
Eric Laurentb23d5282013-05-14 15:27:20 -07003363 return -EINVAL;
3364 }
Eric Laurentc4aef752013-09-12 17:45:53 -07003365
Naresh Tanniru4c630392014-05-12 01:05:52 +05303366 adev->snd_card_status.state = SND_CARD_STATE_ONLINE;
3367
Eric Laurentc4aef752013-09-12 17:45:53 -07003368 if (access(VISUALIZER_LIBRARY_PATH, R_OK) == 0) {
3369 adev->visualizer_lib = dlopen(VISUALIZER_LIBRARY_PATH, RTLD_NOW);
3370 if (adev->visualizer_lib == NULL) {
3371 ALOGE("%s: DLOPEN failed for %s", __func__, VISUALIZER_LIBRARY_PATH);
3372 } else {
3373 ALOGV("%s: DLOPEN successful for %s", __func__, VISUALIZER_LIBRARY_PATH);
3374 adev->visualizer_start_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003375 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003376 "visualizer_hal_start_output");
3377 adev->visualizer_stop_output =
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003378 (int (*)(audio_io_handle_t, int))dlsym(adev->visualizer_lib,
Eric Laurentc4aef752013-09-12 17:45:53 -07003379 "visualizer_hal_stop_output");
3380 }
3381 }
Apoorv Raghuvanshi84fa2fe2013-12-04 11:57:47 -08003382 audio_extn_listen_init(adev, adev->snd_card);
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -07003383 audio_extn_sound_trigger_init(adev);
Eric Laurentc4aef752013-09-12 17:45:53 -07003384
Subhash Chandra Bose Naripeddy1d089162013-11-13 13:31:50 -08003385 if (access(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, R_OK) == 0) {
3386 adev->offload_effects_lib = dlopen(OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH, RTLD_NOW);
3387 if (adev->offload_effects_lib == NULL) {
3388 ALOGE("%s: DLOPEN failed for %s", __func__,
3389 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3390 } else {
3391 ALOGV("%s: DLOPEN successful for %s", __func__,
3392 OFFLOAD_EFFECTS_BUNDLE_LIBRARY_PATH);
3393 adev->offload_effects_start_output =
3394 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3395 "offload_effects_bundle_hal_start_output");
3396 adev->offload_effects_stop_output =
3397 (int (*)(audio_io_handle_t, int))dlsym(adev->offload_effects_lib,
3398 "offload_effects_bundle_hal_stop_output");
3399 }
3400 }
3401
Mingming Yin514a8bc2014-07-29 15:22:21 -07003402 adev->bt_wb_speech_enabled = false;
3403
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003404 *device = &adev->device.common;
3405
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07003406 audio_extn_utils_update_streams_output_cfg_list(adev->platform, adev->mixer,
3407 &adev->streams_output_cfg_list);
3408
Kiran Kandi910e1862013-10-29 13:29:42 -07003409 audio_device_ref_count++;
Ravi Kumar Alamandadc9bb152014-09-08 15:59:58 -07003410
3411 char value[PROPERTY_VALUE_MAX];
3412 int trial;
3413 if (property_get("audio_hal.period_size", value, NULL) > 0) {
3414 trial = atoi(value);
3415 if (period_size_is_plausible_for_low_latency(trial)) {
3416 pcm_config_low_latency.period_size = trial;
3417 pcm_config_low_latency.start_threshold = trial / 4;
3418 pcm_config_low_latency.avail_min = trial / 4;
3419 configured_low_latency_capture_period_size = trial;
3420 }
3421 }
3422 if (property_get("audio_hal.in_period_size", value, NULL) > 0) {
3423 trial = atoi(value);
3424 if (period_size_is_plausible_for_low_latency(trial)) {
3425 configured_low_latency_capture_period_size = trial;
3426 }
3427 }
3428
Apoorv Raghuvanshi6e262842013-10-06 14:39:35 -07003429 pthread_mutex_unlock(&adev_init_lock);
3430
Eric Laurent994a6932013-07-17 11:51:42 -07003431 ALOGV("%s: exit", __func__);
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003432 return 0;
3433}
3434
3435static struct hw_module_methods_t hal_module_methods = {
3436 .open = adev_open,
3437};
3438
3439struct audio_module HAL_MODULE_INFO_SYM = {
3440 .common = {
3441 .tag = HARDWARE_MODULE_TAG,
3442 .module_api_version = AUDIO_MODULE_API_VERSION_0_1,
3443 .hal_api_version = HARDWARE_HAL_API_VERSION,
3444 .id = AUDIO_HARDWARE_MODULE_ID,
3445 .name = "QCOM Audio HAL",
Duy Truongfae19622013-11-24 02:17:54 -08003446 .author = "The Linux Foundation",
Ravi Kumar Alamanda2dfba2b2013-01-17 16:50:22 -08003447 .methods = &hal_module_methods,
3448 },
3449};