blob: e689e9357012019bec3667a819f746c170f7aac7 [file] [log] [blame]
Derek Chen61e52122016-05-26 18:00:39 -04001/* Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
Banajit Goswami0530e2f2016-12-09 21:34:37 -08002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#ifndef __Q6_ADM_V2_H__
13#define __Q6_ADM_V2_H__
14
15
16#define ADM_PATH_PLAYBACK 0x1
17#define ADM_PATH_LIVE_REC 0x2
18#define ADM_PATH_NONLIVE_REC 0x3
19#define ADM_PATH_COMPRESSED_RX 0x5
Siddartha Shaik047e37b2017-05-19 20:06:35 +053020#define ADM_PATH_COMPRESSED_TX 0x6
Banajit Goswami0530e2f2016-12-09 21:34:37 -080021#include <linux/qdsp6v2/rtac.h>
22#include <sound/q6afe-v2.h>
23#include <sound/q6audio-v2.h>
24
25#define MAX_MODULES_IN_TOPO 16
26#define ADM_GET_TOPO_MODULE_LIST_LENGTH\
27 ((MAX_MODULES_IN_TOPO + 1) * sizeof(uint32_t))
28#define AUD_PROC_BLOCK_SIZE 4096
29#define AUD_VOL_BLOCK_SIZE 4096
30#define AUDIO_RX_CALIBRATION_SIZE (AUD_PROC_BLOCK_SIZE + \
31 AUD_VOL_BLOCK_SIZE)
32enum {
33 ADM_CUSTOM_TOP_CAL = 0,
34 ADM_AUDPROC_CAL,
35 ADM_AUDVOL_CAL,
36 ADM_RTAC_INFO_CAL,
37 ADM_RTAC_APR_CAL,
Banajit Goswami0530e2f2016-12-09 21:34:37 -080038 ADM_SRS_TRUMEDIA,
39 ADM_RTAC_AUDVOL_CAL,
40 ADM_MAX_CAL_TYPES
41};
42
43enum {
44 ADM_MEM_MAP_INDEX_SOURCE_TRACKING = ADM_MAX_CAL_TYPES,
45 ADM_MEM_MAP_INDEX_MAX
46};
47
48enum {
49 ADM_CLIENT_ID_DEFAULT = 0,
50 ADM_CLIENT_ID_SOURCE_TRACKING,
51 ADM_CLIENT_ID_MAX,
52};
53
54#define MAX_COPPS_PER_PORT 0x8
55#define ADM_MAX_CHANNELS 8
56
57/* multiple copp per stream. */
58struct route_payload {
59 unsigned int copp_idx[MAX_COPPS_PER_PORT];
60 unsigned int port_id[MAX_COPPS_PER_PORT];
Siena Richard23364c92017-01-11 16:20:55 -080061 int app_type[MAX_COPPS_PER_PORT];
62 int acdb_dev_id[MAX_COPPS_PER_PORT];
63 int sample_rate[MAX_COPPS_PER_PORT];
Banajit Goswami0530e2f2016-12-09 21:34:37 -080064 unsigned short num_copps;
65 unsigned int session_id;
66};
67
Meng Wang9eaff412017-01-04 14:34:45 +080068struct default_chmixer_param_id_coeff {
69 uint32_t index;
70 uint16_t num_output_channels;
71 uint16_t num_input_channels;
72};
73
74struct msm_pcm_channel_mixer {
75 int output_channel;
76 int input_channels[ADM_MAX_CHANNELS];
77 bool enable;
78 int rule;
79 int channel_weight[ADM_MAX_CHANNELS][ADM_MAX_CHANNELS];
80};
81
Banajit Goswami0530e2f2016-12-09 21:34:37 -080082int srs_trumedia_open(int port_id, int copp_idx, __s32 srs_tech_id,
83 void *srs_params);
84
85int adm_dts_eagle_set(int port_id, int copp_idx, int param_id,
86 void *data, uint32_t size);
87
88int adm_dts_eagle_get(int port_id, int copp_idx, int param_id,
89 void *data, uint32_t size);
90
91void adm_copp_mfc_cfg(int port_id, int copp_idx, int dst_sample_rate);
92
93int adm_get_params(int port_id, int copp_idx, uint32_t module_id,
94 uint32_t param_id, uint32_t params_length, char *params);
95
96int adm_send_params_v5(int port_id, int copp_idx, char *params,
97 uint32_t params_length);
98
99int adm_dolby_dap_send_params(int port_id, int copp_idx, char *params,
100 uint32_t params_length);
101
102int adm_open(int port, int path, int rate, int mode, int topology,
103 int perf_mode, uint16_t bits_per_sample,
104 int app_type, int acdbdev_id);
105
106int adm_map_rtac_block(struct rtac_cal_block_data *cal_block);
107
108int adm_unmap_rtac_block(uint32_t *mem_map_handle);
109
110int adm_close(int port, int topology, int perf_mode);
111
112int adm_matrix_map(int path, struct route_payload payload_map,
Revathi Uddaraju1803e362016-10-19 14:12:00 +0530113 int perf_mode, uint32_t passthr_mode);
Banajit Goswami0530e2f2016-12-09 21:34:37 -0800114
115int adm_connect_afe_port(int mode, int session_id, int port_id);
116
117void adm_ec_ref_rx_id(int port_id);
118
Derek Chen61e52122016-05-26 18:00:39 -0400119void adm_num_ec_ref_rx_chans(int num_chans);
120
121void adm_ec_ref_rx_bit_width(int bit_width);
122
123void adm_ec_ref_rx_sampling_rate(int sampling_rate);
124
Banajit Goswami0530e2f2016-12-09 21:34:37 -0800125int adm_get_lowlatency_copp_id(int port_id);
126
127int adm_set_multi_ch_map(char *channel_map, int path);
128
129int adm_get_multi_ch_map(char *channel_map, int path);
130
131int adm_validate_and_get_port_index(int port_id);
132
133int adm_get_default_copp_idx(int port_id);
134
135int adm_get_topology_for_port_from_copp_id(int port_id, int copp_id);
136
137int adm_get_topology_for_port_copp_idx(int port_id, int copp_idx);
138
139int adm_get_indexes_from_copp_id(int copp_id, int *port_idx, int *copp_idx);
140
141int adm_set_stereo_to_custom_stereo(int port_id, int copp_idx,
142 unsigned int session_id,
143 char *params, uint32_t params_length);
144
145int adm_get_pp_topo_module_list(int port_id, int copp_idx, int32_t param_length,
146 char *params);
147
148int adm_set_volume(int port_id, int copp_idx, int volume);
149
150int adm_set_softvolume(int port_id, int copp_idx,
151 struct audproc_softvolume_params *softvol_param);
152
Derek Chen5dea59a2016-06-06 20:40:29 -0400153int adm_set_mic_gain(int port_id, int copp_idx, int volume);
154
Rahul Sharma6e836982016-12-09 00:45:44 +0530155int adm_send_set_multichannel_ec_primary_mic_ch(int port_id, int copp_idx,
156 int primary_mic_ch);
157
Banajit Goswami0530e2f2016-12-09 21:34:37 -0800158int adm_param_enable(int port_id, int copp_idx, int module_id, int enable);
159
160int adm_send_calibration(int port_id, int copp_idx, int path, int perf_mode,
161 int cal_type, char *params, int size);
162
163int adm_set_wait_parameters(int port_id, int copp_idx);
164
165int adm_reset_wait_parameters(int port_id, int copp_idx);
166
167int adm_wait_timeout(int port_id, int copp_idx, int wait_time);
168
169int adm_store_cal_data(int port_id, int copp_idx, int path, int perf_mode,
170 int cal_type, char *params, int *size);
171
172int adm_send_compressed_device_mute(int port_id, int copp_idx, bool mute_on);
173
174int adm_send_compressed_device_latency(int port_id, int copp_idx, int latency);
175int adm_set_sound_focus(int port_id, int copp_idx,
176 struct sound_focus_param soundFocusData);
177int adm_get_sound_focus(int port_id, int copp_idx,
178 struct sound_focus_param *soundFocusData);
179int adm_get_source_tracking(int port_id, int copp_idx,
180 struct source_tracking_param *sourceTrackingData);
Aditya Bavanarib5c10cc2016-10-19 19:44:02 +0530181int adm_swap_speaker_channels(int port_id, int copp_idx, int sample_rate,
182 bool spk_swap);
Meng Wang9eaff412017-01-04 14:34:45 +0800183int adm_programable_channel_mixer(int port_id, int copp_idx, int session_id,
184 int session_type,
185 struct msm_pcm_channel_mixer *ch_mixer,
186 int channel_index);
Banajit Goswami0530e2f2016-12-09 21:34:37 -0800187#endif /* __Q6_ADM_V2_H__ */