blob: 36065c9231f6ce7d36df43366261bc59b044adea [file] [log] [blame]
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301/*
Aalique Grahame22e49102018-12-18 14:23:57 -08002* Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
Naresh Tanniru9d027a62015-03-13 01:32:10 +05303*
4* Redistribution and use in source and binary forms, with or without
5* modification, are permitted provided that the following conditions are
6* met:
7* * Redistributions of source code must retain the above copyright
8* notice, this list of conditions and the following disclaimer.
9* * Redistributions in binary form must reproduce the above
10* copyright notice, this list of conditions and the following
11* disclaimer in the documentation and/or other materials provided
12* with the distribution.
13* * Neither the name of The Linux Foundation nor the names of its
14* contributors may be used to endorse or promote products derived
15* from this software without specific prior written permission.
16*
17* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*/
Aalique Grahame22e49102018-12-18 14:23:57 -080029#define LOG_TAG "a2dp_offload"
Naresh Tanniru9d027a62015-03-13 01:32:10 +053030/*#define LOG_NDEBUG 0*/
31#define LOG_NDDEBUG 0
32#include <errno.h>
Aalique Grahame22e49102018-12-18 14:23:57 -080033#include <log/log.h>
Naresh Tanniru9d027a62015-03-13 01:32:10 +053034#include <dlfcn.h>
Aalique Grahame22e49102018-12-18 14:23:57 -080035#include <pthread.h>
Naresh Tanniru9d027a62015-03-13 01:32:10 +053036#include "audio_hw.h"
37#include "platform.h"
38#include "platform_api.h"
Manish Dewangan6a252632017-12-04 17:27:44 +053039#include "audio_extn.h"
Naresh Tanniru9d027a62015-03-13 01:32:10 +053040#include <stdlib.h>
41#include <cutils/str_parms.h>
42#include <hardware/audio.h>
43#include <hardware/hardware.h>
44#include <cutils/properties.h>
45
Revathi Uddaraju1eac8b02017-05-18 17:13:33 +053046#ifdef DYNAMIC_LOG_ENABLED
47#include <log_xml_parser.h>
48#define LOG_MASK HAL_MOD_FILE_A2DP
49#include <log_utils.h>
50#endif
51
Naresh Tanniru9d027a62015-03-13 01:32:10 +053052#define AUDIO_PARAMETER_A2DP_STARTED "A2dpStarted"
Naresh Tanniru66cf06c2019-03-20 19:30:37 +053053#define BT_IPC_SOURCE_LIB_NAME "btaudio_offload_if.so"
Florian Pfister1a84f312018-07-19 14:38:18 +020054#define BT_IPC_SINK_LIB_NAME "libbthost_if_sink.so"
55#define MEDIA_FMT_NONE 0
56#define MEDIA_FMT_AAC 0x00010DA6
57#define MEDIA_FMT_APTX 0x000131ff
58#define MEDIA_FMT_APTX_HD 0x00013200
Surendar Karka2febd452018-12-13 17:56:43 +053059#define MEDIA_FMT_APTX_AD 0x00013204
Florian Pfister1a84f312018-07-19 14:38:18 +020060#define MEDIA_FMT_SBC 0x00010BF2
61#define MEDIA_FMT_CELT 0x00013221
62#define MEDIA_FMT_LDAC 0x00013224
63#define MEDIA_FMT_MP3 0x00010BE9
64#define MEDIA_FMT_APTX_ADAPTIVE 0x00013204
Zhou Song12c29502019-03-16 10:37:18 +080065#define MEDIA_FMT_APTX_AD_SPEECH 0x00013208
Naresh Tanniru9d027a62015-03-13 01:32:10 +053066#define MEDIA_FMT_AAC_AOT_LC 2
67#define MEDIA_FMT_AAC_AOT_SBR 5
68#define MEDIA_FMT_AAC_AOT_PS 29
Naresh Tanniru9d027a62015-03-13 01:32:10 +053069#define PCM_CHANNEL_L 1
70#define PCM_CHANNEL_R 2
71#define PCM_CHANNEL_C 3
72#define MEDIA_FMT_SBC_CHANNEL_MODE_MONO 1
73#define MEDIA_FMT_SBC_CHANNEL_MODE_STEREO 2
74#define MEDIA_FMT_SBC_CHANNEL_MODE_DUAL_MONO 8
75#define MEDIA_FMT_SBC_CHANNEL_MODE_JOINT_STEREO 9
76#define MEDIA_FMT_SBC_ALLOCATION_METHOD_LOUDNESS 0
77#define MEDIA_FMT_SBC_ALLOCATION_METHOD_SNR 1
Surendar Karka2febd452018-12-13 17:56:43 +053078#define MIXER_ENC_CONFIG_BLOCK "SLIM_7_RX Encoder Config"
79#define MIXER_SOURCE_DEC_CONFIG_BLOCK "SLIM_7_TX Decoder Config"
80#define MIXER_SINK_DEC_CONFIG_BLOCK "SLIM_9_TX Decoder Config"
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +053081#define MIXER_ENC_BIT_FORMAT "AFE Input Bit Format"
Florian Pfister1a84f312018-07-19 14:38:18 +020082#define MIXER_DEC_BIT_FORMAT "AFE Output Bit Format"
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +053083#define MIXER_SCRAMBLER_MODE "AFE Scrambler Mode"
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -080084#define MIXER_SAMPLE_RATE_RX "BT SampleRate RX"
Surendar Karka2febd452018-12-13 17:56:43 +053085#define MIXER_SOURCE_SAMPLE_RATE_TX "BT SampleRate TX"
Samyak Jainf69e9ef2018-06-12 12:26:37 +053086#define MIXER_SAMPLE_RATE_DEFAULT "BT SampleRate"
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +053087#define MIXER_AFE_IN_CHANNELS "AFE Input Channels"
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -080088#define MIXER_ABR_TX_FEEDBACK_PATH "A2DP_SLIM7_UL_HL Switch"
Zhou Song12c29502019-03-16 10:37:18 +080089#define MIXER_ABR_RX_FEEDBACK_PATH "SCO_SLIM7_DL_HL Switch"
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -080090#define MIXER_SET_FEEDBACK_CHANNEL "BT set feedback channel"
Surendar Karka2febd452018-12-13 17:56:43 +053091#define MIXER_SINK_SAMPLE_RATE "BT_TX SampleRate"
Florian Pfister1a84f312018-07-19 14:38:18 +020092#define MIXER_AFE_SINK_CHANNELS "AFE Output Channels"
Naresh Tanniru9d027a62015-03-13 01:32:10 +053093#define MIXER_ENC_FMT_SBC "SBC"
94#define MIXER_ENC_FMT_AAC "AAC"
95#define MIXER_ENC_FMT_APTX "APTX"
Manisha Agarwala51768b2018-11-01 16:30:52 +053096#define MIXER_FMT_TWS_CHANNEL_MODE "TWS Channel Mode"
Naresh Tanniru9d027a62015-03-13 01:32:10 +053097#define MIXER_ENC_FMT_APTXHD "APTXHD"
Aalique Grahame22e49102018-12-18 14:23:57 -080098#define MIXER_END_FMT_LDAC "LDAC"
Naresh Tanniru9d027a62015-03-13 01:32:10 +053099#define MIXER_ENC_FMT_NONE "NONE"
yidongh0515e042017-07-06 15:00:34 +0800100#define ENCODER_LATENCY_SBC 10
101#define ENCODER_LATENCY_APTX 40
102#define ENCODER_LATENCY_APTX_HD 20
103#define ENCODER_LATENCY_AAC 70
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530104//To Do: Fine Tune Encoder CELT/LDAC latency.
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530105#define ENCODER_LATENCY_CELT 40
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530106#define ENCODER_LATENCY_LDAC 40
Aalique Grahame22e49102018-12-18 14:23:57 -0800107#define ENCODER_LATENCY_PCM 50
yidongh0515e042017-07-06 15:00:34 +0800108#define DEFAULT_SINK_LATENCY_SBC 140
109#define DEFAULT_SINK_LATENCY_APTX 160
110#define DEFAULT_SINK_LATENCY_APTX_HD 180
111#define DEFAULT_SINK_LATENCY_AAC 180
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530112//To Do: Fine Tune Default CELT/LDAC Latency.
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530113#define DEFAULT_SINK_LATENCY_CELT 180
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530114#define DEFAULT_SINK_LATENCY_LDAC 180
Aalique Grahame22e49102018-12-18 14:23:57 -0800115#define DEFAULT_SINK_LATENCY_PCM 140
116
117#define SYSPROP_A2DP_OFFLOAD_SUPPORTED "ro.bluetooth.a2dp_offload.supported"
118#define SYSPROP_A2DP_OFFLOAD_DISABLED "persist.bluetooth.a2dp_offload.disabled"
119#define SYSPROP_A2DP_CODEC_LATENCIES "vendor.audio.a2dp.codec.latency"
120
121// Default encoder bit width
122#define DEFAULT_ENCODER_BIT_FORMAT 16
123
124// Default encoder latency
125#define DEFAULT_ENCODER_LATENCY 200
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530126
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800127// Slimbus Tx sample rate for ABR feedback channel
128#define ABR_TX_SAMPLE_RATE "KHZ_8"
129
Zhou Song12c29502019-03-16 10:37:18 +0800130// Slimbus Tx sample rate for APTX AD SPEECH
131#define SPEECH_TX_SAMPLE_RATE "KHZ_96"
132
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800133// Purpose ID for Inter Module Communication (IMC) in AFE
134#define IMC_PURPOSE_ID_BT_INFO 0x000132E2
135
136// Maximum quality levels for ABR
137#define MAX_ABR_QUALITY_LEVELS 5
138
139// Instance identifier for A2DP
140#define MAX_INSTANCE_ID (UINT32_MAX / 2)
141
Zhou Song12c29502019-03-16 10:37:18 +0800142// Instance identifier for SWB
143#define APTX_AD_SPEECH_INSTANCE_ID 37
144
145#define SAMPLING_RATE_96K 96000
Sharad Sangle95d451b2018-06-19 12:24:20 +0530146#define SAMPLING_RATE_48K 48000
147#define SAMPLING_RATE_441K 44100
Zhou Song12c29502019-03-16 10:37:18 +0800148#define SAMPLING_RATE_32K 32000
Sharad Sangle95d451b2018-06-19 12:24:20 +0530149#define CH_STEREO 2
150#define CH_MONO 1
Florian Pfister1a84f312018-07-19 14:38:18 +0200151#define SOURCE 0
152#define SINK 1
Arun Mirpuri5dc77802019-02-26 16:32:42 -0800153#define UNINITIALIZED -1
154
155#ifdef __LP64__
156#define VNDK_FWK_LIB_PATH "/vendor/lib64/libqti_vndfwk_detect.so"
157#else
158#define VNDK_FWK_LIB_PATH "/vendor/lib/libqti_vndfwk_detect.so"
159#endif
160
161static void *vndk_fwk_lib_handle = NULL;
162static int is_running_with_enhanced_fwk = UNINITIALIZED;
163
164typedef int (*vndk_fwk_isVendorEnhancedFwk_t)();
165static vndk_fwk_isVendorEnhancedFwk_t vndk_fwk_isVendorEnhancedFwk;
Florian Pfister1a84f312018-07-19 14:38:18 +0200166
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530167/*
168 * Below enum values are extended from audio_base.h to
Florian Pfister1a84f312018-07-19 14:38:18 +0200169 * to keep encoder and decoder type local to bthost_ipc
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530170 * and audio_hal as these are intended only for handshake
171 * between IPC lib and Audio HAL.
172 */
173typedef enum {
Florian Pfister1a84f312018-07-19 14:38:18 +0200174 CODEC_TYPE_INVALID = AUDIO_FORMAT_INVALID, // 0xFFFFFFFFUL
175 CODEC_TYPE_AAC = AUDIO_FORMAT_AAC, // 0x04000000UL
176 CODEC_TYPE_SBC = AUDIO_FORMAT_SBC, // 0x1F000000UL
177 CODEC_TYPE_APTX = AUDIO_FORMAT_APTX, // 0x20000000UL
178 CODEC_TYPE_APTX_HD = AUDIO_FORMAT_APTX_HD, // 0x21000000UL
Manish Dewangan6a252632017-12-04 17:27:44 +0530179#ifndef LINUX_ENABLED
Florian Pfister1a84f312018-07-19 14:38:18 +0200180 CODEC_TYPE_APTX_DUAL_MONO = 570425344u, // 0x22000000UL
Manish Dewangan6a252632017-12-04 17:27:44 +0530181#endif
Florian Pfister1a84f312018-07-19 14:38:18 +0200182 CODEC_TYPE_LDAC = AUDIO_FORMAT_LDAC, // 0x23000000UL
183 CODEC_TYPE_CELT = 603979776u, // 0x24000000UL
Surendar Karka2febd452018-12-13 17:56:43 +0530184 CODEC_TYPE_APTX_AD = 620756992u, // 0x25000000UL
Zhou Song12c29502019-03-16 10:37:18 +0800185 CODEC_TYPE_APTX_AD_SPEECH = 637534208u, //0x26000000UL
Aalique Grahame22e49102018-12-18 14:23:57 -0800186 CODEC_TYPE_PCM = AUDIO_FORMAT_PCM_16_BIT, // 0x1u
Florian Pfister1a84f312018-07-19 14:38:18 +0200187}codec_t;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530188
Sharad Sangle95d451b2018-06-19 12:24:20 +0530189/*
190 * enums which describes the APTX Adaptive
191 * channel mode, these values are used by encoder
192 */
193 typedef enum {
194 APTX_AD_CHANNEL_UNCHANGED = -1,
195 APTX_AD_CHANNEL_JOINT_STEREO = 0, // default
196 APTX_AD_CHANNEL_MONO = 1,
197 APTX_AD_CHANNEL_DUAL_MONO = 2,
198 APTX_AD_CHANNEL_STEREO_TWS = 4,
199 APTX_AD_CHANNEL_EARBUD = 8,
200} enc_aptx_ad_channel_mode;
201
202/*
203 * enums which describes the APTX Adaptive
204 * sampling frequency, these values are used
205 * by encoder
206 */
207typedef enum {
208 APTX_AD_SR_UNCHANGED = 0x0,
209 APTX_AD_48 = 0x1, // 48 KHz default
210 APTX_AD_44_1 = 0x2, // 44.1kHz
211} enc_aptx_ad_s_rate;
212
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530213typedef void (*bt_audio_pre_init_t)(void);
Florian Pfister1a84f312018-07-19 14:38:18 +0200214typedef int (*audio_source_open_t)(void);
215typedef int (*audio_source_close_t)(void);
216typedef int (*audio_source_start_t)(void);
217typedef int (*audio_source_stop_t)(void);
218typedef int (*audio_source_suspend_t)(void);
219typedef void (*audio_source_handoff_triggered_t)(void);
220typedef void (*clear_source_a2dpsuspend_flag_t)(void);
221typedef void * (*audio_get_enc_config_t)(uint8_t *multicast_status,
222 uint8_t *num_dev, codec_t *codec_type);
223typedef int (*audio_source_check_a2dp_ready_t)(void);
224typedef int (*audio_is_source_scrambling_enabled_t)(void);
Manisha Agarwala51768b2018-11-01 16:30:52 +0530225typedef bool (*audio_is_tws_mono_mode_enable_t)(void);
Florian Pfister1a84f312018-07-19 14:38:18 +0200226typedef int (*audio_sink_start_t)(void);
227typedef int (*audio_sink_stop_t)(void);
228typedef void * (*audio_get_dec_config_t)(codec_t *codec_type);
229typedef void * (*audio_sink_session_setup_complete_t)(uint64_t system_latency);
230typedef int (*audio_sink_check_a2dp_ready_t)(void);
231typedef uint16_t (*audio_sink_get_a2dp_latency_t)(void);
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530232
233enum A2DP_STATE {
234 A2DP_STATE_CONNECTED,
235 A2DP_STATE_STARTED,
236 A2DP_STATE_STOPPED,
237 A2DP_STATE_DISCONNECTED,
238};
239
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800240typedef enum {
241 IMC_TRANSMIT,
242 IMC_RECEIVE,
243} imc_direction_t;
244
245typedef enum {
246 IMC_DISABLE,
247 IMC_ENABLE,
248} imc_status_t;
249
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -0700250typedef enum {
Zhou Song12c29502019-03-16 10:37:18 +0800251 SWAP_DISABLE,
252 SWAP_ENABLE,
253} swap_status_t;
254
255typedef enum {
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -0700256 MTU_SIZE,
257 PEAK_BIT_RATE,
258} frame_control_type_t;
259
Arun Mirpurib1bec9c2019-01-29 16:42:45 -0800260// --- external function dependency ---
261fp_platform_get_pcm_device_id_t fp_platform_get_pcm_device_id;
262fp_check_a2dp_restore_t fp_check_a2dp_restore;
263
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800264/* PCM config for ABR Feedback hostless front end */
265static struct pcm_config pcm_config_abr = {
266 .channels = 1,
267 .rate = 8000,
268 .period_size = 240,
269 .period_count = 2,
270 .format = PCM_FORMAT_S16_LE,
271 .start_threshold = 0,
272 .stop_threshold = INT_MAX,
273 .avail_min = 0,
274};
275
276/* Adaptive bitrate config for A2DP codecs */
277struct a2dp_abr_config {
278 /* Flag to denote whether Adaptive bitrate is enabled for codec */
279 bool is_abr_enabled;
280 /* Flag to denote whether front end has been opened for ABR */
281 bool abr_started;
282 /* ABR Tx path pcm handle */
283 struct pcm *abr_tx_handle;
Zhou Song12c29502019-03-16 10:37:18 +0800284 /* ABR Rx path pcm handle */
285 struct pcm *abr_rx_handle;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800286 /* ABR Inter Module Communication (IMC) instance ID */
287 uint32_t imc_instance;
288};
289
290static uint32_t instance_id = MAX_INSTANCE_ID;
291
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530292/* structure used to update a2dp state machine
293 * to communicate IPC library
294 * to store DSP encoder configuration information
295 */
296struct a2dp_data {
297 struct audio_device *adev;
Florian Pfister1a84f312018-07-19 14:38:18 +0200298 void *bt_lib_source_handle;
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530299 bt_audio_pre_init_t bt_audio_pre_init;
Florian Pfister1a84f312018-07-19 14:38:18 +0200300 audio_source_open_t audio_source_open;
301 audio_source_close_t audio_source_close;
302 audio_source_start_t audio_source_start;
303 audio_source_stop_t audio_source_stop;
304 audio_source_suspend_t audio_source_suspend;
305 audio_source_handoff_triggered_t audio_source_handoff_triggered;
306 clear_source_a2dpsuspend_flag_t clear_source_a2dpsuspend_flag;
307 audio_get_enc_config_t audio_get_enc_config;
308 audio_source_check_a2dp_ready_t audio_source_check_a2dp_ready;
Manisha Agarwala51768b2018-11-01 16:30:52 +0530309 audio_is_tws_mono_mode_enable_t audio_is_tws_mono_mode_enable;
Florian Pfister1a84f312018-07-19 14:38:18 +0200310 audio_is_source_scrambling_enabled_t audio_is_source_scrambling_enabled;
311 enum A2DP_STATE bt_state_source;
312 codec_t bt_encoder_format;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +0530313 uint32_t enc_sampling_rate;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +0530314 uint32_t enc_channels;
Florian Pfister1a84f312018-07-19 14:38:18 +0200315 bool a2dp_source_started;
316 bool a2dp_source_suspended;
317 int a2dp_source_total_active_session_requests;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530318 bool is_a2dp_offload_supported;
319 bool is_handoff_in_progress;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700320 bool is_aptx_dual_mono_supported;
Manisha Agarwala51768b2018-11-01 16:30:52 +0530321 /* Mono Mode support for TWS+ */
322 bool is_tws_mono_mode_on;
Sharad Sangle95d451b2018-06-19 12:24:20 +0530323 bool is_aptx_adaptive;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800324 /* Adaptive bitrate config for A2DP codecs */
325 struct a2dp_abr_config abr_config;
Florian Pfister1a84f312018-07-19 14:38:18 +0200326
327 void *bt_lib_sink_handle;
328 audio_sink_start_t audio_sink_start;
329 audio_sink_stop_t audio_sink_stop;
330 audio_get_dec_config_t audio_get_dec_config;
331 audio_sink_session_setup_complete_t audio_sink_session_setup_complete;
332 audio_sink_check_a2dp_ready_t audio_sink_check_a2dp_ready;
333 audio_sink_get_a2dp_latency_t audio_sink_get_a2dp_latency;
334 enum A2DP_STATE bt_state_sink;
335 codec_t bt_decoder_format;
336 uint32_t dec_sampling_rate;
337 uint32_t dec_channels;
338 bool a2dp_sink_started;
339 int a2dp_sink_total_active_session_requests;
Zhou Song12c29502019-03-16 10:37:18 +0800340 bool swb_configured;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530341};
342
343struct a2dp_data a2dp;
344
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800345/* Adaptive bitrate (ABR) is supported by certain Bluetooth codecs.
346 * Structures sent to configure DSP for ABR are defined below.
347 * This data helps DSP configure feedback path (BTSoC to LPASS)
348 * for link quality levels and mapping quality levels to codec
349 * specific bitrate.
350 */
351
352/* Key value pair for link quality level to bitrate mapping. */
353struct bit_rate_level_map_t {
354 uint32_t link_quality_level;
355 uint32_t bitrate;
356};
357
358/* Link quality level to bitrate mapping info sent to DSP. */
359struct quality_level_to_bitrate_info {
360 /* Number of quality levels being mapped.
361 * This will be equal to the size of mapping table.
362 */
363 uint32_t num_levels;
364 /* Quality level to bitrate mapping table */
365 struct bit_rate_level_map_t bit_rate_level_map[MAX_ABR_QUALITY_LEVELS];
366};
367
368/* Structure to set up Inter Module Communication (IMC) between
369 * AFE Decoder and Encoder.
370 */
371struct imc_dec_enc_info {
372 /* Decoder to encoder communication direction.
373 * Transmit = 0 / Receive = 1
374 */
375 uint32_t direction;
376 /* Enable / disable IMC between decoder and encoder */
377 uint32_t enable;
378 /* Purpose of IMC being set up between decoder and encoder.
379 * IMC_PURPOSE_ID_BT_INFO defined for link quality feedback
380 * is the default value to be sent as purpose.
381 */
382 uint32_t purpose;
383 /* Unique communication instance ID.
384 * purpose and comm_instance together form the actual key
385 * used in IMC registration, which must be the same for
386 * encoder and decoder for which IMC is being set up.
387 */
388 uint32_t comm_instance;
389};
390
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -0700391/* Structure to control frame size of AAC encoded frames. */
392struct aac_frame_size_control_t {
393 /* Type of frame size control: MTU_SIZE / PEAK_BIT_RATE*/
394 uint32_t ctl_type;
395 /* Control value
396 * MTU_SIZE: MTU size in bytes
397 * PEAK_BIT_RATE: Peak bitrate in bits per second.
398 */
399 uint32_t ctl_value;
400};
401
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800402/* Structure used for ABR config of AFE encoder and decoder. */
403struct abr_enc_cfg_t {
404 /* Link quality level to bitrate mapping info sent to DSP. */
405 struct quality_level_to_bitrate_info mapping_info;
406 /* Information to set up IMC between decoder and encoder */
407 struct imc_dec_enc_info imc_info;
Aniket Kumar Lata8c884eb2018-08-06 15:30:50 -0700408 /* Flag to indicate whether ABR is enabled */
409 bool is_abr_enabled;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800410} __attribute__ ((packed));
411
412/* Structure to send configuration for decoder introduced
413 * on AFE Tx path for ABR link quality feedback to BT encoder.
414 */
415struct abr_dec_cfg_t {
416 /* Decoder media format */
417 uint32_t dec_format;
418 /* Information to set up IMC between decoder and encoder */
419 struct imc_dec_enc_info imc_info;
420} __attribute__ ((packed));
421
Zhou Song12c29502019-03-16 10:37:18 +0800422struct aptx_ad_speech_mode_cfg_t
423{
424 uint32_t mode;
425 uint32_t swapping;
426} __attribute__ ((packed));
427
428/* Structure for SWB voice dec config */
429struct aptx_ad_speech_dec_cfg_t {
430 struct abr_dec_cfg_t abr_cfg;
431 struct aptx_ad_speech_mode_cfg_t speech_mode;
432} __attribute__ ((packed));
433
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530434/* START of DSP configurable structures
435 * These values should match with DSP interface defintion
436 */
437
438/* AAC encoder configuration structure. */
439typedef struct aac_enc_cfg_t aac_enc_cfg_t;
440
441/* supported enc_mode are AAC_LC, AAC_SBR, AAC_PS
442 * supported aac_fmt_flag are ADTS/RAW
443 * supported channel_cfg are Native mode, Mono , Stereo
444 */
445struct aac_enc_cfg_t {
446 uint32_t enc_format;
447 uint32_t bit_rate;
448 uint32_t enc_mode;
449 uint16_t aac_fmt_flag;
Naresh Tannirua42d0bd2016-09-21 15:30:46 +0530450 uint16_t channel_cfg;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530451 uint32_t sample_rate;
Manish Dewangan6a252632017-12-04 17:27:44 +0530452} __attribute__ ((packed));
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530453
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -0700454struct aac_enc_cfg_v2_t {
455 struct aac_enc_cfg_t aac_enc_cfg;
456 struct aac_frame_size_control_t frame_ctl;
457} __attribute__ ((packed));
458
Surendar Karkabbb3c822018-11-12 13:00:38 +0530459typedef struct audio_aac_decoder_config_t audio_aac_decoder_config_t;
460struct audio_aac_decoder_config_t {
Florian Pfister1a84f312018-07-19 14:38:18 +0200461 uint16_t aac_fmt_flag; /* LATM*/
462 uint16_t audio_object_type; /* LC */
463 uint16_t channels; /* Stereo */
464 uint16_t total_size_of_pce_bits; /* 0 - only for channel conf PCE */
465 uint32_t sampling_rate; /* 8k, 11.025k, 12k, 16k, 22.05k, 24k, 32k,
466 44.1k, 48k, 64k, 88.2k, 96k */
Surendar Karkabbb3c822018-11-12 13:00:38 +0530467} __attribute__ ((packed));
Florian Pfister1a84f312018-07-19 14:38:18 +0200468
Surendar Karkabbb3c822018-11-12 13:00:38 +0530469typedef struct audio_sbc_decoder_config_t audio_sbc_decoder_config_t;
470struct audio_sbc_decoder_config_t {
Florian Pfister1a84f312018-07-19 14:38:18 +0200471 uint16_t channels; /* Mono, Stereo */
472 uint32_t sampling_rate; /* 8k, 11.025k, 12k, 16k, 22.05k, 24k, 32k,
473 44.1k, 48k, 64k, 88.2k, 96k */
Surendar Karkabbb3c822018-11-12 13:00:38 +0530474} __attribute__ ((packed));
Florian Pfister1a84f312018-07-19 14:38:18 +0200475
476/* AAC decoder configuration structure. */
477typedef struct aac_dec_cfg_t aac_dec_cfg_t;
478struct aac_dec_cfg_t {
479 uint32_t dec_format;
480 audio_aac_decoder_config_t data;
481} __attribute__ ((packed));
482
483/* SBC decoder configuration structure. */
484typedef struct sbc_dec_cfg_t sbc_dec_cfg_t;
485struct sbc_dec_cfg_t {
486 uint32_t dec_format;
487 audio_sbc_decoder_config_t data;
488} __attribute__ ((packed));
489
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530490/* SBC encoder configuration structure. */
491typedef struct sbc_enc_cfg_t sbc_enc_cfg_t;
492
493/* supported num_subbands are 4/8
494 * supported blk_len are 4, 8, 12, 16
495 * supported channel_mode are MONO, STEREO, DUAL_MONO, JOINT_STEREO
496 * supported alloc_method are LOUNDNESS/SNR
497 * supported bit_rate for mono channel is max 320kbps
498 * supported bit rate for stereo channel is max 512 kbps
499 */
500struct sbc_enc_cfg_t{
501 uint32_t enc_format;
502 uint32_t num_subbands;
503 uint32_t blk_len;
504 uint32_t channel_mode;
505 uint32_t alloc_method;
506 uint32_t bit_rate;
507 uint32_t sample_rate;
Manish Dewangan6a252632017-12-04 17:27:44 +0530508} __attribute__ ((packed));
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530509
510
511/* supported num_channels are Mono/Stereo
512 * supported channel_mapping for mono is CHANNEL_C
513 * supported channel mapping for stereo is CHANNEL_L and CHANNEL_R
514 * custom size and reserved are not used(for future enhancement)
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700515 */
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530516struct custom_enc_cfg_t
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530517{
518 uint32_t enc_format;
519 uint32_t sample_rate;
520 uint16_t num_channels;
521 uint16_t reserved;
522 uint8_t channel_mapping[8];
523 uint32_t custom_size;
Manish Dewangan6a252632017-12-04 17:27:44 +0530524} __attribute__ ((packed));
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530525
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530526struct celt_specific_enc_cfg_t
527{
528 uint32_t bit_rate;
529 uint16_t frame_size;
530 uint16_t complexity;
531 uint16_t prediction_mode;
532 uint16_t vbr_flag;
Manish Dewangan6a252632017-12-04 17:27:44 +0530533} __attribute__ ((packed));
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530534
535struct celt_enc_cfg_t
536{
537 struct custom_enc_cfg_t custom_cfg;
538 struct celt_specific_enc_cfg_t celt_cfg;
Manish Dewangan6a252632017-12-04 17:27:44 +0530539} __attribute__ ((packed));
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700540
541/* sync_mode introduced with APTX V2 libraries
542 * sync mode: 0x0 = stereo sync mode
543 * 0x01 = dual mono sync mode
544 * 0x02 = dual mono with no sync on either L or R codewords
545 */
546struct aptx_v2_enc_cfg_ext_t
547{
548 uint32_t sync_mode;
Manish Dewangan6a252632017-12-04 17:27:44 +0530549} __attribute__ ((packed));
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700550
551/* APTX struct for combining custom enc and V2 fields */
552struct aptx_enc_cfg_t
553{
554 struct custom_enc_cfg_t custom_cfg;
555 struct aptx_v2_enc_cfg_ext_t aptx_v2_cfg;
Manish Dewangan6a252632017-12-04 17:27:44 +0530556} __attribute__ ((packed));
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700557
Sharad Sangle95d451b2018-06-19 12:24:20 +0530558/* APTX AD structure */
559struct aptx_ad_enc_cfg_ext_t
560{
561 uint32_t sampling_freq;
562 uint32_t mtu;
563 uint32_t channel_mode;
564 uint32_t min_sink_modeA;
565 uint32_t max_sink_modeA;
566 uint32_t min_sink_modeB;
567 uint32_t max_sink_modeB;
568 uint32_t min_sink_modeC;
569 uint32_t max_sink_modeC;
Sharad Sanglee378afe2018-09-03 20:04:17 +0530570 uint32_t mode;
Sharad Sangle95d451b2018-06-19 12:24:20 +0530571} __attribute__ ((packed));
572
573struct aptx_ad_enc_cfg_t
574{
575 struct custom_enc_cfg_t custom_cfg;
576 struct aptx_ad_enc_cfg_ext_t aptx_ad_cfg;
577 struct abr_enc_cfg_t abr_cfg;
578} __attribute__ ((packed));
579
Zhou Song12c29502019-03-16 10:37:18 +0800580/* APTX AD SPEECH structure */
581struct aptx_ad_speech_enc_cfg_t
582{
583 struct custom_enc_cfg_t custom_cfg;
584 /* Information to set up IMC between decoder and encoder */
585 struct imc_dec_enc_info imc_info;
586 struct aptx_ad_speech_mode_cfg_t speech_mode;
587} __attribute__ ((packed));
588
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530589struct ldac_specific_enc_cfg_t
590{
591 uint32_t bit_rate;
592 uint16_t channel_mode;
593 uint16_t mtu;
Manish Dewangan6a252632017-12-04 17:27:44 +0530594} __attribute__ ((packed));
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530595
596struct ldac_enc_cfg_t
597{
598 struct custom_enc_cfg_t custom_cfg;
599 struct ldac_specific_enc_cfg_t ldac_cfg;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800600 struct abr_enc_cfg_t abr_cfg;
Manish Dewangan6a252632017-12-04 17:27:44 +0530601} __attribute__ ((packed));
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530602
Sachin Mohan Gadag1657c052017-09-13 16:00:27 +0530603/* In LE BT source code uses system/audio.h for below
604 * structure definition. To avoid multiple definition
605 * compilation error for audiohal in LE , masking structure
606 * definition under "LINUX_ENABLED" which is defined only
607 * in LE
608 */
609#ifndef LINUX_ENABLED
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530610/* TODO: Define the following structures only for O using PLATFORM_VERSION */
611/* Information about BT SBC encoder configuration
612 * This data is used between audio HAL module and
613 * BT IPC library to configure DSP encoder
614 */
615typedef struct {
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530616 uint32_t subband; /* 4, 8 */
617 uint32_t blk_len; /* 4, 8, 12, 16 */
618 uint16_t sampling_rate; /*44.1khz,48khz*/
619 uint8_t channels; /*0(Mono),1(Dual_mono),2(Stereo),3(JS)*/
620 uint8_t alloc; /*0(Loudness),1(SNR)*/
621 uint8_t min_bitpool; /* 2 */
622 uint8_t max_bitpool; /*53(44.1khz),51 (48khz) */
623 uint32_t bitrate; /* 320kbps to 512kbps */
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530624 uint32_t bits_per_sample;
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530625} audio_sbc_encoder_config;
626
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530627/* Information about BT APTX encoder configuration
628 * This data is used between audio HAL module and
629 * BT IPC library to configure DSP encoder
630 */
631typedef struct {
632 uint16_t sampling_rate;
633 uint8_t channels;
634 uint32_t bitrate;
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530635 uint32_t bits_per_sample;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700636} audio_aptx_default_config;
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530637
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700638typedef struct {
Sharad Sangle95d451b2018-06-19 12:24:20 +0530639 uint8_t sampling_rate;
640 uint8_t channel_mode;
641 uint16_t mtu;
642 uint8_t min_sink_modeA;
643 uint8_t max_sink_modeA;
644 uint8_t min_sink_modeB;
645 uint8_t max_sink_modeB;
646 uint8_t min_sink_modeC;
647 uint8_t max_sink_modeC;
648 uint8_t TTP_modeA_low;
649 uint8_t TTP_modeA_high;
650 uint8_t TTP_modeB_low;
651 uint8_t TTP_modeB_high;
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530652 uint32_t bits_per_sample;
Sharad Sanglee378afe2018-09-03 20:04:17 +0530653 uint16_t encoder_mode;
Sharad Sangle95d451b2018-06-19 12:24:20 +0530654} audio_aptx_ad_config;
655
656typedef struct {
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700657 uint16_t sampling_rate;
658 uint8_t channels;
659 uint32_t bitrate;
660 uint32_t sync_mode;
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530661 uint32_t bits_per_sample;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700662} audio_aptx_dual_mono_config;
663
664typedef union {
665 audio_aptx_default_config *default_cfg;
666 audio_aptx_dual_mono_config *dual_mono_cfg;
Sharad Sangle95d451b2018-06-19 12:24:20 +0530667 audio_aptx_ad_config *ad_cfg;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -0700668} audio_aptx_encoder_config;
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530669
670/* Information about BT AAC encoder configuration
671 * This data is used between audio HAL module and
672 * BT IPC library to configure DSP encoder
673 */
674typedef struct {
675 uint32_t enc_mode; /* LC, SBR, PS */
676 uint16_t format_flag; /* RAW, ADTS */
677 uint16_t channels; /* 1-Mono, 2-Stereo */
678 uint32_t sampling_rate;
679 uint32_t bitrate;
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530680 uint32_t bits_per_sample;
Aalique Grahame22e49102018-12-18 14:23:57 -0800681 struct aac_frame_size_control_t frame_ctl;
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530682} audio_aac_encoder_config;
Ramu Gottipati08d82e72018-12-17 11:52:14 +0530683#endif
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -0700684
685typedef struct {
686 audio_aac_encoder_config audio_aac_enc_cfg;
687 struct aac_frame_size_control_t frame_ctl;
688} audio_aac_encoder_config_v2;
Satya Krishna Pindiprolif7d65712017-04-26 14:24:53 +0530689
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530690/* Information about BT CELT encoder configuration
691 * This data is used between audio HAL module and
692 * BT IPC library to configure DSP encoder
693 */
694typedef struct {
695 uint32_t sampling_rate; /* 32000 - 48000, 48000 */
696 uint16_t channels; /* 1-Mono, 2-Stereo, 2*/
697 uint16_t frame_size; /* 64-128-256-512, 512 */
698 uint16_t complexity; /* 0-10, 1 */
699 uint16_t prediction_mode; /* 0-1-2, 0 */
700 uint16_t vbr_flag; /* 0-1, 0*/
701 uint32_t bitrate; /*32000 - 1536000, 139500*/
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530702 uint32_t bits_per_sample;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +0530703} audio_celt_encoder_config;
704
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530705/* Information about BT LDAC encoder configuration
706 * This data is used between audio HAL module and
707 * BT IPC library to configure DSP encoder
708 */
709typedef struct {
710 uint32_t sampling_rate; /*44100,48000,88200,96000*/
711 uint32_t bit_rate; /*303000,606000,909000(in bits per second)*/
712 uint16_t channel_mode; /* 0, 4, 2, 1*/
713 uint16_t mtu; /*679*/
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800714 bool is_abr_enabled;
715 struct quality_level_to_bitrate_info level_to_bitrate_map;
Samyak Jain2cddc0e2018-07-18 15:22:27 +0530716 uint32_t bits_per_sample;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +0530717} audio_ldac_encoder_config;
718
Surendar Karkabbb3c822018-11-12 13:00:38 +0530719/* Information about BT AAC decoder configuration
720 * This data is used between audio HAL module and
721 * BT IPC library to configure DSP decoder
722 */
723typedef struct {
724 uint16_t aac_fmt_flag; /* LATM*/
725 uint16_t audio_object_type; /* LC */
726 uint16_t channels; /* Stereo */
727 uint16_t total_size_of_pce_bits; /* 0 - only for channel conf PCE */
728 uint32_t sampling_rate; /* 8k, 11.025k, 12k, 16k, 22.05k, 24k, 32k,
729 44.1k, 48k, 64k, 88.2k, 96k */
730} audio_aac_dec_config_t;
731
732/* Information about BT SBC decoder configuration
733 * This data is used between audio HAL module and
734 * BT IPC library to configure DSP decoder
735 */
736typedef struct {
737 uint16_t channels; /* Mono, Stereo */
738 uint32_t sampling_rate; /* 8k, 11.025k, 12k, 16k, 22.05k, 24k, 32k,
739 44.1k, 48k, 64k, 88.2k, 96k */
740}audio_sbc_dec_config_t;
741
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530742/*********** END of DSP configurable structures ********************/
743
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530744static void update_offload_codec_capabilities()
745{
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530746
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530747 a2dp.is_a2dp_offload_supported =
Aalique Grahame22e49102018-12-18 14:23:57 -0800748 property_get_bool(SYSPROP_A2DP_OFFLOAD_SUPPORTED, false) &&
749 !property_get_bool(SYSPROP_A2DP_OFFLOAD_DISABLED, false);
750
751 ALOGD("%s: A2DP offload supported = %d",__func__,
752 a2dp.is_a2dp_offload_supported);
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530753}
754
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800755static int stop_abr()
756{
757 struct mixer_ctl *ctl_abr_tx_path = NULL;
Zhou Song12c29502019-03-16 10:37:18 +0800758 struct mixer_ctl *ctl_abr_rx_path = NULL;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800759 struct mixer_ctl *ctl_set_bt_feedback_channel = NULL;
Zhou Song12c29502019-03-16 10:37:18 +0800760 int ret = 0;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800761
762 /* This function can be used if !abr_started for clean up */
763 ALOGV("%s: enter", __func__);
764
765 // Close hostless front end
766 if (a2dp.abr_config.abr_tx_handle != NULL) {
767 pcm_close(a2dp.abr_config.abr_tx_handle);
768 a2dp.abr_config.abr_tx_handle = NULL;
769 }
Zhou Song12c29502019-03-16 10:37:18 +0800770 if (a2dp.abr_config.abr_rx_handle != NULL) {
771 pcm_close(a2dp.abr_config.abr_rx_handle);
772 a2dp.abr_config.abr_rx_handle = NULL;
773 }
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800774 a2dp.abr_config.abr_started = false;
775 a2dp.abr_config.imc_instance = 0;
776
777 // Reset BT driver mixer control for ABR usecase
778 ctl_set_bt_feedback_channel = mixer_get_ctl_by_name(a2dp.adev->mixer,
779 MIXER_SET_FEEDBACK_CHANNEL);
780 if (!ctl_set_bt_feedback_channel) {
781 ALOGE("%s: ERROR Set usecase mixer control not identifed", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800782 ret = -ENOSYS;
783 } else if (mixer_ctl_set_value(ctl_set_bt_feedback_channel, 0, 0) != 0) {
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800784 ALOGE("%s: Failed to set BT usecase", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800785 ret = -ENOSYS;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800786 }
787
788 // Reset ABR Tx feedback path
789 ALOGV("%s: Disable ABR Tx feedback path", __func__);
790 ctl_abr_tx_path = mixer_get_ctl_by_name(a2dp.adev->mixer,
791 MIXER_ABR_TX_FEEDBACK_PATH);
792 if (!ctl_abr_tx_path) {
793 ALOGE("%s: ERROR ABR Tx feedback path mixer control not identifed", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800794 ret = -ENOSYS;
795 } else if (mixer_ctl_set_value(ctl_abr_tx_path, 0, 0) != 0) {
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800796 ALOGE("%s: Failed to set ABR Tx feedback path", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800797 ret = -ENOSYS;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800798 }
799
Zhou Song12c29502019-03-16 10:37:18 +0800800 // Reset ABR Rx feedback path
801 ALOGV("%s: Disable ABR Rx feedback path", __func__);
802 ctl_abr_rx_path = mixer_get_ctl_by_name(a2dp.adev->mixer,
803 MIXER_ABR_RX_FEEDBACK_PATH);
804 if (!ctl_abr_rx_path) {
805 ALOGE("%s: ERROR ABR Rx feedback path mixer control not identifed", __func__);
806 ret = -ENOSYS;
807 } else if (mixer_ctl_set_value(ctl_abr_rx_path, 0, 0) != 0) {
808 ALOGE("%s: Failed to set ABR Rx feedback path", __func__);
809 ret = -ENOSYS;
810 }
811
812 return ret;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800813}
814
815static int start_abr()
816{
817 struct mixer_ctl *ctl_abr_tx_path = NULL;
Zhou Song12c29502019-03-16 10:37:18 +0800818 struct mixer_ctl *ctl_abr_rx_path = NULL;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800819 struct mixer_ctl *ctl_set_bt_feedback_channel = NULL;
820 int abr_device_id;
821 int ret = 0;
822
823 if (!a2dp.abr_config.is_abr_enabled) {
824 ALOGE("%s: Cannot start if ABR is not enabled", __func__);
825 return -ENOSYS;
826 }
827
828 if (a2dp.abr_config.abr_started) {
829 ALOGI("%s: ABR has already started", __func__);
830 return ret;
831 }
832
833 // Enable Slimbus 7 Tx feedback path
834 ALOGV("%s: Enable ABR Tx feedback path", __func__);
835 ctl_abr_tx_path = mixer_get_ctl_by_name(a2dp.adev->mixer,
836 MIXER_ABR_TX_FEEDBACK_PATH);
837 if (!ctl_abr_tx_path) {
838 ALOGE("%s: ERROR ABR Tx feedback path mixer control not identifed", __func__);
839 return -ENOSYS;
840 }
841 if (mixer_ctl_set_value(ctl_abr_tx_path, 0, 1) != 0) {
842 ALOGE("%s: Failed to set ABR Tx feedback path", __func__);
843 return -ENOSYS;
844 }
845
846 // Notify ABR usecase information to BT driver to distinguish
847 // between SCO and feedback usecase
848 ctl_set_bt_feedback_channel = mixer_get_ctl_by_name(a2dp.adev->mixer,
849 MIXER_SET_FEEDBACK_CHANNEL);
850 if (!ctl_set_bt_feedback_channel) {
851 ALOGE("%s: ERROR Set usecase mixer control not identifed", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800852 goto fail;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800853 }
854 if (mixer_ctl_set_value(ctl_set_bt_feedback_channel, 0, 1) != 0) {
855 ALOGE("%s: Failed to set BT usecase", __func__);
Zhou Song12c29502019-03-16 10:37:18 +0800856 goto fail;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800857 }
858
859 // Open hostless front end and prepare ABR Tx path
Arun Mirpurib1bec9c2019-01-29 16:42:45 -0800860 abr_device_id = fp_platform_get_pcm_device_id(USECASE_AUDIO_A2DP_ABR_FEEDBACK,
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800861 PCM_CAPTURE);
862 if (!a2dp.abr_config.abr_tx_handle) {
863 a2dp.abr_config.abr_tx_handle = pcm_open(a2dp.adev->snd_card,
864 abr_device_id, PCM_IN,
865 &pcm_config_abr);
Zhou Song12c29502019-03-16 10:37:18 +0800866 if (a2dp.abr_config.abr_tx_handle == NULL) {
867 ALOGE("%s: Can't open abr tx device", __func__);
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800868 goto fail;
Zhou Song12c29502019-03-16 10:37:18 +0800869 }
870 if (!(pcm_is_ready(a2dp.abr_config.abr_tx_handle) &&
871 !pcm_start(a2dp.abr_config.abr_tx_handle))) {
872 ALOGE("%s: tx: %s", __func__, pcm_get_error(a2dp.abr_config.abr_tx_handle));
873 goto fail;
874 }
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800875 }
Zhou Song12c29502019-03-16 10:37:18 +0800876
877 // Enable Slimbus 7 Rx feedback path for HD Voice use case
878 if (a2dp.bt_encoder_format == CODEC_TYPE_APTX_AD_SPEECH) {
879 ALOGV("%s: Enable ABR Rx feedback path", __func__);
880 ctl_abr_rx_path = mixer_get_ctl_by_name(a2dp.adev->mixer,
881 MIXER_ABR_RX_FEEDBACK_PATH);
882 if (!ctl_abr_rx_path) {
883 ALOGE("%s: ERROR ABR Rx feedback path mixer control not identifed", __func__);
884 goto fail;
885 }
886 if (mixer_ctl_set_value(ctl_abr_rx_path, 0, 1) != 0) {
887 ALOGE("%s: Failed to set ABR Rx feedback path", __func__);
888 goto fail;
889 }
890
891 if (mixer_ctl_set_value(ctl_set_bt_feedback_channel, 0, 1) != 0) {
892 ALOGE("%s: Failed to set BT usecase", __func__);
893 goto fail;
894 }
895
896 // Open hostless front end and prepare ABR Rx path
897 abr_device_id = fp_platform_get_pcm_device_id(USECASE_AUDIO_A2DP_ABR_FEEDBACK,
898 PCM_PLAYBACK);
899 if (!a2dp.abr_config.abr_rx_handle) {
900 a2dp.abr_config.abr_rx_handle = pcm_open(a2dp.adev->snd_card,
901 abr_device_id, PCM_OUT,
902 &pcm_config_abr);
903 if (a2dp.abr_config.abr_rx_handle == NULL) {
904 ALOGE("%s: Can't open abr rx device", __func__);
905 goto fail;
906 }
907 if (!(pcm_is_ready(a2dp.abr_config.abr_rx_handle) &&
908 !pcm_start(a2dp.abr_config.abr_rx_handle))) {
909 ALOGE("%s: rx: %s", __func__, pcm_get_error(a2dp.abr_config.abr_rx_handle));
910 goto fail;
911 }
912 }
913 }
914
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800915 a2dp.abr_config.abr_started = true;
916
917 return ret;
918
919fail:
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -0800920 stop_abr();
921 return -ENOSYS;
922}
923
Arun Mirpuri5dc77802019-02-26 16:32:42 -0800924static int check_if_enhanced_fwk() {
925
926 int is_enhanced_fwk = 1;
927 //dlopen lib
928 vndk_fwk_lib_handle = dlopen(VNDK_FWK_LIB_PATH, RTLD_NOW);
929 if (vndk_fwk_lib_handle != NULL) {
930 vndk_fwk_isVendorEnhancedFwk = (vndk_fwk_isVendorEnhancedFwk_t)
931 dlsym(vndk_fwk_lib_handle, "isRunningWithVendorEnhancedFramework");
932 if (vndk_fwk_isVendorEnhancedFwk == NULL) {
933 ALOGW("%s: VNDK_FWK_LIB not found, defaulting to enhanced_fwk configuration",
934 __func__);
935 is_enhanced_fwk = 1;
936 } else {
937 is_enhanced_fwk = vndk_fwk_isVendorEnhancedFwk();
938 }
939 }
940 ALOGV("%s: vndk_fwk_isVendorEnhancedFwk=%d", __func__, is_enhanced_fwk);
941 return is_enhanced_fwk;
942}
943
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530944static void open_a2dp_source() {
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530945 int ret = 0;
946
Florian Pfister1a84f312018-07-19 14:38:18 +0200947 ALOGD(" Open A2DP source start ");
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530948
949 if (a2dp.bt_lib_source_handle && a2dp.audio_source_open) {
950 if (a2dp.bt_state_source == A2DP_STATE_DISCONNECTED) {
951 ALOGD("calling BT stream open");
952 ret = a2dp.audio_source_open();
953 if(ret != 0) {
954 ALOGE("Failed to open source stream for a2dp: status %d", ret);
Srinu Jellada99a592019-01-25 16:50:52 +0530955 }
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530956 a2dp.bt_state_source = A2DP_STATE_CONNECTED;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530957 } else {
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530958 ALOGD("Called a2dp open with improper state %d", a2dp.bt_state_source);
959 }
960 } else {
961 ALOGE("a2dp handle is not identified, Ignoring open request");
962 a2dp.bt_state_source = A2DP_STATE_DISCONNECTED;
963 }
964}
965/* API to open BT IPC library to start IPC communication for BT Source*/
966static void a2dp_source_init()
967{
968 ALOGD("a2dp_source_init START");
969 if (a2dp.bt_lib_source_handle == NULL) {
970 ALOGD("Requesting for BT lib handle");
971 a2dp.bt_lib_source_handle = dlopen(BT_IPC_SOURCE_LIB_NAME, RTLD_NOW);
972 if (a2dp.bt_lib_source_handle == NULL) {
973 ALOGE("%s: dlopen failed for %s", __func__, BT_IPC_SOURCE_LIB_NAME);
974 return;
Naresh Tanniru9d027a62015-03-13 01:32:10 +0530975 }
976 }
977
Naresh Tanniru66cf06c2019-03-20 19:30:37 +0530978 a2dp.bt_audio_pre_init = (bt_audio_pre_init_t)
979 dlsym(a2dp.bt_lib_source_handle, "bt_audio_pre_init");
Srinu Jellada99a592019-01-25 16:50:52 +0530980 a2dp.audio_source_open = (audio_source_open_t)
981 dlsym(a2dp.bt_lib_source_handle, "audio_stream_open");
982 a2dp.audio_source_start = (audio_source_start_t)
983 dlsym(a2dp.bt_lib_source_handle, "audio_start_stream");
984 a2dp.audio_get_enc_config = (audio_get_enc_config_t)
985 dlsym(a2dp.bt_lib_source_handle, "audio_get_codec_config");
986 a2dp.audio_source_suspend = (audio_source_suspend_t)
987 dlsym(a2dp.bt_lib_source_handle, "audio_suspend_stream");
988 a2dp.audio_source_handoff_triggered = (audio_source_handoff_triggered_t)
989 dlsym(a2dp.bt_lib_source_handle, "audio_handoff_triggered");
990 a2dp.clear_source_a2dpsuspend_flag = (clear_source_a2dpsuspend_flag_t)
991 dlsym(a2dp.bt_lib_source_handle, "clear_a2dpsuspend_flag");
992 a2dp.audio_source_stop = (audio_source_stop_t)
993 dlsym(a2dp.bt_lib_source_handle, "audio_stop_stream");
994 a2dp.audio_source_close = (audio_source_close_t)
995 dlsym(a2dp.bt_lib_source_handle, "audio_stream_close");
996 a2dp.audio_source_check_a2dp_ready = (audio_source_check_a2dp_ready_t)
997 dlsym(a2dp.bt_lib_source_handle,"audio_check_a2dp_ready");
998 a2dp.audio_sink_get_a2dp_latency = (audio_sink_get_a2dp_latency_t)
999 dlsym(a2dp.bt_lib_source_handle,"audio_sink_get_a2dp_latency");
1000 a2dp.audio_is_source_scrambling_enabled = (audio_is_source_scrambling_enabled_t)
1001 dlsym(a2dp.bt_lib_source_handle,"audio_is_scrambling_enabled");
1002 a2dp.audio_is_tws_mono_mode_enable = (audio_is_tws_mono_mode_enable_t)
1003 dlsym(a2dp.bt_lib_source_handle,"isTwsMonomodeEnable");
1004
Naresh Tanniru66cf06c2019-03-20 19:30:37 +05301005 if (is_running_with_enhanced_fwk == UNINITIALIZED)
1006 is_running_with_enhanced_fwk = check_if_enhanced_fwk();
1007 if (a2dp.bt_lib_source_handle && is_running_with_enhanced_fwk
1008 && a2dp.bt_audio_pre_init) {
1009 ALOGD("calling BT module preinit");
1010 a2dp.bt_audio_pre_init();
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001011 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001012}
1013
1014/* API to open BT IPC library to start IPC communication for BT Sink*/
1015static void open_a2dp_sink()
1016{
1017 ALOGD(" Open A2DP input start ");
1018 if (a2dp.bt_lib_sink_handle == NULL){
1019 ALOGD(" Requesting for BT lib handle");
1020 a2dp.bt_lib_sink_handle = dlopen(BT_IPC_SINK_LIB_NAME, RTLD_NOW);
1021
1022 if (a2dp.bt_lib_sink_handle == NULL) {
1023 ALOGE("%s: DLOPEN failed for %s", __func__, BT_IPC_SINK_LIB_NAME);
1024 } else {
1025 a2dp.audio_sink_start = (audio_sink_start_t)
1026 dlsym(a2dp.bt_lib_sink_handle, "audio_sink_start_capture");
1027 a2dp.audio_get_dec_config = (audio_get_dec_config_t)
1028 dlsym(a2dp.bt_lib_sink_handle, "audio_get_decoder_config");
1029 a2dp.audio_sink_stop = (audio_sink_stop_t)
1030 dlsym(a2dp.bt_lib_sink_handle, "audio_sink_stop_capture");
1031 a2dp.audio_sink_check_a2dp_ready = (audio_sink_check_a2dp_ready_t)
1032 dlsym(a2dp.bt_lib_sink_handle,"audio_sink_check_a2dp_ready");
1033 a2dp.audio_sink_session_setup_complete = (audio_sink_session_setup_complete_t)
1034 dlsym(a2dp.bt_lib_sink_handle, "audio_sink_session_setup_complete");
1035 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301036 }
1037}
1038
1039static int close_a2dp_output()
1040{
1041 ALOGV("%s\n",__func__);
Florian Pfister1a84f312018-07-19 14:38:18 +02001042
1043 if (!(a2dp.bt_lib_source_handle && a2dp.audio_source_close)) {
1044 ALOGE("a2dp source handle is not identified, Ignoring close request");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301045 return -ENOSYS;
1046 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001047
1048 if (a2dp.bt_state_source != A2DP_STATE_DISCONNECTED) {
1049 ALOGD("calling BT source stream close");
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001050 if (a2dp.audio_source_close() == false)
Florian Pfister1a84f312018-07-19 14:38:18 +02001051 ALOGE("failed close a2dp source control path from BT library");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301052 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001053 a2dp.a2dp_source_started = false;
1054 a2dp.a2dp_source_total_active_session_requests = 0;
1055 a2dp.a2dp_source_suspended = false;
1056 a2dp.bt_encoder_format = CODEC_TYPE_INVALID;
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05301057 a2dp.enc_sampling_rate = 48000;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301058 a2dp.enc_channels = 2;
Florian Pfister1a84f312018-07-19 14:38:18 +02001059 a2dp.bt_state_source = A2DP_STATE_DISCONNECTED;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001060 if (a2dp.abr_config.is_abr_enabled && a2dp.abr_config.abr_started)
1061 stop_abr();
1062 a2dp.abr_config.is_abr_enabled = false;
1063 a2dp.abr_config.abr_started = false;
1064 a2dp.abr_config.imc_instance = 0;
1065 a2dp.abr_config.abr_tx_handle = NULL;
Zhou Song12c29502019-03-16 10:37:18 +08001066 a2dp.abr_config.abr_rx_handle = NULL;
Surendar Karka2febd452018-12-13 17:56:43 +05301067 a2dp.bt_state_source = A2DP_STATE_DISCONNECTED;
Florian Pfister1a84f312018-07-19 14:38:18 +02001068
1069 return 0;
1070}
1071
1072static int close_a2dp_input()
1073{
1074 ALOGV("%s\n",__func__);
1075
1076 if (!(a2dp.bt_lib_sink_handle && a2dp.audio_source_close)) {
1077 ALOGE("a2dp sink handle is not identified, Ignoring close request");
1078 return -ENOSYS;
1079 }
1080
1081 if (a2dp.bt_state_sink != A2DP_STATE_DISCONNECTED) {
1082 ALOGD("calling BT sink stream close");
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001083 if (a2dp.audio_source_close() == false)
Florian Pfister1a84f312018-07-19 14:38:18 +02001084 ALOGE("failed close a2dp sink control path from BT library");
1085 }
1086 a2dp.a2dp_sink_started = false;
1087 a2dp.a2dp_sink_total_active_session_requests = 0;
1088 a2dp.bt_decoder_format = CODEC_TYPE_INVALID;
1089 a2dp.dec_sampling_rate = 48000;
1090 a2dp.dec_channels = 2;
1091 a2dp.bt_state_sink = A2DP_STATE_DISCONNECTED;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301092
1093 return 0;
1094}
1095
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301096static void a2dp_check_and_set_scrambler()
1097{
1098 bool scrambler_mode = false;
1099 struct mixer_ctl *ctrl_scrambler_mode = NULL;
Florian Pfister1a84f312018-07-19 14:38:18 +02001100 if (a2dp.audio_is_source_scrambling_enabled && (a2dp.bt_state_source != A2DP_STATE_DISCONNECTED))
1101 scrambler_mode = a2dp.audio_is_source_scrambling_enabled();
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301102
1103 if (scrambler_mode) {
1104 //enable scrambler in dsp
1105 ctrl_scrambler_mode = mixer_get_ctl_by_name(a2dp.adev->mixer,
1106 MIXER_SCRAMBLER_MODE);
1107 if (!ctrl_scrambler_mode) {
Florian Pfister1a84f312018-07-19 14:38:18 +02001108 ALOGE(" ERROR scrambler mode mixer control not identified");
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301109 return;
1110 } else {
1111 if (mixer_ctl_set_value(ctrl_scrambler_mode, 0, true) != 0) {
1112 ALOGE("%s: Could not set scrambler mode", __func__);
1113 return;
1114 }
1115 }
1116 }
1117}
1118
Florian Pfister1a84f312018-07-19 14:38:18 +02001119static bool a2dp_set_backend_cfg(uint8_t direction)
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301120{
Florian Pfister1a84f312018-07-19 14:38:18 +02001121 char *rate_str = NULL, *channels = NULL;
1122 uint32_t sampling_rate;
1123 struct mixer_ctl *ctl_sample_rate = NULL, *ctrl_channels = NULL;
1124 bool is_configured = false;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05301125
Florian Pfister1a84f312018-07-19 14:38:18 +02001126 if (direction == SINK) {
1127 sampling_rate = a2dp.dec_sampling_rate;
1128 } else {
1129 sampling_rate = a2dp.enc_sampling_rate;
1130 }
1131 //For LDAC encoder and AAC decoder open slimbus port at
1132 //96Khz for 48Khz input and 88.2Khz for 44.1Khz input.
1133 if (((a2dp.bt_encoder_format == CODEC_TYPE_LDAC) ||
Surendar Karkabbb3c822018-11-12 13:00:38 +05301134 (a2dp.bt_decoder_format == CODEC_TYPE_SBC) ||
Florian Pfister1a84f312018-07-19 14:38:18 +02001135 (a2dp.bt_decoder_format == AUDIO_FORMAT_AAC)) &&
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05301136 (sampling_rate == 48000 || sampling_rate == 44100 )) {
1137 sampling_rate = sampling_rate *2;
1138 }
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001139
Aalique Grahame22e49102018-12-18 14:23:57 -08001140 // No need to configure backend for PCM format.
1141 if (a2dp.bt_encoder_format == CODEC_TYPE_PCM) {
1142 return 0;
1143 }
1144
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301145 //Configure backend sampling rate
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05301146 switch (sampling_rate) {
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301147 case 44100:
1148 rate_str = "KHZ_44P1";
1149 break;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301150 case 88200:
1151 rate_str = "KHZ_88P2";
1152 break;
1153 case 96000:
1154 rate_str = "KHZ_96";
1155 break;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001156 case 48000:
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301157 default:
1158 rate_str = "KHZ_48";
1159 break;
1160 }
1161
Florian Pfister1a84f312018-07-19 14:38:18 +02001162 if (direction == SINK) {
1163 ALOGD("%s: set sink backend sample rate =%s", __func__, rate_str);
1164 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
Surendar Karka2febd452018-12-13 17:56:43 +05301165 MIXER_SINK_SAMPLE_RATE);
Florian Pfister1a84f312018-07-19 14:38:18 +02001166 } else {
1167 ALOGD("%s: set source backend sample rate =%s", __func__, rate_str);
1168 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
Surendar Karka2febd452018-12-13 17:56:43 +05301169 MIXER_SAMPLE_RATE_RX);
Florian Pfister1a84f312018-07-19 14:38:18 +02001170 }
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301171 if (ctl_sample_rate) {
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001172
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301173 if (mixer_ctl_set_enum_by_string(ctl_sample_rate, rate_str) != 0) {
1174 ALOGE("%s: Failed to set backend sample rate = %s", __func__, rate_str);
Surendar Karka2febd452018-12-13 17:56:43 +05301175 is_configured = false;
1176 goto fail;
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301177 }
1178
Surendar Karka2febd452018-12-13 17:56:43 +05301179 if (direction == SOURCE) {
1180 /* Set Tx backend sample rate */
Zhou Song12c29502019-03-16 10:37:18 +08001181 if (a2dp.abr_config.is_abr_enabled) {
1182 if (a2dp.bt_encoder_format == CODEC_TYPE_APTX_AD_SPEECH)
1183 rate_str = SPEECH_TX_SAMPLE_RATE;
1184 else
1185 rate_str = ABR_TX_SAMPLE_RATE;
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301186
Preetam Singh Ranawat225e13c2019-05-16 17:31:02 +05301187 ALOGD("%s: set backend tx sample rate = %s", __func__, rate_str);
1188 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
1189 MIXER_SOURCE_SAMPLE_RATE_TX);
1190 if (!ctl_sample_rate) {
1191 ALOGE("%s: ERROR backend sample rate mixer control not identifed", __func__);
1192 is_configured = false;
1193 goto fail;
1194 }
1195
1196 if (mixer_ctl_set_enum_by_string(ctl_sample_rate, rate_str) != 0) {
1197 ALOGE("%s: Failed to set backend sample rate = %s", __func__, rate_str);
1198 is_configured = false;
1199 goto fail;
1200 }
Surendar Karka2febd452018-12-13 17:56:43 +05301201 }
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301202 }
1203 } else {
1204 /* Fallback to legacy approch if MIXER_SAMPLE_RATE_RX and
1205 MIXER_SAMPLE_RATE_TX is not supported */
1206 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
1207 MIXER_SAMPLE_RATE_DEFAULT);
1208 if (!ctl_sample_rate) {
1209 ALOGE("%s: ERROR backend sample rate mixer control not identifed", __func__);
Surendar Karka2febd452018-12-13 17:56:43 +05301210 is_configured = false;
1211 goto fail;
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301212 }
1213
1214 if (mixer_ctl_set_enum_by_string(ctl_sample_rate, rate_str) != 0) {
1215 ALOGE("%s: Failed to set backend sample rate = %s", __func__, rate_str);
Florian Pfister1a84f312018-07-19 14:38:18 +02001216 is_configured = false;
1217 goto fail;
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301218 }
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301219 }
1220
Florian Pfister1a84f312018-07-19 14:38:18 +02001221 if (direction == SINK) {
1222 switch (a2dp.dec_channels) {
1223 case 1:
1224 channels = "One";
1225 break;
1226 case 2:
1227 default:
1228 channels = "Two";
1229 break;
1230 }
1231
Ramu Gottipati02809682018-12-19 16:46:12 +05301232 ALOGD("%s: set afe dec channels =%s", __func__, channels);
Florian Pfister1a84f312018-07-19 14:38:18 +02001233 ctrl_channels = mixer_get_ctl_by_name(a2dp.adev->mixer,
1234 MIXER_AFE_SINK_CHANNELS);
1235 } else {
1236 //Configure AFE enc channels
1237 switch (a2dp.enc_channels) {
1238 case 1:
1239 channels = "One";
1240 break;
1241 case 2:
1242 default:
1243 channels = "Two";
1244 break;
1245 }
1246
Ramu Gottipati02809682018-12-19 16:46:12 +05301247 ALOGD("%s: set afe enc channels =%s", __func__, channels);
Florian Pfister1a84f312018-07-19 14:38:18 +02001248 ctrl_channels = mixer_get_ctl_by_name(a2dp.adev->mixer,
1249 MIXER_AFE_IN_CHANNELS);
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301250 }
1251
Florian Pfister1a84f312018-07-19 14:38:18 +02001252 if (!ctrl_channels) {
1253 ALOGE(" ERROR AFE channels mixer control not identified");
1254 } else {
1255 if (mixer_ctl_set_enum_by_string(ctrl_channels, channels) != 0) {
Ramu Gottipati02809682018-12-19 16:46:12 +05301256 ALOGE("%s: Failed to set AFE channels =%s", __func__, channels);
Florian Pfister1a84f312018-07-19 14:38:18 +02001257 is_configured = false;
1258 goto fail;
1259 }
1260 }
1261 is_configured = true;
1262fail:
1263 return is_configured;
1264}
1265
Surendar Karkabbb3c822018-11-12 13:00:38 +05301266bool configure_aac_dec_format(audio_aac_dec_config_t *aac_bt_cfg)
Florian Pfister1a84f312018-07-19 14:38:18 +02001267{
1268 struct mixer_ctl *ctl_dec_data = NULL, *ctrl_bit_format = NULL;
1269 struct aac_dec_cfg_t aac_dsp_cfg;
1270 bool is_configured = false;
1271 int ret = 0;
1272
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001273 if (aac_bt_cfg == NULL)
Florian Pfister1a84f312018-07-19 14:38:18 +02001274 return false;
1275
Surendar Karka2febd452018-12-13 17:56:43 +05301276 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SINK_DEC_CONFIG_BLOCK);
Florian Pfister1a84f312018-07-19 14:38:18 +02001277 if (!ctl_dec_data) {
1278 ALOGE(" ERROR a2dp decoder CONFIG data mixer control not identified");
1279 is_configured = false;
1280 goto fail;
1281 }
1282
1283 memset(&aac_dsp_cfg, 0x0, sizeof(struct aac_dec_cfg_t));
1284 aac_dsp_cfg.dec_format = MEDIA_FMT_AAC;
1285 aac_dsp_cfg.data.aac_fmt_flag = aac_bt_cfg->aac_fmt_flag;
1286 aac_dsp_cfg.data.channels = aac_bt_cfg->channels;
1287 switch(aac_bt_cfg->audio_object_type) {
1288 case 0:
1289 aac_dsp_cfg.data.audio_object_type = MEDIA_FMT_AAC_AOT_LC;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301290 break;
1291 case 2:
Florian Pfister1a84f312018-07-19 14:38:18 +02001292 aac_dsp_cfg.data.audio_object_type = MEDIA_FMT_AAC_AOT_PS;
1293 break;
1294 case 1:
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301295 default:
Florian Pfister1a84f312018-07-19 14:38:18 +02001296 aac_dsp_cfg.data.audio_object_type = MEDIA_FMT_AAC_AOT_SBR;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301297 break;
1298 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001299 aac_dsp_cfg.data.total_size_of_pce_bits = aac_bt_cfg->total_size_of_pce_bits;
1300 aac_dsp_cfg.data.sampling_rate = aac_bt_cfg->sampling_rate;
1301 ret = mixer_ctl_set_array(ctl_dec_data, (void *)&aac_dsp_cfg,
1302 sizeof(struct aac_dec_cfg_t));
1303 if (ret != 0) {
1304 ALOGE("%s: failed to set AAC decoder config", __func__);
1305 is_configured = false;
1306 goto fail;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001307 }
1308
Florian Pfister1a84f312018-07-19 14:38:18 +02001309 ctrl_bit_format = mixer_get_ctl_by_name(a2dp.adev->mixer,
1310 MIXER_DEC_BIT_FORMAT);
1311 if (!ctrl_bit_format) {
1312 ALOGE(" ERROR Dec bit format mixer control not identified");
1313 is_configured = false;
1314 goto fail;
1315 }
1316 ret = mixer_ctl_set_enum_by_string(ctrl_bit_format, "S16_LE");
1317 if (ret != 0) {
1318 ALOGE("%s: Failed to set bit format to decoder", __func__);
1319 is_configured = false;
1320 goto fail;
1321 }
1322
1323 is_configured = true;
1324 a2dp.bt_decoder_format = CODEC_TYPE_AAC;
1325 a2dp.dec_channels = aac_dsp_cfg.data.channels;
1326 a2dp.dec_sampling_rate = aac_dsp_cfg.data.sampling_rate;
1327 ALOGV("Successfully updated AAC dec format with sampling_rate: %d channels:%d",
1328 aac_dsp_cfg.data.sampling_rate, aac_dsp_cfg.data.channels);
1329fail:
1330 return is_configured;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301331}
1332
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301333static int a2dp_set_bit_format(uint32_t enc_bit_format)
1334{
1335 const char *bit_format = NULL;
1336 struct mixer_ctl *ctrl_bit_format = NULL;
1337
1338 // Configure AFE Input Bit Format
1339 switch (enc_bit_format) {
1340 case 32:
1341 bit_format = "S32_LE";
1342 break;
1343 case 24:
1344 bit_format = "S24_LE";
1345 break;
1346 case 16:
1347 default:
1348 bit_format = "S16_LE";
1349 break;
1350 }
1351
1352 ALOGD("%s: set AFE input bit format = %d", __func__, enc_bit_format);
1353 ctrl_bit_format = mixer_get_ctl_by_name(a2dp.adev->mixer,
1354 MIXER_ENC_BIT_FORMAT);
1355 if (!ctrl_bit_format) {
1356 ALOGE("%s: ERROR AFE input bit format mixer control not identifed", __func__);
1357 return -ENOSYS;
1358 }
1359 if (mixer_ctl_set_enum_by_string(ctrl_bit_format, bit_format) != 0) {
1360 ALOGE("%s: Failed to set AFE input bit format = %d", __func__, enc_bit_format);
1361 return -ENOSYS;
1362 }
1363 return 0;
1364}
1365
Surendar Karka2febd452018-12-13 17:56:43 +05301366static int a2dp_reset_backend_cfg(uint8_t direction)
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301367{
Surendar Karka2febd452018-12-13 17:56:43 +05301368 const char *rate_str = "KHZ_8", *channels = "Zero";
1369 struct mixer_ctl *ctl_sample_rate = NULL, *ctl_sample_rate_tx = NULL;
1370 struct mixer_ctl *ctrl_channels = NULL;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301371
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001372 // Reset backend sampling rate
Surendar Karka2febd452018-12-13 17:56:43 +05301373 if (direction == SINK) {
1374 ALOGD("%s: reset sink backend sample rate =%s", __func__, rate_str);
1375 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
1376 MIXER_SINK_SAMPLE_RATE);
1377 } else {
1378 ALOGD("%s: reset source backend sample rate =%s", __func__, rate_str);
1379 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
1380 MIXER_SAMPLE_RATE_RX);
1381 }
1382 if (ctl_sample_rate) {
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301383
Surendar Karka2febd452018-12-13 17:56:43 +05301384 if (mixer_ctl_set_enum_by_string(ctl_sample_rate, rate_str) != 0) {
1385 ALOGE("%s: Failed to reset backend sample rate = %s", __func__, rate_str);
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301386 return -ENOSYS;
1387 }
Zhou Song12c29502019-03-16 10:37:18 +08001388 if (a2dp.abr_config.is_abr_enabled) {
1389 ctl_sample_rate_tx = mixer_get_ctl_by_name(a2dp.adev->mixer,
1390 MIXER_SOURCE_SAMPLE_RATE_TX);
1391 if (!ctl_sample_rate_tx) {
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301392 ALOGE("%s: ERROR Tx backend sample rate mixer control not identifed", __func__);
1393 return -ENOSYS;
Zhou Song12c29502019-03-16 10:37:18 +08001394 }
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301395
Zhou Song12c29502019-03-16 10:37:18 +08001396 if (mixer_ctl_set_enum_by_string(ctl_sample_rate_tx, rate_str) != 0) {
1397 ALOGE("%s: Failed to reset Tx backend sample rate = %s", __func__, rate_str);
1398 return -ENOSYS;
1399 }
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301400 }
1401 } else {
1402
Surendar Karka2febd452018-12-13 17:56:43 +05301403 ctl_sample_rate = mixer_get_ctl_by_name(a2dp.adev->mixer,
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301404 MIXER_SAMPLE_RATE_DEFAULT);
Surendar Karka2febd452018-12-13 17:56:43 +05301405 if (!ctl_sample_rate) {
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301406 ALOGE("%s: ERROR backend sample rate mixer control not identifed", __func__);
1407 return -ENOSYS;
1408 }
1409
Surendar Karka2febd452018-12-13 17:56:43 +05301410 if (mixer_ctl_set_enum_by_string(ctl_sample_rate, rate_str) != 0) {
Samyak Jainf69e9ef2018-06-12 12:26:37 +05301411 ALOGE("%s: Failed to reset backend sample rate = %s", __func__, rate_str);
1412 return -ENOSYS;
1413 }
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001414 }
1415
1416 // Reset AFE input channels
Surendar Karka2febd452018-12-13 17:56:43 +05301417 if (direction == SINK) {
1418 ALOGD("%s: reset afe sink channels =%s", __func__, channels);
1419 ctrl_channels = mixer_get_ctl_by_name(a2dp.adev->mixer,
1420 MIXER_AFE_SINK_CHANNELS);
1421 } else {
1422 ALOGD("%s: reset afe source channels =%s", __func__, channels);
1423 ctrl_channels = mixer_get_ctl_by_name(a2dp.adev->mixer,
1424 MIXER_AFE_IN_CHANNELS);
1425 }
1426 if (!ctrl_channels) {
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001427 ALOGE("%s: ERROR AFE input channels mixer control not identifed", __func__);
1428 return -ENOSYS;
1429 }
Surendar Karka2febd452018-12-13 17:56:43 +05301430 if (mixer_ctl_set_enum_by_string(ctrl_channels, channels) != 0) {
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001431 ALOGE("%s: Failed to reset AFE in channels = %d", __func__, a2dp.enc_channels);
1432 return -ENOSYS;
1433 }
1434
1435 return 0;
1436}
1437
1438/* API to configure AFE decoder in DSP */
Surendar Karka2febd452018-12-13 17:56:43 +05301439static bool configure_a2dp_source_decoder_format(int dec_format)
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001440{
1441 struct mixer_ctl *ctl_dec_data = NULL;
1442 struct abr_dec_cfg_t dec_cfg;
1443 int ret = 0;
1444
1445 if (a2dp.abr_config.is_abr_enabled) {
Surendar Karka2febd452018-12-13 17:56:43 +05301446 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SOURCE_DEC_CONFIG_BLOCK);
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001447 if (!ctl_dec_data) {
1448 ALOGE("%s: ERROR A2DP codec config data mixer control not identifed", __func__);
1449 return false;
1450 }
1451 memset(&dec_cfg, 0x0, sizeof(dec_cfg));
1452 dec_cfg.dec_format = dec_format;
1453 dec_cfg.imc_info.direction = IMC_TRANSMIT;
1454 dec_cfg.imc_info.enable = IMC_ENABLE;
1455 dec_cfg.imc_info.purpose = IMC_PURPOSE_ID_BT_INFO;
1456 dec_cfg.imc_info.comm_instance = a2dp.abr_config.imc_instance;
1457
1458 ret = mixer_ctl_set_array(ctl_dec_data, &dec_cfg,
1459 sizeof(dec_cfg));
1460 if (ret != 0) {
1461 ALOGE("%s: Failed to set decoder config", __func__);
1462 return false;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301463 }
Surendar Karka2febd452018-12-13 17:56:43 +05301464 }
1465
1466 return true;
1467}
1468
Surendar Karkabbb3c822018-11-12 13:00:38 +05301469bool configure_sbc_dec_format(audio_sbc_dec_config_t *sbc_bt_cfg)
Florian Pfister1a84f312018-07-19 14:38:18 +02001470{
1471 struct mixer_ctl *ctl_dec_data = NULL, *ctrl_bit_format = NULL;
1472 struct sbc_dec_cfg_t sbc_dsp_cfg;
1473 bool is_configured = false;
1474 int ret = 0;
1475
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001476 if (sbc_bt_cfg == NULL)
Florian Pfister1a84f312018-07-19 14:38:18 +02001477 goto fail;
1478
Surendar Karka2febd452018-12-13 17:56:43 +05301479 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SINK_DEC_CONFIG_BLOCK);
Florian Pfister1a84f312018-07-19 14:38:18 +02001480 if (!ctl_dec_data) {
1481 ALOGE(" ERROR a2dp decoder CONFIG data mixer control not identified");
1482 is_configured = false;
1483 goto fail;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301484 }
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08001485
Florian Pfister1a84f312018-07-19 14:38:18 +02001486 memset(&sbc_dsp_cfg, 0x0, sizeof(struct sbc_dec_cfg_t));
1487 sbc_dsp_cfg.dec_format = MEDIA_FMT_SBC;
1488 sbc_dsp_cfg.data.channels = sbc_bt_cfg->channels;
1489 sbc_dsp_cfg.data.sampling_rate = sbc_bt_cfg->sampling_rate;
1490 ret = mixer_ctl_set_array(ctl_dec_data, (void *)&sbc_dsp_cfg,
1491 sizeof(struct sbc_dec_cfg_t));
Surendar Karkabbb3c822018-11-12 13:00:38 +05301492
Florian Pfister1a84f312018-07-19 14:38:18 +02001493 if (ret != 0) {
1494 ALOGE("%s: failed to set SBC decoder config", __func__);
1495 is_configured = false;
1496 goto fail;
1497 }
1498
1499 ctrl_bit_format = mixer_get_ctl_by_name(a2dp.adev->mixer,
1500 MIXER_DEC_BIT_FORMAT);
1501 if (!ctrl_bit_format) {
1502 ALOGE(" ERROR Dec bit format mixer control not identified");
1503 is_configured = false;
1504 goto fail;
1505 }
1506 ret = mixer_ctl_set_enum_by_string(ctrl_bit_format, "S16_LE");
1507 if (ret != 0) {
1508 ALOGE("%s: Failed to set bit format to decoder", __func__);
1509 is_configured = false;
1510 goto fail;
1511 }
1512
1513 is_configured = true;
1514 a2dp.bt_decoder_format = CODEC_TYPE_SBC;
1515 if (sbc_dsp_cfg.data.channels == MEDIA_FMT_SBC_CHANNEL_MODE_MONO)
1516 a2dp.dec_channels = 1;
1517 else
1518 a2dp.dec_channels = 2;
1519 a2dp.dec_sampling_rate = sbc_dsp_cfg.data.sampling_rate;
1520 ALOGV("Successfully updated SBC dec format");
1521fail:
1522 return is_configured;
1523}
1524
Florian Pfister1a84f312018-07-19 14:38:18 +02001525/* API to configure AFE decoder in DSP */
Surendar Karka2febd452018-12-13 17:56:43 +05301526static bool configure_a2dp_sink_decoder_format()
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301527{
Florian Pfister1a84f312018-07-19 14:38:18 +02001528 void *codec_info = NULL;
1529 codec_t codec_type = CODEC_TYPE_INVALID;
1530 bool is_configured = false;
1531 struct mixer_ctl *ctl_dec_data = NULL;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301532
Florian Pfister1a84f312018-07-19 14:38:18 +02001533 if (!a2dp.audio_get_dec_config) {
1534 ALOGE(" a2dp handle is not identified, ignoring a2dp decoder config");
1535 return false;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301536 }
1537
Surendar Karka2febd452018-12-13 17:56:43 +05301538 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SINK_DEC_CONFIG_BLOCK);
Florian Pfister1a84f312018-07-19 14:38:18 +02001539 if (!ctl_dec_data) {
1540 ALOGE(" ERROR a2dp decoder CONFIG data mixer control not identified");
1541 is_configured = false;
1542 return false;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301543 }
Florian Pfister1a84f312018-07-19 14:38:18 +02001544 codec_info = a2dp.audio_get_dec_config(&codec_type);
1545 switch(codec_type) {
1546 case CODEC_TYPE_SBC:
1547 ALOGD(" SBC decoder supported BT device");
Surendar Karkabbb3c822018-11-12 13:00:38 +05301548 is_configured = configure_sbc_dec_format((audio_sbc_dec_config_t *)codec_info);
Florian Pfister1a84f312018-07-19 14:38:18 +02001549 break;
1550 case CODEC_TYPE_AAC:
1551 ALOGD(" AAC decoder supported BT device");
1552 is_configured =
Surendar Karkabbb3c822018-11-12 13:00:38 +05301553 configure_aac_dec_format((audio_aac_dec_config_t *)codec_info);
Florian Pfister1a84f312018-07-19 14:38:18 +02001554 break;
1555 default:
1556 ALOGD(" Received Unsupported decoder format");
1557 is_configured = false;
1558 break;
1559 }
1560 return is_configured;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301561}
1562
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301563/* API to configure SBC DSP encoder */
1564bool configure_sbc_enc_format(audio_sbc_encoder_config *sbc_bt_cfg)
1565{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301566 struct mixer_ctl *ctl_enc_data = NULL;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301567 struct sbc_enc_cfg_t sbc_dsp_cfg;
1568 bool is_configured = false;
1569 int ret = 0;
1570
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001571 if (sbc_bt_cfg == NULL)
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301572 return false;
1573
1574 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
1575 if (!ctl_enc_data) {
Florian Pfister1a84f312018-07-19 14:38:18 +02001576 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identified");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301577 is_configured = false;
1578 goto fail;
1579 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301580 memset(&sbc_dsp_cfg, 0x0, sizeof(struct sbc_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02001581 sbc_dsp_cfg.enc_format = MEDIA_FMT_SBC;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301582 sbc_dsp_cfg.num_subbands = sbc_bt_cfg->subband;
1583 sbc_dsp_cfg.blk_len = sbc_bt_cfg->blk_len;
1584 switch(sbc_bt_cfg->channels) {
1585 case 0:
1586 sbc_dsp_cfg.channel_mode = MEDIA_FMT_SBC_CHANNEL_MODE_MONO;
1587 break;
1588 case 1:
1589 sbc_dsp_cfg.channel_mode = MEDIA_FMT_SBC_CHANNEL_MODE_DUAL_MONO;
1590 break;
1591 case 3:
1592 sbc_dsp_cfg.channel_mode = MEDIA_FMT_SBC_CHANNEL_MODE_JOINT_STEREO;
1593 break;
1594 case 2:
1595 default:
1596 sbc_dsp_cfg.channel_mode = MEDIA_FMT_SBC_CHANNEL_MODE_STEREO;
1597 break;
1598 }
1599 if (sbc_bt_cfg->alloc)
1600 sbc_dsp_cfg.alloc_method = MEDIA_FMT_SBC_ALLOCATION_METHOD_LOUDNESS;
1601 else
1602 sbc_dsp_cfg.alloc_method = MEDIA_FMT_SBC_ALLOCATION_METHOD_SNR;
1603 sbc_dsp_cfg.bit_rate = sbc_bt_cfg->bitrate;
1604 sbc_dsp_cfg.sample_rate = sbc_bt_cfg->sampling_rate;
1605 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&sbc_dsp_cfg,
1606 sizeof(struct sbc_enc_cfg_t));
1607 if (ret != 0) {
1608 ALOGE("%s: failed to set SBC encoder config", __func__);
1609 is_configured = false;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301610 goto fail;
1611 }
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301612 ret = a2dp_set_bit_format(sbc_bt_cfg->bits_per_sample);
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301613 if (ret != 0) {
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301614 is_configured = false;
1615 goto fail;
1616 }
1617 is_configured = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02001618 a2dp.bt_encoder_format = CODEC_TYPE_SBC;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301619 a2dp.enc_sampling_rate = sbc_bt_cfg->sampling_rate;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301620
1621 if (sbc_dsp_cfg.channel_mode == MEDIA_FMT_SBC_CHANNEL_MODE_MONO)
1622 a2dp.enc_channels = 1;
1623 else
1624 a2dp.enc_channels = 2;
1625
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301626 ALOGV("Successfully updated SBC enc format with samplingrate: %d channelmode:%d",
1627 sbc_dsp_cfg.sample_rate, sbc_dsp_cfg.channel_mode);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301628fail:
1629 return is_configured;
1630}
1631
Manish Dewangan6a252632017-12-04 17:27:44 +05301632#ifndef LINUX_ENABLED
Sharad Sangle95d451b2018-06-19 12:24:20 +05301633static int update_aptx_ad_dsp_config(struct aptx_ad_enc_cfg_t *aptx_dsp_cfg,
1634 audio_aptx_encoder_config *aptx_bt_cfg)
1635{
1636 int ret = 0;
1637
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001638 if (aptx_dsp_cfg == NULL || aptx_bt_cfg == NULL) {
Sharad Sangle95d451b2018-06-19 12:24:20 +05301639 ALOGE("Invalid param, aptx_dsp_cfg %p aptx_bt_cfg %p",
1640 aptx_dsp_cfg, aptx_bt_cfg);
1641 return -EINVAL;
1642 }
1643
1644 memset(aptx_dsp_cfg, 0x0, sizeof(struct aptx_ad_enc_cfg_t));
Ramu Gottipati02809682018-12-19 16:46:12 +05301645 aptx_dsp_cfg->custom_cfg.enc_format = MEDIA_FMT_APTX_AD;
Sharad Sangle95d451b2018-06-19 12:24:20 +05301646
1647
1648 aptx_dsp_cfg->aptx_ad_cfg.sampling_freq = aptx_bt_cfg->ad_cfg->sampling_rate;
1649 aptx_dsp_cfg->aptx_ad_cfg.mtu = aptx_bt_cfg->ad_cfg->mtu;
1650 aptx_dsp_cfg->aptx_ad_cfg.channel_mode = aptx_bt_cfg->ad_cfg->channel_mode;
1651 aptx_dsp_cfg->aptx_ad_cfg.min_sink_modeA = aptx_bt_cfg->ad_cfg->min_sink_modeA;
1652 aptx_dsp_cfg->aptx_ad_cfg.max_sink_modeA = aptx_bt_cfg->ad_cfg->max_sink_modeA;
1653 aptx_dsp_cfg->aptx_ad_cfg.min_sink_modeB = aptx_bt_cfg->ad_cfg->min_sink_modeB;
1654 aptx_dsp_cfg->aptx_ad_cfg.max_sink_modeB = aptx_bt_cfg->ad_cfg->max_sink_modeB;
1655 aptx_dsp_cfg->aptx_ad_cfg.min_sink_modeC = aptx_bt_cfg->ad_cfg->min_sink_modeC;
1656 aptx_dsp_cfg->aptx_ad_cfg.max_sink_modeC = aptx_bt_cfg->ad_cfg->max_sink_modeC;
Sharad Sanglee378afe2018-09-03 20:04:17 +05301657 aptx_dsp_cfg->aptx_ad_cfg.mode = aptx_bt_cfg->ad_cfg->encoder_mode;
Sharad Sangle95d451b2018-06-19 12:24:20 +05301658 aptx_dsp_cfg->abr_cfg.imc_info.direction = IMC_RECEIVE;
1659 aptx_dsp_cfg->abr_cfg.imc_info.enable = IMC_ENABLE;
1660 aptx_dsp_cfg->abr_cfg.imc_info.purpose = IMC_PURPOSE_ID_BT_INFO;
1661 aptx_dsp_cfg->abr_cfg.imc_info.comm_instance = a2dp.abr_config.imc_instance;
1662
1663
1664 switch(aptx_dsp_cfg->aptx_ad_cfg.channel_mode) {
1665 case APTX_AD_CHANNEL_UNCHANGED:
1666 case APTX_AD_CHANNEL_JOINT_STEREO:
1667 case APTX_AD_CHANNEL_DUAL_MONO:
1668 case APTX_AD_CHANNEL_STEREO_TWS:
1669 case APTX_AD_CHANNEL_EARBUD:
1670 default:
1671 a2dp.enc_channels = CH_STEREO;
1672 aptx_dsp_cfg->custom_cfg.num_channels = CH_STEREO;
1673 aptx_dsp_cfg->custom_cfg.channel_mapping[0] = PCM_CHANNEL_L;
1674 aptx_dsp_cfg->custom_cfg.channel_mapping[1] = PCM_CHANNEL_R;
1675 break;
1676 case APTX_AD_CHANNEL_MONO:
1677 a2dp.enc_channels = CH_MONO;
1678 aptx_dsp_cfg->custom_cfg.num_channels = CH_MONO;
1679 aptx_dsp_cfg->custom_cfg.channel_mapping[0] = PCM_CHANNEL_C;
1680 break;
1681 }
1682 switch(aptx_dsp_cfg->aptx_ad_cfg.sampling_freq) {
1683 case APTX_AD_SR_UNCHANGED:
1684 case APTX_AD_48:
1685 default:
1686 a2dp.enc_sampling_rate = SAMPLING_RATE_48K;
1687 aptx_dsp_cfg->custom_cfg.sample_rate = SAMPLING_RATE_48K;
1688 break;
1689 case APTX_AD_44_1:
1690 a2dp.enc_sampling_rate = SAMPLING_RATE_441K;
1691 aptx_dsp_cfg->custom_cfg.sample_rate = SAMPLING_RATE_441K;
1692 break;
1693 }
1694 ALOGV("Successfully updated APTX AD enc format with \
1695 samplingrate: %d channels:%d",
1696 aptx_dsp_cfg->custom_cfg.sample_rate,
1697 aptx_dsp_cfg->custom_cfg.num_channels);
1698
1699 return ret;
1700}
Manisha Agarwala51768b2018-11-01 16:30:52 +05301701
1702static void audio_a2dp_update_tws_channel_mode()
1703{
1704 char* channel_mode;
1705 struct mixer_ctl *ctl_channel_mode;
1706 if (a2dp.is_tws_mono_mode_on)
1707 channel_mode = "One";
1708 else
1709 channel_mode = "Two";
1710 ctl_channel_mode = mixer_get_ctl_by_name(a2dp.adev->mixer,MIXER_FMT_TWS_CHANNEL_MODE);
1711 if (!ctl_channel_mode) {
1712 ALOGE("failed to get tws mixer ctl");
1713 return;
1714 }
1715 if (mixer_ctl_set_enum_by_string(ctl_channel_mode, channel_mode) != 0) {
1716 ALOGE("%s: Failed to set the channel mode = %s", __func__, channel_mode);
1717 return;
1718 }
1719}
1720
Manish Dewangan6a252632017-12-04 17:27:44 +05301721static int update_aptx_dsp_config_v2(struct aptx_enc_cfg_t *aptx_dsp_cfg,
1722 audio_aptx_encoder_config *aptx_bt_cfg)
1723{
1724 int ret = 0;
1725
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001726 if (aptx_dsp_cfg == NULL || aptx_bt_cfg == NULL) {
Manish Dewangan6a252632017-12-04 17:27:44 +05301727 ALOGE("Invalid param, aptx_dsp_cfg %p aptx_bt_cfg %p",
1728 aptx_dsp_cfg, aptx_bt_cfg);
1729 return -EINVAL;
1730 }
1731
1732 memset(aptx_dsp_cfg, 0x0, sizeof(struct aptx_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02001733 aptx_dsp_cfg->custom_cfg.enc_format = MEDIA_FMT_APTX;
Manish Dewangan6a252632017-12-04 17:27:44 +05301734
1735 if (!a2dp.is_aptx_dual_mono_supported) {
1736 aptx_dsp_cfg->custom_cfg.sample_rate = aptx_bt_cfg->default_cfg->sampling_rate;
1737 aptx_dsp_cfg->custom_cfg.num_channels = aptx_bt_cfg->default_cfg->channels;
1738 } else {
1739 aptx_dsp_cfg->custom_cfg.sample_rate = aptx_bt_cfg->dual_mono_cfg->sampling_rate;
1740 aptx_dsp_cfg->custom_cfg.num_channels = aptx_bt_cfg->dual_mono_cfg->channels;
1741 aptx_dsp_cfg->aptx_v2_cfg.sync_mode = aptx_bt_cfg->dual_mono_cfg->sync_mode;
1742 }
1743
1744 switch(aptx_dsp_cfg->custom_cfg.num_channels) {
1745 case 1:
1746 aptx_dsp_cfg->custom_cfg.channel_mapping[0] = PCM_CHANNEL_C;
1747 break;
1748 case 2:
1749 default:
Manisha Agarwala51768b2018-11-01 16:30:52 +05301750 if (!a2dp.is_tws_mono_mode_on) {
1751 aptx_dsp_cfg->custom_cfg.channel_mapping[0] = PCM_CHANNEL_L;
1752 aptx_dsp_cfg->custom_cfg.channel_mapping[1] = PCM_CHANNEL_R;
1753 }
1754 else {
1755 a2dp.is_tws_mono_mode_on = true;
1756 ALOGD("Update tws for mono_mode_on: %d",a2dp.is_tws_mono_mode_on);
Manisha Agarwala51768b2018-11-01 16:30:52 +05301757 }
Manish Dewangan6a252632017-12-04 17:27:44 +05301758 break;
1759 }
1760 a2dp.enc_channels = aptx_dsp_cfg->custom_cfg.num_channels;
1761 if (!a2dp.is_aptx_dual_mono_supported) {
1762 a2dp.enc_sampling_rate = aptx_bt_cfg->default_cfg->sampling_rate;
1763 ALOGV("Successfully updated APTX enc format with samplingrate: %d \
1764 channels:%d", aptx_dsp_cfg->custom_cfg.sample_rate,
1765 aptx_dsp_cfg->custom_cfg.num_channels);
1766 } else {
1767 a2dp.enc_sampling_rate = aptx_bt_cfg->dual_mono_cfg->sampling_rate;
1768 ALOGV("Successfully updated APTX dual mono enc format with \
1769 samplingrate: %d channels:%d syncmode %d",
1770 aptx_dsp_cfg->custom_cfg.sample_rate,
1771 aptx_dsp_cfg->custom_cfg.num_channels,
1772 aptx_dsp_cfg->aptx_v2_cfg.sync_mode);
1773 }
1774 return ret;
1775}
1776#else
1777static int update_aptx_dsp_config_v1(struct custom_enc_cfg_t *aptx_dsp_cfg,
1778 audio_aptx_encoder_config *aptx_bt_cfg)
1779{
1780 int ret = 0;
1781
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001782 if (aptx_dsp_cfg == NULL || aptx_bt_cfg == NULL) {
Manish Dewangan6a252632017-12-04 17:27:44 +05301783 ALOGE("Invalid param, aptx_dsp_cfg %p aptx_bt_cfg %p",
1784 aptx_dsp_cfg, aptx_bt_cfg);
1785 return -EINVAL;
1786 }
1787
1788 memset(&aptx_dsp_cfg, 0x0, sizeof(struct custom_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02001789 aptx_dsp_cfg->enc_format = MEDIA_FMT_APTX;
Manish Dewangan6a252632017-12-04 17:27:44 +05301790 aptx_dsp_cfg->sample_rate = aptx_bt_cfg->sampling_rate;
1791 aptx_dsp_cfg->num_channels = aptx_bt_cfg->channels;
1792 switch(aptx_dsp_cfg->num_channels) {
1793 case 1:
1794 aptx_dsp_cfg->channel_mapping[0] = PCM_CHANNEL_C;
1795 break;
1796 case 2:
1797 default:
1798 aptx_dsp_cfg->channel_mapping[0] = PCM_CHANNEL_L;
1799 aptx_dsp_cfg->channel_mapping[1] = PCM_CHANNEL_R;
1800 break;
1801 }
1802
1803 ALOGV("Updated APTX enc format with samplingrate: %d channels:%d",
1804 aptx_dsp_cfg->sample_rate, aptx_dsp_cfg->num_channels);
1805
1806 return ret;
1807}
1808#endif
1809
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301810/* API to configure APTX DSP encoder */
1811bool configure_aptx_enc_format(audio_aptx_encoder_config *aptx_bt_cfg)
1812{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301813 struct mixer_ctl *ctl_enc_data = NULL;
Zhou Song12c29502019-03-16 10:37:18 +08001814 int mixer_size = 0;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301815 bool is_configured = false;
1816 int ret = 0;
Manish Dewangan6a252632017-12-04 17:27:44 +05301817 int sample_rate_backup;
Preetam Singh Ranawat109bb3c2018-01-30 12:12:02 +05301818
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001819 if (aptx_bt_cfg == NULL)
Preetam Singh Ranawat109bb3c2018-01-30 12:12:02 +05301820 return false;
1821
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001822 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
1823 if (!ctl_enc_data) {
1824 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identifed");
1825 return false;
1826 }
1827
Manish Dewangan6a252632017-12-04 17:27:44 +05301828#ifndef LINUX_ENABLED
1829 struct aptx_enc_cfg_t aptx_dsp_cfg;
Sharad Sangle95d451b2018-06-19 12:24:20 +05301830 struct aptx_ad_enc_cfg_t aptx_ad_dsp_cfg;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001831 if (a2dp.is_aptx_adaptive) {
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001832 mixer_size = sizeof(struct aptx_ad_enc_cfg_t);
1833 ret = update_aptx_ad_dsp_config(&aptx_ad_dsp_cfg, aptx_bt_cfg);
1834 sample_rate_backup = aptx_ad_dsp_cfg.custom_cfg.sample_rate;
1835 } else {
Sharad Sangle95d451b2018-06-19 12:24:20 +05301836 mixer_size = sizeof(struct aptx_enc_cfg_t);
1837 sample_rate_backup = aptx_bt_cfg->default_cfg->sampling_rate;
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001838 ret = update_aptx_dsp_config_v2(&aptx_dsp_cfg, aptx_bt_cfg);
1839 }
1840 if (ret) {
1841 is_configured = false;
1842 goto fail;
1843 }
1844
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001845 if (a2dp.is_aptx_adaptive) {
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001846 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aptx_ad_dsp_cfg,
1847 mixer_size);
1848 } else {
1849 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aptx_dsp_cfg,
1850 mixer_size);
Sharad Sangle95d451b2018-06-19 12:24:20 +05301851 }
Manish Dewangan6a252632017-12-04 17:27:44 +05301852#else
1853 struct custom_enc_cfg_t aptx_dsp_cfg;
1854 mixer_size = sizeof(struct custom_enc_cfg_t);
1855 sample_rate_backup = aptx_bt_cfg->sampling_rate;
Manish Dewangan6a252632017-12-04 17:27:44 +05301856 ret = update_aptx_dsp_config_v1(&aptx_dsp_cfg, aptx_bt_cfg);
Manish Dewangan6a252632017-12-04 17:27:44 +05301857 if (ret) {
1858 is_configured = false;
1859 goto fail;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301860 }
Weiyin Jiang20d3fa62018-08-01 18:06:27 +08001861 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aptx_dsp_cfg,
1862 mixer_size);
1863#endif
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301864 if (ret != 0) {
1865 ALOGE("%s: Failed to set APTX encoder config", __func__);
1866 is_configured = false;
1867 goto fail;
1868 }
Ramu Gottipati3e0d4c32018-11-05 15:57:28 +05301869#ifndef LINUX_ENABLED //Temporarily disabled for LE, need to take care while doing VT FR
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001870 if (a2dp.is_aptx_adaptive)
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301871 ret = a2dp_set_bit_format(aptx_bt_cfg->ad_cfg->bits_per_sample);
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001872 else if (a2dp.is_aptx_dual_mono_supported)
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301873 ret = a2dp_set_bit_format(aptx_bt_cfg->dual_mono_cfg->bits_per_sample);
1874 else
1875 ret = a2dp_set_bit_format(aptx_bt_cfg->default_cfg->bits_per_sample);
Ramu Gottipati3e0d4c32018-11-05 15:57:28 +05301876#endif
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301877 if (ret != 0) {
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301878 is_configured = false;
1879 goto fail;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301880 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301881 is_configured = true;
Sharad Sangle95d451b2018-06-19 12:24:20 +05301882 if (a2dp.is_aptx_adaptive)
Surendar Karka2febd452018-12-13 17:56:43 +05301883 a2dp.bt_encoder_format = CODEC_TYPE_APTX_AD;
Sharad Sangle95d451b2018-06-19 12:24:20 +05301884 else
Surendar Karka2febd452018-12-13 17:56:43 +05301885 a2dp.bt_encoder_format = CODEC_TYPE_APTX;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301886fail:
Manish Dewangan6a252632017-12-04 17:27:44 +05301887 /*restore sample rate */
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001888 if (!is_configured)
Manish Dewangan6a252632017-12-04 17:27:44 +05301889 a2dp.enc_sampling_rate = sample_rate_backup;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301890 return is_configured;
1891}
1892
1893/* API to configure APTX HD DSP encoder
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301894 */
Manish Dewangan6a252632017-12-04 17:27:44 +05301895#ifndef LINUX_ENABLED
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07001896bool configure_aptx_hd_enc_format(audio_aptx_default_config *aptx_bt_cfg)
Manish Dewangan6a252632017-12-04 17:27:44 +05301897#else
1898bool configure_aptx_hd_enc_format(audio_aptx_encoder_config *aptx_bt_cfg)
1899#endif
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301900{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301901 struct mixer_ctl *ctl_enc_data = NULL;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05301902 struct custom_enc_cfg_t aptx_dsp_cfg;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301903 bool is_configured = false;
1904 int ret = 0;
1905
Arun Mirpuri5dc77802019-02-26 16:32:42 -08001906 if (aptx_bt_cfg == NULL)
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301907 return false;
1908
1909 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
1910 if (!ctl_enc_data) {
Florian Pfister1a84f312018-07-19 14:38:18 +02001911 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identified");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301912 is_configured = false;
1913 goto fail;
1914 }
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301915
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05301916 memset(&aptx_dsp_cfg, 0x0, sizeof(struct custom_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02001917 aptx_dsp_cfg.enc_format = MEDIA_FMT_APTX_HD;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301918 aptx_dsp_cfg.sample_rate = aptx_bt_cfg->sampling_rate;
1919 aptx_dsp_cfg.num_channels = aptx_bt_cfg->channels;
1920 switch(aptx_dsp_cfg.num_channels) {
1921 case 1:
1922 aptx_dsp_cfg.channel_mapping[0] = PCM_CHANNEL_C;
1923 break;
1924 case 2:
1925 default:
1926 aptx_dsp_cfg.channel_mapping[0] = PCM_CHANNEL_L;
1927 aptx_dsp_cfg.channel_mapping[1] = PCM_CHANNEL_R;
1928 break;
1929 }
1930 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aptx_dsp_cfg,
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05301931 sizeof(struct custom_enc_cfg_t));
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301932 if (ret != 0) {
1933 ALOGE("%s: Failed to set APTX HD encoder config", __func__);
1934 is_configured = false;
1935 goto fail;
1936 }
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301937 ret = a2dp_set_bit_format(aptx_bt_cfg->bits_per_sample);
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301938 if (ret != 0) {
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301939 is_configured = false;
1940 goto fail;
1941 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301942 is_configured = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02001943 a2dp.bt_encoder_format = CODEC_TYPE_APTX_HD;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301944 a2dp.enc_sampling_rate = aptx_bt_cfg->sampling_rate;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05301945 a2dp.enc_channels = aptx_bt_cfg->channels;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301946 ALOGV("Successfully updated APTX HD encformat with samplingrate: %d channels:%d",
1947 aptx_dsp_cfg.sample_rate, aptx_dsp_cfg.num_channels);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301948fail:
1949 return is_configured;
1950}
1951
1952/* API to configure AAC DSP encoder */
1953bool configure_aac_enc_format(audio_aac_encoder_config *aac_bt_cfg)
1954{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301955 struct mixer_ctl *ctl_enc_data = NULL;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301956 struct aac_enc_cfg_t aac_dsp_cfg;
1957 bool is_configured = false;
1958 int ret = 0;
1959
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07001960 if (aac_bt_cfg == NULL)
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301961 return false;
1962
1963 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
1964 if (!ctl_enc_data) {
Florian Pfister1a84f312018-07-19 14:38:18 +02001965 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identified");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301966 is_configured = false;
1967 goto fail;
1968 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301969 memset(&aac_dsp_cfg, 0x0, sizeof(struct aac_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02001970 aac_dsp_cfg.enc_format = MEDIA_FMT_AAC;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301971 aac_dsp_cfg.bit_rate = aac_bt_cfg->bitrate;
Naresh Tannirua42d0bd2016-09-21 15:30:46 +05301972 aac_dsp_cfg.sample_rate = aac_bt_cfg->sampling_rate;
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07001973 switch (aac_bt_cfg->enc_mode) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301974 case 0:
1975 aac_dsp_cfg.enc_mode = MEDIA_FMT_AAC_AOT_LC;
1976 break;
1977 case 2:
1978 aac_dsp_cfg.enc_mode = MEDIA_FMT_AAC_AOT_PS;
1979 break;
1980 case 1:
1981 default:
1982 aac_dsp_cfg.enc_mode = MEDIA_FMT_AAC_AOT_SBR;
1983 break;
1984 }
Naresh Tannirua42d0bd2016-09-21 15:30:46 +05301985 aac_dsp_cfg.aac_fmt_flag = aac_bt_cfg->format_flag;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301986 aac_dsp_cfg.channel_cfg = aac_bt_cfg->channels;
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07001987
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301988 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aac_dsp_cfg,
1989 sizeof(struct aac_enc_cfg_t));
1990 if (ret != 0) {
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07001991 ALOGE("%s: Failed to set AAC encoder config", __func__);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05301992 is_configured = false;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301993 goto fail;
1994 }
Samyak Jain2cddc0e2018-07-18 15:22:27 +05301995 ret = a2dp_set_bit_format(aac_bt_cfg->bits_per_sample);
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301996 if (ret != 0) {
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05301997 is_configured = false;
1998 goto fail;
1999 }
2000 is_configured = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02002001 a2dp.bt_encoder_format = CODEC_TYPE_AAC;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05302002 a2dp.enc_sampling_rate = aac_bt_cfg->sampling_rate;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002003 a2dp.enc_channels = aac_bt_cfg->channels;
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07002004 ALOGV("%s: Successfully updated AAC enc format with sampling rate: %d channels:%d",
2005 __func__, aac_dsp_cfg.sample_rate, aac_dsp_cfg.channel_cfg);
2006fail:
2007 return is_configured;
2008}
2009
2010bool configure_aac_enc_format_v2(audio_aac_encoder_config_v2 *aac_bt_cfg)
2011{
2012 struct mixer_ctl *ctl_enc_data = NULL;
2013 struct aac_enc_cfg_v2_t aac_dsp_cfg;
2014 bool is_configured = false;
2015 int ret = 0;
2016
2017 if (aac_bt_cfg == NULL)
2018 return false;
2019
2020 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
2021 if (!ctl_enc_data) {
2022 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identifed");
2023 is_configured = false;
2024 goto fail;
2025 }
2026 memset(&aac_dsp_cfg, 0x0, sizeof(struct aac_enc_cfg_v2_t));
Ramu Gottipati08d82e72018-12-17 11:52:14 +05302027 aac_dsp_cfg.aac_enc_cfg.enc_format = MEDIA_FMT_AAC;
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07002028 aac_dsp_cfg.aac_enc_cfg.bit_rate = aac_bt_cfg->audio_aac_enc_cfg.bitrate;
2029 aac_dsp_cfg.aac_enc_cfg.sample_rate = aac_bt_cfg->audio_aac_enc_cfg.sampling_rate;
2030 switch (aac_bt_cfg->audio_aac_enc_cfg.enc_mode) {
2031 case 0:
2032 aac_dsp_cfg.aac_enc_cfg.enc_mode = MEDIA_FMT_AAC_AOT_LC;
2033 break;
2034 case 2:
2035 aac_dsp_cfg.aac_enc_cfg.enc_mode = MEDIA_FMT_AAC_AOT_PS;
2036 break;
2037 case 1:
2038 default:
2039 aac_dsp_cfg.aac_enc_cfg.enc_mode = MEDIA_FMT_AAC_AOT_SBR;
2040 break;
2041 }
2042 aac_dsp_cfg.aac_enc_cfg.aac_fmt_flag = aac_bt_cfg->audio_aac_enc_cfg.format_flag;
2043 aac_dsp_cfg.aac_enc_cfg.channel_cfg = aac_bt_cfg->audio_aac_enc_cfg.channels;
2044 aac_dsp_cfg.frame_ctl.ctl_type = aac_bt_cfg->frame_ctl.ctl_type;
2045 aac_dsp_cfg.frame_ctl.ctl_value = aac_bt_cfg->frame_ctl.ctl_value;
2046
2047 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aac_dsp_cfg,
2048 sizeof(struct aac_enc_cfg_v2_t));
2049 if (ret != 0) {
2050 ALOGE("%s: Failed to set AAC encoder config", __func__);
2051 is_configured = false;
2052 goto fail;
2053 }
2054 ret = a2dp_set_bit_format(aac_bt_cfg->audio_aac_enc_cfg.bits_per_sample);
2055 if (ret != 0) {
2056 is_configured = false;
2057 goto fail;
2058 }
2059 is_configured = true;
Ramu Gottipati08d82e72018-12-17 11:52:14 +05302060 a2dp.bt_encoder_format = CODEC_TYPE_AAC;
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07002061 a2dp.enc_sampling_rate = aac_bt_cfg->audio_aac_enc_cfg.sampling_rate;
2062 a2dp.enc_channels = aac_bt_cfg->audio_aac_enc_cfg.channels;
2063 ALOGV("%s: Successfully updated AAC enc format with sampling rate: %d channels:%d",
2064 __func__, aac_dsp_cfg.aac_enc_cfg.sample_rate, aac_dsp_cfg.aac_enc_cfg.channel_cfg);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302065fail:
2066 return is_configured;
2067}
2068
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302069bool configure_celt_enc_format(audio_celt_encoder_config *celt_bt_cfg)
2070{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05302071 struct mixer_ctl *ctl_enc_data = NULL;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302072 struct celt_enc_cfg_t celt_dsp_cfg;
2073 bool is_configured = false;
2074 int ret = 0;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002075 if (celt_bt_cfg == NULL)
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302076 return false;
2077
2078 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
2079 if (!ctl_enc_data) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002080 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identified");
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302081 is_configured = false;
2082 goto fail;
2083 }
2084 memset(&celt_dsp_cfg, 0x0, sizeof(struct celt_enc_cfg_t));
2085
Florian Pfister1a84f312018-07-19 14:38:18 +02002086 celt_dsp_cfg.custom_cfg.enc_format = MEDIA_FMT_CELT;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302087 celt_dsp_cfg.custom_cfg.sample_rate = celt_bt_cfg->sampling_rate;
2088 celt_dsp_cfg.custom_cfg.num_channels = celt_bt_cfg->channels;
2089 switch(celt_dsp_cfg.custom_cfg.num_channels) {
2090 case 1:
2091 celt_dsp_cfg.custom_cfg.channel_mapping[0] = PCM_CHANNEL_C;
2092 break;
2093 case 2:
2094 default:
2095 celt_dsp_cfg.custom_cfg.channel_mapping[0] = PCM_CHANNEL_L;
2096 celt_dsp_cfg.custom_cfg.channel_mapping[1] = PCM_CHANNEL_R;
2097 break;
2098 }
2099
2100 celt_dsp_cfg.custom_cfg.custom_size = sizeof(struct celt_enc_cfg_t);
2101
2102 celt_dsp_cfg.celt_cfg.frame_size = celt_bt_cfg->frame_size;
2103 celt_dsp_cfg.celt_cfg.complexity = celt_bt_cfg->complexity;
2104 celt_dsp_cfg.celt_cfg.prediction_mode = celt_bt_cfg->prediction_mode;
2105 celt_dsp_cfg.celt_cfg.vbr_flag = celt_bt_cfg->vbr_flag;
2106 celt_dsp_cfg.celt_cfg.bit_rate = celt_bt_cfg->bitrate;
2107
2108 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&celt_dsp_cfg,
2109 sizeof(struct celt_enc_cfg_t));
2110 if (ret != 0) {
2111 ALOGE("%s: Failed to set CELT encoder config", __func__);
2112 is_configured = false;
2113 goto fail;
2114 }
Samyak Jain2cddc0e2018-07-18 15:22:27 +05302115 ret = a2dp_set_bit_format(celt_bt_cfg->bits_per_sample);
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302116 if (ret != 0) {
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302117 is_configured = false;
2118 goto fail;
2119 }
2120 is_configured = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02002121 a2dp.bt_encoder_format = CODEC_TYPE_CELT;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302122 a2dp.enc_sampling_rate = celt_bt_cfg->sampling_rate;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05302123 a2dp.enc_channels = celt_bt_cfg->channels;
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302124 ALOGV("Successfully updated CELT encformat with samplingrate: %d channels:%d",
2125 celt_dsp_cfg.custom_cfg.sample_rate, celt_dsp_cfg.custom_cfg.num_channels);
2126fail:
2127 return is_configured;
2128}
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302129
2130bool configure_ldac_enc_format(audio_ldac_encoder_config *ldac_bt_cfg)
2131{
Samyak Jain2cddc0e2018-07-18 15:22:27 +05302132 struct mixer_ctl *ldac_enc_data = NULL;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302133 struct ldac_enc_cfg_t ldac_dsp_cfg;
2134 bool is_configured = false;
2135 int ret = 0;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002136 if (ldac_bt_cfg == NULL)
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302137 return false;
2138
2139 ldac_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
2140 if (!ldac_enc_data) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002141 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identified");
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302142 is_configured = false;
2143 goto fail;
2144 }
2145 memset(&ldac_dsp_cfg, 0x0, sizeof(struct ldac_enc_cfg_t));
2146
Florian Pfister1a84f312018-07-19 14:38:18 +02002147 ldac_dsp_cfg.custom_cfg.enc_format = MEDIA_FMT_LDAC;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302148 ldac_dsp_cfg.custom_cfg.sample_rate = ldac_bt_cfg->sampling_rate;
2149 ldac_dsp_cfg.ldac_cfg.channel_mode = ldac_bt_cfg->channel_mode;
2150 switch(ldac_dsp_cfg.ldac_cfg.channel_mode) {
2151 case 4:
2152 ldac_dsp_cfg.custom_cfg.channel_mapping[0] = PCM_CHANNEL_C;
2153 ldac_dsp_cfg.custom_cfg.num_channels = 1;
2154 break;
2155 case 2:
2156 case 1:
2157 default:
2158 ldac_dsp_cfg.custom_cfg.channel_mapping[0] = PCM_CHANNEL_L;
2159 ldac_dsp_cfg.custom_cfg.channel_mapping[1] = PCM_CHANNEL_R;
2160 ldac_dsp_cfg.custom_cfg.num_channels = 2;
2161 break;
2162 }
2163
2164 ldac_dsp_cfg.custom_cfg.custom_size = sizeof(struct ldac_enc_cfg_t);
2165 ldac_dsp_cfg.ldac_cfg.mtu = ldac_bt_cfg->mtu;
2166 ldac_dsp_cfg.ldac_cfg.bit_rate = ldac_bt_cfg->bit_rate;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002167 if (ldac_bt_cfg->is_abr_enabled) {
2168 ldac_dsp_cfg.abr_cfg.mapping_info = ldac_bt_cfg->level_to_bitrate_map;
2169 ldac_dsp_cfg.abr_cfg.imc_info.direction = IMC_RECEIVE;
2170 ldac_dsp_cfg.abr_cfg.imc_info.enable = IMC_ENABLE;
2171 ldac_dsp_cfg.abr_cfg.imc_info.purpose = IMC_PURPOSE_ID_BT_INFO;
2172 ldac_dsp_cfg.abr_cfg.imc_info.comm_instance = a2dp.abr_config.imc_instance;
Aniket Kumar Lata8c884eb2018-08-06 15:30:50 -07002173 ldac_dsp_cfg.abr_cfg.is_abr_enabled = ldac_bt_cfg->is_abr_enabled;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002174 }
2175
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302176 ret = mixer_ctl_set_array(ldac_enc_data, (void *)&ldac_dsp_cfg,
2177 sizeof(struct ldac_enc_cfg_t));
2178 if (ret != 0) {
2179 ALOGE("%s: Failed to set LDAC encoder config", __func__);
2180 is_configured = false;
2181 goto fail;
2182 }
Samyak Jain2cddc0e2018-07-18 15:22:27 +05302183 ret = a2dp_set_bit_format(ldac_bt_cfg->bits_per_sample);
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302184 if (ret != 0) {
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302185 is_configured = false;
2186 goto fail;
2187 }
2188 is_configured = true;
Florian Pfister1a84f312018-07-19 14:38:18 +02002189 a2dp.bt_encoder_format = CODEC_TYPE_LDAC;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302190 a2dp.enc_sampling_rate = ldac_bt_cfg->sampling_rate;
2191 a2dp.enc_channels = ldac_dsp_cfg.custom_cfg.num_channels;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002192 a2dp.abr_config.is_abr_enabled = ldac_bt_cfg->is_abr_enabled;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302193 ALOGV("Successfully updated LDAC encformat with samplingrate: %d channels:%d",
2194 ldac_dsp_cfg.custom_cfg.sample_rate, ldac_dsp_cfg.custom_cfg.num_channels);
2195fail:
2196 return is_configured;
2197}
2198
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302199bool configure_a2dp_encoder_format()
2200{
2201 void *codec_info = NULL;
2202 uint8_t multi_cast = 0, num_dev = 1;
Florian Pfister1a84f312018-07-19 14:38:18 +02002203 codec_t codec_type = CODEC_TYPE_INVALID;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302204 bool is_configured = false;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002205 audio_aptx_encoder_config aptx_encoder_cfg;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302206
Florian Pfister1a84f312018-07-19 14:38:18 +02002207 if (!a2dp.audio_get_enc_config) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302208 ALOGE(" a2dp handle is not identified, ignoring a2dp encoder config");
2209 return false;
2210 }
2211 ALOGD("configure_a2dp_encoder_format start");
Florian Pfister1a84f312018-07-19 14:38:18 +02002212 codec_info = a2dp.audio_get_enc_config(&multi_cast, &num_dev,
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302213 &codec_type);
2214
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002215 // ABR disabled by default for all codecs
2216 a2dp.abr_config.is_abr_enabled = false;
Sharad Sangle95d451b2018-06-19 12:24:20 +05302217 a2dp.is_aptx_adaptive = false;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002218
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302219 switch(codec_type) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002220 case CODEC_TYPE_SBC:
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302221 ALOGD(" Received SBC encoder supported BT device");
2222 is_configured =
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002223 configure_sbc_enc_format((audio_sbc_encoder_config *)codec_info);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302224 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002225 case CODEC_TYPE_APTX:
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302226 ALOGD(" Received APTX encoder supported BT device");
Manish Dewangan6a252632017-12-04 17:27:44 +05302227#ifndef LINUX_ENABLED
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002228 a2dp.is_aptx_dual_mono_supported = false;
2229 aptx_encoder_cfg.default_cfg = (audio_aptx_default_config *)codec_info;
Manish Dewangan6a252632017-12-04 17:27:44 +05302230#endif
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302231 is_configured =
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002232 configure_aptx_enc_format(&aptx_encoder_cfg);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302233 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002234 case CODEC_TYPE_APTX_HD:
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302235 ALOGD(" Received APTX HD encoder supported BT device");
Manish Dewangan6a252632017-12-04 17:27:44 +05302236#ifndef LINUX_ENABLED
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302237 is_configured =
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002238 configure_aptx_hd_enc_format((audio_aptx_default_config *)codec_info);
Manish Dewangan6a252632017-12-04 17:27:44 +05302239#else
2240 is_configured =
2241 configure_aptx_hd_enc_format((audio_aptx_encoder_config *)codec_info);
2242#endif
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002243 break;
Manish Dewangan6a252632017-12-04 17:27:44 +05302244#ifndef LINUX_ENABLED
Florian Pfister1a84f312018-07-19 14:38:18 +02002245 case CODEC_TYPE_APTX_DUAL_MONO:
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002246 ALOGD(" Received APTX dual mono encoder supported BT device");
2247 a2dp.is_aptx_dual_mono_supported = true;
Manisha Agarwala51768b2018-11-01 16:30:52 +05302248 if (a2dp.audio_is_tws_mono_mode_enable != NULL)
2249 a2dp.is_tws_mono_mode_on = a2dp.audio_is_tws_mono_mode_enable();
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002250 aptx_encoder_cfg.dual_mono_cfg = (audio_aptx_dual_mono_config *)codec_info;
2251 is_configured =
2252 configure_aptx_enc_format(&aptx_encoder_cfg);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302253 break;
Manish Dewangan6a252632017-12-04 17:27:44 +05302254#endif
Florian Pfister1a84f312018-07-19 14:38:18 +02002255 case CODEC_TYPE_AAC:
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302256 ALOGD(" Received AAC encoder supported BT device");
Preetam Singh Ranawat3d78f522018-06-20 14:41:26 -07002257 bool is_aac_frame_ctl_enabled =
2258 property_get_bool("persist.vendor.bt.aac_frm_ctl.enabled", false);
2259 is_configured = is_aac_frame_ctl_enabled ?
2260 configure_aac_enc_format_v2((audio_aac_encoder_config_v2 *) codec_info) :
2261 configure_aac_enc_format((audio_aac_encoder_config *) codec_info);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302262 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002263 case CODEC_TYPE_CELT:
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302264 ALOGD(" Received CELT encoder supported BT device");
2265 is_configured =
2266 configure_celt_enc_format((audio_celt_encoder_config *)codec_info);
2267 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002268 case CODEC_TYPE_LDAC:
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302269 ALOGD(" Received LDAC encoder supported BT device");
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002270 if (!instance_id || instance_id > MAX_INSTANCE_ID)
2271 instance_id = MAX_INSTANCE_ID;
2272 a2dp.abr_config.imc_instance = instance_id--;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302273 is_configured =
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002274 (configure_ldac_enc_format((audio_ldac_encoder_config *)codec_info) &&
Surendar Karka2febd452018-12-13 17:56:43 +05302275 configure_a2dp_source_decoder_format(CODEC_TYPE_LDAC));
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302276 break;
Ramu Gottipati3e0d4c32018-11-05 15:57:28 +05302277#ifndef LINUX_ENABLED //Temporarily disabled for LE, need to take care while doing VT FR
Surendar Karka2febd452018-12-13 17:56:43 +05302278 case CODEC_TYPE_APTX_AD:
Sharad Sangle95d451b2018-06-19 12:24:20 +05302279 ALOGD(" Received APTX AD encoder supported BT device");
2280 if (!instance_id || instance_id > MAX_INSTANCE_ID)
2281 instance_id = MAX_INSTANCE_ID;
2282 a2dp.abr_config.imc_instance = instance_id--;
2283 a2dp.abr_config.is_abr_enabled = true; // for APTX Adaptive ABR is Always on
2284 a2dp.is_aptx_adaptive = true;
2285 aptx_encoder_cfg.ad_cfg = (audio_aptx_ad_config *)codec_info;
2286 is_configured =
2287 (configure_aptx_enc_format(&aptx_encoder_cfg) &&
Ramu Gottipati02809682018-12-19 16:46:12 +05302288 configure_a2dp_source_decoder_format(MEDIA_FMT_APTX_AD));
Sharad Sangle95d451b2018-06-19 12:24:20 +05302289 break;
Ramu Gottipati3e0d4c32018-11-05 15:57:28 +05302290#endif
Aalique Grahame22e49102018-12-18 14:23:57 -08002291 case CODEC_TYPE_PCM:
2292 ALOGD("Received PCM format for BT device");
2293 a2dp.bt_encoder_format = CODEC_TYPE_PCM;
2294 is_configured = true;
2295 break;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302296 default:
2297 ALOGD(" Received Unsupported encoder formar");
2298 is_configured = false;
2299 break;
2300 }
2301 return is_configured;
2302}
2303
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002304int a2dp_start_playback()
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302305{
2306 int ret = 0;
2307
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002308 ALOGD("a2dp_start_playback start");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302309
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002310 if (!(a2dp.bt_lib_source_handle && a2dp.audio_source_start
Florian Pfister1a84f312018-07-19 14:38:18 +02002311 && a2dp.audio_get_enc_config)) {
2312 ALOGE("a2dp handle is not identified, Ignoring start playback request");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302313 return -ENOSYS;
2314 }
2315
Zhou Song12c29502019-03-16 10:37:18 +08002316 if (a2dp.a2dp_source_suspended || a2dp.swb_configured) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302317 //session will be restarted after suspend completion
2318 ALOGD("a2dp start requested during suspend state");
Naresh Tannirucd2353e2016-08-19 00:37:25 +05302319 return -ENOSYS;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302320 }
2321
Florian Pfister1a84f312018-07-19 14:38:18 +02002322 if (!a2dp.a2dp_source_started && !a2dp.a2dp_source_total_active_session_requests) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302323 ALOGD("calling BT module stream start");
2324 /* This call indicates BT IPC lib to start playback */
Florian Pfister1a84f312018-07-19 14:38:18 +02002325 ret = a2dp.audio_source_start();
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302326 ALOGE("BT controller start return = %d",ret);
2327 if (ret != 0 ) {
2328 ALOGE("BT controller start failed");
Florian Pfister1a84f312018-07-19 14:38:18 +02002329 a2dp.a2dp_source_started = false;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302330 } else {
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002331 if (configure_a2dp_encoder_format() == true) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002332 a2dp.a2dp_source_started = true;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302333 ret = 0;
2334 ALOGD("Start playback successful to BT library");
2335 } else {
2336 ALOGD(" unable to configure DSP encoder");
Florian Pfister1a84f312018-07-19 14:38:18 +02002337 a2dp.a2dp_source_started = false;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302338 ret = -ETIMEDOUT;
2339 }
2340 }
2341 }
2342
Florian Pfister1a84f312018-07-19 14:38:18 +02002343 if (a2dp.a2dp_source_started) {
2344 a2dp.a2dp_source_total_active_session_requests++;
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05302345 a2dp_check_and_set_scrambler();
Manisha Agarwal02a0b7f2019-02-06 19:24:46 +05302346 audio_a2dp_update_tws_channel_mode();
Florian Pfister1a84f312018-07-19 14:38:18 +02002347 a2dp_set_backend_cfg(SOURCE);
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002348 if (a2dp.abr_config.is_abr_enabled)
2349 start_abr();
Preetam Singh Ranawatc2bef792017-11-22 10:59:15 +05302350 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302351
2352 ALOGD("start A2DP playback total active sessions :%d",
Florian Pfister1a84f312018-07-19 14:38:18 +02002353 a2dp.a2dp_source_total_active_session_requests);
2354 return ret;
2355}
2356
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002357uint64_t a2dp_get_decoder_latency()
Florian Pfister1a84f312018-07-19 14:38:18 +02002358{
2359 uint32_t latency = 0;
2360
2361 switch(a2dp.bt_decoder_format) {
2362 case CODEC_TYPE_SBC:
2363 latency = DEFAULT_SINK_LATENCY_SBC;
2364 break;
2365 case CODEC_TYPE_AAC:
2366 latency = DEFAULT_SINK_LATENCY_AAC;
2367 break;
2368 default:
2369 latency = 200;
2370 ALOGD("No valid decoder defined, setting latency to %dms", latency);
2371 break;
2372 }
2373 return (uint64_t)latency;
2374}
2375
2376bool a2dp_send_sink_setup_complete(void) {
2377 uint64_t system_latency = 0;
2378 bool is_complete = false;
2379
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002380 system_latency = a2dp_get_decoder_latency();
Florian Pfister1a84f312018-07-19 14:38:18 +02002381
2382 if (a2dp.audio_sink_session_setup_complete(system_latency) == 0) {
2383 is_complete = true;
2384 }
2385 return is_complete;
2386}
2387
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002388bool a2dp_sink_is_ready()
2389{
2390 bool ret = false;
2391
2392 if ((a2dp.bt_state_sink != A2DP_STATE_DISCONNECTED) &&
2393 (a2dp.is_a2dp_offload_supported) &&
2394 (a2dp.audio_sink_check_a2dp_ready))
2395 ret = a2dp.audio_sink_check_a2dp_ready();
2396 return ret;
2397}
2398
2399int a2dp_start_capture()
Florian Pfister1a84f312018-07-19 14:38:18 +02002400{
2401 int ret = 0;
2402
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002403 ALOGD("a2dp_start_capture start");
Florian Pfister1a84f312018-07-19 14:38:18 +02002404
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002405 if (!(a2dp.bt_lib_sink_handle && a2dp.audio_sink_start
Florian Pfister1a84f312018-07-19 14:38:18 +02002406 && a2dp.audio_get_dec_config)) {
2407 ALOGE("a2dp handle is not identified, Ignoring start capture request");
2408 return -ENOSYS;
2409 }
2410
2411 if (!a2dp.a2dp_sink_started && !a2dp.a2dp_sink_total_active_session_requests) {
2412 ALOGD("calling BT module stream start");
2413 /* This call indicates BT IPC lib to start capture */
2414 ret = a2dp.audio_sink_start();
2415 ALOGE("BT controller start capture return = %d",ret);
2416 if (ret != 0 ) {
2417 ALOGE("BT controller start capture failed");
2418 a2dp.a2dp_sink_started = false;
2419 } else {
2420
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002421 if (!a2dp_sink_is_ready()) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002422 ALOGD("Wait for capture ready not successful");
2423 ret = -ETIMEDOUT;
2424 }
2425
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002426 if (configure_a2dp_sink_decoder_format() == true) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002427 a2dp.a2dp_sink_started = true;
2428 ret = 0;
2429 ALOGD("Start capture successful to BT library");
2430 } else {
2431 ALOGD(" unable to configure DSP decoder");
2432 a2dp.a2dp_sink_started = false;
2433 ret = -ETIMEDOUT;
2434 }
2435
2436 if (!a2dp_send_sink_setup_complete()) {
2437 ALOGD("sink_setup_complete not successful");
2438 ret = -ETIMEDOUT;
2439 }
2440 }
2441 }
2442
2443 if (a2dp.a2dp_sink_started) {
2444 if (a2dp_set_backend_cfg(SINK) == true) {
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002445 a2dp.a2dp_sink_total_active_session_requests++;
Florian Pfister1a84f312018-07-19 14:38:18 +02002446 }
2447 }
2448
2449 ALOGD("start A2DP sink total active sessions :%d",
2450 a2dp.a2dp_sink_total_active_session_requests);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302451 return ret;
2452}
2453
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302454static void reset_a2dp_enc_config_params()
2455{
2456 int ret =0;
2457
Aalique Grahame22e49102018-12-18 14:23:57 -08002458 struct mixer_ctl *ctl_enc_config, *ctl_channel_mode;
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302459 struct sbc_enc_cfg_t dummy_reset_config;
Manisha Agarwala51768b2018-11-01 16:30:52 +05302460 char* channel_mode;
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302461
2462 memset(&dummy_reset_config, 0x0, sizeof(struct sbc_enc_cfg_t));
2463 ctl_enc_config = mixer_get_ctl_by_name(a2dp.adev->mixer,
2464 MIXER_ENC_CONFIG_BLOCK);
2465 if (!ctl_enc_config) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002466 ALOGE(" ERROR a2dp encoder format mixer control not identified");
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302467 } else {
2468 ret = mixer_ctl_set_array(ctl_enc_config, (void *)&dummy_reset_config,
2469 sizeof(struct sbc_enc_cfg_t));
Florian Pfister1a84f312018-07-19 14:38:18 +02002470 a2dp.bt_encoder_format = MEDIA_FMT_NONE;
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302471 }
Aalique Grahame22e49102018-12-18 14:23:57 -08002472
2473 a2dp_set_bit_format(DEFAULT_ENCODER_BIT_FORMAT);
2474
Manisha Agarwala51768b2018-11-01 16:30:52 +05302475 ctl_channel_mode = mixer_get_ctl_by_name(a2dp.adev->mixer,MIXER_FMT_TWS_CHANNEL_MODE);
2476
2477 if (!ctl_channel_mode) {
2478 ALOGE("failed to get tws mixer ctl");
2479 } else {
2480 channel_mode = "Two";
2481 if (mixer_ctl_set_enum_by_string(ctl_channel_mode, channel_mode) != 0) {
2482 ALOGE("%s: Failed to set the channel mode = %s", __func__, channel_mode);
2483 }
2484 a2dp.is_tws_mono_mode_on = false;
2485 }
Naresh Tanniru03f9dd52016-10-19 18:46:22 +05302486}
2487
Surendar Karka2febd452018-12-13 17:56:43 +05302488static int reset_a2dp_source_dec_config_params()
Aniket Kumar Latae1220c32018-05-29 14:55:47 -07002489{
2490 struct mixer_ctl *ctl_dec_data = NULL;
2491 struct abr_dec_cfg_t dummy_reset_cfg;
2492 int ret = 0;
2493
2494 if (a2dp.abr_config.is_abr_enabled) {
Surendar Karka2febd452018-12-13 17:56:43 +05302495 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SOURCE_DEC_CONFIG_BLOCK);
Aniket Kumar Latae1220c32018-05-29 14:55:47 -07002496 if (!ctl_dec_data) {
2497 ALOGE("%s: ERROR A2DP decoder config mixer control not identifed", __func__);
2498 return -EINVAL;
2499 }
2500 memset(&dummy_reset_cfg, 0x0, sizeof(dummy_reset_cfg));
2501 ret = mixer_ctl_set_array(ctl_dec_data, (void *)&dummy_reset_cfg,
2502 sizeof(dummy_reset_cfg));
2503 if (ret != 0) {
2504 ALOGE("%s: Failed to set dummy decoder config", __func__);
2505 return ret;
2506 }
2507 }
2508
2509 return ret;
2510}
2511
Surendar Karka2febd452018-12-13 17:56:43 +05302512static void reset_a2dp_sink_dec_config_params()
Florian Pfister1a84f312018-07-19 14:38:18 +02002513{
2514 int ret =0;
2515
2516 struct mixer_ctl *ctl_dec_config, *ctrl_bit_format;
2517 struct aac_dec_cfg_t dummy_reset_config;
2518
2519 memset(&dummy_reset_config, 0x0, sizeof(struct aac_dec_cfg_t));
2520 ctl_dec_config = mixer_get_ctl_by_name(a2dp.adev->mixer,
Surendar Karka2febd452018-12-13 17:56:43 +05302521 MIXER_SINK_DEC_CONFIG_BLOCK);
Florian Pfister1a84f312018-07-19 14:38:18 +02002522 if (!ctl_dec_config) {
2523 ALOGE(" ERROR a2dp decoder format mixer control not identified");
2524 } else {
2525 ret = mixer_ctl_set_array(ctl_dec_config, (void *)&dummy_reset_config,
2526 sizeof(struct aac_dec_cfg_t));
2527 a2dp.bt_decoder_format = MEDIA_FMT_NONE;
2528 }
2529 ctrl_bit_format = mixer_get_ctl_by_name(a2dp.adev->mixer,
2530 MIXER_DEC_BIT_FORMAT);
2531 if (!ctrl_bit_format) {
2532 ALOGE(" ERROR bit format CONFIG data mixer control not identified");
2533 } else {
2534 ret = mixer_ctl_set_enum_by_string(ctrl_bit_format, "S16_LE");
2535 if (ret != 0) {
2536 ALOGE("%s: Failed to set bit format to decoder", __func__);
2537 }
2538 }
2539}
2540
Zhou Song12c29502019-03-16 10:37:18 +08002541static void reset_codec_config()
2542{
2543 reset_a2dp_enc_config_params();
2544 reset_a2dp_source_dec_config_params();
2545 a2dp_reset_backend_cfg(SOURCE);
2546 if (a2dp.abr_config.is_abr_enabled && a2dp.abr_config.abr_started)
2547 stop_abr();
2548 a2dp.abr_config.is_abr_enabled = false;
2549}
2550
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002551int a2dp_stop_playback()
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302552{
2553 int ret =0;
2554
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002555 ALOGV("a2dp_stop_playback start");
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002556 if (!(a2dp.bt_lib_source_handle && a2dp.audio_source_stop)) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002557 ALOGE("a2dp handle is not identified, Ignoring stop request");
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302558 return -ENOSYS;
2559 }
2560
Florian Pfister1a84f312018-07-19 14:38:18 +02002561 if (a2dp.a2dp_source_total_active_session_requests > 0)
2562 a2dp.a2dp_source_total_active_session_requests--;
Aalique Grahame22e49102018-12-18 14:23:57 -08002563 else
2564 ALOGE("%s: No active playback session requests on A2DP", __func__);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302565
Florian Pfister1a84f312018-07-19 14:38:18 +02002566 if ( a2dp.a2dp_source_started && !a2dp.a2dp_source_total_active_session_requests) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302567 ALOGV("calling BT module stream stop");
Florian Pfister1a84f312018-07-19 14:38:18 +02002568 ret = a2dp.audio_source_stop();
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302569 if (ret < 0)
2570 ALOGE("stop stream to BT IPC lib failed");
2571 else
2572 ALOGV("stop steam to BT IPC lib successful");
Zhou Song12c29502019-03-16 10:37:18 +08002573 if (!a2dp.a2dp_source_suspended && !a2dp.swb_configured)
2574 reset_codec_config();
Surendar Karka2febd452018-12-13 17:56:43 +05302575 a2dp.a2dp_source_started = false;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302576 }
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002577 if (!a2dp.a2dp_source_total_active_session_requests)
Florian Pfister1a84f312018-07-19 14:38:18 +02002578 a2dp.a2dp_source_started = false;
2579 ALOGD("Stop A2DP playback, total active sessions :%d",
2580 a2dp.a2dp_source_total_active_session_requests);
2581 return 0;
2582}
2583
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002584int a2dp_stop_capture()
Florian Pfister1a84f312018-07-19 14:38:18 +02002585{
2586 int ret =0;
2587
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002588 ALOGV("a2dp_stop_capture start");
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002589 if (!(a2dp.bt_lib_sink_handle && a2dp.audio_sink_stop)) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002590 ALOGE("a2dp handle is not identified, Ignoring stop request");
2591 return -ENOSYS;
2592 }
2593
2594 if (a2dp.a2dp_sink_total_active_session_requests > 0)
2595 a2dp.a2dp_sink_total_active_session_requests--;
2596
2597 if ( a2dp.a2dp_sink_started && !a2dp.a2dp_sink_total_active_session_requests) {
2598 ALOGV("calling BT module stream stop");
2599 ret = a2dp.audio_sink_stop();
2600 if (ret < 0)
2601 ALOGE("stop stream to BT IPC lib failed");
2602 else
2603 ALOGV("stop steam to BT IPC lib successful");
Surendar Karka2febd452018-12-13 17:56:43 +05302604 reset_a2dp_sink_dec_config_params();
Florian Pfister1a84f312018-07-19 14:38:18 +02002605 a2dp_reset_backend_cfg(SINK);
2606 }
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002607 if (!a2dp.a2dp_sink_total_active_session_requests)
Florian Pfister1a84f312018-07-19 14:38:18 +02002608 a2dp.a2dp_source_started = false;
2609 ALOGD("Stop A2DP capture, total active sessions :%d",
2610 a2dp.a2dp_sink_total_active_session_requests);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302611 return 0;
2612}
2613
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002614int a2dp_set_parameters(struct str_parms *parms, bool *reconfig)
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302615{
Aalique Grahame22e49102018-12-18 14:23:57 -08002616 int ret = 0, val, status = 0;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302617 char value[32]={0};
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302618 struct audio_usecase *uc_info;
2619 struct listnode *node;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302620
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002621 if (a2dp.is_a2dp_offload_supported == false) {
Aalique Grahame22e49102018-12-18 14:23:57 -08002622 ALOGV("no supported encoders identified,ignoring a2dp setparam");
2623 status = -EINVAL;
2624 goto param_handled;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302625 }
2626
2627 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_CONNECT, value,
2628 sizeof(value));
Zhou Song681350a2017-10-19 16:28:42 +08002629 if (ret >= 0) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302630 val = atoi(value);
Zhou Song681350a2017-10-19 16:28:42 +08002631 if (audio_is_a2dp_out_device(val)) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002632 ALOGV("Received device connect request for A2DP source");
2633 open_a2dp_source();
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302634 }
2635 goto param_handled;
2636 }
2637
2638 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_DISCONNECT, value,
2639 sizeof(value));
2640
Zhou Song681350a2017-10-19 16:28:42 +08002641 if (ret >= 0) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302642 val = atoi(value);
Zhou Song681350a2017-10-19 16:28:42 +08002643 if (audio_is_a2dp_out_device(val)) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002644 ALOGV("Received source device dis- connect request");
Samyak Jain4828f4c2018-08-24 16:31:06 +05302645 close_a2dp_output();
kunleiz4a1fad62018-02-08 18:00:16 +08002646 reset_a2dp_enc_config_params();
Surendar Karka2febd452018-12-13 17:56:43 +05302647 reset_a2dp_source_dec_config_params();
Florian Pfister1a84f312018-07-19 14:38:18 +02002648 a2dp_reset_backend_cfg(SOURCE);
2649 } else if (audio_is_a2dp_in_device(val)) {
2650 ALOGV("Received sink device dis- connect request");
2651 close_a2dp_input();
Surendar Karka2febd452018-12-13 17:56:43 +05302652 reset_a2dp_sink_dec_config_params();
Florian Pfister1a84f312018-07-19 14:38:18 +02002653 a2dp_reset_backend_cfg(SINK);
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302654 }
2655 goto param_handled;
2656 }
Surendar Karka2febd452018-12-13 17:56:43 +05302657#ifndef LINUX_ENABLED
Manisha Agarwala51768b2018-11-01 16:30:52 +05302658 ret = str_parms_get_str(parms, "TwsChannelConfig", value, sizeof(value));
2659 if (ret>=0) {
2660 ALOGD("Setting tws channel mode to %s",value);
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002661 if (!(strncmp(value,"mono",strlen(value))))
Manisha Agarwala51768b2018-11-01 16:30:52 +05302662 a2dp.is_tws_mono_mode_on = true;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002663 else if (!(strncmp(value,"dual-mono",strlen(value))))
Manisha Agarwala51768b2018-11-01 16:30:52 +05302664 a2dp.is_tws_mono_mode_on = false;
2665 audio_a2dp_update_tws_channel_mode();
2666 goto param_handled;
2667 }
Surendar Karka2febd452018-12-13 17:56:43 +05302668#endif
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302669 ret = str_parms_get_str(parms, "A2dpSuspended", value, sizeof(value));
2670 if (ret >= 0) {
Surendar Karka2febd452018-12-13 17:56:43 +05302671 if (a2dp.bt_lib_source_handle) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302672 if ((!strncmp(value,"true",sizeof(value)))) {
Aalique Grahame22e49102018-12-18 14:23:57 -08002673 if (a2dp.a2dp_source_suspended) {
2674 ALOGD("%s: A2DP is already suspended", __func__);
2675 goto param_handled;
2676 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302677 ALOGD("Setting a2dp to suspend state");
Florian Pfister1a84f312018-07-19 14:38:18 +02002678 a2dp.a2dp_source_suspended = true;
Surendar Karka2febd452018-12-13 17:56:43 +05302679 if (a2dp.bt_state_source == A2DP_STATE_DISCONNECTED)
yidongh7203cca2018-09-19 16:12:25 +08002680 goto param_handled;
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302681 list_for_each(node, &a2dp.adev->usecase_list) {
2682 uc_info = node_to_item(node, struct audio_usecase, list);
Zhou Songc66eb7e2017-08-08 18:29:07 +08002683 if (uc_info->type == PCM_PLAYBACK &&
2684 (uc_info->stream.out->devices & AUDIO_DEVICE_OUT_ALL_A2DP)) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302685 pthread_mutex_unlock(&a2dp.adev->lock);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002686 fp_check_a2dp_restore(a2dp.adev, uc_info->stream.out, false);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302687 pthread_mutex_lock(&a2dp.adev->lock);
2688 }
2689 }
Zhou Song12c29502019-03-16 10:37:18 +08002690 if (!a2dp.swb_configured)
2691 reset_codec_config();
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002692 if (a2dp.audio_source_suspend)
Florian Pfister1a84f312018-07-19 14:38:18 +02002693 a2dp.audio_source_suspend();
2694 } else if (a2dp.a2dp_source_suspended == true) {
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302695 ALOGD("Resetting a2dp suspend state");
Zhou Song10617ed2017-05-26 13:28:48 +08002696 struct audio_usecase *uc_info;
2697 struct listnode *node;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002698 if (a2dp.clear_source_a2dpsuspend_flag)
Florian Pfister1a84f312018-07-19 14:38:18 +02002699 a2dp.clear_source_a2dpsuspend_flag();
2700 a2dp.a2dp_source_suspended = false;
Naresh Tanniru649871a2016-11-04 18:08:32 +05302701 /*
2702 * It is possible that before suspend,a2dp sessions can be active
2703 * for example during music + voice activation concurrency
2704 * a2dp suspend will be called & BT will change to sco mode
2705 * though music is paused as a part of voice activation
2706 * compress session close happens only after pause timeout(10secs)
2707 * so if resume request comes before pause timeout as a2dp session
2708 * is already active IPC start will not be called from APM/audio_hw
2709 * Fix is to call a2dp start for IPC library post suspend
2710 * based on number of active session count
2711 */
Florian Pfister1a84f312018-07-19 14:38:18 +02002712 if (a2dp.a2dp_source_total_active_session_requests > 0) {
Naresh Tanniru649871a2016-11-04 18:08:32 +05302713 ALOGD(" Calling IPC lib start post suspend state");
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002714 if (a2dp.audio_source_start) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002715 ret = a2dp.audio_source_start();
Naresh Tanniru649871a2016-11-04 18:08:32 +05302716 if (ret != 0) {
2717 ALOGE("BT controller start failed");
Florian Pfister1a84f312018-07-19 14:38:18 +02002718 a2dp.a2dp_source_started = false;
Naresh Tanniru649871a2016-11-04 18:08:32 +05302719 }
2720 }
2721 }
Zhou Song10617ed2017-05-26 13:28:48 +08002722 list_for_each(node, &a2dp.adev->usecase_list) {
2723 uc_info = node_to_item(node, struct audio_usecase, list);
Zhou Songc66eb7e2017-08-08 18:29:07 +08002724 if (uc_info->type == PCM_PLAYBACK &&
2725 (uc_info->stream.out->devices & AUDIO_DEVICE_OUT_ALL_A2DP)) {
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302726 pthread_mutex_unlock(&a2dp.adev->lock);
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002727 fp_check_a2dp_restore(a2dp.adev, uc_info->stream.out, true);
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302728 pthread_mutex_lock(&a2dp.adev->lock);
2729 }
Zhou Song10617ed2017-05-26 13:28:48 +08002730 }
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302731 }
2732 }
2733 goto param_handled;
2734 }
Aalique Grahame22e49102018-12-18 14:23:57 -08002735
2736 ret = str_parms_get_str(parms, AUDIO_PARAMETER_RECONFIG_A2DP, value,
2737 sizeof(value));
2738 if (ret >= 0) {
2739 if (a2dp.is_a2dp_offload_supported &&
2740 a2dp.bt_state_source != A2DP_STATE_DISCONNECTED) {
2741 *reconfig = true;
2742 }
2743 goto param_handled;
2744 }
2745
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302746param_handled:
2747 ALOGV("end of a2dp setparam");
Aalique Grahame22e49102018-12-18 14:23:57 -08002748 return status;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302749}
2750
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002751void a2dp_set_handoff_mode(bool is_on)
Naresh Tannirucd2353e2016-08-19 00:37:25 +05302752{
2753 a2dp.is_handoff_in_progress = is_on;
2754}
2755
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002756bool a2dp_is_force_device_switch()
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302757{
2758 //During encoder reconfiguration mode, force a2dp device switch
Ashish Jainc597d102016-12-12 10:31:34 +05302759 // Or if a2dp device is selected but earlier start failed ( as a2dp
2760 // was suspended, force retry.
Florian Pfister1a84f312018-07-19 14:38:18 +02002761 return a2dp.is_handoff_in_progress || !a2dp.a2dp_source_started;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302762}
2763
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002764void a2dp_get_enc_sample_rate(int *sample_rate)
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05302765{
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05302766 *sample_rate = a2dp.enc_sampling_rate;
2767}
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05302768
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002769void a2dp_get_dec_sample_rate(int *sample_rate)
Florian Pfister1a84f312018-07-19 14:38:18 +02002770{
2771 *sample_rate = a2dp.dec_sampling_rate;
2772}
2773
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002774bool a2dp_source_is_ready()
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05302775{
2776 bool ret = false;
2777
Florian Pfister1a84f312018-07-19 14:38:18 +02002778 if (a2dp.a2dp_source_suspended)
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302779 return ret;
2780
Florian Pfister1a84f312018-07-19 14:38:18 +02002781 if ((a2dp.bt_state_source != A2DP_STATE_DISCONNECTED) &&
Aniket Kumar Lata901bcb82017-03-10 15:42:46 -08002782 (a2dp.is_a2dp_offload_supported) &&
Florian Pfister1a84f312018-07-19 14:38:18 +02002783 (a2dp.audio_source_check_a2dp_ready))
2784 ret = a2dp.audio_source_check_a2dp_ready();
Preetam Singh Ranawata1849ba2017-02-06 14:10:11 +05302785 return ret;
2786}
2787
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002788bool a2dp_source_is_suspended()
Florian Pfister1a84f312018-07-19 14:38:18 +02002789{
2790 return a2dp.a2dp_source_suspended;
Chaithanya Krishna Bacharaju69d2e4c2017-05-26 18:22:46 +05302791}
2792
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002793void a2dp_init(void *adev,
Aalique Grahame6e763712019-01-31 16:18:17 -08002794 a2dp_offload_init_config_t init_config)
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302795{
2796 a2dp.adev = (struct audio_device*)adev;
Florian Pfister1a84f312018-07-19 14:38:18 +02002797 a2dp.bt_lib_source_handle = NULL;
2798 a2dp.a2dp_source_started = false;
2799 a2dp.bt_state_source = A2DP_STATE_DISCONNECTED;
2800 a2dp.a2dp_source_total_active_session_requests = 0;
2801 a2dp.a2dp_source_suspended = false;
2802 a2dp.bt_encoder_format = CODEC_TYPE_INVALID;
Naresh Tanniruf5ba8d02016-09-29 18:06:37 +05302803 a2dp.enc_sampling_rate = 48000;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302804 a2dp.is_handoff_in_progress = false;
Aniket Kumar Lata53e54b12017-08-24 17:45:38 -07002805 a2dp.is_aptx_dual_mono_supported = false;
Sharad Sangle95d451b2018-06-19 12:24:20 +05302806 a2dp.is_aptx_adaptive = false;
Aniket Kumar Lata7fd86e12018-02-20 19:26:10 -08002807 a2dp.abr_config.is_abr_enabled = false;
2808 a2dp.abr_config.abr_started = false;
2809 a2dp.abr_config.imc_instance = 0;
2810 a2dp.abr_config.abr_tx_handle = NULL;
Zhou Song12c29502019-03-16 10:37:18 +08002811 a2dp.abr_config.abr_rx_handle = NULL;
Manisha Agarwala51768b2018-11-01 16:30:52 +05302812 a2dp.is_tws_mono_mode_on = false;
Naresh Tanniru66cf06c2019-03-20 19:30:37 +05302813 a2dp_source_init();
Zhou Song12c29502019-03-16 10:37:18 +08002814 a2dp.swb_configured = false;
2815
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002816 // init function pointers
2817 fp_platform_get_pcm_device_id =
Aalique Grahame6e763712019-01-31 16:18:17 -08002818 init_config.fp_platform_get_pcm_device_id;
2819 fp_check_a2dp_restore = init_config.fp_check_a2dp_restore;
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002820
kunleiz5a127262017-09-08 14:47:48 +08002821 reset_a2dp_enc_config_params();
Surendar Karka2febd452018-12-13 17:56:43 +05302822 reset_a2dp_source_dec_config_params();
2823 reset_a2dp_sink_dec_config_params();
Florian Pfister1a84f312018-07-19 14:38:18 +02002824
2825 a2dp.bt_lib_sink_handle = NULL;
2826 a2dp.a2dp_sink_started = false;
2827 a2dp.bt_state_sink = A2DP_STATE_DISCONNECTED;
2828 a2dp.a2dp_sink_total_active_session_requests = 0;
Arun Mirpuri5dc77802019-02-26 16:32:42 -08002829
2830 if (is_running_with_enhanced_fwk == UNINITIALIZED)
2831 is_running_with_enhanced_fwk = check_if_enhanced_fwk();
2832 if (is_running_with_enhanced_fwk)
Aalique Grahame6e763712019-01-31 16:18:17 -08002833 open_a2dp_sink();
Florian Pfister1a84f312018-07-19 14:38:18 +02002834
2835 a2dp.is_a2dp_offload_supported = false;
Naresh Tanniru9d027a62015-03-13 01:32:10 +05302836 update_offload_codec_capabilities();
2837}
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002838
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002839uint32_t a2dp_get_encoder_latency()
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002840{
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002841 uint32_t latency = 0;
2842 int avsync_runtime_prop = 0;
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302843 int sbc_offset = 0, aptx_offset = 0, aptxhd_offset = 0,
2844 aac_offset = 0, celt_offset = 0, ldac_offset = 0;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002845 char value[PROPERTY_VALUE_MAX];
2846
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002847 memset(value, '\0', sizeof(char)*PROPERTY_VALUE_MAX);
Aalique Grahame22e49102018-12-18 14:23:57 -08002848 avsync_runtime_prop = property_get(SYSPROP_A2DP_CODEC_LATENCIES, value, NULL);
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002849 if (avsync_runtime_prop > 0) {
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302850 if (sscanf(value, "%d/%d/%d/%d/%d%d",
2851 &sbc_offset, &aptx_offset, &aptxhd_offset, &aac_offset, &celt_offset, &ldac_offset) != 6) {
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002852 ALOGI("Failed to parse avsync offset params from '%s'.", value);
2853 avsync_runtime_prop = 0;
2854 }
2855 }
2856
yidongh0515e042017-07-06 15:00:34 +08002857 uint32_t slatency = 0;
Florian Pfister1a84f312018-07-19 14:38:18 +02002858 if (a2dp.audio_sink_get_a2dp_latency && a2dp.bt_state_source != A2DP_STATE_DISCONNECTED) {
2859 slatency = a2dp.audio_sink_get_a2dp_latency();
yidongh0515e042017-07-06 15:00:34 +08002860 }
2861
Aniket Kumar Latafaaffde2017-03-22 19:18:15 -07002862 switch(a2dp.bt_encoder_format) {
Florian Pfister1a84f312018-07-19 14:38:18 +02002863 case CODEC_TYPE_SBC:
yidongh0515e042017-07-06 15:00:34 +08002864 latency = (avsync_runtime_prop > 0) ? sbc_offset : ENCODER_LATENCY_SBC;
2865 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_SBC : slatency;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002866 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002867 case CODEC_TYPE_APTX:
yidongh0515e042017-07-06 15:00:34 +08002868 latency = (avsync_runtime_prop > 0) ? aptx_offset : ENCODER_LATENCY_APTX;
2869 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_APTX : slatency;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002870 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002871 case CODEC_TYPE_APTX_HD:
yidongh0515e042017-07-06 15:00:34 +08002872 latency = (avsync_runtime_prop > 0) ? aptxhd_offset : ENCODER_LATENCY_APTX_HD;
2873 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_APTX_HD : slatency;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002874 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002875 case CODEC_TYPE_AAC:
yidongh0515e042017-07-06 15:00:34 +08002876 latency = (avsync_runtime_prop > 0) ? aac_offset : ENCODER_LATENCY_AAC;
2877 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_AAC : slatency;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002878 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002879 case CODEC_TYPE_CELT:
Preetam Singh Ranawat0d645ea2017-08-07 18:12:07 +05302880 latency = (avsync_runtime_prop > 0) ? celt_offset : ENCODER_LATENCY_CELT;
2881 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_CELT : slatency;
2882 break;
Florian Pfister1a84f312018-07-19 14:38:18 +02002883 case CODEC_TYPE_LDAC:
Preetam Singh Ranawatd058a3d2017-10-25 17:31:37 +05302884 latency = (avsync_runtime_prop > 0) ? ldac_offset : ENCODER_LATENCY_LDAC;
2885 latency += (slatency <= 0) ? DEFAULT_SINK_LATENCY_LDAC : slatency;
2886 break;
Ramu Gottipatib729cf82018-12-20 15:36:46 +05302887 case CODEC_TYPE_APTX_AD: // for aptx adaptive the latency depends on the mode (HQ/LL) and
Sharad Sanglee378afe2018-09-03 20:04:17 +05302888 latency = slatency; // BT IPC will take care of accomodating the mode factor and return latency
Preetam Singh Ranawat79c514e2018-12-16 18:49:34 +05302889 break;
Aalique Grahame22e49102018-12-18 14:23:57 -08002890 case CODEC_TYPE_PCM:
2891 latency = ENCODER_LATENCY_PCM;
2892 latency += DEFAULT_SINK_LATENCY_PCM;
2893 break;
Aniket Kumar Latad5972fa2017-02-08 13:53:48 -08002894 default:
2895 latency = 200;
2896 break;
2897 }
2898 return latency;
2899}
Aalique Grahame22e49102018-12-18 14:23:57 -08002900
Arun Mirpurib1bec9c2019-01-29 16:42:45 -08002901int a2dp_get_parameters(struct str_parms *query,
Aalique Grahame22e49102018-12-18 14:23:57 -08002902 struct str_parms *reply)
2903{
2904 int ret, val = 0;
2905 char value[32]={0};
2906
2907 ret = str_parms_get_str(query, AUDIO_PARAMETER_A2DP_RECONFIG_SUPPORTED,
2908 value, sizeof(value));
2909 if (ret >= 0) {
2910 val = a2dp.is_a2dp_offload_supported;
2911 str_parms_add_int(reply, AUDIO_PARAMETER_A2DP_RECONFIG_SUPPORTED, val);
2912 ALOGV("%s: called ... isReconfigA2dpSupported %d", __func__, val);
2913 }
2914
2915 return 0;
2916}
Zhou Song12c29502019-03-16 10:37:18 +08002917
2918
2919bool configure_aptx_ad_speech_enc_fmt() {
2920 struct mixer_ctl *ctl_enc_data = NULL;
2921 int mixer_size = 0;
2922 int ret = 0;
2923 struct aptx_ad_speech_enc_cfg_t aptx_dsp_cfg;
2924
2925 ctl_enc_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_ENC_CONFIG_BLOCK);
2926 if (!ctl_enc_data) {
2927 ALOGE(" ERROR a2dp encoder CONFIG data mixer control not identifed");
2928 return false;
2929 }
2930
2931 /* Initialize dsp configuration params */
2932 memset(&aptx_dsp_cfg, 0x0, sizeof(struct aptx_ad_speech_enc_cfg_t));
2933 aptx_dsp_cfg.custom_cfg.enc_format = MEDIA_FMT_APTX_AD_SPEECH;
2934 aptx_dsp_cfg.custom_cfg.sample_rate = SAMPLING_RATE_32K;
2935 aptx_dsp_cfg.custom_cfg.num_channels = CH_MONO;
2936 aptx_dsp_cfg.custom_cfg.channel_mapping[0] = PCM_CHANNEL_L;
2937 aptx_dsp_cfg.imc_info.direction = IMC_RECEIVE;
2938 aptx_dsp_cfg.imc_info.enable = IMC_ENABLE;
2939 aptx_dsp_cfg.imc_info.purpose = IMC_PURPOSE_ID_BT_INFO;
2940 aptx_dsp_cfg.imc_info.comm_instance = APTX_AD_SPEECH_INSTANCE_ID;
2941 aptx_dsp_cfg.speech_mode.mode = a2dp.adev->swb_speech_mode;
2942 aptx_dsp_cfg.speech_mode.swapping = SWAP_ENABLE;
2943
2944 /* Configure AFE DSP configuration */
2945 mixer_size = sizeof(struct aptx_ad_speech_enc_cfg_t);
2946 ret = mixer_ctl_set_array(ctl_enc_data, (void *)&aptx_dsp_cfg,
2947 mixer_size);
2948 if (ret != 0) {
2949 ALOGE("%s: Failed to set SWB encoder config", __func__);
2950 return false;
2951 }
2952
2953 /* Configure AFE Input Bit Format as PCM_16 */
2954 ret = a2dp_set_bit_format(DEFAULT_ENCODER_BIT_FORMAT);
2955 if (ret != 0) {
2956 ALOGE("%s: Failed to set SWB bit format", __func__);
2957 return false;
2958 }
2959
2960 return true;
2961}
2962
2963bool configure_aptx_ad_speech_dec_fmt()
2964{
2965 struct mixer_ctl *ctl_dec_data = NULL;
2966 struct aptx_ad_speech_dec_cfg_t dec_cfg;
2967 int ret = 0;
2968
2969 ctl_dec_data = mixer_get_ctl_by_name(a2dp.adev->mixer, MIXER_SOURCE_DEC_CONFIG_BLOCK);
2970 if (!ctl_dec_data) {
2971 ALOGE("%s: ERROR codec config data mixer control not identifed", __func__);
2972 return false;
2973 }
2974 memset(&dec_cfg, 0x0, sizeof(dec_cfg));
2975 dec_cfg.abr_cfg.dec_format = MEDIA_FMT_APTX_AD_SPEECH;
2976 dec_cfg.abr_cfg.imc_info.direction = IMC_TRANSMIT;
2977 dec_cfg.abr_cfg.imc_info.enable = IMC_ENABLE;
2978 dec_cfg.abr_cfg.imc_info.purpose = IMC_PURPOSE_ID_BT_INFO;
2979 dec_cfg.abr_cfg.imc_info.comm_instance = APTX_AD_SPEECH_INSTANCE_ID;
2980 dec_cfg.speech_mode.mode = a2dp.adev->swb_speech_mode;
2981 dec_cfg.speech_mode.swapping = SWAP_ENABLE;
2982
2983 ret = mixer_ctl_set_array(ctl_dec_data, &dec_cfg,
2984 sizeof(dec_cfg));
2985 if (ret != 0) {
2986 ALOGE("%s: Failed to set decoder config", __func__);
2987 return false;
2988 }
2989 return true;
2990}
2991
2992int sco_start_configuration()
2993{
2994 ALOGD("sco_start_configuration start");
2995
2996 if (!a2dp.swb_configured) {
2997 a2dp.bt_encoder_format = CODEC_TYPE_APTX_AD_SPEECH;
2998 /* Configure AFE codec*/
2999 if (configure_aptx_ad_speech_enc_fmt() &&
3000 configure_aptx_ad_speech_dec_fmt()) {
3001 ALOGD("%s: SCO enc/dec configured successfully", __func__);
3002 } else {
3003 ALOGE("%s: failed to send SCO configuration", __func__);
3004 return -ETIMEDOUT;
3005 }
3006 /* Configure backend*/
3007 a2dp.enc_sampling_rate = SAMPLING_RATE_96K;
3008 a2dp.enc_channels = CH_MONO;
3009 a2dp.abr_config.is_abr_enabled = true;
3010 a2dp_set_backend_cfg(SOURCE);
3011 /* Start abr*/
3012 start_abr();
3013 a2dp.swb_configured = true;
3014 }
3015 return 0;
3016}
3017
3018void sco_reset_configuration()
3019{
3020 ALOGD("sco_reset_configuration start");
3021
3022 reset_codec_config();
3023 a2dp.bt_encoder_format = CODEC_TYPE_INVALID;
3024 a2dp.swb_configured = false;
3025}