blob: dee9d4479c6b09f709111de7e920dbe8853f5174 [file] [log] [blame]
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -07001/*
2 * Copyright (c) 2014, The Linux Foundation. All rights reserved.
3 * Not a Contribution.
4 *
5 * Copyright (C) 2014 The Android Open Source Project
6 *
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_utils"
21/* #define LOG_NDEBUG 0 */
22
23#include <errno.h>
24#include <cutils/properties.h>
25#include <cutils/config_utils.h>
26#include <stdlib.h>
27#include <dlfcn.h>
28#include <cutils/str_parms.h>
29#include <cutils/log.h>
30#include <cutils/misc.h>
31
32#include "audio_hw.h"
33#include "platform.h"
34#include "platform_api.h"
35#include "audio_extn.h"
Narsinga Rao Chella212e2542014-11-17 19:57:04 -080036#include "voice.h"
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070037
38#define AUDIO_OUTPUT_POLICY_VENDOR_CONFIG_FILE "/vendor/etc/audio_output_policy.conf"
39
40#define OUTPUTS_TAG "outputs"
41
42#define DYNAMIC_VALUE_TAG "dynamic"
43#define FLAGS_TAG "flags"
44#define FORMATS_TAG "formats"
45#define SAMPLING_RATES_TAG "sampling_rates"
46#define BIT_WIDTH_TAG "bit_width"
47#define APP_TYPE_TAG "app_type"
48
49#define STRING_TO_ENUM(string) { #string, string }
50#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
51
Ben Rombergera04fabc2014-11-14 12:16:03 -080052#define BASE_TABLE_SIZE 64
53#define MAX_BASEINDEX_LEN 256
54
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070055struct string_to_enum {
56 const char *name;
57 uint32_t value;
58};
59
60const struct string_to_enum s_flag_name_to_enum_table[] = {
61 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_DIRECT),
62 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_PRIMARY),
63 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_FAST),
64 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_DEEP_BUFFER),
65 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_COMPRESS_OFFLOAD),
66 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_NON_BLOCKING),
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -070067 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_HW_AV_SYNC),
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070068#ifdef INCALL_MUSIC_ENABLED
69 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_INCALL_MUSIC),
70#endif
71#ifdef COMPRESS_VOIP_ENABLED
72 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_VOIP_RX),
73#endif
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -070074 STRING_TO_ENUM(AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH),
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070075};
76
77const struct string_to_enum s_format_name_to_enum_table[] = {
78 STRING_TO_ENUM(AUDIO_FORMAT_PCM_16_BIT),
79 STRING_TO_ENUM(AUDIO_FORMAT_PCM_8_BIT),
80 STRING_TO_ENUM(AUDIO_FORMAT_MP3),
81 STRING_TO_ENUM(AUDIO_FORMAT_AAC),
82 STRING_TO_ENUM(AUDIO_FORMAT_VORBIS),
Mingming Yinae3530f2014-07-03 16:50:18 -070083 STRING_TO_ENUM(AUDIO_FORMAT_AMR_NB),
84 STRING_TO_ENUM(AUDIO_FORMAT_AMR_WB),
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070085 STRING_TO_ENUM(AUDIO_FORMAT_AC3),
Mingming Yinae3530f2014-07-03 16:50:18 -070086 STRING_TO_ENUM(AUDIO_FORMAT_E_AC3),
87#ifdef FORMATS_ENABLED
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070088 STRING_TO_ENUM(AUDIO_FORMAT_DTS),
89 STRING_TO_ENUM(AUDIO_FORMAT_DTS_LBR),
90 STRING_TO_ENUM(AUDIO_FORMAT_WMA),
91 STRING_TO_ENUM(AUDIO_FORMAT_WMA_PRO),
92 STRING_TO_ENUM(AUDIO_FORMAT_AAC_ADIF),
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -070093 STRING_TO_ENUM(AUDIO_FORMAT_AMR_WB_PLUS),
94 STRING_TO_ENUM(AUDIO_FORMAT_EVRC),
95 STRING_TO_ENUM(AUDIO_FORMAT_EVRCB),
96 STRING_TO_ENUM(AUDIO_FORMAT_EVRCWB),
97 STRING_TO_ENUM(AUDIO_FORMAT_QCELP),
98 STRING_TO_ENUM(AUDIO_FORMAT_MP2),
99 STRING_TO_ENUM(AUDIO_FORMAT_EVRCNW),
100 STRING_TO_ENUM(AUDIO_FORMAT_PCM_16_BIT_OFFLOAD),
101 STRING_TO_ENUM(AUDIO_FORMAT_PCM_24_BIT_OFFLOAD),
Amit Shekhar6f461b12014-08-01 14:52:58 -0700102 STRING_TO_ENUM(AUDIO_FORMAT_FLAC),
Satya Krishna Pindiproli70471602015-04-24 19:12:43 +0530103 STRING_TO_ENUM(AUDIO_FORMAT_ALAC),
104 STRING_TO_ENUM(AUDIO_FORMAT_APE),
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700105 STRING_TO_ENUM(AUDIO_FORMAT_E_AC3_JOC),
Alexy Josephcd8eaed2014-12-11 12:46:53 -0800106 STRING_TO_ENUM(AUDIO_FORMAT_AAC_LC),
107 STRING_TO_ENUM(AUDIO_FORMAT_AAC_HE_V1),
108 STRING_TO_ENUM(AUDIO_FORMAT_AAC_HE_V2),
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700109#endif
110};
111
Ben Rombergera04fabc2014-11-14 12:16:03 -0800112static char bTable[BASE_TABLE_SIZE] = {
113 'A','B','C','D','E','F','G','H','I','J','K','L',
114 'M','N','O','P','Q','R','S','T','U','V','W','X',
115 'Y','Z','a','b','c','d','e','f','g','h','i','j',
116 'k','l','m','n','o','p','q','r','s','t','u','v',
117 'w','x','y','z','0','1','2','3','4','5','6','7',
118 '8','9','+','/'
119};
120
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700121static uint32_t string_to_enum(const struct string_to_enum *table, size_t size,
122 const char *name)
123{
124 size_t i;
125 for (i = 0; i < size; i++) {
126 if (strcmp(table[i].name, name) == 0) {
127 ALOGV("%s found %s", __func__, table[i].name);
128 return table[i].value;
129 }
130 }
131 return 0;
132}
133
134static audio_output_flags_t parse_flag_names(char *name)
135{
136 uint32_t flag = 0;
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800137 char *last_r;
138 char *flag_name = strtok_r(name, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700139 while (flag_name != NULL) {
140 if (strlen(flag_name) != 0) {
141 flag |= string_to_enum(s_flag_name_to_enum_table,
142 ARRAY_SIZE(s_flag_name_to_enum_table),
143 flag_name);
144 }
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800145 flag_name = strtok_r(NULL, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700146 }
147
148 ALOGV("parse_flag_names: flag - %d", flag);
149 return (audio_output_flags_t)flag;
150}
151
152static void parse_format_names(char *name, struct streams_output_cfg *so_info)
153{
154 struct stream_format *sf_info = NULL;
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800155 char *last_r;
156 char *str = strtok_r(name, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700157
158 if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG) == 0)
159 return;
160
161 list_init(&so_info->format_list);
162 while (str != NULL) {
163 audio_format_t format = (audio_format_t)string_to_enum(s_format_name_to_enum_table,
164 ARRAY_SIZE(s_format_name_to_enum_table), str);
165 ALOGV("%s: format - %d", __func__, format);
166 if (format != 0) {
167 sf_info = (struct stream_format *)calloc(1, sizeof(struct stream_format));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -0700168 if (sf_info == NULL)
169 break; /* return whatever was parsed */
170
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700171 sf_info->format = format;
172 list_add_tail(&so_info->format_list, &sf_info->list);
173 }
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800174 str = strtok_r(NULL, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700175 }
176}
177
Amit Shekhar6f461b12014-08-01 14:52:58 -0700178static void parse_sample_rate_names(char *name, struct streams_output_cfg *so_info)
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700179{
Amit Shekhar6f461b12014-08-01 14:52:58 -0700180 struct stream_sample_rate *ss_info = NULL;
181 uint32_t sample_rate = 48000;
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800182 char *last_r;
183 char *str = strtok_r(name, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700184
Amit Shekhar6f461b12014-08-01 14:52:58 -0700185 if (str != NULL && 0 == strcmp(str, DYNAMIC_VALUE_TAG))
186 return;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700187
Amit Shekhar6f461b12014-08-01 14:52:58 -0700188 list_init(&so_info->sample_rate_list);
189 while (str != NULL) {
190 sample_rate = (uint32_t)strtol(str, (char **)NULL, 10);
191 ALOGV("%s: sample_rate - %d", __func__, sample_rate);
192 if (0 != sample_rate) {
193 ss_info = (struct stream_sample_rate *)calloc(1, sizeof(struct stream_sample_rate));
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800194 if (!ss_info) {
195 ALOGE("%s: memory allocation failure", __func__);
196 return;
197 }
Amit Shekhar6f461b12014-08-01 14:52:58 -0700198 ss_info->sample_rate = sample_rate;
199 list_add_tail(&so_info->sample_rate_list, &ss_info->list);
200 }
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800201 str = strtok_r(NULL, "|", &last_r);
Amit Shekhar6f461b12014-08-01 14:52:58 -0700202 }
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700203}
204
205static int parse_bit_width_names(char *name)
206{
207 int bit_width = 16;
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800208 char *last_r;
209 char *str = strtok_r(name, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700210
211 if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG))
212 bit_width = (int)strtol(str, (char **)NULL, 10);
213
214 ALOGV("%s: bit_width - %d", __func__, bit_width);
215 return bit_width;
216}
217
218static int parse_app_type_names(void *platform, char *name)
219{
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700220 int app_type = platform_get_default_app_type(platform);
Apoorv Raghuvanshi8880cac2015-02-06 15:33:49 -0800221 char *last_r;
222 char *str = strtok_r(name, "|", &last_r);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700223
224 if (str != NULL && strcmp(str, DYNAMIC_VALUE_TAG))
225 app_type = (int)strtol(str, (char **)NULL, 10);
226
227 ALOGV("%s: app_type - %d", __func__, app_type);
228 return app_type;
229}
230
231static void update_streams_output_cfg_list(cnode *root, void *platform,
232 struct listnode *streams_output_cfg_list)
233{
234 cnode *node = root->first_child;
235 struct streams_output_cfg *so_info;
236
237 ALOGV("%s", __func__);
238 so_info = (struct streams_output_cfg *)calloc(1, sizeof(struct streams_output_cfg));
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -0700239
240 if (!so_info) {
241 ALOGE("failed to allocate mem for so_info list element");
242 return;
243 }
244
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700245 while (node) {
246 if (strcmp(node->name, FLAGS_TAG) == 0) {
247 so_info->flags = parse_flag_names((char *)node->value);
248 } else if (strcmp(node->name, FORMATS_TAG) == 0) {
249 parse_format_names((char *)node->value, so_info);
250 } else if (strcmp(node->name, SAMPLING_RATES_TAG) == 0) {
Amit Shekhar6f461b12014-08-01 14:52:58 -0700251 so_info->app_type_cfg.sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
252 parse_sample_rate_names((char *)node->value, so_info);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700253 } else if (strcmp(node->name, BIT_WIDTH_TAG) == 0) {
254 so_info->app_type_cfg.bit_width = parse_bit_width_names((char *)node->value);
255 } else if (strcmp(node->name, APP_TYPE_TAG) == 0) {
256 so_info->app_type_cfg.app_type = parse_app_type_names(platform, (char *)node->value);
257 }
258 node = node->next;
259 }
260 list_add_tail(streams_output_cfg_list, &so_info->list);
261}
262
263static void load_output(cnode *root, void *platform,
264 struct listnode *streams_output_cfg_list)
265{
266 cnode *node = config_find(root, OUTPUTS_TAG);
267 if (node == NULL) {
268 ALOGE("%s: could not load output, node is NULL", __func__);
269 return;
270 }
271
272 node = node->first_child;
273 while (node) {
274 ALOGV("%s: loading output %s", __func__, node->name);
275 update_streams_output_cfg_list(node, platform, streams_output_cfg_list);
276 node = node->next;
277 }
278}
279
280static void send_app_type_cfg(void *platform, struct mixer *mixer,
281 struct listnode *streams_output_cfg_list)
282{
283 int app_type_cfg[MAX_LENGTH_MIXER_CONTROL_IN_INT] = {-1};
284 int length = 0, i, num_app_types = 0;
285 struct listnode *node;
286 bool update;
287 struct mixer_ctl *ctl = NULL;
288 const char *mixer_ctl_name = "App Type Config";
289 struct streams_output_cfg *so_info;
290
291 if (!mixer) {
292 ALOGE("%s: mixer is null",__func__);
293 return;
294 }
295 ctl = mixer_get_ctl_by_name(mixer, mixer_ctl_name);
296 if (!ctl) {
297 ALOGE("%s: Could not get ctl for mixer cmd - %s",__func__, mixer_ctl_name);
298 return;
299 }
300 if (streams_output_cfg_list == NULL) {
301 app_type_cfg[length++] = 1;
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700302 app_type_cfg[length++] = platform_get_default_app_type(platform);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700303 app_type_cfg[length++] = 48000;
304 app_type_cfg[length++] = 16;
305 mixer_ctl_set_array(ctl, app_type_cfg, length);
306 return;
307 }
308
309 app_type_cfg[length++] = num_app_types;
310 list_for_each(node, streams_output_cfg_list) {
311 so_info = node_to_item(node, struct streams_output_cfg, list);
312 update = true;
313 for (i=0; i<length; i=i+3) {
314 if (app_type_cfg[i+1] == -1)
315 break;
316 else if (app_type_cfg[i+1] == so_info->app_type_cfg.app_type) {
317 update = false;
318 break;
319 }
320 }
321 if (update && ((length + 3) <= MAX_LENGTH_MIXER_CONTROL_IN_INT)) {
322 num_app_types += 1 ;
323 app_type_cfg[length++] = so_info->app_type_cfg.app_type;
324 app_type_cfg[length++] = so_info->app_type_cfg.sample_rate;
325 app_type_cfg[length++] = so_info->app_type_cfg.bit_width;
326 }
327 }
328 ALOGV("%s: num_app_types: %d", __func__, num_app_types);
329 if (num_app_types) {
330 app_type_cfg[0] = num_app_types;
331 mixer_ctl_set_array(ctl, app_type_cfg, length);
332 }
333}
334
335void audio_extn_utils_update_streams_output_cfg_list(void *platform,
336 struct mixer *mixer,
337 struct listnode *streams_output_cfg_list)
338{
339 cnode *root;
340 char *data;
341
342 ALOGV("%s", __func__);
343 list_init(streams_output_cfg_list);
344 data = (char *)load_file(AUDIO_OUTPUT_POLICY_VENDOR_CONFIG_FILE, NULL);
345 if (data == NULL) {
346 send_app_type_cfg(platform, mixer, NULL);
347 ALOGE("%s: could not load output policy config file", __func__);
348 return;
349 }
350
351 root = config_node("", "");
Haynes Mathew Georgeb51ceb12014-06-30 13:56:18 -0700352 if (root == NULL) {
353 ALOGE("cfg_list, NULL config root");
354 return;
355 }
356
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700357 config_load(root, data);
358 load_output(root, platform, streams_output_cfg_list);
359
360 send_app_type_cfg(platform, mixer, streams_output_cfg_list);
361}
362
363void audio_extn_utils_dump_streams_output_cfg_list(
364 struct listnode *streams_output_cfg_list)
365{
366 int i=0;
367 struct listnode *node_i, *node_j;
368 struct streams_output_cfg *so_info;
369 struct stream_format *sf_info;
Amit Shekhar6f461b12014-08-01 14:52:58 -0700370 struct stream_sample_rate *ss_info;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700371 ALOGV("%s", __func__);
372 list_for_each(node_i, streams_output_cfg_list) {
373 so_info = node_to_item(node_i, struct streams_output_cfg, list);
Amit Shekhar6f461b12014-08-01 14:52:58 -0700374 ALOGV("%s: flags-%d, output_sample_rate-%d, output_bit_width-%d, app_type-%d",
375 __func__, so_info->flags, so_info->app_type_cfg.sample_rate,
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700376 so_info->app_type_cfg.bit_width, so_info->app_type_cfg.app_type);
377 list_for_each(node_j, &so_info->format_list) {
378 sf_info = node_to_item(node_j, struct stream_format, list);
379 ALOGV("format-%x", sf_info->format);
380 }
Amit Shekhar6f461b12014-08-01 14:52:58 -0700381 list_for_each(node_j, &so_info->sample_rate_list) {
382 ss_info = node_to_item(node_j, struct stream_sample_rate, list);
383 ALOGV("sample rate-%d", ss_info->sample_rate);
384 }
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700385 }
386}
387
388void audio_extn_utils_release_streams_output_cfg_list(
389 struct listnode *streams_output_cfg_list)
390{
391 struct listnode *node_i, *node_j;
392 struct streams_output_cfg *so_info;
393 struct stream_format *sf_info;
394
395 ALOGV("%s", __func__);
396 while (!list_empty(streams_output_cfg_list)) {
397 node_i = list_head(streams_output_cfg_list);
398 so_info = node_to_item(node_i, struct streams_output_cfg, list);
399 while (!list_empty(&so_info->format_list)) {
400 node_j = list_head(&so_info->format_list);
401 list_remove(node_j);
402 free(node_to_item(node_j, struct stream_format, list));
403 }
Amit Shekhar6f461b12014-08-01 14:52:58 -0700404 while (!list_empty(&so_info->sample_rate_list)) {
405 node_j = list_head(&so_info->sample_rate_list);
406 list_remove(node_j);
407 free(node_to_item(node_j, struct stream_sample_rate, list));
408 }
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700409 list_remove(node_i);
410 free(node_to_item(node_i, struct streams_output_cfg, list));
411 }
412}
413
Amit Shekhar6f461b12014-08-01 14:52:58 -0700414static bool set_output_cfg(struct streams_output_cfg *so_info,
415 struct stream_app_type_cfg *app_type_cfg,
416 uint32_t sample_rate, uint32_t bit_width)
417 {
418 struct listnode *node_i;
419 struct stream_sample_rate *ss_info;
420 list_for_each(node_i, &so_info->sample_rate_list) {
421 ss_info = node_to_item(node_i, struct stream_sample_rate, list);
422 if ((sample_rate <= ss_info->sample_rate) &&
423 (bit_width == so_info->app_type_cfg.bit_width)) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700424
Amit Shekhar6f461b12014-08-01 14:52:58 -0700425 app_type_cfg->app_type = so_info->app_type_cfg.app_type;
426 app_type_cfg->sample_rate = ss_info->sample_rate;
427 app_type_cfg->bit_width = so_info->app_type_cfg.bit_width;
428 ALOGV("%s app_type_cfg->app_type %d, app_type_cfg->sample_rate %d, app_type_cfg->bit_width %d",
429 __func__, app_type_cfg->app_type, app_type_cfg->sample_rate, app_type_cfg->bit_width);
430 return true;
431 }
432 }
433 /*
434 * Reiterate through the list assuming dafault sample rate.
435 * Handles scenario where input sample rate is higher
436 * than all sample rates in list for the input bit width.
437 */
438 sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
Preetam Singh Ranawat1871ddb2015-02-18 12:23:23 -0800439
Amit Shekhar6f461b12014-08-01 14:52:58 -0700440 list_for_each(node_i, &so_info->sample_rate_list) {
441 ss_info = node_to_item(node_i, struct stream_sample_rate, list);
442 if ((sample_rate <= ss_info->sample_rate) &&
443 (bit_width == so_info->app_type_cfg.bit_width)) {
444 app_type_cfg->app_type = so_info->app_type_cfg.app_type;
445 app_type_cfg->sample_rate = sample_rate;
446 app_type_cfg->bit_width = so_info->app_type_cfg.bit_width;
Preetam Singh Ranawat1871ddb2015-02-18 12:23:23 -0800447 ALOGV("%s Assuming sample rate. app_type_cfg->app_type %d, app_type_cfg->sample_rate %d, app_type_cfg->bit_width %d",
Amit Shekhar6f461b12014-08-01 14:52:58 -0700448 __func__, app_type_cfg->app_type, app_type_cfg->sample_rate, app_type_cfg->bit_width);
449 return true;
450 }
451 }
452 return false;
453}
454
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700455void audio_extn_utils_update_stream_app_type_cfg(void *platform,
456 struct listnode *streams_output_cfg_list,
Amit Shekhar1d896042014-10-03 13:16:09 -0700457 audio_devices_t devices,
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700458 audio_output_flags_t flags,
459 audio_format_t format,
Amit Shekhar6f461b12014-08-01 14:52:58 -0700460 uint32_t sample_rate,
461 uint32_t bit_width,
Manish Dewanganf48adb42015-05-27 10:17:41 +0530462 audio_channel_mask_t channel_mask,
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700463 struct stream_app_type_cfg *app_type_cfg)
464{
Amit Shekhar6f461b12014-08-01 14:52:58 -0700465 struct listnode *node_i, *node_j, *node_k;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700466 struct streams_output_cfg *so_info;
467 struct stream_format *sf_info;
Amit Shekhar6f461b12014-08-01 14:52:58 -0700468 struct stream_sample_rate *ss_info;
Manish Dewanganf48adb42015-05-27 10:17:41 +0530469 char value[PROPERTY_VALUE_MAX] = {0};
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700470
Amit Shekhar1d896042014-10-03 13:16:09 -0700471 if ((24 == bit_width) &&
472 (devices & AUDIO_DEVICE_OUT_SPEAKER)) {
Amit Shekhar5a39c912014-10-14 15:39:30 -0700473 int32_t bw = platform_get_snd_device_bit_width(SND_DEVICE_OUT_SPEAKER);
474 if (-ENOSYS != bw)
475 bit_width = (uint32_t)bw;
Amit Shekhar1d896042014-10-03 13:16:09 -0700476 sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
477 ALOGI("%s Allowing 24-bit playback on speaker ONLY at default sampling rate", __func__);
478 }
479
Manish Dewanganf48adb42015-05-27 10:17:41 +0530480 property_get("audio.playback.mch.downsample",value,"");
481 if (!strncmp("true", value, sizeof("true"))) {
482 if ((popcount(channel_mask) > 2) &&
483 (sample_rate > CODEC_BACKEND_DEFAULT_SAMPLE_RATE) &&
484 !(flags & AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH)) {
485 sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
486 ALOGD("%s: MCH session defaulting sample rate to %d",
487 __func__, sample_rate);
488 }
489 }
Amit Shekhar1d896042014-10-03 13:16:09 -0700490 ALOGV("%s: flags: %x, format: %x sample_rate %d",
491 __func__, flags, format, sample_rate);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700492 list_for_each(node_i, streams_output_cfg_list) {
493 so_info = node_to_item(node_i, struct streams_output_cfg, list);
494 if (so_info->flags == flags) {
495 list_for_each(node_j, &so_info->format_list) {
496 sf_info = node_to_item(node_j, struct stream_format, list);
497 if (sf_info->format == format) {
Amit Shekhar6f461b12014-08-01 14:52:58 -0700498 if (set_output_cfg(so_info, app_type_cfg, sample_rate, bit_width))
499 return;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700500 }
501 }
502 }
503 }
504 list_for_each(node_i, streams_output_cfg_list) {
505 so_info = node_to_item(node_i, struct streams_output_cfg, list);
506 if (so_info->flags == AUDIO_OUTPUT_FLAG_PRIMARY) {
507 ALOGV("Compatible output profile not found.");
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700508 app_type_cfg->app_type = so_info->app_type_cfg.app_type;
509 app_type_cfg->sample_rate = so_info->app_type_cfg.sample_rate;
510 app_type_cfg->bit_width = so_info->app_type_cfg.bit_width;
Amit Shekhar6f461b12014-08-01 14:52:58 -0700511 ALOGV("%s Default to primary output: App type: %d sample_rate %d",
512 __func__, so_info->app_type_cfg.app_type, app_type_cfg->sample_rate);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700513 return;
514 }
515 }
516 ALOGW("%s: App type could not be selected. Falling back to default", __func__);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700517 app_type_cfg->app_type = platform_get_default_app_type(platform);
Amit Shekhar6f461b12014-08-01 14:52:58 -0700518 app_type_cfg->sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700519 app_type_cfg->bit_width = 16;
520}
521
522int audio_extn_utils_send_app_type_cfg(struct audio_usecase *usecase)
523{
524 char mixer_ctl_name[MAX_LENGTH_MIXER_CONTROL_IN_INT];
525 int app_type_cfg[MAX_LENGTH_MIXER_CONTROL_IN_INT], len = 0, rc;
Anish Kumarc8599f22014-07-20 09:36:07 -0700526 struct stream_out *out;
527 struct audio_device *adev;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700528 struct mixer_ctl *ctl;
529 int pcm_device_id, acdb_dev_id, snd_device = usecase->out_snd_device;
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530530 int32_t sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
Manish Dewanganf48adb42015-05-27 10:17:41 +0530531 char value[PROPERTY_VALUE_MAX] = {0};
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700532
533 ALOGV("%s", __func__);
534
535 if (usecase->type != PCM_PLAYBACK) {
536 ALOGV("%s: not a playback path, no need to cfg app type", __func__);
537 rc = 0;
538 goto exit_send_app_type_cfg;
539 }
540 if ((usecase->id != USECASE_AUDIO_PLAYBACK_DEEP_BUFFER) &&
541 (usecase->id != USECASE_AUDIO_PLAYBACK_LOW_LATENCY) &&
542 (usecase->id != USECASE_AUDIO_PLAYBACK_MULTI_CH) &&
Alexy Joseph2f89cfa2014-10-06 12:15:01 -0700543 (!is_offload_usecase(usecase->id))) {
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700544 ALOGV("%s: a playback path where app type cfg is not required %d", __func__, usecase->id);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700545 rc = 0;
546 goto exit_send_app_type_cfg;
547 }
Anish Kumarc8599f22014-07-20 09:36:07 -0700548 out = usecase->stream.out;
549 adev = out->dev;
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700550
551 snd_device = usecase->out_snd_device;
552
553 pcm_device_id = platform_get_pcm_device_id(out->usecase, PCM_PLAYBACK);
554
555 snprintf(mixer_ctl_name, sizeof(mixer_ctl_name),
556 "Audio Stream %d App Type Cfg", pcm_device_id);
557
558 ctl = mixer_get_ctl_by_name(adev->mixer, mixer_ctl_name);
559 if (!ctl) {
560 ALOGE("%s: Could not get ctl for mixer cmd - %s", __func__,
561 mixer_ctl_name);
562 rc = -EINVAL;
563 goto exit_send_app_type_cfg;
564 }
565 snd_device = (snd_device == SND_DEVICE_OUT_SPEAKER) ?
566 audio_extn_get_spkr_prot_snd_device(snd_device) : snd_device;
567 acdb_dev_id = platform_get_snd_device_acdb_id(snd_device);
568 if (acdb_dev_id < 0) {
569 ALOGE("%s: Couldn't get the acdb dev id", __func__);
570 rc = -EINVAL;
571 goto exit_send_app_type_cfg;
572 }
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530573
574 if ((24 == usecase->stream.out->bit_width) &&
Amit Shekhar1d896042014-10-03 13:16:09 -0700575 (usecase->stream.out->devices & AUDIO_DEVICE_OUT_SPEAKER)) {
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530576 sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
Preetam Singh Ranawat36f3d372015-06-18 22:59:53 +0530577 } else if ((snd_device != SND_DEVICE_OUT_HEADPHONES_44_1 &&
578 usecase->stream.out->sample_rate == OUTPUT_SAMPLING_RATE_44100) ||
579 (usecase->stream.out->sample_rate < OUTPUT_SAMPLING_RATE_44100)) {
580 sample_rate = DEFAULT_OUTPUT_SAMPLING_RATE;
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530581 } else {
582 sample_rate = out->app_type_cfg.sample_rate;
583 }
584
Manish Dewanganf48adb42015-05-27 10:17:41 +0530585 property_get("audio.playback.mch.downsample",value,"");
586 if (!strncmp("true", value, sizeof("true"))) {
587 if ((popcount(out->channel_mask) > 2) &&
588 (out->sample_rate > CODEC_BACKEND_DEFAULT_SAMPLE_RATE) &&
589 !(out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH))
590 sample_rate = CODEC_BACKEND_DEFAULT_SAMPLE_RATE;
591 }
592
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700593 app_type_cfg[len++] = out->app_type_cfg.app_type;
594 app_type_cfg[len++] = acdb_dev_id;
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700595 if (((out->format == AUDIO_FORMAT_E_AC3) ||
596 (out->format == AUDIO_FORMAT_E_AC3_JOC)) &&
597 (out->flags & AUDIO_OUTPUT_FLAG_COMPRESS_PASSTHROUGH))
598 app_type_cfg[len++] = sample_rate * 4;
599 else
600 app_type_cfg[len++] = sample_rate;
Preetam Singh Ranawat36f3d372015-06-18 22:59:53 +0530601
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700602 mixer_ctl_set_array(ctl, app_type_cfg, len);
Amit Shekhar278e3362014-09-08 14:08:19 -0700603 ALOGI("%s app_type %d, acdb_dev_id %d, sample_rate %d",
Preetam Singh Ranawata4a37d82014-09-25 16:56:38 +0530604 __func__, out->app_type_cfg.app_type, acdb_dev_id, sample_rate);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700605 rc = 0;
606exit_send_app_type_cfg:
607 return rc;
608}
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700609
610void audio_extn_utils_send_audio_calibration(struct audio_device *adev,
611 struct audio_usecase *usecase)
612{
613 int type = usecase->type;
614
615 if (type == PCM_PLAYBACK) {
616 struct stream_out *out = usecase->stream.out;
617 int snd_device = usecase->out_snd_device;
618 snd_device = (snd_device == SND_DEVICE_OUT_SPEAKER) ?
619 audio_extn_get_spkr_prot_snd_device(snd_device) : snd_device;
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530620 platform_send_audio_calibration(adev->platform, usecase,
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700621 out->app_type_cfg.app_type,
622 out->app_type_cfg.sample_rate);
623 }
624 if ((type == PCM_HFP_CALL) || (type == PCM_CAPTURE)) {
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530625 /* when app type is default. the sample rate is not used to send cal */
626 platform_send_audio_calibration(adev->platform, usecase,
627 platform_get_default_app_type(adev->platform),
628 48000);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700629 }
630}
631
Ben Rombergera04fabc2014-11-14 12:16:03 -0800632// Base64 Encode and Decode
633// Not all features supported. This must be used only with following conditions.
634// Decode Modes: Support with and without padding
635// CRLF not handling. So no CRLF in string to decode.
636// Encode Modes: Supports only padding
637int b64decode(char *inp, int ilen, uint8_t* outp)
638{
639 int i, j, k, ii, num;
640 int rem, pcnt;
641 uint32_t res=0;
642 uint8_t getIndex[MAX_BASEINDEX_LEN];
643 uint8_t tmp, cflag;
644
645 if(inp == NULL || outp == NULL || ilen <= 0) {
646 ALOGE("[%s] received NULL pointer or zero length",__func__);
647 return -1;
648 }
649
650 memset(getIndex, MAX_BASEINDEX_LEN-1, sizeof(getIndex));
651 for(i=0;i<BASE_TABLE_SIZE;i++) {
652 getIndex[(uint8_t)bTable[i]] = (uint8_t)i;
653 }
654 getIndex[(uint8_t)'=']=0;
655
656 j=0;k=0;
657 num = ilen/4;
658 rem = ilen%4;
659 if(rem==0)
660 num = num-1;
661 cflag=0;
662 for(i=0; i<num; i++) {
663 res=0;
664 for(ii=0;ii<4;ii++) {
665 res = res << 6;
666 tmp = getIndex[(uint8_t)inp[j++]];
667 res = res | tmp;
668 cflag = cflag | tmp;
669 }
670 outp[k++] = (res >> 16)&0xFF;
671 outp[k++] = (res >> 8)&0xFF;
672 outp[k++] = res & 0xFF;
673 }
674
675 // Handle last bytes special
676 pcnt=0;
677 if(rem == 0) {
678 //With padding or full data
679 res = 0;
680 for(ii=0;ii<4;ii++) {
681 if(inp[j] == '=')
682 pcnt++;
683 res = res << 6;
684 tmp = getIndex[(uint8_t)inp[j++]];
685 res = res | tmp;
686 cflag = cflag | tmp;
687 }
688 outp[k++] = res >> 16;
689 if(pcnt == 2)
690 goto done;
691 outp[k++] = (res>>8)&0xFF;
692 if(pcnt == 1)
693 goto done;
694 outp[k++] = res&0xFF;
695 } else {
696 //without padding
697 res = 0;
698 for(i=0;i<rem;i++) {
699 res = res << 6;
700 tmp = getIndex[(uint8_t)inp[j++]];
701 res = res | tmp;
702 cflag = cflag | tmp;
703 }
704 for(i=rem;i<4;i++) {
705 res = res << 6;
706 pcnt++;
707 }
708 outp[k++] = res >> 16;
709 if(pcnt == 2)
710 goto done;
711 outp[k++] = (res>>8)&0xFF;
712 if(pcnt == 1)
713 goto done;
714 outp[k++] = res&0xFF;
715 }
716done:
717 if(cflag == 0xFF) {
718 ALOGE("[%s] base64 decode failed. Invalid character found %s",
719 __func__, inp);
720 return 0;
721 }
722 return k;
723}
724
725int b64encode(uint8_t *inp, int ilen, char* outp)
726{
727 int i,j,k, num;
728 int rem=0;
729 uint32_t res=0;
730
731 if(inp == NULL || outp == NULL || ilen<=0) {
732 ALOGE("[%s] received NULL pointer or zero input length",__func__);
733 return -1;
734 }
735
736 num = ilen/3;
737 rem = ilen%3;
738 j=0;k=0;
739 for(i=0; i<num; i++) {
740 //prepare index
741 res = inp[j++]<<16;
742 res = res | inp[j++]<<8;
743 res = res | inp[j++];
744 //get output map from index
745 outp[k++] = (char) bTable[(res>>18)&0x3F];
746 outp[k++] = (char) bTable[(res>>12)&0x3F];
747 outp[k++] = (char) bTable[(res>>6)&0x3F];
748 outp[k++] = (char) bTable[res&0x3F];
749 }
750
751 switch(rem) {
752 case 1:
753 res = inp[j++]<<16;
754 outp[k++] = (char) bTable[res>>18];
755 outp[k++] = (char) bTable[(res>>12)&0x3F];
756 //outp[k++] = '=';
757 //outp[k++] = '=';
758 break;
759 case 2:
760 res = inp[j++]<<16;
761 res = res | inp[j++]<<8;
762 outp[k++] = (char) bTable[res>>18];
763 outp[k++] = (char) bTable[(res>>12)&0x3F];
764 outp[k++] = (char) bTable[(res>>6)&0x3F];
765 //outp[k++] = '=';
766 break;
767 default:
768 break;
769 }
770done:
771 outp[k] = '\0';
772 return k;
773}