blob: 30a10c563b8b96cded69f9973b2013265059b415 [file] [log] [blame]
Eric Laurentb23d5282013-05-14 15:27:20 -07001/*
Aalique Grahame22e49102018-12-18 14:23:57 -08002 * Copyright (c) 2013-2019, The Linux Foundation. All rights reserved.
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -07003 * Not a contribution.
4 *
Eric Laurentb23d5282013-05-14 15:27:20 -07005 * Copyright (C) 2013 The Android Open Source Project
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
Ben Romberger55886882014-01-10 13:49:02 -080020#ifndef AUDIO_PLATFORM_API_H
21#define AUDIO_PLATFORM_API_H
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -070022#include <sound/voice_params.h>
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070023#include "audio_hw.h"
24#include "voice.h"
Eric Laurentb23d5282013-05-14 15:27:20 -070025
Mingming Yin3ee55c62014-08-04 14:23:35 -070026#define CODEC_BACKEND_DEFAULT_BIT_WIDTH 16
27#define CODEC_BACKEND_DEFAULT_SAMPLE_RATE 48000
Ashish Jainb26edfb2016-08-25 00:10:11 +053028#define CODEC_BACKEND_DEFAULT_CHANNELS 2
Kuirong Wang0b947f72016-09-29 11:03:09 -070029#define CODEC_BACKEND_DEFAULT_TX_CHANNELS 1
Ashish Jaina052e572016-11-07 16:41:07 +053030#define SAMPLE_RATE_8000 8000
31#define SAMPLE_RATE_11025 11025
32#define sample_rate_multiple(sr, base) ((sr % base)== 0?true:false)
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070033#define MAX_VOLUME_CAL_STEPS 15
Surendar karka30569792018-05-08 12:02:21 +053034#define LICENSE_STR_MAX_LEN (64)
35#define PRODUCT_FFV "ffv"
36#define PRODUCT_ALLPLAY "allplay"
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +053037#define MAX_IN_CHANNELS 32
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +053038#define CUSTOM_MTRX_PARAMS_MAX_USECASE 8
Vignesh Kulothungan55396882017-04-20 14:37:02 -070039
40typedef enum {
41 PLATFORM,
42 ACDB_EXTN,
43} caller_t;
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070044
Garmond Leung438932f2017-10-04 19:35:18 -070045struct audio_backend_cfg {
46 unsigned int sample_rate;
47 unsigned int channels;
48 unsigned int bit_width;
49 bool passthrough_enabled;
50 audio_format_t format;
51};
52
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070053struct amp_db_and_gain_table {
54 float amp;
55 float db;
56 uint32_t level;
57};
Mingming Yin3ee55c62014-08-04 14:23:35 -070058
Naresh Tannirudcb47c52018-06-25 16:23:32 +053059struct mic_info {
60 char device_id[AUDIO_MICROPHONE_ID_MAX_LEN];
61 size_t channel_count;
62 audio_microphone_channel_mapping_t channel_mapping[AUDIO_CHANNEL_COUNT_MAX];
63};
64
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +053065enum {
66 NATIVE_AUDIO_MODE_SRC = 1,
67 NATIVE_AUDIO_MODE_TRUE_44_1,
Preetam Singh Ranawatb1c73232019-04-22 13:59:51 +053068 NATIVE_AUDIO_MODE_MULTIPLE_MIX_IN_CODEC,
69 NATIVE_AUDIO_MODE_MULTIPLE_MIX_IN_DSP,
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +053070 NATIVE_AUDIO_MODE_INVALID
71};
72
73typedef struct {
74 bool platform_na_prop_enabled;
75 bool ui_na_prop_enabled;
76 int na_mode;
77} native_audio_prop;
78
Siena Richard7c2db772016-12-21 11:32:34 -080079#define BE_DAI_NAME_MAX_LENGTH 24
80struct be_dai_name_struct {
81 unsigned int be_id;
82 char be_name[BE_DAI_NAME_MAX_LENGTH];
83};
84
Aditya Bavanari29bcea22017-10-03 20:10:35 +053085typedef struct acdb_audio_cal_cfg {
86 uint32_t persist;
87 uint32_t snd_dev_id;
88 audio_devices_t dev_id;
89 int32_t acdb_dev_id;
90 uint32_t app_type;
91 uint32_t topo_id;
92 uint32_t sampling_rate;
93 uint32_t cal_type;
94 uint32_t module_id;
95#ifdef INSTANCE_ID_ENABLED
96 uint16_t instance_id;
97 uint16_t reserved;
98#endif
99 uint32_t param_id;
100} acdb_audio_cal_cfg_t;
101
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530102
103struct audio_custom_mtmx_params_info {
104 uint32_t id;
105 uint32_t ip_channels;
106 uint32_t op_channels;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530107 uint32_t usecase_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530108 uint32_t snd_device;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530109 uint32_t fe_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530110};
111
112struct audio_custom_mtmx_params {
113 struct listnode list;
114 struct audio_custom_mtmx_params_info info;
115 uint32_t coeffs[0];
116};
117
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530118struct audio_custom_mtmx_in_params_info {
119 uint32_t op_channels;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530120 uint32_t usecase_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530121};
122
123struct audio_custom_mtmx_params_in_ch_info {
124 uint32_t ch_count;
125 char device[128];
126 char hw_interface[128];
127};
128
129struct audio_custom_mtmx_in_params {
130 struct listnode list;
131 struct audio_custom_mtmx_in_params_info in_info;
132 uint32_t ip_channels;
133 uint32_t mic_ch;
134 uint32_t ec_ref_ch;
135 struct audio_custom_mtmx_params_in_ch_info in_ch_info[MAX_IN_CHANNELS];
136};
137
Haynes Mathew George3a1f1fb2016-08-09 15:43:13 -0700138enum card_status_t;
139
Eric Laurentb23d5282013-05-14 15:27:20 -0700140void *platform_init(struct audio_device *adev);
141void platform_deinit(void *platform);
142const char *platform_get_snd_device_name(snd_device_t snd_device);
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -0700143
144/* return true if adding entry success
145 return false if adding entry fails */
146
147bool platform_add_gain_level_mapping(struct amp_db_and_gain_table *tbl_entry);
148
149/* return 0 if no custome mapping table found or when error detected
150 use default mapping in this case
151 return > 0 indicates number of entries in mapping table */
152
153int platform_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl,
154 int table_size);
155
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700156int platform_get_snd_device_name_extn(void *platform, snd_device_t snd_device,
157 char *device_name);
Banajit Goswami20cdd212015-09-11 01:11:30 -0700158void platform_add_backend_name(char *mixer_path, snd_device_t snd_device,
159 struct audio_usecase *usecase);
vivek mehtaa76401a2015-04-24 14:12:15 -0700160bool platform_send_gain_dep_cal(void *platform, int level);
Eric Laurentb23d5282013-05-14 15:27:20 -0700161int platform_get_pcm_device_id(audio_usecase_t usecase, int device_type);
Ben Romberger61764e32014-01-10 13:49:02 -0800162int platform_get_snd_device_index(char *snd_device_index_name);
Venkata Narendra Kumar Gutta88fd0bc2014-03-27 19:47:56 +0530163int platform_set_fluence_type(void *platform, char *value);
164int platform_get_fluence_type(void *platform, char *value, uint32_t len);
Ben Romberger55886882014-01-10 13:49:02 -0800165int platform_set_snd_device_acdb_id(snd_device_t snd_device, unsigned int acdb_id);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700166int platform_get_snd_device_acdb_id(snd_device_t snd_device);
Amit Shekhar5a39c912014-10-14 15:39:30 -0700167int platform_set_snd_device_bit_width(snd_device_t snd_device, unsigned int bit_width);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -0700168int platform_set_effect_config_data(snd_device_t snd_device,
169 struct audio_effect_config effect_config,
170 effect_type_t effect_type);
171int platform_get_effect_config_data(snd_device_t snd_device,
172 struct audio_effect_config *effect_config,
173 effect_type_t effect_type);
Amit Shekhar5a39c912014-10-14 15:39:30 -0700174int platform_get_snd_device_bit_width(snd_device_t snd_device);
Dhanalakshmi Siddani21be3ac2016-12-29 14:31:08 +0530175int platform_set_acdb_metainfo_key(void *platform, char *name, int key);
Ramu Gottipati62f6d9b2018-05-01 15:21:38 +0530176void platform_release_acdb_metainfo_key(void *platform);
Dhanalakshmi Siddani21be3ac2016-12-29 14:31:08 +0530177int platform_get_meta_info_key_from_list(void *platform, char *mod_name);
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +0530178int platform_set_native_support(int na_mode);
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -0800179int platform_get_native_support();
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530180int platform_send_audio_calibration(void *platform, struct audio_usecase *usecase,
Zhou Song06761dd2019-04-28 18:08:17 +0800181 int app_type);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700182int platform_get_default_app_type(void *platform);
Srikanth Uyyalaa1e32352015-10-09 14:48:04 +0530183int platform_get_default_app_type_v2(void *platform, usecase_type_t type);
Eric Laurentb23d5282013-05-14 15:27:20 -0700184int platform_switch_voice_call_device_pre(void *platform);
Vidyakumar Athota545dbd32013-11-13 17:30:53 -0800185int platform_switch_voice_call_enable_device_config(void *platform,
186 snd_device_t out_snd_device,
187 snd_device_t in_snd_device);
Eric Laurentb23d5282013-05-14 15:27:20 -0700188int platform_switch_voice_call_device_post(void *platform,
189 snd_device_t out_snd_device,
190 snd_device_t in_snd_device);
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800191int platform_switch_voice_call_usecase_route_post(void *platform,
192 snd_device_t out_snd_device,
193 snd_device_t in_snd_device);
Vidyakumar Athotad9d9ff32013-11-13 11:46:52 -0800194int platform_start_voice_call(void *platform, uint32_t vsid);
195int platform_stop_voice_call(void *platform, uint32_t vsid);
Vignesh Kulothungan7d374312018-02-21 17:12:00 -0800196int platform_set_mic_break_det(void *platform, bool enable);
Eric Laurentb23d5282013-05-14 15:27:20 -0700197int platform_set_voice_volume(void *platform, int volume);
Aalique Grahame22e49102018-12-18 14:23:57 -0800198void platform_set_speaker_gain_in_combo(struct audio_device *adev,
199 snd_device_t snd_device,
200 bool enable);
Eric Laurentb23d5282013-05-14 15:27:20 -0700201int platform_set_mic_mute(void *platform, bool state);
Helen Zeng6a16ad72014-02-23 22:04:44 -0800202int platform_get_sample_rate(void *platform, uint32_t *rate);
Shiv Maliyappanahallic6fd8ee2014-03-07 15:31:55 -0800203int platform_set_device_mute(void *platform, bool state, char *dir);
Apoorv Raghuvanshif59bb222015-02-18 12:23:23 -0800204snd_device_t platform_get_output_snd_device(void *platform, struct stream_out *out);
Eric Laurent637e2d42018-11-15 12:24:31 -0800205snd_device_t platform_get_input_snd_device(void *platform,
206 struct stream_in *in,
207 audio_devices_t out_device);
Eric Laurentb23d5282013-05-14 15:27:20 -0700208int platform_set_hdmi_channels(void *platform, int channel_count);
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700209int platform_edid_get_max_channels(void *platform);
Aalique Grahame22e49102018-12-18 14:23:57 -0800210void platform_add_operator_specific_device(snd_device_t snd_device,
211 const char *operator,
212 const char *mixer_path,
213 unsigned int acdb_id);
Carter Hsu32a62362018-10-15 15:01:42 -0700214void platform_add_external_specific_device(snd_device_t snd_device,
215 const char *name,
216 unsigned int acdb_id);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700217void platform_get_parameters(void *platform, struct str_parms *query,
218 struct str_parms *reply);
219int platform_set_parameters(void *platform, struct str_parms *parms);
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800220int platform_set_incall_recording_session_id(void *platform, uint32_t session_id,
221 int rec_mode);
Aalique Grahame22e49102018-12-18 14:23:57 -0800222#ifndef INCALL_STEREO_CAPTURE_ENABLED
223#define platform_set_incall_recording_session_channels(p, sc) (0)
224#else
225int platform_set_incall_recording_session_channels(void *platform,
226 uint32_t session_channels);
227#endif
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800228int platform_stop_incall_recording_usecase(void *platform);
229int platform_start_incall_music_usecase(void *platform);
230int platform_stop_incall_music_usecase(void *platform);
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700231int platform_update_lch(void *platform, struct voice_session *session,
232 enum voice_lch_mode lch_mode);
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700233/* returns the latency for a usecase in Us */
234int64_t platform_render_latency(audio_usecase_t usecase);
Mingming Yine62d7842013-10-25 16:26:03 -0700235int platform_update_usecase_from_source(int source, audio_usecase_t usecase);
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700236
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530237bool platform_listen_device_needs_event(snd_device_t snd_device);
238bool platform_listen_usecase_needs_event(audio_usecase_t uc_id);
Kiran Kandide144c82013-11-20 15:58:32 -0800239
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700240bool platform_sound_trigger_device_needs_event(snd_device_t snd_device);
241bool platform_sound_trigger_usecase_needs_event(audio_usecase_t uc_id);
242
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +0530243int platform_set_snd_device_backend(snd_device_t snd_device, const char * backend,
244 const char * hw_interface);
Siena Richard7c2db772016-12-21 11:32:34 -0800245int platform_get_snd_device_backend_index(snd_device_t device);
Naresh Tanniru6160c712017-04-17 15:43:48 +0530246const char * platform_get_snd_device_backend_interface(snd_device_t device);
Aalique Grahame22e49102018-12-18 14:23:57 -0800247void platform_add_app_type(const char *uc_type,
248 const char *mode,
249 int bw, int app_type, int max_sr);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700250
Ravi Kumar Alamanda14b0f2d2015-06-28 21:04:09 -0700251/* From platform_info.c */
Vignesh Kulothungan55396882017-04-20 14:37:02 -0700252int platform_info_init(const char *filename, void *, caller_t);
Ben Romberger61764e32014-01-10 13:49:02 -0800253
Dhananjay Kumare6293dd2017-05-25 17:25:30 +0530254void platform_snd_card_update(void *platform, card_status_t scard_status);
Ben Rombergerfeca4b82015-07-07 20:40:44 -0700255
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800256struct audio_offload_info_t;
257uint32_t platform_get_compress_offload_buffer_size(audio_offload_info_t* info);
Garmond Leung438932f2017-10-04 19:35:18 -0700258int platform_get_codec_backend_cfg(struct audio_device* adev,
259 snd_device_t snd_device,
260 struct audio_backend_cfg *backend_cfg);
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800261
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -0800262bool platform_check_and_set_codec_backend_cfg(struct audio_device* adev,
263 struct audio_usecase *usecase, snd_device_t snd_device);
Manish Dewanganba9fcfa2016-03-24 16:20:06 +0530264bool platform_check_and_set_capture_codec_backend_cfg(struct audio_device* adev,
265 struct audio_usecase *usecase, snd_device_t snd_device);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700266int platform_get_usecase_index(const char * usecase);
267int platform_set_usecase_pcm_id(audio_usecase_t usecase, int32_t type, int32_t pcm_id);
Apoorv Raghuvanshi924b3022015-07-06 15:07:14 -0700268void platform_set_echo_reference(struct audio_device *adev, bool enable, audio_devices_t out_device);
Vignesh Kulothungan3b5fae52017-09-25 12:16:30 -0700269int platform_check_and_set_swap_lr_channels(struct audio_device *adev, bool swap_channels);
270int platform_set_swap_channels(struct audio_device *adev, bool swap_channels);
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700271void platform_get_device_to_be_id_map(int **be_id_map, int *length);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700272
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700273int platform_set_channel_allocation(void *platform, int channel_alloc);
274int platform_get_edid_info(void *platform);
Revathi Uddaraju0553e8f2017-11-30 14:56:11 +0530275int platform_get_supported_copp_sampling_rate(uint32_t stream_sr);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700276int platform_set_channel_map(void *platform, int ch_count, char *ch_map,
Rohit kumar4dbd2c02019-02-04 16:26:33 +0530277 int snd_id, int be_idx);
Naresh Tanniru29bce4e2017-04-27 17:54:30 +0530278int platform_set_stream_channel_map(void *platform, audio_channel_mask_t channel_mask,
279 int snd_id, uint8_t *input_channel_map);
Varun Balaraje49253e2017-07-06 19:48:56 +0530280int platform_set_stream_pan_scale_params(void *platform,
281 int snd_id,
282 struct mix_matrix_params mm_params);
283int platform_set_stream_downmix_params(void *platform,
284 int snd_id,
285 snd_device_t snd_device,
286 struct mix_matrix_params mm_params);
Rohit kumar4dbd2c02019-02-04 16:26:33 +0530287int platform_set_edid_channels_configuration(void *platform, int channels,
288 int backend_idx, snd_device_t snd_device);
Dieter Luecking5d57def2018-09-07 14:23:37 +0200289bool platform_spkr_use_default_sample_rate(void *platform);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700290unsigned char platform_map_to_edid_format(int format);
291bool platform_is_edid_supported_format(void *platform, int format);
Mingming Yin3a941d42016-02-17 18:08:05 -0800292bool platform_is_edid_supported_sample_rate(void *platform, int sample_rate);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700293void platform_cache_edid(void * platform);
Mingming Yin21854652016-04-13 11:54:02 -0700294void platform_invalidate_hdmi_config(void * platform);
295int platform_set_hdmi_config(void *platform, uint32_t channel_count,
296 uint32_t sample_rate, bool enable_passthrough);
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700297int platform_set_device_params(struct stream_out *out, int param, int value);
Karthik Reddy Katta508eca42015-05-11 13:43:18 +0530298int platform_set_audio_device_interface(const char * device_name, const char *intf_name,
299 const char * codec_type);
Banajit Goswami20cdd212015-09-11 01:11:30 -0700300void platform_set_gsm_mode(void *platform, bool enable);
Xiaojun Sang040cc9f2015-08-03 19:38:28 +0800301bool platform_can_enable_spkr_prot_on_device(snd_device_t snd_device);
302int platform_get_spkr_prot_acdb_id(snd_device_t snd_device);
303int platform_get_spkr_prot_snd_device(snd_device_t snd_device);
Rohit kumarf4120402016-08-05 19:19:48 +0530304int platform_get_vi_feedback_snd_device(snd_device_t snd_device);
Venkata Narendra Kumar Gutta7f4817f2016-01-29 14:15:53 +0530305int platform_spkr_prot_is_wsa_analog_mode(void *adev);
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -0700306int platform_split_snd_device(void *platform,
307 snd_device_t snd_device,
308 int *num_devices,
309 snd_device_t *new_snd_devices);
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +0530310
311bool platform_check_backends_match(snd_device_t snd_device1, snd_device_t snd_device2);
Kuirong Wang1cad7142016-05-24 15:21:56 -0700312int platform_set_sidetone(struct audio_device *adev,
313 snd_device_t out_snd_device,
314 bool enable,
315 char * str);
Vidyakumar Athotaea269c62016-10-31 09:05:59 -0700316void platform_update_aanc_path(struct audio_device *adev,
317 snd_device_t out_snd_device,
318 bool enable,
319 char * str);
Ashish Jainf1eaa582016-05-23 20:54:24 +0530320bool platform_supports_true_32bit();
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +0530321bool platform_check_if_backend_has_to_be_disabled(snd_device_t new_snd_device, snd_device_t cuurent_snd_device);
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +0530322bool platform_check_codec_dsd_support(void *platform);
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +0530323bool platform_check_codec_asrc_support(void *platform);
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +0530324int platform_get_backend_index(snd_device_t snd_device);
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -0700325int platform_get_ext_disp_type(void *platform);
Garmond Leunge3b6d482016-10-25 16:48:01 -0700326void platform_invalidate_hdmi_config(void *platform);
Siddartha Shaik44dd7702017-06-14 12:13:25 +0530327void platform_invalidate_backend_config(void * platform,snd_device_t snd_device);
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800328
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530329#ifdef INSTANCE_ID_ENABLED
330void platform_make_cal_cfg(acdb_audio_cal_cfg_t* cal, int acdb_dev_id,
331 int acdb_device_type, int app_type, int topology_id,
332 int sample_rate, uint32_t module_id, uint16_t instance_id,
333 uint32_t param_id, bool persist);
334#else
335void platform_make_cal_cfg(acdb_audio_cal_cfg_t* cal, int acdb_dev_id,
336 int acdb_device_type, int app_type, int topology_id,
337 int sample_rate, uint32_t module_id, uint32_t param_id, bool persist);
338#endif
339
340int platform_send_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800341 void* data, int length, bool persist);
342
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530343int platform_get_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800344 void* data, int* length, bool persist);
345
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530346int platform_store_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800347 void* data, int length);
348
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530349int platform_retrieve_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800350 void* data, int* length);
351
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +0530352unsigned char* platform_get_license(void* platform, int* size);
Divya Narayanan Poojary45f19192016-09-30 18:52:13 +0530353int platform_get_max_mic_count(void *platform);
Ashish Jaina052e572016-11-07 16:41:07 +0530354void platform_check_and_update_copp_sample_rate(void *platform, snd_device_t snd_device,
355 unsigned int stream_sr,int *sample_rate);
Satish Babu Patakokilac3c5d432017-07-04 22:48:59 +0530356int platform_get_max_codec_backend();
Haynes Mathew Georgeef514882017-05-01 17:46:23 -0700357int platform_get_mmap_data_fd(void *platform, int dev, int dir,
358 int *fd, uint32_t *size);
Garmond Leunge2433c32017-09-28 21:51:22 -0700359int platform_get_ec_ref_loopback_snd_device(int channel_count);
Aditya Bavanari71b6d532018-01-16 17:48:08 +0530360const char * platform_get_snd_card_name_for_acdb_loader(const char *snd_card_name);
Naresh Tannirudcb47c52018-06-25 16:23:32 +0530361
362bool platform_set_microphone_characteristic(void *platform,
363 struct audio_microphone_characteristic_t mic);
364bool platform_set_microphone_map(void *platform, snd_device_t in_snd_device,
365 const struct mic_info *info);
366int platform_get_microphones(void *platform,
367 struct audio_microphone_characteristic_t *mic_array,
368 size_t *mic_count);
369int platform_get_active_microphones(void *platform, unsigned int channels,
370 audio_usecase_t usecase,
371 struct audio_microphone_characteristic_t *mic_array,
372 size_t *mic_count);
Naresh Tannirucb5b5782018-10-12 20:42:07 +0530373
Surendar karka30569792018-05-08 12:02:21 +0530374int platform_get_license_by_product(void *platform, const char* product_name, int *product_id, char* product_license);
Vignesh Kulothungana6927272019-02-20 15:17:07 -0800375int platform_get_haptics_pcm_device_id();
Vignesh Kulothungane4039c12019-05-07 15:51:39 -0700376int platform_set_qtime(void *platform, int audio_pcm_device_id,
377 int haptic_pcm_device_id);
378int platform_get_delay(void *platform, int pcm_device_id);
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530379struct audio_custom_mtmx_params *
380 platform_get_custom_mtmx_params(void *platform,
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530381 struct audio_custom_mtmx_params_info *info,
382 uint32_t *idx);
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530383int platform_add_custom_mtmx_params(void *platform,
384 struct audio_custom_mtmx_params_info *info);
Eric Laurent637e2d42018-11-15 12:24:31 -0800385/* callback functions from platform to common audio HAL */
386struct stream_in *adev_get_active_input(const struct audio_device *adev);
387
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530388struct audio_custom_mtmx_in_params * platform_get_custom_mtmx_in_params(void *platform,
389 struct audio_custom_mtmx_in_params_info *info);
390int platform_add_custom_mtmx_in_params(void *platform,
391 struct audio_custom_mtmx_in_params_info *info);
Ben Romberger55886882014-01-10 13:49:02 -0800392#endif // AUDIO_PLATFORM_API_H