blob: 850f525e325bbe64e04345d2991685f5aa4d2d5d [file] [log] [blame]
Eric Laurentb23d5282013-05-14 15:27:20 -07001/*
Weiyin Jiang810a80d2021-01-18 16:04:31 +08002 * Copyright (c) 2013-2021, 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
Avinash Chandrad7296d42021-08-04 15:07:47 +053012
Eric Laurentb23d5282013-05-14 15:27:20 -070013 * 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.
Krishna Kishor Jha10ad39f2022-02-21 17:02:47 +053018
19 * Changes from Qualcomm Innovation Center are provided under the following license:
20
21 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
22
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted (subject to the limitations in the
25 * disclaimer below) provided that the following conditions are met:
26
27 * * Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29
30 * * Redistributions in binary form must reproduce the above
31 * copyright notice, this list of conditions and the following
32 * disclaimer in the documentation and/or other materials provided
33 * with the distribution.
34
35 * * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its
36 * contributors may be used to endorse or promote products derived
37 * from this software without specific prior written permission.
38
39 * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
40 * GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
41 * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
42 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
43 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
44 * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
45 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
47 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
48 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
49 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
50 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
51 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52
Eric Laurentb23d5282013-05-14 15:27:20 -070053 */
54
Ben Romberger55886882014-01-10 13:49:02 -080055#ifndef AUDIO_PLATFORM_API_H
56#define AUDIO_PLATFORM_API_H
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -070057#include <sound/voice_params.h>
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070058#include "audio_hw.h"
59#include "voice.h"
Eric Laurentb23d5282013-05-14 15:27:20 -070060
Mingming Yin3ee55c62014-08-04 14:23:35 -070061#define CODEC_BACKEND_DEFAULT_BIT_WIDTH 16
62#define CODEC_BACKEND_DEFAULT_SAMPLE_RATE 48000
Ashish Jainb26edfb2016-08-25 00:10:11 +053063#define CODEC_BACKEND_DEFAULT_CHANNELS 2
Kuirong Wang0b947f72016-09-29 11:03:09 -070064#define CODEC_BACKEND_DEFAULT_TX_CHANNELS 1
Ashish Jaina052e572016-11-07 16:41:07 +053065#define SAMPLE_RATE_8000 8000
66#define SAMPLE_RATE_11025 11025
67#define sample_rate_multiple(sr, base) ((sr % base)== 0?true:false)
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070068#define MAX_VOLUME_CAL_STEPS 15
Surendar karka30569792018-05-08 12:02:21 +053069#define LICENSE_STR_MAX_LEN (64)
70#define PRODUCT_FFV "ffv"
71#define PRODUCT_ALLPLAY "allplay"
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +053072#define MAX_IN_CHANNELS 32
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +053073#define CUSTOM_MTRX_PARAMS_MAX_USECASE 8
Vignesh Kulothungan55396882017-04-20 14:37:02 -070074
75typedef enum {
76 PLATFORM,
77 ACDB_EXTN,
78} caller_t;
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070079
Garmond Leung438932f2017-10-04 19:35:18 -070080struct audio_backend_cfg {
81 unsigned int sample_rate;
82 unsigned int channels;
83 unsigned int bit_width;
84 bool passthrough_enabled;
85 audio_format_t format;
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -070086 int controller;
87 int stream;
Garmond Leung438932f2017-10-04 19:35:18 -070088};
89
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -070090struct amp_db_and_gain_table {
91 float amp;
92 float db;
93 uint32_t level;
94};
Mingming Yin3ee55c62014-08-04 14:23:35 -070095
Naresh Tannirudcb47c52018-06-25 16:23:32 +053096struct mic_info {
97 char device_id[AUDIO_MICROPHONE_ID_MAX_LEN];
98 size_t channel_count;
99 audio_microphone_channel_mapping_t channel_mapping[AUDIO_CHANNEL_COUNT_MAX];
100};
101
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +0530102enum {
103 NATIVE_AUDIO_MODE_SRC = 1,
104 NATIVE_AUDIO_MODE_TRUE_44_1,
Preetam Singh Ranawatb1c73232019-04-22 13:59:51 +0530105 NATIVE_AUDIO_MODE_MULTIPLE_MIX_IN_CODEC,
106 NATIVE_AUDIO_MODE_MULTIPLE_MIX_IN_DSP,
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +0530107 NATIVE_AUDIO_MODE_INVALID
108};
109
110typedef struct {
111 bool platform_na_prop_enabled;
112 bool ui_na_prop_enabled;
113 int na_mode;
114} native_audio_prop;
115
Siena Richard7c2db772016-12-21 11:32:34 -0800116#define BE_DAI_NAME_MAX_LENGTH 24
117struct be_dai_name_struct {
118 unsigned int be_id;
119 char be_name[BE_DAI_NAME_MAX_LENGTH];
120};
121
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530122typedef struct acdb_audio_cal_cfg {
123 uint32_t persist;
124 uint32_t snd_dev_id;
125 audio_devices_t dev_id;
126 int32_t acdb_dev_id;
127 uint32_t app_type;
128 uint32_t topo_id;
129 uint32_t sampling_rate;
130 uint32_t cal_type;
131 uint32_t module_id;
132#ifdef INSTANCE_ID_ENABLED
133 uint16_t instance_id;
134 uint16_t reserved;
135#endif
136 uint32_t param_id;
137} acdb_audio_cal_cfg_t;
138
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530139
140struct audio_custom_mtmx_params_info {
141 uint32_t id;
142 uint32_t ip_channels;
143 uint32_t op_channels;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530144 uint32_t usecase_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530145 uint32_t snd_device;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530146 uint32_t fe_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530147};
148
149struct audio_custom_mtmx_params {
150 struct listnode list;
151 struct audio_custom_mtmx_params_info info;
Vijay Kumar Madduladd0811f2022-09-06 22:30:24 +0530152 uint32_t coeffs[0];
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530153};
154
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530155struct audio_custom_mtmx_in_params_info {
156 uint32_t op_channels;
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530157 uint32_t usecase_id[CUSTOM_MTRX_PARAMS_MAX_USECASE];
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530158};
159
160struct audio_custom_mtmx_params_in_ch_info {
161 uint32_t ch_count;
162 char device[128];
163 char hw_interface[128];
164};
165
166struct audio_custom_mtmx_in_params {
167 struct listnode list;
168 struct audio_custom_mtmx_in_params_info in_info;
169 uint32_t ip_channels;
170 uint32_t mic_ch;
Avinash Chandrad7296d42021-08-04 15:07:47 +0530171 uint32_t i2s_ch;
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530172 uint32_t ec_ref_ch;
173 struct audio_custom_mtmx_params_in_ch_info in_ch_info[MAX_IN_CHANNELS];
174};
175
Haynes Mathew George3a1f1fb2016-08-09 15:43:13 -0700176enum card_status_t;
177
Eric Laurentb23d5282013-05-14 15:27:20 -0700178void *platform_init(struct audio_device *adev);
179void platform_deinit(void *platform);
180const char *platform_get_snd_device_name(snd_device_t snd_device);
Aniket Kumar Lataf56b6402016-10-27 12:03:18 -0700181
182/* return true if adding entry success
183 return false if adding entry fails */
184
185bool platform_add_gain_level_mapping(struct amp_db_and_gain_table *tbl_entry);
186
187/* return 0 if no custome mapping table found or when error detected
188 use default mapping in this case
189 return > 0 indicates number of entries in mapping table */
190
191int platform_get_gain_level_mapping(struct amp_db_and_gain_table *mapping_tbl,
192 int table_size);
193
Ravi Kumar Alamanda48c921d2013-10-29 06:07:44 -0700194int platform_get_snd_device_name_extn(void *platform, snd_device_t snd_device,
195 char *device_name);
Banajit Goswami20cdd212015-09-11 01:11:30 -0700196void platform_add_backend_name(char *mixer_path, snd_device_t snd_device,
197 struct audio_usecase *usecase);
vivek mehtaa76401a2015-04-24 14:12:15 -0700198bool platform_send_gain_dep_cal(void *platform, int level);
Eric Laurentb23d5282013-05-14 15:27:20 -0700199int platform_get_pcm_device_id(audio_usecase_t usecase, int device_type);
Ben Romberger61764e32014-01-10 13:49:02 -0800200int platform_get_snd_device_index(char *snd_device_index_name);
Venkata Narendra Kumar Gutta88fd0bc2014-03-27 19:47:56 +0530201int platform_set_fluence_type(void *platform, char *value);
202int platform_get_fluence_type(void *platform, char *value, uint32_t len);
Ben Romberger55886882014-01-10 13:49:02 -0800203int platform_set_snd_device_acdb_id(snd_device_t snd_device, unsigned int acdb_id);
Subhash Chandra Bose Naripeddy19dc03b2014-03-10 14:43:05 -0700204int platform_get_snd_device_acdb_id(snd_device_t snd_device);
Amit Shekhar5a39c912014-10-14 15:39:30 -0700205int platform_set_snd_device_bit_width(snd_device_t snd_device, unsigned int bit_width);
Vikram Pandurangadf59cae2017-08-03 18:04:55 -0700206int platform_set_effect_config_data(snd_device_t snd_device,
207 struct audio_effect_config effect_config,
208 effect_type_t effect_type);
209int platform_get_effect_config_data(snd_device_t snd_device,
210 struct audio_effect_config *effect_config,
211 effect_type_t effect_type);
Guodong Hu1d46f342019-06-28 16:57:30 +0800212int platform_set_fluence_mmsecns_config(struct audio_fluence_mmsecns_config fluence_mmsecns_config);
Amit Shekhar5a39c912014-10-14 15:39:30 -0700213int platform_get_snd_device_bit_width(snd_device_t snd_device);
Dhanalakshmi Siddani21be3ac2016-12-29 14:31:08 +0530214int platform_set_acdb_metainfo_key(void *platform, char *name, int key);
Ramu Gottipati62f6d9b2018-05-01 15:21:38 +0530215void platform_release_acdb_metainfo_key(void *platform);
Dhanalakshmi Siddani21be3ac2016-12-29 14:31:08 +0530216int platform_get_meta_info_key_from_list(void *platform, char *mod_name);
Sidipotu Ashoke6f78cb2015-11-05 14:42:20 +0530217int platform_set_native_support(int na_mode);
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -0800218int platform_get_native_support();
Preetam Singh Ranawat2d0e4632015-02-02 12:40:59 +0530219int platform_send_audio_calibration(void *platform, struct audio_usecase *usecase,
Zhou Song06761dd2019-04-28 18:08:17 +0800220 int app_type);
Sriram Kumar9c836482020-10-27 20:34:35 +0530221int platform_send_audio_calibration_hfp(void *platform, snd_device_t snd_device);
Subhash Chandra Bose Naripeddy54274672014-03-10 14:51:02 -0700222int platform_get_default_app_type(void *platform);
Srikanth Uyyalaa1e32352015-10-09 14:48:04 +0530223int platform_get_default_app_type_v2(void *platform, usecase_type_t type);
Eric Laurentb23d5282013-05-14 15:27:20 -0700224int platform_switch_voice_call_device_pre(void *platform);
Vidyakumar Athota545dbd32013-11-13 17:30:53 -0800225int platform_switch_voice_call_enable_device_config(void *platform,
226 snd_device_t out_snd_device,
227 snd_device_t in_snd_device);
Eric Laurentb23d5282013-05-14 15:27:20 -0700228int platform_switch_voice_call_device_post(void *platform,
229 snd_device_t out_snd_device,
230 snd_device_t in_snd_device);
Vidyakumar Athota1fd21792013-11-15 14:50:57 -0800231int platform_switch_voice_call_usecase_route_post(void *platform,
232 snd_device_t out_snd_device,
233 snd_device_t in_snd_device);
Vidyakumar Athotad9d9ff32013-11-13 11:46:52 -0800234int platform_start_voice_call(void *platform, uint32_t vsid);
235int platform_stop_voice_call(void *platform, uint32_t vsid);
Vignesh Kulothungan7d374312018-02-21 17:12:00 -0800236int platform_set_mic_break_det(void *platform, bool enable);
Eric Laurentb23d5282013-05-14 15:27:20 -0700237int platform_set_voice_volume(void *platform, int volume);
Aalique Grahame22e49102018-12-18 14:23:57 -0800238void platform_set_speaker_gain_in_combo(struct audio_device *adev,
239 snd_device_t snd_device,
240 bool enable);
Eric Laurentb23d5282013-05-14 15:27:20 -0700241int platform_set_mic_mute(void *platform, bool state);
Helen Zeng6a16ad72014-02-23 22:04:44 -0800242int platform_get_sample_rate(void *platform, uint32_t *rate);
Shiv Maliyappanahallic6fd8ee2014-03-07 15:31:55 -0800243int platform_set_device_mute(void *platform, bool state, char *dir);
Jaideep Sharma477917f2020-03-13 18:13:33 +0530244snd_device_t platform_get_output_snd_device(void *platform, struct stream_out *out,
245 usecase_type_t uc_type);
Eric Laurent637e2d42018-11-15 12:24:31 -0800246snd_device_t platform_get_input_snd_device(void *platform,
247 struct stream_in *in,
Jaideep Sharma477917f2020-03-13 18:13:33 +0530248 struct listnode *out_devices,
249 usecase_type_t uc_type);
Eric Laurentb23d5282013-05-14 15:27:20 -0700250int platform_set_hdmi_channels(void *platform, int channel_count);
Haynes Mathew George47cd4cb2013-07-19 11:58:50 -0700251int platform_edid_get_max_channels(void *platform);
Aalique Grahame22e49102018-12-18 14:23:57 -0800252void platform_add_operator_specific_device(snd_device_t snd_device,
253 const char *operator,
254 const char *mixer_path,
255 unsigned int acdb_id);
Carter Hsu32a62362018-10-15 15:01:42 -0700256void platform_add_external_specific_device(snd_device_t snd_device,
257 const char *name,
258 unsigned int acdb_id);
Shiv Maliyappanahalli34b585f2013-10-01 15:49:05 -0700259void platform_get_parameters(void *platform, struct str_parms *query,
260 struct str_parms *reply);
261int platform_set_parameters(void *platform, struct str_parms *parms);
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800262int platform_set_incall_recording_session_id(void *platform, uint32_t session_id,
263 int rec_mode);
Aalique Grahame22e49102018-12-18 14:23:57 -0800264#ifndef INCALL_STEREO_CAPTURE_ENABLED
265#define platform_set_incall_recording_session_channels(p, sc) (0)
266#else
267int platform_set_incall_recording_session_channels(void *platform,
268 uint32_t session_channels);
269#endif
Vidyakumar Athota2850d532013-11-19 16:02:12 -0800270int platform_stop_incall_recording_usecase(void *platform);
271int platform_start_incall_music_usecase(void *platform);
272int platform_stop_incall_music_usecase(void *platform);
Vidyakumar Athota21b3bb92014-04-25 11:08:08 -0700273int platform_update_lch(void *platform, struct voice_session *session,
274 enum voice_lch_mode lch_mode);
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700275/* returns the latency for a usecase in Us */
George Gao9ba8a142020-07-23 14:30:03 -0700276int64_t platform_render_latency(struct stream_out *out);
277int64_t platform_capture_latency(struct stream_in *in);
Mingming Yine62d7842013-10-25 16:26:03 -0700278int platform_update_usecase_from_source(int source, audio_usecase_t usecase);
Haynes Mathew George7ff216f2013-09-11 19:51:41 -0700279
Dhananjay Kumar45b71742014-05-29 21:47:27 +0530280bool platform_listen_device_needs_event(snd_device_t snd_device);
281bool platform_listen_usecase_needs_event(audio_usecase_t uc_id);
Kiran Kandide144c82013-11-20 15:58:32 -0800282
Ravi Kumar Alamanda8fa6b192014-09-09 16:06:42 -0700283bool platform_sound_trigger_device_needs_event(snd_device_t snd_device);
284bool platform_sound_trigger_usecase_needs_event(audio_usecase_t uc_id);
285
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +0530286int platform_set_snd_device_backend(snd_device_t snd_device, const char * backend,
287 const char * hw_interface);
Siena Richard7c2db772016-12-21 11:32:34 -0800288int platform_get_snd_device_backend_index(snd_device_t device);
Naresh Tanniru6160c712017-04-17 15:43:48 +0530289const char * platform_get_snd_device_backend_interface(snd_device_t device);
Aalique Grahame22e49102018-12-18 14:23:57 -0800290void platform_add_app_type(const char *uc_type,
291 const char *mode,
292 int bw, int app_type, int max_sr);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700293
Ravi Kumar Alamanda14b0f2d2015-06-28 21:04:09 -0700294/* From platform_info.c */
Vignesh Kulothungan55396882017-04-20 14:37:02 -0700295int platform_info_init(const char *filename, void *, caller_t);
Sandhya Mutha Naga Venkata4c6fc9f2022-10-14 19:38:02 +0530296void platform_info_deinit();
Ben Romberger61764e32014-01-10 13:49:02 -0800297
Dhananjay Kumare6293dd2017-05-25 17:25:30 +0530298void platform_snd_card_update(void *platform, card_status_t scard_status);
Ben Rombergerfeca4b82015-07-07 20:40:44 -0700299
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800300struct audio_offload_info_t;
301uint32_t platform_get_compress_offload_buffer_size(audio_offload_info_t* info);
Garmond Leung438932f2017-10-04 19:35:18 -0700302int platform_get_codec_backend_cfg(struct audio_device* adev,
303 snd_device_t snd_device,
304 struct audio_backend_cfg *backend_cfg);
ApurupaPattapuc6a3a9e2014-01-10 14:46:02 -0800305
Apoorv Raghuvanshi21492162015-02-19 18:19:36 -0800306bool platform_check_and_set_codec_backend_cfg(struct audio_device* adev,
307 struct audio_usecase *usecase, snd_device_t snd_device);
Manish Dewanganba9fcfa2016-03-24 16:20:06 +0530308bool platform_check_and_set_capture_codec_backend_cfg(struct audio_device* adev,
309 struct audio_usecase *usecase, snd_device_t snd_device);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700310int platform_get_usecase_index(const char * usecase);
Manoj Kumar N D7951b252022-08-23 13:18:00 +0530311int platform_set_usecase_pcm_id(audio_usecase_t usecase, int32_t type, int32_t pcm_id, int32_t fe_id);
Aniket Kumar Lata0e6e1e52019-11-14 21:43:55 -0800312void platform_set_echo_reference(struct audio_device *adev, bool enable,
313 struct listnode *out_devices);
Vignesh Kulothungan3b5fae52017-09-25 12:16:30 -0700314int platform_check_and_set_swap_lr_channels(struct audio_device *adev, bool swap_channels);
315int platform_set_swap_channels(struct audio_device *adev, bool swap_channels);
Pradnya Chaphekar8a9dcd82014-09-09 09:49:10 -0700316void platform_get_device_to_be_id_map(int **be_id_map, int *length);
Haynes Mathew Georgef4da6fe2014-06-20 19:14:25 -0700317
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700318int platform_set_channel_allocation(void *platform, int channel_alloc);
319int platform_get_edid_info(void *platform);
Revathi Uddaraju0553e8f2017-11-30 14:56:11 +0530320int platform_get_supported_copp_sampling_rate(uint32_t stream_sr);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700321int platform_set_channel_map(void *platform, int ch_count, char *ch_map,
Rohit kumar4dbd2c02019-02-04 16:26:33 +0530322 int snd_id, int be_idx);
Naresh Tanniru29bce4e2017-04-27 17:54:30 +0530323int platform_set_stream_channel_map(void *platform, audio_channel_mask_t channel_mask,
Weiyin Jiang810a80d2021-01-18 16:04:31 +0800324 int snd_id, int be_idx, uint8_t *input_channel_map);
Varun Balaraje49253e2017-07-06 19:48:56 +0530325int platform_set_stream_pan_scale_params(void *platform,
326 int snd_id,
327 struct mix_matrix_params mm_params);
328int platform_set_stream_downmix_params(void *platform,
329 int snd_id,
330 snd_device_t snd_device,
331 struct mix_matrix_params mm_params);
Rohit kumar4dbd2c02019-02-04 16:26:33 +0530332int platform_set_edid_channels_configuration(void *platform, int channels,
333 int backend_idx, snd_device_t snd_device);
Dieter Luecking5d57def2018-09-07 14:23:37 +0200334bool platform_spkr_use_default_sample_rate(void *platform);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700335unsigned char platform_map_to_edid_format(int format);
336bool platform_is_edid_supported_format(void *platform, int format);
Mingming Yin3a941d42016-02-17 18:08:05 -0800337bool platform_is_edid_supported_sample_rate(void *platform, int sample_rate);
Pradnya Chaphekar4403bd72014-09-09 09:50:01 -0700338void platform_cache_edid(void * platform);
Mingming Yin21854652016-04-13 11:54:02 -0700339void platform_invalidate_hdmi_config(void * platform);
340int platform_set_hdmi_config(void *platform, uint32_t channel_count,
341 uint32_t sample_rate, bool enable_passthrough);
Pradnya Chaphekar80a8cfb2014-10-20 16:17:01 -0700342int platform_set_device_params(struct stream_out *out, int param, int value);
Karthik Reddy Katta508eca42015-05-11 13:43:18 +0530343int platform_set_audio_device_interface(const char * device_name, const char *intf_name,
344 const char * codec_type);
Banajit Goswami20cdd212015-09-11 01:11:30 -0700345void platform_set_gsm_mode(void *platform, bool enable);
Kunlei Zhang91c4b332020-07-20 17:53:14 +0800346void platform_set_tx_lpi_mode(void *platform, bool enable);
Xiaojun Sang040cc9f2015-08-03 19:38:28 +0800347bool platform_can_enable_spkr_prot_on_device(snd_device_t snd_device);
348int platform_get_spkr_prot_acdb_id(snd_device_t snd_device);
349int platform_get_spkr_prot_snd_device(snd_device_t snd_device);
Rohit kumarf4120402016-08-05 19:19:48 +0530350int platform_get_vi_feedback_snd_device(snd_device_t snd_device);
Venkata Narendra Kumar Gutta7f4817f2016-01-29 14:15:53 +0530351int platform_spkr_prot_is_wsa_analog_mode(void *adev);
Haynes Mathew Georgebfe8ff42016-09-22 17:38:16 -0700352int platform_split_snd_device(void *platform,
353 snd_device_t snd_device,
354 int *num_devices,
355 snd_device_t *new_snd_devices);
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +0530356
Jasmine Cha20b15f92019-05-17 20:56:43 +0800357bool platform_check_all_backends_match(snd_device_t snd_device1, snd_device_t snd_device2);
Sidipotu Ashok9f0b16e2016-04-28 13:48:28 +0530358bool platform_check_backends_match(snd_device_t snd_device1, snd_device_t snd_device2);
Kuirong Wang1cad7142016-05-24 15:21:56 -0700359int platform_set_sidetone(struct audio_device *adev,
360 snd_device_t out_snd_device,
361 bool enable,
362 char * str);
Vidyakumar Athotaea269c62016-10-31 09:05:59 -0700363void platform_update_aanc_path(struct audio_device *adev,
364 snd_device_t out_snd_device,
365 bool enable,
366 char * str);
Ashish Jainf1eaa582016-05-23 20:54:24 +0530367bool platform_supports_true_32bit();
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +0530368bool 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 +0530369bool platform_check_codec_dsd_support(void *platform);
Preetam Singh Ranawatb0c0dd72016-08-18 00:32:06 +0530370bool platform_check_codec_asrc_support(void *platform);
Preetam Singh Ranawatcb6212e2016-07-19 18:33:53 +0530371int platform_get_backend_index(snd_device_t snd_device);
Shiv Maliyappanahallic0656402016-09-03 14:13:26 -0700372int platform_get_ext_disp_type(void *platform);
sriram kumar53c4c972021-02-18 16:49:33 +0530373int platform_get_is_afe_loopback_enabled(void *platform);
Garmond Leunge3b6d482016-10-25 16:48:01 -0700374void platform_invalidate_hdmi_config(void *platform);
Siddartha Shaik44dd7702017-06-14 12:13:25 +0530375void platform_invalidate_backend_config(void * platform,snd_device_t snd_device);
Saurav Kumarc1411662020-10-14 10:50:45 +0530376bool platform_get_spkr_hph_single_be_native_concurrency_flag();
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800377
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530378#ifdef INSTANCE_ID_ENABLED
379void platform_make_cal_cfg(acdb_audio_cal_cfg_t* cal, int acdb_dev_id,
380 int acdb_device_type, int app_type, int topology_id,
381 int sample_rate, uint32_t module_id, uint16_t instance_id,
382 uint32_t param_id, bool persist);
383#else
384void platform_make_cal_cfg(acdb_audio_cal_cfg_t* cal, int acdb_dev_id,
385 int acdb_device_type, int app_type, int topology_id,
386 int sample_rate, uint32_t module_id, uint32_t param_id, bool persist);
387#endif
388
389int platform_send_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800390 void* data, int length, bool persist);
391
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530392int platform_get_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800393 void* data, int* length, bool persist);
394
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530395int platform_store_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800396 void* data, int length);
397
Aditya Bavanari29bcea22017-10-03 20:10:35 +0530398int platform_retrieve_audio_cal(void* platform, acdb_audio_cal_cfg_t* cal,
Weiyin Jiangaa80acd2016-09-21 16:42:11 +0800399 void* data, int* length);
400
Lakshman Chaluvaraju22ba9f12016-09-12 11:42:10 +0530401unsigned char* platform_get_license(void* platform, int* size);
Divya Narayanan Poojary45f19192016-09-30 18:52:13 +0530402int platform_get_max_mic_count(void *platform);
Ashish Jaina052e572016-11-07 16:41:07 +0530403void platform_check_and_update_copp_sample_rate(void *platform, snd_device_t snd_device,
404 unsigned int stream_sr,int *sample_rate);
Satish Babu Patakokilac3c5d432017-07-04 22:48:59 +0530405int platform_get_max_codec_backend();
Haynes Mathew Georgeef514882017-05-01 17:46:23 -0700406int platform_get_mmap_data_fd(void *platform, int dev, int dir,
407 int *fd, uint32_t *size);
Garmond Leunge2433c32017-09-28 21:51:22 -0700408int platform_get_ec_ref_loopback_snd_device(int channel_count);
Aditya Bavanari71b6d532018-01-16 17:48:08 +0530409const char * platform_get_snd_card_name_for_acdb_loader(const char *snd_card_name);
Naresh Tannirudcb47c52018-06-25 16:23:32 +0530410
411bool platform_set_microphone_characteristic(void *platform,
412 struct audio_microphone_characteristic_t mic);
413bool platform_set_microphone_map(void *platform, snd_device_t in_snd_device,
414 const struct mic_info *info);
415int platform_get_microphones(void *platform,
416 struct audio_microphone_characteristic_t *mic_array,
417 size_t *mic_count);
418int platform_get_active_microphones(void *platform, unsigned int channels,
419 audio_usecase_t usecase,
420 struct audio_microphone_characteristic_t *mic_array,
421 size_t *mic_count);
Naresh Tannirucb5b5782018-10-12 20:42:07 +0530422
Surendar karka30569792018-05-08 12:02:21 +0530423int platform_get_license_by_product(void *platform, const char* product_name, int *product_id, char* product_license);
Guodong Huf5e614d2019-06-24 18:42:03 +0800424bool platform_get_eccarstate(void *platform);
Vignesh Kulothungane4039c12019-05-07 15:51:39 -0700425int platform_set_qtime(void *platform, int audio_pcm_device_id,
426 int haptic_pcm_device_id);
427int platform_get_delay(void *platform, int pcm_device_id);
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530428struct audio_custom_mtmx_params *
429 platform_get_custom_mtmx_params(void *platform,
Chaithanya Krishna Bacharaju3e94c912019-05-27 11:25:44 +0530430 struct audio_custom_mtmx_params_info *info,
431 uint32_t *idx);
Dhananjay Kumar429eb452018-12-10 22:26:53 +0530432int platform_add_custom_mtmx_params(void *platform,
433 struct audio_custom_mtmx_params_info *info);
Eric Laurent637e2d42018-11-15 12:24:31 -0800434/* callback functions from platform to common audio HAL */
435struct stream_in *adev_get_active_input(const struct audio_device *adev);
436
Chaithanya Krishna Bacharajuc9f99712019-04-16 15:32:52 +0530437struct audio_custom_mtmx_in_params * platform_get_custom_mtmx_in_params(void *platform,
438 struct audio_custom_mtmx_in_params_info *info);
439int platform_add_custom_mtmx_in_params(void *platform,
440 struct audio_custom_mtmx_in_params_info *info);
Vignesh Kulothungan39fc6a22019-08-01 00:55:59 -0700441
442int platform_get_edid_info_v2(void *platform, int controller, int stream);
443int platform_edid_get_max_channels_v2(void *platform, int controller, int stream);
444bool platform_is_edid_supported_format_v2(void *platform, int format,
445 int contoller, int stream);
446bool platform_is_edid_supported_sample_rate_v2(void *platform, int sample_rate,
447 int contoller, int stream);
448void platform_cache_edid_v2(void * platform, int controller, int stream);
449void platform_invalidate_hdmi_config_v2(void * platform, int controller, int stream);
450int platform_get_controller_stream_from_params(struct str_parms *parms,
451 int *controller, int *stream);
452int platform_set_ext_display_device_v2(void *platform, int controller, int stream);
453int platform_get_ext_disp_type_v2(void *platform, int controller, int stream);
454int platform_set_edid_channels_configuration_v2(void *platform, int channels,
455 int backend_idx, snd_device_t snd_device,
456 int controller, int stream);
457int platform_set_channel_allocation_v2(void *platform, int channel_alloc,
458 int controller, int stream);
459int platform_set_hdmi_channels_v2(void *platform, int channel_count,
460 int controller, int stream);
461int platform_get_display_port_ctl_index(int controller, int stream);
Jaideep Sharma477917f2020-03-13 18:13:33 +0530462bool platform_is_call_proxy_snd_device(snd_device_t snd_device);
Juyu Chen918e1e12019-08-08 15:28:18 -0700463void platform_set_audio_source_delay(audio_source_t audio_source, int delay_ms);
Kunlei Zhanga3c4cb02021-03-05 16:03:54 +0800464bool platform_set_fluence_nn_state(void *platform, bool start);
465int platform_get_fluence_nn_state(void *platform);
Juyu Chen918e1e12019-08-08 15:28:18 -0700466
467int platform_get_audio_source_index(const char *audio_source_name);
Kunlei Zhange7cab1a2020-05-17 20:31:05 +0800468bool platform_check_and_update_island_power_status(void *platform,
469 struct audio_usecase* usecase,
470 snd_device_t snd_device);
471bool platform_get_power_mode_on_device(void *platform, snd_device_t snd_device);
472bool platform_get_island_cfg_on_device(void *platform, snd_device_t snd_device);
473int platform_set_power_mode_on_device(struct audio_device* adev, snd_device_t snd_device,
474 bool enable);
475int platform_set_island_cfg_on_device(struct audio_device* adev, snd_device_t snd_device,
476 bool enable);
477void platform_reset_island_power_status(void *platform, snd_device_t snd_device);
Kunlei Zhang253ad102020-10-14 16:21:28 +0800478void platform_is_volume_boost_supported_device(void *platform, struct listnode *devices);
Harshal Ahire5bbb5fb2021-01-28 18:23:14 +0530479const char *platform_get_mixer_FM_RX_control(struct audio_device *adev);
Krishna Kishor Jha10ad39f2022-02-21 17:02:47 +0530480#ifdef SOFT_VOLUME
481int platform_set_soft_step_volume_params(int uc_id, int period, int step, int curve);
482int platform_get_soft_step_volume_params(struct soft_step_volume_params *volume_params, int uc_id);
483#endif
Ben Romberger55886882014-01-10 13:49:02 -0800484#endif // AUDIO_PLATFORM_API_H