|
@@ -500,55 +500,39 @@ struct adm_cmd_device_open_v6 {
|
|
|
#define ADM_CMD_SET_PP_PARAMS_V5 0x00010328
|
|
|
#define ADM_CMD_SET_PP_PARAMS_V6 0x0001035D
|
|
|
|
|
|
-/* Payload of the #ADM_CMD_SET_PP_PARAMS_V5 command.
|
|
|
- * If the data_payload_addr_lsw and data_payload_addr_msw element
|
|
|
- * are NULL, a series of adm_param_datastructures immediately
|
|
|
- * follows, whose total size is data_payload_size bytes.
|
|
|
- */
|
|
|
-struct adm_cmd_set_pp_params_v5 {
|
|
|
- struct apr_hdr hdr;
|
|
|
- u32 payload_addr_lsw;
|
|
|
-/* LSW of parameter data payload address. */
|
|
|
- u32 payload_addr_msw;
|
|
|
-/* MSW of parameter data payload address. */
|
|
|
-
|
|
|
- u32 mem_map_handle;
|
|
|
-/* Memory map handle returned by ADM_CMD_SHARED_MEM_MAP_REGIONS
|
|
|
- * command
|
|
|
- *
|
|
|
- * If mem_map_handle is zero implies the message is in
|
|
|
- * the payload
|
|
|
+/*
|
|
|
+ * Structure of the ADM Set PP Params command. Parameter data must be
|
|
|
+ * pre-packed with correct header for either V2 or V3 when sent in-band.
|
|
|
+ * Use q6core_pack_pp_params to pack the header and data correctly depending on
|
|
|
+ * Instance ID support.
|
|
|
*/
|
|
|
+struct adm_cmd_set_pp_params {
|
|
|
+ /* APR Header */
|
|
|
+ struct apr_hdr apr_hdr;
|
|
|
|
|
|
- u32 payload_size;
|
|
|
-/* Size in bytes of the variable payload accompanying this
|
|
|
- * message or
|
|
|
- * in shared memory. This is used for parsing the parameter
|
|
|
- * payload.
|
|
|
- */
|
|
|
-} __packed;
|
|
|
+ /* The memory mapping header to be used when sending out of band */
|
|
|
+ struct mem_mapping_hdr mem_hdr;
|
|
|
|
|
|
-/* Payload format for COPP parameter data.
|
|
|
- * Immediately following this structure are param_size bytes
|
|
|
- * of parameter
|
|
|
- * data.
|
|
|
- */
|
|
|
-struct adm_param_data_v5 {
|
|
|
- u32 module_id;
|
|
|
- /* Unique ID of the module. */
|
|
|
- u32 param_id;
|
|
|
- /* Unique ID of the parameter. */
|
|
|
- u16 param_size;
|
|
|
- /* Data size of the param_id/module_id combination.
|
|
|
- * This value is a
|
|
|
- * multiple of 4 bytes.
|
|
|
+ /*
|
|
|
+ * Size in bytes of the variable payload accompanying this
|
|
|
+ * message or
|
|
|
+ * in shared memory. This is used for parsing the parameter
|
|
|
+ * payload.
|
|
|
*/
|
|
|
- u16 reserved;
|
|
|
- /* Reserved for future enhancements.
|
|
|
- * This field must be set to zero.
|
|
|
+ u32 payload_size;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Parameter data for in band payload. This should be structured as the
|
|
|
+ * parameter header immediately followed by the parameter data. Multiple
|
|
|
+ * parameters can be set in one command by repeating the header followed
|
|
|
+ * by the data for as many parameters as need to be set.
|
|
|
+ * Use q6core_pack_pp_params to pack the header and data correctly
|
|
|
+ * depending on Instance ID support.
|
|
|
*/
|
|
|
+ u8 param_data[0];
|
|
|
} __packed;
|
|
|
|
|
|
+
|
|
|
#define ASM_STREAM_CMD_REGISTER_PP_EVENTS 0x00013213
|
|
|
#define ASM_STREAM_PP_EVENT 0x00013214
|
|
|
#define ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE 0x13333
|
|
@@ -591,25 +575,6 @@ struct adm_cmd_set_pspd_mtmx_strtr_params_v5 {
|
|
|
u16 reserved;
|
|
|
} __packed;
|
|
|
|
|
|
-/* Defined specifically for in-band use, includes params */
|
|
|
-struct adm_cmd_set_pp_params_inband_v5 {
|
|
|
- struct apr_hdr hdr;
|
|
|
- /* LSW of parameter data payload address.*/
|
|
|
- u32 payload_addr_lsw;
|
|
|
- /* MSW of parameter data payload address.*/
|
|
|
- u32 payload_addr_msw;
|
|
|
- /* Memory map handle returned by ADM_CMD_SHARED_MEM_MAP_REGIONS */
|
|
|
- /* command. If mem_map_handle is zero implies the message is in */
|
|
|
- /* the payload */
|
|
|
- u32 mem_map_handle;
|
|
|
- /* Size in bytes of the variable payload accompanying this */
|
|
|
- /* message or in shared memory. This is used for parsing the */
|
|
|
- /* parameter payload. */
|
|
|
- u32 payload_size;
|
|
|
- /* Parameters passed for in band payload */
|
|
|
- struct adm_param_data_v5 params;
|
|
|
-} __packed;
|
|
|
-
|
|
|
/* Returns the status and COPP ID to an #ADM_CMD_DEVICE_OPEN_V5 command.
|
|
|
*/
|
|
|
#define ADM_CMDRSP_DEVICE_OPEN_V5 0x00010329
|
|
@@ -642,42 +607,19 @@ struct adm_cmd_rsp_device_open_v5 {
|
|
|
#define ADM_CMD_GET_PP_PARAMS_V5 0x0001032A
|
|
|
#define ADM_CMD_GET_PP_PARAMS_V6 0x0001035E
|
|
|
|
|
|
-/* Payload an #ADM_CMD_GET_PP_PARAMS_V5 command. */
|
|
|
-struct adm_cmd_get_pp_params_v5 {
|
|
|
- struct apr_hdr hdr;
|
|
|
- u32 data_payload_addr_lsw;
|
|
|
- /* LSW of parameter data payload address.*/
|
|
|
-
|
|
|
- u32 data_payload_addr_msw;
|
|
|
- /* MSW of parameter data payload address.*/
|
|
|
-
|
|
|
- /* If the mem_map_handle is non zero,
|
|
|
- * on ACK, the ParamData payloads begin at
|
|
|
- * the address specified (out-of-band).
|
|
|
- */
|
|
|
-
|
|
|
- u32 mem_map_handle;
|
|
|
- /* Memory map handle returned
|
|
|
- * by ADM_CMD_SHARED_MEM_MAP_REGIONS command.
|
|
|
- * If the mem_map_handle is 0, it implies that
|
|
|
- * the ACK's payload will contain the ParamData (in-band).
|
|
|
- */
|
|
|
-
|
|
|
- u32 module_id;
|
|
|
- /* Unique ID of the module. */
|
|
|
+/*
|
|
|
+ * Structure of the ADM Get PP Params command. Parameter header must be
|
|
|
+ * packed correctly for either V2 or V3. Use q6core_pack_pp_params to pack the
|
|
|
+ * header correctly depending on Instance ID support.
|
|
|
+ */
|
|
|
+struct adm_cmd_get_pp_params {
|
|
|
+ struct apr_hdr apr_hdr;
|
|
|
|
|
|
- u32 param_id;
|
|
|
- /* Unique ID of the parameter. */
|
|
|
+ /* The memory mapping header to be used when requesting outband */
|
|
|
+ struct mem_mapping_hdr mem_hdr;
|
|
|
|
|
|
- u16 param_max_size;
|
|
|
- /* Maximum data size of the parameter
|
|
|
- *ID/module ID combination. This
|
|
|
- * field is a multiple of 4 bytes.
|
|
|
- */
|
|
|
- u16 reserved;
|
|
|
- /* Reserved for future enhancements.
|
|
|
- * This field must be set to zero.
|
|
|
- */
|
|
|
+ /* Parameter header for in band payload. */
|
|
|
+ union param_hdrs param_hdr;
|
|
|
} __packed;
|
|
|
|
|
|
/* Returns parameter values
|
|
@@ -689,15 +631,49 @@ struct adm_cmd_get_pp_params_v5 {
|
|
|
* which returns parameter values in response
|
|
|
* to an #ADM_CMD_GET_PP_PARAMS_V5 command.
|
|
|
* Immediately following this
|
|
|
- * structure is the adm_param_data_v5
|
|
|
+ * structure is the param_hdr_v1
|
|
|
* structure containing the pre/postprocessing
|
|
|
* parameter data. For an in-band
|
|
|
* scenario, the variable payload depends
|
|
|
* on the size of the parameter.
|
|
|
*/
|
|
|
struct adm_cmd_rsp_get_pp_params_v5 {
|
|
|
- u32 status;
|
|
|
/* Status message (error code).*/
|
|
|
+ u32 status;
|
|
|
+
|
|
|
+ /* The header that identifies the subsequent parameter data */
|
|
|
+ struct param_hdr_v1 param_hdr;
|
|
|
+
|
|
|
+ /* The parameter data returned */
|
|
|
+ u32 param_data[0];
|
|
|
+} __packed;
|
|
|
+
|
|
|
+/*
|
|
|
+ * Returns parameter values in response to an #ADM_CMD_GET_PP_PARAMS_V5/6
|
|
|
+ * command.
|
|
|
+ */
|
|
|
+#define ADM_CMDRSP_GET_PP_PARAMS_V6 0x0001035F
|
|
|
+
|
|
|
+/*
|
|
|
+ * Payload of the #ADM_CMDRSP_GET_PP_PARAMS_V6 message,
|
|
|
+ * which returns parameter values in response
|
|
|
+ * to an #ADM_CMD_GET_PP_PARAMS_V6 command.
|
|
|
+ * Immediately following this
|
|
|
+ * structure is the param_hdr_v3
|
|
|
+ * structure containing the pre/postprocessing
|
|
|
+ * parameter data. For an in-band
|
|
|
+ * scenario, the variable payload depends
|
|
|
+ * on the size of the parameter.
|
|
|
+ */
|
|
|
+struct adm_cmd_rsp_get_pp_params_v6 {
|
|
|
+ /* Status message (error code).*/
|
|
|
+ u32 status;
|
|
|
+
|
|
|
+ /* The header that identifies the subsequent parameter data */
|
|
|
+ struct param_hdr_v3 param_hdr;
|
|
|
+
|
|
|
+ /* The parameter data returned */
|
|
|
+ u32 param_data[0];
|
|
|
} __packed;
|
|
|
|
|
|
/* Structure for holding soft stepping volume parameters. */
|
|
@@ -730,9 +706,40 @@ struct audproc_softvolume_params {
|
|
|
#define AUDPROC_CHMIXER_PARAM_ID_COEFF 0x00010342
|
|
|
|
|
|
|
|
|
+struct adm_cmd_set_pp_params_v5 {
|
|
|
+ struct apr_hdr hdr;
|
|
|
+ u32 payload_addr_lsw;
|
|
|
+ /* LSW of parameter data payload address.*/
|
|
|
+ u32 payload_addr_msw;
|
|
|
+ /* MSW of parameter data payload address.*/
|
|
|
+
|
|
|
+ u32 mem_map_handle;
|
|
|
+ /*
|
|
|
+ * Memory map handle returned by ADM_CMD_SHARED_MEM_MAP_REGIONS
|
|
|
+ * command.
|
|
|
+ * If mem_map_handle is zero implies the message is in
|
|
|
+ * the payload
|
|
|
+ */
|
|
|
+
|
|
|
+ u32 payload_size;
|
|
|
+ /*
|
|
|
+ * Size in bytes of the variable payload accompanying this
|
|
|
+ * message or
|
|
|
+ * in shared memory. This is used for parsing the parameter
|
|
|
+ * payload.
|
|
|
+ */
|
|
|
+} __packed;
|
|
|
+
|
|
|
struct audproc_mfc_output_media_fmt {
|
|
|
struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
+ struct param_hdr_v1 data;
|
|
|
+ uint32_t sampling_rate;
|
|
|
+ uint16_t bits_per_sample;
|
|
|
+ uint16_t num_channels;
|
|
|
+ uint16_t channel_type[8];
|
|
|
+} __packed;
|
|
|
+
|
|
|
+struct audproc_mfc_param_media_fmt {
|
|
|
uint32_t sampling_rate;
|
|
|
uint16_t bits_per_sample;
|
|
|
uint16_t num_channels;
|
|
@@ -740,8 +747,6 @@ struct audproc_mfc_output_media_fmt {
|
|
|
} __packed;
|
|
|
|
|
|
struct audproc_volume_ctrl_master_gain {
|
|
|
- struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
/* Linear gain in Q13 format. */
|
|
|
uint16_t master_gain;
|
|
|
/* Clients must set this field to zero. */
|
|
@@ -749,8 +754,6 @@ struct audproc_volume_ctrl_master_gain {
|
|
|
} __packed;
|
|
|
|
|
|
struct audproc_soft_step_volume_params {
|
|
|
- struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
/*
|
|
|
* Period in milliseconds.
|
|
|
* Supported values: 0 to 15000
|
|
@@ -772,7 +775,6 @@ struct audproc_soft_step_volume_params {
|
|
|
} __packed;
|
|
|
|
|
|
struct audproc_enable_param_t {
|
|
|
- struct adm_cmd_set_pp_params_inband_v5 pp_params;
|
|
|
/*
|
|
|
* Specifies whether the Audio processing module is enabled.
|
|
|
* This parameter is generic/common parameter to configure or
|
|
@@ -7614,12 +7616,6 @@ struct admx_mic_gain {
|
|
|
/*< Clients must set this field to zero. */
|
|
|
} __packed;
|
|
|
|
|
|
-struct adm_set_mic_gain_params {
|
|
|
- struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
- struct admx_mic_gain mic_gain_data;
|
|
|
-} __packed;
|
|
|
-
|
|
|
/* end_addtogroup audio_pp_param_ids */
|
|
|
|
|
|
/* @ingroup audio_pp_module_ids
|
|
@@ -7977,56 +7973,23 @@ struct adm_qensemble_param_set_new_angle {
|
|
|
|
|
|
#define ADM_CMD_GET_PP_TOPO_MODULE_LIST 0x00010349
|
|
|
#define ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST 0x00010350
|
|
|
+#define ADM_CMD_GET_PP_TOPO_MODULE_LIST_V2 0x00010360
|
|
|
+#define ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST_V2 0x00010361
|
|
|
#define AUDPROC_PARAM_ID_ENABLE 0x00010904
|
|
|
- /*
|
|
|
- * Payload of the ADM_CMD_GET_PP_TOPO_MODULE_LIST command.
|
|
|
- */
|
|
|
-struct adm_cmd_get_pp_topo_module_list_t {
|
|
|
- struct apr_hdr hdr;
|
|
|
- /* Lower 32 bits of the 64-bit parameter data payload address. */
|
|
|
- uint32_t data_payload_addr_lsw;
|
|
|
- /*
|
|
|
- * Upper 32 bits of the 64-bit parameter data payload address.
|
|
|
- *
|
|
|
- *
|
|
|
- * The size of the shared memory, if specified, must be large enough to
|
|
|
- * contain the entire parameter data payload, including the module ID,
|
|
|
- * parameter ID, parameter size, and parameter values.
|
|
|
- */
|
|
|
- uint32_t data_payload_addr_msw;
|
|
|
- /*
|
|
|
- * Unique identifier for an address.
|
|
|
- *
|
|
|
- * This memory map handle is returned by the aDSP through the
|
|
|
- * #ADM_CMD_SHARED_MEM_MAP_REGIONS command.
|
|
|
- *
|
|
|
- * @values
|
|
|
- * - Non-NULL -- On acknowledgment, the parameter data payloads begin at
|
|
|
- * the address specified (out-of-band)
|
|
|
- * - NULL -- The acknowledgment's payload contains the parameter data
|
|
|
- * (in-band) @tablebulletend
|
|
|
- */
|
|
|
- uint32_t mem_map_handle;
|
|
|
+/*
|
|
|
+ * Payload of the ADM_CMD_GET_PP_TOPO_MODULE_LIST command.
|
|
|
+ */
|
|
|
+struct adm_cmd_get_pp_topo_module_list {
|
|
|
+ struct apr_hdr apr_hdr;
|
|
|
+
|
|
|
+ /* The memory mapping header to be used when requesting out of band */
|
|
|
+ struct mem_mapping_hdr mem_hdr;
|
|
|
+
|
|
|
/*
|
|
|
* Maximum data size of the list of modules. This
|
|
|
* field is a multiple of 4 bytes.
|
|
|
*/
|
|
|
- uint16_t param_max_size;
|
|
|
- /* This field must be set to zero. */
|
|
|
- uint16_t reserved;
|
|
|
-} __packed;
|
|
|
-
|
|
|
-/*
|
|
|
- * Payload of the ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST message, which returns
|
|
|
- * module ids in response to an ADM_CMD_GET_PP_TOPO_MODULE_LIST command.
|
|
|
- * Immediately following this structure is the acknowledgment <b>module id
|
|
|
- * data variable payload</b> containing the pre/postprocessing module id
|
|
|
- * values. For an in-band scenario, the variable payload depends on the size
|
|
|
- * of the parameter.
|
|
|
- */
|
|
|
-struct adm_cmd_rsp_get_pp_topo_module_list_t {
|
|
|
- /* Status message (error code). */
|
|
|
- uint32_t status;
|
|
|
+ uint32_t param_max_size;
|
|
|
} __packed;
|
|
|
|
|
|
struct audproc_topology_module_id_info_t {
|
|
@@ -10926,18 +10889,14 @@ enum {
|
|
|
#define AUDPROC_PARAM_ID_COMPRESSED_MUTE 0x00010771
|
|
|
|
|
|
struct adm_set_compressed_device_mute {
|
|
|
- struct adm_cmd_set_pp_params_v5 command;
|
|
|
- struct adm_param_data_v5 params;
|
|
|
- u32 mute_on;
|
|
|
+ u32 mute_on;
|
|
|
} __packed;
|
|
|
|
|
|
#define AUDPROC_MODULE_ID_COMPRESSED_LATENCY 0x0001076E
|
|
|
#define AUDPROC_PARAM_ID_COMPRESSED_LATENCY 0x0001076F
|
|
|
|
|
|
struct adm_set_compressed_device_latency {
|
|
|
- struct adm_cmd_set_pp_params_v5 command;
|
|
|
- struct adm_param_data_v5 params;
|
|
|
- u32 latency;
|
|
|
+ u32 latency;
|
|
|
} __packed;
|
|
|
|
|
|
#define VOICEPROC_MODULE_ID_GENERIC_TX 0x00010EF6
|
|
@@ -10967,12 +10926,6 @@ struct adm_param_fluence_soundfocus_t {
|
|
|
uint16_t reserved;
|
|
|
} __packed;
|
|
|
|
|
|
-struct adm_set_fluence_soundfocus_param {
|
|
|
- struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
- struct adm_param_fluence_soundfocus_t soundfocus_data;
|
|
|
-} __packed;
|
|
|
-
|
|
|
struct adm_param_fluence_sourcetracking_t {
|
|
|
uint8_t vad[MAX_SECTORS];
|
|
|
uint16_t doa_speech;
|
|
@@ -11002,10 +10955,4 @@ struct admx_sec_primary_mic_ch {
|
|
|
uint16_t reserved1;
|
|
|
} __packed;
|
|
|
|
|
|
-
|
|
|
-struct adm_set_sec_primary_ch_params {
|
|
|
- struct adm_cmd_set_pp_params_v5 params;
|
|
|
- struct adm_param_data_v5 data;
|
|
|
- struct admx_sec_primary_mic_ch sec_primary_mic_ch_data;
|
|
|
-} __packed;
|
|
|
#endif /*_APR_AUDIO_V2_H_ */
|