4365 lines
132 KiB
C
4365 lines
132 KiB
C
/* Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
#include <linux/slab.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/jiffies.h>
|
|
#include <linux/uaccess.h>
|
|
#include <linux/atomic.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/qdsp6v2/apr.h>
|
|
#include <sound/apr_audio-v2.h>
|
|
#include <sound/q6adm-v2.h>
|
|
#include <sound/q6audio-v2.h>
|
|
#include <sound/q6afe-v2.h>
|
|
#include <sound/audio_cal_utils.h>
|
|
#include <sound/asound.h>
|
|
#include <sound/msm-dts-eagle.h>
|
|
#include "msm-dts-srs-tm-config.h"
|
|
#include <sound/adsp_err.h>
|
|
|
|
#define TIMEOUT_MS 1000
|
|
|
|
#define RESET_COPP_ID 99
|
|
#define INVALID_COPP_ID 0xFF
|
|
/* Used for inband payload copy, max size is 4k */
|
|
/* 2 is to account for module & param ID in payload */
|
|
#define ADM_GET_PARAMETER_LENGTH (4096 - APR_HDR_SIZE - 2 * sizeof(uint32_t))
|
|
|
|
#define ULL_SUPPORTED_BITS_PER_SAMPLE 16
|
|
#define ULL_SUPPORTED_SAMPLE_RATE 48000
|
|
|
|
/* ENUM for adm_status */
|
|
enum adm_cal_status {
|
|
ADM_STATUS_CALIBRATION_REQUIRED = 0,
|
|
ADM_STATUS_MAX,
|
|
};
|
|
|
|
struct adm_copp {
|
|
|
|
atomic_t id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t cnt[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t topology[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t mode[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t rate[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t bit_width[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t channels[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t app_type[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t acdb_id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
wait_queue_head_t wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
wait_queue_head_t adm_delay_wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
atomic_t adm_delay_stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
uint32_t adm_delay[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
unsigned long adm_status[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
|
|
};
|
|
|
|
struct source_tracking_data {
|
|
struct ion_client *ion_client;
|
|
struct ion_handle *ion_handle;
|
|
struct param_outband memmap;
|
|
int apr_cmd_status;
|
|
};
|
|
|
|
struct adm_ctl {
|
|
void *apr;
|
|
|
|
struct adm_copp copp;
|
|
|
|
atomic_t matrix_map_stat;
|
|
wait_queue_head_t matrix_map_wait;
|
|
|
|
atomic_t adm_stat;
|
|
wait_queue_head_t adm_wait;
|
|
|
|
struct cal_type_data *cal_data[ADM_MAX_CAL_TYPES];
|
|
|
|
atomic_t mem_map_handles[ADM_MEM_MAP_INDEX_MAX];
|
|
atomic_t mem_map_index;
|
|
|
|
struct param_outband outband_memmap;
|
|
struct source_tracking_data sourceTrackingData;
|
|
|
|
int set_custom_topology;
|
|
int ec_ref_rx;
|
|
};
|
|
|
|
static struct adm_ctl this_adm;
|
|
|
|
struct adm_multi_ch_map {
|
|
bool set_channel_map;
|
|
char channel_mapping[PCM_FORMAT_MAX_NUM_CHANNEL];
|
|
};
|
|
|
|
#define ADM_MCH_MAP_IDX_PLAYBACK 0
|
|
#define ADM_MCH_MAP_IDX_REC 1
|
|
static struct adm_multi_ch_map multi_ch_maps[2] = {
|
|
{ false,
|
|
{0, 0, 0, 0, 0, 0, 0, 0}
|
|
},
|
|
{ false,
|
|
{0, 0, 0, 0, 0, 0, 0, 0}
|
|
}
|
|
};
|
|
|
|
static int adm_get_parameters[MAX_COPPS_PER_PORT * ADM_GET_PARAMETER_LENGTH];
|
|
static int adm_module_topo_list[
|
|
MAX_COPPS_PER_PORT * ADM_GET_TOPO_MODULE_LIST_LENGTH];
|
|
|
|
int adm_validate_and_get_port_index(int port_id)
|
|
{
|
|
int index;
|
|
int ret;
|
|
|
|
ret = q6audio_validate_port(port_id);
|
|
if (ret < 0) {
|
|
pr_err("%s: port validation failed id 0x%x ret %d\n",
|
|
__func__, port_id, ret);
|
|
return -EINVAL;
|
|
}
|
|
|
|
index = afe_get_port_index(port_id);
|
|
if (index < 0 || index >= AFE_MAX_PORTS) {
|
|
pr_err("%s: Invalid port idx %d port_id 0x%x\n",
|
|
__func__, index,
|
|
port_id);
|
|
return -EINVAL;
|
|
}
|
|
pr_debug("%s: port_idx- %d\n", __func__, index);
|
|
return index;
|
|
}
|
|
|
|
int adm_get_default_copp_idx(int port_id)
|
|
{
|
|
int port_idx = adm_validate_and_get_port_index(port_id), idx;
|
|
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
pr_debug("%s: port_idx:%d\n", __func__, port_idx);
|
|
for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
|
|
if (atomic_read(&this_adm.copp.id[port_idx][idx]) !=
|
|
RESET_COPP_ID)
|
|
return idx;
|
|
}
|
|
return -EINVAL;
|
|
}
|
|
|
|
int adm_get_topology_for_port_from_copp_id(int port_id, int copp_id)
|
|
{
|
|
int port_idx = adm_validate_and_get_port_index(port_id), idx;
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
|
|
return 0;
|
|
}
|
|
for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
|
|
if (atomic_read(&this_adm.copp.id[port_idx][idx]) == copp_id)
|
|
return atomic_read(&this_adm.copp.topology[port_idx]
|
|
[idx]);
|
|
pr_err("%s: Invalid copp_id %d port_id 0x%x\n",
|
|
__func__, copp_id, port_id);
|
|
return 0;
|
|
}
|
|
|
|
int adm_get_topology_for_port_copp_idx(int port_id, int copp_idx)
|
|
{
|
|
int port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid port: 0x%x copp id: 0x%x",
|
|
__func__, port_id, copp_idx);
|
|
return 0;
|
|
}
|
|
return atomic_read(&this_adm.copp.topology[port_idx][copp_idx]);
|
|
}
|
|
|
|
int adm_get_indexes_from_copp_id(int copp_id, int *copp_idx, int *port_idx)
|
|
{
|
|
int p_idx, c_idx;
|
|
for (p_idx = 0; p_idx < AFE_MAX_PORTS; p_idx++) {
|
|
for (c_idx = 0; c_idx < MAX_COPPS_PER_PORT; c_idx++) {
|
|
if (atomic_read(&this_adm.copp.id[p_idx][c_idx])
|
|
== copp_id) {
|
|
if (copp_idx != NULL)
|
|
*copp_idx = c_idx;
|
|
if (port_idx != NULL)
|
|
*port_idx = p_idx;
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int adm_get_copp_id(int port_idx, int copp_idx)
|
|
{
|
|
pr_debug("%s: port_idx:%d copp_idx:%d\n", __func__, port_idx, copp_idx);
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
return atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
}
|
|
|
|
static int adm_get_idx_if_copp_exists(int port_idx, int topology, int mode,
|
|
int rate, int bit_width, int app_type)
|
|
{
|
|
int idx;
|
|
|
|
pr_debug("%s: port_idx-%d, topology-0x%x, mode-%d, rate-%d, bit_width-%d\n",
|
|
__func__, port_idx, topology, mode, rate, bit_width);
|
|
|
|
for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
|
|
if ((topology ==
|
|
atomic_read(&this_adm.copp.topology[port_idx][idx])) &&
|
|
(mode == atomic_read(&this_adm.copp.mode[port_idx][idx])) &&
|
|
(rate == atomic_read(&this_adm.copp.rate[port_idx][idx])) &&
|
|
(bit_width ==
|
|
atomic_read(&this_adm.copp.bit_width[port_idx][idx])) &&
|
|
(app_type ==
|
|
atomic_read(&this_adm.copp.app_type[port_idx][idx])))
|
|
return idx;
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int adm_get_next_available_copp(int port_idx)
|
|
{
|
|
int idx;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
|
|
pr_debug("%s: copp_id:0x%x port_idx:%d idx:%d\n", __func__,
|
|
atomic_read(&this_adm.copp.id[port_idx][idx]),
|
|
port_idx, idx);
|
|
if (atomic_read(&this_adm.copp.id[port_idx][idx]) ==
|
|
RESET_COPP_ID)
|
|
break;
|
|
}
|
|
return idx;
|
|
}
|
|
|
|
int adm_dts_eagle_set(int port_id, int copp_idx, int param_id,
|
|
void *data, uint32_t size)
|
|
{
|
|
struct adm_cmd_set_pp_params_v5 admp;
|
|
int p_idx, ret = 0, *ob_params;
|
|
|
|
pr_debug("DTS_EAGLE_ADM: %s - port id %i, copp idx %i, param id 0x%X size %u\n",
|
|
__func__, port_id, copp_idx, param_id, size);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
p_idx = adm_validate_and_get_port_index(port_id);
|
|
pr_debug("DTS_EAGLE_ADM: %s - after lookup, port id %i, port idx %i\n",
|
|
__func__, port_id, p_idx);
|
|
|
|
if (p_idx < 0) {
|
|
pr_err("DTS_EAGLE_ADM: %s: invalid port index 0x%x, port id 0x%x\n",
|
|
__func__, p_idx, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("DTS_EAGLE_ADM: %s: Invalid copp_idx: %d\n", __func__,
|
|
copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ob_params = (int *)this_adm.outband_memmap.kvaddr;
|
|
if (ob_params == NULL) {
|
|
pr_err("DTS_EAGLE_ADM: %s - NULL memmap. Non Eagle topology selected?\n",
|
|
__func__);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* check for integer overflow */
|
|
if (size > (UINT_MAX - APR_CMD_OB_HDR_SZ))
|
|
ret = -EINVAL;
|
|
if ((ret < 0) ||
|
|
(size + APR_CMD_OB_HDR_SZ > this_adm.outband_memmap.size)) {
|
|
pr_err("DTS_EAGLE_ADM - %s: ion alloc of size %zu too small for size requested %u\n",
|
|
__func__, this_adm.outband_memmap.size,
|
|
size + APR_CMD_OB_HDR_SZ);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
*ob_params++ = AUDPROC_MODULE_ID_DTS_HPX_POSTMIX;
|
|
*ob_params++ = param_id;
|
|
*ob_params++ = size;
|
|
memcpy(ob_params, data, size);
|
|
|
|
admp.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
admp.hdr.pkt_size = sizeof(admp);
|
|
admp.hdr.src_svc = APR_SVC_ADM;
|
|
admp.hdr.src_domain = APR_DOMAIN_APPS;
|
|
admp.hdr.src_port = port_id;
|
|
admp.hdr.dest_svc = APR_SVC_ADM;
|
|
admp.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
admp.hdr.dest_port = atomic_read(&this_adm.copp.id[p_idx][copp_idx]);
|
|
admp.hdr.token = p_idx << 16 | copp_idx;
|
|
admp.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
admp.payload_addr_lsw = lower_32_bits(this_adm.outband_memmap.paddr);
|
|
admp.payload_addr_msw = msm_audio_populate_upper_32_bits(
|
|
this_adm.outband_memmap.paddr);
|
|
admp.mem_map_handle = atomic_read(&this_adm.mem_map_handles[
|
|
ADM_DTS_EAGLE]);
|
|
admp.payload_size = size + sizeof(struct adm_param_data_v5);
|
|
|
|
pr_debug("DTS_EAGLE_ADM: %s - Command was sent now check Q6 - port id = %d, size %d, module id %x, param id %x.\n",
|
|
__func__, admp.hdr.dest_port,
|
|
admp.payload_size, AUDPROC_MODULE_ID_DTS_HPX_POSTMIX,
|
|
param_id);
|
|
atomic_set(&this_adm.copp.stat[p_idx][copp_idx], -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&admp);
|
|
if (ret < 0) {
|
|
pr_err("DTS_EAGLE_ADM: %s - ADM enable for port %d failed\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
ret = wait_event_timeout(this_adm.copp.wait[p_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("DTS_EAGLE_ADM: %s - set params timed out port = %d\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]));
|
|
} else {
|
|
ret = 0;
|
|
}
|
|
|
|
fail_cmd:
|
|
return ret;
|
|
}
|
|
|
|
int adm_dts_eagle_get(int port_id, int copp_idx, int param_id,
|
|
void *data, uint32_t size)
|
|
{
|
|
struct adm_cmd_get_pp_params_v5 admp;
|
|
int p_idx, ret = 0, *ob_params;
|
|
uint32_t orig_size = size;
|
|
pr_debug("DTS_EAGLE_ADM: %s - port id %i, copp idx %i, param id 0x%X\n",
|
|
__func__, port_id, copp_idx, param_id);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
p_idx = adm_validate_and_get_port_index(port_id);
|
|
if (p_idx < 0) {
|
|
pr_err("DTS_EAGLE_ADM: %s - invalid port index %i, port id %i, copp idx %i\n",
|
|
__func__, p_idx, port_id, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("DTS_EAGLE_ADM: %s: Invalid copp_idx: %d\n", __func__,
|
|
copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if ((size == 0) || !data) {
|
|
pr_err("DTS_EAGLE_ADM: %s - invalid size %u or pointer %p.\n",
|
|
__func__, size, data);
|
|
return -EINVAL;
|
|
}
|
|
|
|
size = (size+3) & 0xFFFFFFFC;
|
|
|
|
ob_params = (int *)(this_adm.outband_memmap.kvaddr);
|
|
if (ob_params == NULL) {
|
|
pr_err("DTS_EAGLE_ADM: %s - NULL memmap. Non Eagle topology selected?",
|
|
__func__);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* check for integer overflow */
|
|
if (size > (UINT_MAX - APR_CMD_OB_HDR_SZ))
|
|
ret = -EINVAL;
|
|
if ((ret < 0) ||
|
|
(size + APR_CMD_OB_HDR_SZ > this_adm.outband_memmap.size)) {
|
|
pr_err("DTS_EAGLE_ADM - %s: ion alloc of size %zu too small for size requested %u\n",
|
|
__func__, this_adm.outband_memmap.size,
|
|
size + APR_CMD_OB_HDR_SZ);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
*ob_params++ = AUDPROC_MODULE_ID_DTS_HPX_POSTMIX;
|
|
*ob_params++ = param_id;
|
|
*ob_params++ = size;
|
|
|
|
admp.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
admp.hdr.pkt_size = sizeof(admp);
|
|
admp.hdr.src_svc = APR_SVC_ADM;
|
|
admp.hdr.src_domain = APR_DOMAIN_APPS;
|
|
admp.hdr.src_port = port_id;
|
|
admp.hdr.dest_svc = APR_SVC_ADM;
|
|
admp.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
admp.hdr.dest_port = atomic_read(&this_adm.copp.id[p_idx][copp_idx]);
|
|
admp.hdr.token = p_idx << 16 | copp_idx;
|
|
admp.hdr.opcode = ADM_CMD_GET_PP_PARAMS_V5;
|
|
admp.data_payload_addr_lsw =
|
|
lower_32_bits(this_adm.outband_memmap.paddr);
|
|
admp.data_payload_addr_msw =
|
|
msm_audio_populate_upper_32_bits(
|
|
this_adm.outband_memmap.paddr);
|
|
admp.mem_map_handle = atomic_read(&this_adm.mem_map_handles[
|
|
ADM_DTS_EAGLE]);
|
|
admp.module_id = AUDPROC_MODULE_ID_DTS_HPX_POSTMIX;
|
|
admp.param_id = param_id;
|
|
admp.param_max_size = size + sizeof(struct adm_param_data_v5);
|
|
admp.reserved = 0;
|
|
|
|
atomic_set(&this_adm.copp.stat[p_idx][copp_idx], -1);
|
|
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&admp);
|
|
if (ret < 0) {
|
|
pr_err("DTS_EAGLE_ADM: %s - Failed to get EAGLE Params on port %d\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
ret = wait_event_timeout(this_adm.copp.wait[p_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("DTS_EAGLE_ADM: %s - EAGLE get params timed out port = %d\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
|
|
memcpy(data, ob_params, orig_size);
|
|
ret = 0;
|
|
fail_cmd:
|
|
return ret;
|
|
}
|
|
|
|
int srs_trumedia_open(int port_id, int copp_idx, __s32 srs_tech_id,
|
|
void *srs_params)
|
|
{
|
|
struct adm_cmd_set_pp_params_inband_v5 *adm_params = NULL;
|
|
struct adm_cmd_set_pp_params_v5 *adm_params_ = NULL;
|
|
__s32 sz = 0, param_id, module_id = SRS_TRUMEDIA_MODULE_ID, outband = 0;
|
|
int ret = 0, port_idx;
|
|
|
|
pr_debug("SRS - %s", __func__);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
switch (srs_tech_id) {
|
|
case SRS_ID_GLOBAL: {
|
|
struct srs_trumedia_params_GLOBAL *glb_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_GLOBAL);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_GLOBAL) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_GLOBAL);
|
|
glb_params = (struct srs_trumedia_params_GLOBAL *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(glb_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_GLOBAL));
|
|
break;
|
|
}
|
|
case SRS_ID_WOWHD: {
|
|
struct srs_trumedia_params_WOWHD *whd_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_WOWHD);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_WOWHD) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS_WOWHD;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_WOWHD);
|
|
whd_params = (struct srs_trumedia_params_WOWHD *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(whd_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_WOWHD));
|
|
break;
|
|
}
|
|
case SRS_ID_CSHP: {
|
|
struct srs_trumedia_params_CSHP *chp_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_CSHP);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_CSHP) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS_CSHP;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_CSHP);
|
|
chp_params = (struct srs_trumedia_params_CSHP *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(chp_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_CSHP));
|
|
break;
|
|
}
|
|
case SRS_ID_HPF: {
|
|
struct srs_trumedia_params_HPF *hpf_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_HPF);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_HPF) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS_HPF;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_HPF);
|
|
hpf_params = (struct srs_trumedia_params_HPF *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(hpf_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_HPF));
|
|
break;
|
|
}
|
|
case SRS_ID_AEQ: {
|
|
int *update_params_ptr = (int *)this_adm.outband_memmap.kvaddr;
|
|
outband = 1;
|
|
adm_params = kzalloc(sizeof(struct adm_cmd_set_pp_params_v5),
|
|
GFP_KERNEL);
|
|
adm_params_ = (struct adm_cmd_set_pp_params_v5 *)adm_params;
|
|
if (!adm_params_) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
sz = sizeof(struct srs_trumedia_params_AEQ);
|
|
if (update_params_ptr == NULL) {
|
|
pr_err("ADM_SRS_TRUMEDIA - %s: null memmap for AEQ params\n",
|
|
__func__);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
param_id = SRS_TRUMEDIA_PARAMS_AEQ;
|
|
*update_params_ptr++ = module_id;
|
|
*update_params_ptr++ = param_id;
|
|
*update_params_ptr++ = sz;
|
|
memcpy(update_params_ptr, srs_params, sz);
|
|
|
|
adm_params_->payload_size = sz + 12;
|
|
|
|
break;
|
|
}
|
|
case SRS_ID_HL: {
|
|
struct srs_trumedia_params_HL *hl_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_HL);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_HL) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS_HL;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_HL);
|
|
hl_params = (struct srs_trumedia_params_HL *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(hl_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_HL));
|
|
break;
|
|
}
|
|
case SRS_ID_GEQ: {
|
|
struct srs_trumedia_params_GEQ *geq_params = NULL;
|
|
sz = sizeof(struct adm_cmd_set_pp_params_inband_v5) +
|
|
sizeof(struct srs_trumedia_params_GEQ);
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n",
|
|
__func__);
|
|
return -ENOMEM;
|
|
}
|
|
adm_params->payload_size =
|
|
sizeof(struct srs_trumedia_params_GEQ) +
|
|
sizeof(struct adm_param_data_v5);
|
|
param_id = SRS_TRUMEDIA_PARAMS_GEQ;
|
|
adm_params->params.param_size =
|
|
sizeof(struct srs_trumedia_params_GEQ);
|
|
geq_params = (struct srs_trumedia_params_GEQ *)
|
|
((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pp_params_inband_v5));
|
|
memcpy(geq_params, srs_params,
|
|
sizeof(struct srs_trumedia_params_GEQ));
|
|
pr_debug("SRS - %s: GEQ params prepared\n", __func__);
|
|
break;
|
|
}
|
|
default:
|
|
goto fail_cmd;
|
|
}
|
|
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->hdr.token = port_idx << 16 | copp_idx;
|
|
adm_params->hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
if (outband && this_adm.outband_memmap.paddr) {
|
|
adm_params->hdr.pkt_size =
|
|
sizeof(struct adm_cmd_set_pp_params_v5);
|
|
adm_params->payload_addr_lsw = lower_32_bits(
|
|
this_adm.outband_memmap.paddr);
|
|
adm_params->payload_addr_msw = msm_audio_populate_upper_32_bits(
|
|
this_adm.outband_memmap.paddr);
|
|
adm_params->mem_map_handle = atomic_read(&this_adm.
|
|
mem_map_handles[ADM_SRS_TRUMEDIA]);
|
|
} else {
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->payload_addr_lsw = 0;
|
|
adm_params->payload_addr_msw = 0;
|
|
adm_params->mem_map_handle = 0;
|
|
|
|
adm_params->params.module_id = module_id;
|
|
adm_params->params.param_id = param_id;
|
|
adm_params->params.reserved = 0;
|
|
}
|
|
|
|
pr_debug("SRS - %s: Command was sent now check Q6 - port id = %d, size %d, module id %x, param id %x.\n",
|
|
__func__, adm_params->hdr.dest_port,
|
|
adm_params->payload_size, module_id, param_id);
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (ret < 0) {
|
|
pr_err("SRS - %s: ADM enable for port %d failed\n", __func__,
|
|
port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: SRS set params timed out port = %d\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
|
|
fail_cmd:
|
|
kfree(adm_params);
|
|
return ret;
|
|
}
|
|
|
|
int adm_set_stereo_to_custom_stereo(int port_id, int copp_idx,
|
|
unsigned int session_id, char *params,
|
|
uint32_t params_length)
|
|
{
|
|
struct adm_cmd_set_pspd_mtmx_strtr_params_v5 *adm_params = NULL;
|
|
int sz, rc = 0, port_idx;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5) +
|
|
params_length;
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed\n", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_params +
|
|
sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5)),
|
|
params, params_length);
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port = 0; /* Ignored */;
|
|
adm_params->hdr.token = 0;
|
|
adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5;
|
|
adm_params->payload_addr_lsw = 0;
|
|
adm_params->payload_addr_msw = 0;
|
|
adm_params->mem_map_handle = 0;
|
|
adm_params->payload_size = params_length;
|
|
/* direction RX as 0 */
|
|
adm_params->direction = ADM_MATRIX_ID_AUDIO_RX;
|
|
/* session id for this cmd to be applied on */
|
|
adm_params->sessionid = session_id;
|
|
adm_params->deviceid =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->reserved = 0;
|
|
pr_debug("%s: deviceid %d, session_id %d, src_port %d, dest_port %d\n",
|
|
__func__, adm_params->deviceid, adm_params->sessionid,
|
|
adm_params->hdr.src_port, adm_params->hdr.dest_port);
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = 0x%x rc %d\n",
|
|
__func__, port_id, rc);
|
|
rc = -EINVAL;
|
|
goto set_stereo_to_custom_stereo_return;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Set params timed out port = 0x%x\n", __func__,
|
|
port_id);
|
|
rc = -EINVAL;
|
|
goto set_stereo_to_custom_stereo_return;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n", __func__,
|
|
adsp_err_get_err_str(atomic_read(
|
|
&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto set_stereo_to_custom_stereo_return;
|
|
}
|
|
rc = 0;
|
|
set_stereo_to_custom_stereo_return:
|
|
kfree(adm_params);
|
|
return rc;
|
|
}
|
|
|
|
int adm_dolby_dap_send_params(int port_id, int copp_idx, char *params,
|
|
uint32_t params_length)
|
|
{
|
|
struct adm_cmd_set_pp_params_v5 *adm_params = NULL;
|
|
int sz, rc = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_set_pp_params_v5) + params_length;
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_params + sizeof(struct adm_cmd_set_pp_params_v5)),
|
|
params, params_length);
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->hdr.token = port_idx << 16 | copp_idx;
|
|
adm_params->hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
adm_params->payload_addr_lsw = 0;
|
|
adm_params->payload_addr_msw = 0;
|
|
adm_params->mem_map_handle = 0;
|
|
adm_params->payload_size = params_length;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = 0x%x rc %d\n",
|
|
__func__, port_id, rc);
|
|
rc = -EINVAL;
|
|
goto dolby_dap_send_param_return;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Set params timed out port = 0x%x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto dolby_dap_send_param_return;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto dolby_dap_send_param_return;
|
|
}
|
|
rc = 0;
|
|
dolby_dap_send_param_return:
|
|
kfree(adm_params);
|
|
return rc;
|
|
}
|
|
|
|
int adm_send_params_v5(int port_id, int copp_idx, char *params,
|
|
uint32_t params_length)
|
|
{
|
|
struct adm_cmd_set_pp_params_v5 *adm_params = NULL;
|
|
int rc = 0;
|
|
int sz, port_idx;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_set_pp_params_v5) + params_length;
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_params + sizeof(struct adm_cmd_set_pp_params_v5)),
|
|
params, params_length);
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->hdr.token = port_idx << 16 | copp_idx;
|
|
adm_params->hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
adm_params->payload_addr_lsw = 0;
|
|
adm_params->payload_addr_msw = 0;
|
|
adm_params->mem_map_handle = 0;
|
|
adm_params->payload_size = params_length;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = 0x%x rc %d\n",
|
|
__func__, port_id, rc);
|
|
rc = -EINVAL;
|
|
goto send_param_return;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Set params timed out port = 0x%x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto send_param_return;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto send_param_return;
|
|
}
|
|
rc = 0;
|
|
send_param_return:
|
|
kfree(adm_params);
|
|
return rc;
|
|
}
|
|
|
|
int adm_get_params_v2(int port_id, int copp_idx, uint32_t module_id,
|
|
uint32_t param_id, uint32_t params_length,
|
|
char *params, uint32_t client_id)
|
|
{
|
|
struct adm_cmd_get_pp_params_v5 *adm_params = NULL;
|
|
int sz, rc = 0, i = 0;
|
|
int port_idx, idx;
|
|
int *params_data = (int *)params;
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_get_pp_params_v5) + params_length;
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s: adm params memory alloc failed", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_params + sizeof(struct adm_cmd_get_pp_params_v5)),
|
|
params, params_length);
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->hdr.token = port_idx << 16 | client_id << 8 | copp_idx;
|
|
adm_params->hdr.opcode = ADM_CMD_GET_PP_PARAMS_V5;
|
|
adm_params->data_payload_addr_lsw = 0;
|
|
adm_params->data_payload_addr_msw = 0;
|
|
adm_params->mem_map_handle = 0;
|
|
adm_params->module_id = module_id;
|
|
adm_params->param_id = param_id;
|
|
adm_params->param_max_size = params_length;
|
|
adm_params->reserved = 0;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (rc < 0) {
|
|
pr_err("%s: Failed to Get Params on port_id 0x%x %d\n",
|
|
__func__, port_id, rc);
|
|
rc = -EINVAL;
|
|
goto adm_get_param_return;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: get params timed out port_id = 0x%x\n", __func__,
|
|
port_id);
|
|
rc = -EINVAL;
|
|
goto adm_get_param_return;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto adm_get_param_return;
|
|
}
|
|
idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
|
|
|
|
if (adm_get_parameters[idx] < 0) {
|
|
pr_err("%s: Size is invalid %d\n", __func__,
|
|
adm_get_parameters[idx]);
|
|
rc = -EINVAL;
|
|
goto adm_get_param_return;
|
|
}
|
|
if ((params_data) &&
|
|
(ARRAY_SIZE(adm_get_parameters) >
|
|
idx) &&
|
|
(ARRAY_SIZE(adm_get_parameters) >=
|
|
1+adm_get_parameters[idx]+idx) &&
|
|
(params_length/sizeof(uint32_t) >=
|
|
adm_get_parameters[idx])) {
|
|
for (i = 0; i < adm_get_parameters[idx]; i++)
|
|
params_data[i] = adm_get_parameters[1+i+idx];
|
|
|
|
} else {
|
|
pr_err("%s: Get param data not copied! get_param array size %zd, index %d, params array size %zd, index %d\n",
|
|
__func__, ARRAY_SIZE(adm_get_parameters),
|
|
(1+adm_get_parameters[idx]+idx),
|
|
params_length/sizeof(int),
|
|
adm_get_parameters[idx]);
|
|
}
|
|
rc = 0;
|
|
adm_get_param_return:
|
|
kfree(adm_params);
|
|
|
|
return rc;
|
|
}
|
|
|
|
int adm_get_params(int port_id, int copp_idx, uint32_t module_id,
|
|
uint32_t param_id, uint32_t params_length, char *params)
|
|
{
|
|
return adm_get_params_v2(port_id, copp_idx, module_id, param_id,
|
|
params_length, params, 0);
|
|
}
|
|
|
|
int adm_get_pp_topo_module_list(int port_id, int copp_idx, int32_t param_length,
|
|
char *params)
|
|
{
|
|
struct adm_cmd_get_pp_topo_module_list_t *adm_pp_module_list = NULL;
|
|
int sz, rc = 0, i = 0;
|
|
int port_idx, idx;
|
|
int32_t *params_data = (int32_t *)params;
|
|
int *topo_list;
|
|
|
|
pr_debug("%s : port_id %x", __func__, port_id);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_get_pp_topo_module_list_t) + param_length;
|
|
adm_pp_module_list = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_pp_module_list) {
|
|
pr_err("%s, adm params memory alloc failed", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_pp_module_list +
|
|
sizeof(struct adm_cmd_get_pp_topo_module_list_t)),
|
|
params, param_length);
|
|
adm_pp_module_list->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_pp_module_list->hdr.pkt_size = sz;
|
|
adm_pp_module_list->hdr.src_svc = APR_SVC_ADM;
|
|
adm_pp_module_list->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_pp_module_list->hdr.src_port = port_id;
|
|
adm_pp_module_list->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_pp_module_list->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_pp_module_list->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_pp_module_list->hdr.token = port_idx << 16 | copp_idx;
|
|
adm_pp_module_list->hdr.opcode = ADM_CMD_GET_PP_TOPO_MODULE_LIST;
|
|
adm_pp_module_list->param_max_size = param_length;
|
|
/* Payload address and mmap handle set to zero by kzalloc */
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_pp_module_list);
|
|
if (rc < 0) {
|
|
pr_err("%s: Failed to Get Params on port %d\n", __func__,
|
|
port_id);
|
|
rc = -EINVAL;
|
|
goto adm_pp_module_list_l;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: get params timed out port = %d\n", __func__,
|
|
port_id);
|
|
rc = -EINVAL;
|
|
goto adm_pp_module_list_l;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto adm_pp_module_list_l;
|
|
}
|
|
if (params_data) {
|
|
idx = ADM_GET_TOPO_MODULE_LIST_LENGTH * copp_idx;
|
|
topo_list = (int *)(adm_module_topo_list + idx);
|
|
if (param_length <= ADM_GET_TOPO_MODULE_LIST_LENGTH &&
|
|
idx <
|
|
(MAX_COPPS_PER_PORT * ADM_GET_TOPO_MODULE_LIST_LENGTH))
|
|
memcpy(params_data, topo_list, param_length);
|
|
else
|
|
pr_debug("%s: i/p size:%d > MAX param size:%d\n",
|
|
__func__, param_length,
|
|
(int)ADM_GET_TOPO_MODULE_LIST_LENGTH);
|
|
for (i = 1; i <= params_data[0]; i++)
|
|
pr_debug("module = 0x%x\n", params_data[i]);
|
|
}
|
|
rc = 0;
|
|
adm_pp_module_list_l:
|
|
kfree(adm_pp_module_list);
|
|
pr_debug("%s : rc = %d ", __func__, rc);
|
|
return rc;
|
|
}
|
|
static void adm_callback_debug_print(struct apr_client_data *data)
|
|
{
|
|
uint32_t *payload;
|
|
payload = data->payload;
|
|
|
|
if (data->payload_size >= 8)
|
|
pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
|
|
__func__, data->opcode, payload[0], payload[1],
|
|
data->payload_size);
|
|
else if (data->payload_size >= 4)
|
|
pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
|
|
__func__, data->opcode, payload[0],
|
|
data->payload_size);
|
|
else
|
|
pr_debug("%s: code = 0x%x, size = %d\n",
|
|
__func__, data->opcode, data->payload_size);
|
|
}
|
|
|
|
int adm_set_multi_ch_map(char *channel_map, int path)
|
|
{
|
|
int idx;
|
|
|
|
if (path == ADM_PATH_PLAYBACK) {
|
|
idx = ADM_MCH_MAP_IDX_PLAYBACK;
|
|
} else if (path == ADM_PATH_LIVE_REC) {
|
|
idx = ADM_MCH_MAP_IDX_REC;
|
|
} else {
|
|
pr_err("%s: invalid attempt to set path %d\n", __func__, path);
|
|
return -EINVAL;
|
|
}
|
|
|
|
memcpy(multi_ch_maps[idx].channel_mapping, channel_map,
|
|
PCM_FORMAT_MAX_NUM_CHANNEL);
|
|
multi_ch_maps[idx].set_channel_map = true;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int adm_get_multi_ch_map(char *channel_map, int path)
|
|
{
|
|
int idx;
|
|
|
|
if (path == ADM_PATH_PLAYBACK) {
|
|
idx = ADM_MCH_MAP_IDX_PLAYBACK;
|
|
} else if (path == ADM_PATH_LIVE_REC) {
|
|
idx = ADM_MCH_MAP_IDX_REC;
|
|
} else {
|
|
pr_err("%s: invalid attempt to get path %d\n", __func__, path);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (multi_ch_maps[idx].set_channel_map) {
|
|
memcpy(channel_map, multi_ch_maps[idx].channel_mapping,
|
|
PCM_FORMAT_MAX_NUM_CHANNEL);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int32_t adm_callback(struct apr_client_data *data, void *priv)
|
|
{
|
|
uint32_t *payload;
|
|
int i, j, port_idx, copp_idx, idx, client_id;
|
|
|
|
if (data == NULL) {
|
|
pr_err("%s: data paramter is null\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
payload = data->payload;
|
|
|
|
if (data->opcode == RESET_EVENTS) {
|
|
pr_debug("%s: Reset event is received: %d %d apr[%p]\n",
|
|
__func__,
|
|
data->reset_event, data->reset_proc, this_adm.apr);
|
|
if (this_adm.apr) {
|
|
apr_reset(this_adm.apr);
|
|
for (i = 0; i < AFE_MAX_PORTS; i++) {
|
|
for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
|
|
atomic_set(&this_adm.copp.id[i][j],
|
|
RESET_COPP_ID);
|
|
atomic_set(&this_adm.copp.cnt[i][j], 0);
|
|
atomic_set(
|
|
&this_adm.copp.topology[i][j], 0);
|
|
atomic_set(&this_adm.copp.mode[i][j],
|
|
0);
|
|
atomic_set(&this_adm.copp.stat[i][j],
|
|
0);
|
|
atomic_set(&this_adm.copp.rate[i][j],
|
|
0);
|
|
atomic_set(
|
|
&this_adm.copp.channels[i][j],
|
|
0);
|
|
atomic_set(
|
|
&this_adm.copp.bit_width[i][j], 0);
|
|
atomic_set(
|
|
&this_adm.copp.app_type[i][j], 0);
|
|
atomic_set(
|
|
&this_adm.copp.acdb_id[i][j], 0);
|
|
this_adm.copp.adm_status[i][j] =
|
|
ADM_STATUS_CALIBRATION_REQUIRED;
|
|
}
|
|
}
|
|
this_adm.apr = NULL;
|
|
cal_utils_clear_cal_block_q6maps(ADM_MAX_CAL_TYPES,
|
|
this_adm.cal_data);
|
|
mutex_lock(&this_adm.cal_data
|
|
[ADM_CUSTOM_TOP_CAL]->lock);
|
|
this_adm.set_custom_topology = 1;
|
|
mutex_unlock(&this_adm.cal_data[
|
|
ADM_CUSTOM_TOP_CAL]->lock);
|
|
rtac_clear_mapping(ADM_RTAC_CAL);
|
|
/*
|
|
* Free the ION memory and clear the map handles
|
|
* for Source Tracking
|
|
*/
|
|
if (this_adm.sourceTrackingData.memmap.paddr != 0) {
|
|
msm_audio_ion_free(
|
|
this_adm.sourceTrackingData.ion_client,
|
|
this_adm.sourceTrackingData.ion_handle);
|
|
this_adm.sourceTrackingData.ion_client = NULL;
|
|
this_adm.sourceTrackingData.ion_handle = NULL;
|
|
this_adm.sourceTrackingData.memmap.size = 0;
|
|
this_adm.sourceTrackingData.memmap.kvaddr =
|
|
NULL;
|
|
this_adm.sourceTrackingData.memmap.paddr = 0;
|
|
this_adm.sourceTrackingData.apr_cmd_status = -1;
|
|
atomic_set(&this_adm.mem_map_handles[
|
|
ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
adm_callback_debug_print(data);
|
|
if (data->payload_size) {
|
|
copp_idx = (data->token) & 0XFF;
|
|
port_idx = ((data->token) >> 16) & 0xFF;
|
|
client_id = ((data->token) >> 8) & 0xFF;
|
|
if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
|
|
pr_err("%s: Invalid port idx %d token %d\n",
|
|
__func__, port_idx, data->token);
|
|
return 0;
|
|
}
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp idx %d token %d\n",
|
|
__func__, copp_idx, data->token);
|
|
return 0;
|
|
}
|
|
if (client_id < 0 || client_id >= ADM_CLIENT_ID_MAX) {
|
|
pr_err("%s: Invalid client id %d\n", __func__,
|
|
client_id);
|
|
return 0;
|
|
}
|
|
if (data->opcode == APR_BASIC_RSP_RESULT) {
|
|
pr_debug("%s: APR_BASIC_RSP_RESULT id 0x%x\n",
|
|
__func__, payload[0]);
|
|
if (payload[1] != 0) {
|
|
pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
|
|
__func__, payload[0], payload[1]);
|
|
}
|
|
switch (payload[0]) {
|
|
case ADM_CMD_SET_PP_PARAMS_V5:
|
|
pr_debug("%s: ADM_CMD_SET_PP_PARAMS_V5\n",
|
|
__func__);
|
|
if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
|
|
this_adm.sourceTrackingData.
|
|
apr_cmd_status = payload[1];
|
|
else if (rtac_make_adm_callback(payload,
|
|
data->payload_size))
|
|
break;
|
|
/*
|
|
* if soft volume is called and already
|
|
* interrupted break out of the sequence here
|
|
*/
|
|
case ADM_CMD_DEVICE_OPEN_V5:
|
|
case ADM_CMD_DEVICE_CLOSE_V5:
|
|
pr_debug("%s: Basic callback received, wake up.\n",
|
|
__func__);
|
|
atomic_set(&this_adm.copp.stat[port_idx]
|
|
[copp_idx], payload[1]);
|
|
wake_up(
|
|
&this_adm.copp.wait[port_idx][copp_idx]);
|
|
break;
|
|
case ADM_CMD_ADD_TOPOLOGIES:
|
|
pr_debug("%s: callback received, ADM_CMD_ADD_TOPOLOGIES.\n",
|
|
__func__);
|
|
atomic_set(&this_adm.adm_stat, payload[1]);
|
|
wake_up(&this_adm.adm_wait);
|
|
break;
|
|
case ADM_CMD_MATRIX_MAP_ROUTINGS_V5:
|
|
case ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5:
|
|
pr_debug("%s: Basic callback received, wake up.\n",
|
|
__func__);
|
|
atomic_set(&this_adm.matrix_map_stat,
|
|
payload[1]);
|
|
wake_up(&this_adm.matrix_map_wait);
|
|
break;
|
|
case ADM_CMD_SHARED_MEM_UNMAP_REGIONS:
|
|
pr_debug("%s: ADM_CMD_SHARED_MEM_UNMAP_REGIONS\n",
|
|
__func__);
|
|
atomic_set(&this_adm.adm_stat, payload[1]);
|
|
wake_up(&this_adm.adm_wait);
|
|
break;
|
|
case ADM_CMD_SHARED_MEM_MAP_REGIONS:
|
|
pr_debug("%s: ADM_CMD_SHARED_MEM_MAP_REGIONS\n",
|
|
__func__);
|
|
/* Should only come here if there is an APR */
|
|
/* error or malformed APR packet. Otherwise */
|
|
/* response will be returned as */
|
|
if (payload[1] != 0) {
|
|
pr_err("%s: ADM map error, resuming\n",
|
|
__func__);
|
|
atomic_set(&this_adm.adm_stat,
|
|
payload[1]);
|
|
wake_up(&this_adm.adm_wait);
|
|
}
|
|
break;
|
|
case ADM_CMD_GET_PP_PARAMS_V5:
|
|
pr_debug("%s: ADM_CMD_GET_PP_PARAMS_V5\n",
|
|
__func__);
|
|
/* Should only come here if there is an APR */
|
|
/* error or malformed APR packet. Otherwise */
|
|
/* response will be returned as */
|
|
/* ADM_CMDRSP_GET_PP_PARAMS_V5 */
|
|
if (client_id ==
|
|
ADM_CLIENT_ID_SOURCE_TRACKING) {
|
|
this_adm.sourceTrackingData.
|
|
apr_cmd_status = payload[1];
|
|
if (payload[1] != 0)
|
|
pr_err("%s: ADM get param error = %d\n",
|
|
__func__, payload[1]);
|
|
|
|
atomic_set(&this_adm.copp.stat
|
|
[port_idx][copp_idx],
|
|
payload[1]);
|
|
wake_up(&this_adm.copp.wait
|
|
[port_idx][copp_idx]);
|
|
} else {
|
|
if (payload[1] != 0) {
|
|
pr_err("%s: ADM get param error = %d, resuming\n",
|
|
__func__, payload[1]);
|
|
|
|
rtac_make_adm_callback(payload,
|
|
data->payload_size);
|
|
}
|
|
}
|
|
break;
|
|
case ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5:
|
|
pr_debug("%s: ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5\n",
|
|
__func__);
|
|
atomic_set(&this_adm.copp.stat[port_idx]
|
|
[copp_idx], payload[1]);
|
|
wake_up(
|
|
&this_adm.copp.wait[port_idx][copp_idx]);
|
|
break;
|
|
case ADM_CMD_GET_PP_TOPO_MODULE_LIST:
|
|
pr_debug("%s:ADM_CMD_GET_PP_TOPO_MODULE_LIST\n",
|
|
__func__);
|
|
if (payload[1] != 0)
|
|
pr_err("%s: ADM get topo list error = %d,\n",
|
|
__func__, payload[1]);
|
|
break;
|
|
default:
|
|
pr_err("%s: Unknown Cmd: 0x%x\n", __func__,
|
|
payload[0]);
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
switch (data->opcode) {
|
|
case ADM_CMDRSP_DEVICE_OPEN_V5: {
|
|
struct adm_cmd_rsp_device_open_v5 *open =
|
|
(struct adm_cmd_rsp_device_open_v5 *)data->payload;
|
|
|
|
if (open->copp_id == INVALID_COPP_ID) {
|
|
pr_err("%s: invalid coppid rxed %d\n",
|
|
__func__, open->copp_id);
|
|
atomic_set(&this_adm.copp.stat[port_idx]
|
|
[copp_idx], ADSP_EBADPARAM);
|
|
wake_up(
|
|
&this_adm.copp.wait[port_idx][copp_idx]);
|
|
break;
|
|
}
|
|
atomic_set(&this_adm.copp.stat
|
|
[port_idx][copp_idx], payload[0]);
|
|
atomic_set(&this_adm.copp.id[port_idx][copp_idx],
|
|
open->copp_id);
|
|
pr_debug("%s: coppid rxed=%d\n", __func__,
|
|
open->copp_id);
|
|
wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
|
|
}
|
|
break;
|
|
case ADM_CMDRSP_GET_PP_PARAMS_V5:
|
|
pr_debug("%s: ADM_CMDRSP_GET_PP_PARAMS_V5\n", __func__);
|
|
if (payload[0] != 0)
|
|
pr_err("%s: ADM_CMDRSP_GET_PP_PARAMS_V5 returned error = 0x%x\n",
|
|
__func__, payload[0]);
|
|
if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
|
|
this_adm.sourceTrackingData.apr_cmd_status =
|
|
payload[0];
|
|
else if (rtac_make_adm_callback(payload,
|
|
data->payload_size))
|
|
break;
|
|
|
|
idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
|
|
if ((payload[0] == 0) && (data->payload_size >
|
|
(4 * sizeof(*payload))) &&
|
|
(data->payload_size - 4 >=
|
|
payload[3]) &&
|
|
(ARRAY_SIZE(adm_get_parameters) >
|
|
idx) &&
|
|
(ARRAY_SIZE(adm_get_parameters)-idx-1 >=
|
|
payload[3])) {
|
|
adm_get_parameters[idx] = payload[3] /
|
|
sizeof(uint32_t);
|
|
/*
|
|
* payload[3] is param_size which is
|
|
* expressed in number of bytes
|
|
*/
|
|
pr_debug("%s: GET_PP PARAM:received parameter length: 0x%x\n",
|
|
__func__, adm_get_parameters[idx]);
|
|
/* storing param size then params */
|
|
for (i = 0; i < payload[3] /
|
|
sizeof(uint32_t); i++)
|
|
adm_get_parameters[idx+1+i] =
|
|
payload[4+i];
|
|
} else if (payload[0] == 0) {
|
|
adm_get_parameters[idx] = -1;
|
|
pr_err("%s: Out of band case, setting size to %d\n",
|
|
__func__, adm_get_parameters[idx]);
|
|
} else {
|
|
adm_get_parameters[idx] = -1;
|
|
pr_err("%s: GET_PP_PARAMS failed, setting size to %d\n",
|
|
__func__, adm_get_parameters[idx]);
|
|
}
|
|
atomic_set(&this_adm.copp.stat
|
|
[port_idx][copp_idx], payload[0]);
|
|
wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
|
|
break;
|
|
case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST:
|
|
pr_debug("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST\n",
|
|
__func__);
|
|
if (payload[0] != 0) {
|
|
pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST",
|
|
__func__);
|
|
pr_err(":err = 0x%x\n", payload[0]);
|
|
} else if (payload[1] >
|
|
((ADM_GET_TOPO_MODULE_LIST_LENGTH /
|
|
sizeof(uint32_t)) - 1)) {
|
|
pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST",
|
|
__func__);
|
|
pr_err(":size = %d\n", payload[1]);
|
|
} else {
|
|
idx = ADM_GET_TOPO_MODULE_LIST_LENGTH *
|
|
copp_idx;
|
|
pr_debug("%s:Num modules payload[1] %d\n",
|
|
__func__, payload[1]);
|
|
adm_module_topo_list[idx] = payload[1];
|
|
for (i = 1; i <= payload[1]; i++) {
|
|
adm_module_topo_list[idx+i] =
|
|
payload[1+i];
|
|
pr_debug("%s:payload[%d] = %x\n",
|
|
__func__, (i+1), payload[1+i]);
|
|
}
|
|
}
|
|
atomic_set(&this_adm.copp.stat
|
|
[port_idx][copp_idx], payload[0]);
|
|
wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
|
|
break;
|
|
case ADM_CMDRSP_SHARED_MEM_MAP_REGIONS:
|
|
pr_debug("%s: ADM_CMDRSP_SHARED_MEM_MAP_REGIONS\n",
|
|
__func__);
|
|
atomic_set(&this_adm.mem_map_handles[
|
|
atomic_read(&this_adm.mem_map_index)],
|
|
*payload);
|
|
atomic_set(&this_adm.adm_stat, 0);
|
|
wake_up(&this_adm.adm_wait);
|
|
break;
|
|
default:
|
|
pr_err("%s: Unknown cmd:0x%x\n", __func__,
|
|
data->opcode);
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int adm_memory_map_regions(phys_addr_t *buf_add, uint32_t mempool_id,
|
|
uint32_t *bufsz, uint32_t bufcnt)
|
|
{
|
|
struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
|
|
struct avs_shared_map_region_payload *mregions = NULL;
|
|
void *mmap_region_cmd = NULL;
|
|
void *payload = NULL;
|
|
int ret = 0;
|
|
int i = 0;
|
|
int cmd_size = 0;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
if (this_adm.apr == NULL) {
|
|
this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
|
|
0xFFFFFFFF, &this_adm);
|
|
if (this_adm.apr == NULL) {
|
|
pr_err("%s: Unable to register ADM\n", __func__);
|
|
ret = -ENODEV;
|
|
return ret;
|
|
}
|
|
rtac_set_adm_handle(this_adm.apr);
|
|
}
|
|
|
|
cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
|
|
+ sizeof(struct avs_shared_map_region_payload)
|
|
* bufcnt;
|
|
|
|
mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
|
|
if (!mmap_region_cmd) {
|
|
pr_err("%s: allocate mmap_region_cmd failed\n", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
mmap_regions = (struct avs_cmd_shared_mem_map_regions *)mmap_region_cmd;
|
|
mmap_regions->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE),
|
|
APR_PKT_VER);
|
|
mmap_regions->hdr.pkt_size = cmd_size;
|
|
mmap_regions->hdr.src_port = 0;
|
|
|
|
mmap_regions->hdr.dest_port = 0;
|
|
mmap_regions->hdr.token = 0;
|
|
mmap_regions->hdr.opcode = ADM_CMD_SHARED_MEM_MAP_REGIONS;
|
|
mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL & 0x00ff;
|
|
mmap_regions->num_regions = bufcnt & 0x00ff;
|
|
mmap_regions->property_flag = 0x00;
|
|
|
|
pr_debug("%s: map_regions->num_regions = %d\n", __func__,
|
|
mmap_regions->num_regions);
|
|
payload = ((u8 *) mmap_region_cmd +
|
|
sizeof(struct avs_cmd_shared_mem_map_regions));
|
|
mregions = (struct avs_shared_map_region_payload *)payload;
|
|
|
|
for (i = 0; i < bufcnt; i++) {
|
|
mregions->shm_addr_lsw = lower_32_bits(buf_add[i]);
|
|
mregions->shm_addr_msw =
|
|
msm_audio_populate_upper_32_bits(buf_add[i]);
|
|
mregions->mem_size_bytes = bufsz[i];
|
|
++mregions;
|
|
}
|
|
|
|
atomic_set(&this_adm.adm_stat, -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *) mmap_region_cmd);
|
|
if (ret < 0) {
|
|
pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
|
|
mmap_regions->hdr.opcode, ret);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
|
|
ret = wait_event_timeout(this_adm.adm_wait,
|
|
atomic_read(&this_adm.adm_stat) >= 0,
|
|
5 * HZ);
|
|
if (!ret) {
|
|
pr_err("%s: timeout. waited for memory_map\n", __func__);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.adm_stat) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.adm_stat)));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.adm_stat));
|
|
goto fail_cmd;
|
|
}
|
|
fail_cmd:
|
|
kfree(mmap_region_cmd);
|
|
return ret;
|
|
}
|
|
|
|
static int adm_memory_unmap_regions(void)
|
|
{
|
|
struct avs_cmd_shared_mem_unmap_regions unmap_regions;
|
|
int ret = 0;
|
|
|
|
pr_debug("%s:\n", __func__);
|
|
if (this_adm.apr == NULL) {
|
|
pr_err("%s: APR handle NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
unmap_regions.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE),
|
|
APR_PKT_VER);
|
|
unmap_regions.hdr.pkt_size = sizeof(unmap_regions);
|
|
unmap_regions.hdr.src_port = 0;
|
|
unmap_regions.hdr.dest_port = 0;
|
|
unmap_regions.hdr.token = 0;
|
|
unmap_regions.hdr.opcode = ADM_CMD_SHARED_MEM_UNMAP_REGIONS;
|
|
unmap_regions.mem_map_handle = atomic_read(&this_adm.
|
|
mem_map_handles[atomic_read(&this_adm.mem_map_index)]);
|
|
atomic_set(&this_adm.adm_stat, -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *) &unmap_regions);
|
|
if (ret < 0) {
|
|
pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
|
|
unmap_regions.hdr.opcode, ret);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
|
|
ret = wait_event_timeout(this_adm.adm_wait,
|
|
atomic_read(&this_adm.adm_stat) >= 0,
|
|
5 * HZ);
|
|
if (!ret) {
|
|
pr_err("%s: timeout. waited for memory_unmap\n",
|
|
__func__);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.adm_stat) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.adm_stat)));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.adm_stat));
|
|
goto fail_cmd;
|
|
} else {
|
|
pr_debug("%s: Unmap handle 0x%x succeeded\n", __func__,
|
|
unmap_regions.mem_map_handle);
|
|
}
|
|
fail_cmd:
|
|
return ret;
|
|
}
|
|
|
|
static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (cal_block->map_data.ion_client == NULL) {
|
|
pr_err("%s: No ION allocation for cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if ((cal_block->map_data.map_size > 0) &&
|
|
(cal_block->map_data.q6map_handle == 0)) {
|
|
atomic_set(&this_adm.mem_map_index, cal_index);
|
|
ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
|
|
(uint32_t *)&cal_block->map_data.map_size, 1);
|
|
if (ret < 0) {
|
|
pr_err("%s: ADM mmap did not work! size = %zd ret %d\n",
|
|
__func__,
|
|
cal_block->map_data.map_size, ret);
|
|
pr_debug("%s: ADM mmap did not work! addr = 0x%pa, size = %zd ret %d\n",
|
|
__func__,
|
|
&cal_block->cal_data.paddr,
|
|
cal_block->map_data.map_size, ret);
|
|
goto done;
|
|
}
|
|
cal_block->map_data.q6map_handle = atomic_read(&this_adm.
|
|
mem_map_handles[cal_index]);
|
|
}
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static void send_adm_custom_topology(void)
|
|
{
|
|
struct cal_block_data *cal_block = NULL;
|
|
struct cmd_set_topologies adm_top;
|
|
int cal_index = ADM_CUSTOM_TOP_CAL;
|
|
int result;
|
|
|
|
if (this_adm.cal_data[cal_index] == NULL)
|
|
goto done;
|
|
|
|
mutex_lock(&this_adm.cal_data[cal_index]->lock);
|
|
if (!this_adm.set_custom_topology)
|
|
goto unlock;
|
|
this_adm.set_custom_topology = 0;
|
|
|
|
cal_block = cal_utils_get_only_cal_block(this_adm.cal_data[cal_index]);
|
|
if (cal_block == NULL)
|
|
goto unlock;
|
|
|
|
pr_debug("%s: Sending cal_index %d\n", __func__, cal_index);
|
|
|
|
result = remap_cal_data(cal_block, cal_index);
|
|
if (result) {
|
|
pr_err("%s: Remap_cal_data failed for cal %d!\n",
|
|
__func__, cal_index);
|
|
goto unlock;
|
|
}
|
|
atomic_set(&this_adm.mem_map_index, cal_index);
|
|
atomic_set(&this_adm.mem_map_handles[cal_index],
|
|
cal_block->map_data.q6map_handle);
|
|
|
|
if (cal_block->cal_data.size == 0) {
|
|
pr_debug("%s: No ADM cal to send\n", __func__);
|
|
goto unlock;
|
|
}
|
|
|
|
adm_top.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(20), APR_PKT_VER);
|
|
adm_top.hdr.pkt_size = sizeof(adm_top);
|
|
adm_top.hdr.src_svc = APR_SVC_ADM;
|
|
adm_top.hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_top.hdr.src_port = 0;
|
|
adm_top.hdr.dest_svc = APR_SVC_ADM;
|
|
adm_top.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_top.hdr.dest_port = 0;
|
|
adm_top.hdr.token = 0;
|
|
adm_top.hdr.opcode = ADM_CMD_ADD_TOPOLOGIES;
|
|
adm_top.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
|
|
adm_top.payload_addr_msw = msm_audio_populate_upper_32_bits(
|
|
cal_block->cal_data.paddr);
|
|
adm_top.mem_map_handle = cal_block->map_data.q6map_handle;
|
|
adm_top.payload_size = cal_block->cal_data.size;
|
|
|
|
atomic_set(&this_adm.adm_stat, -1);
|
|
pr_debug("%s: Sending ADM_CMD_ADD_TOPOLOGIES payload = 0x%pa, size = %d\n",
|
|
__func__, &cal_block->cal_data.paddr,
|
|
adm_top.payload_size);
|
|
result = apr_send_pkt(this_adm.apr, (uint32_t *)&adm_top);
|
|
if (result < 0) {
|
|
pr_err("%s: Set topologies failed payload size = 0x%zd result %d\n",
|
|
__func__, cal_block->cal_data.size, result);
|
|
goto unlock;
|
|
}
|
|
/* Wait for the callback */
|
|
result = wait_event_timeout(this_adm.adm_wait,
|
|
atomic_read(&this_adm.adm_stat) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!result) {
|
|
pr_err("%s: Set topologies timed out payload size = 0x%zd\n",
|
|
__func__, cal_block->cal_data.size);
|
|
goto unlock;
|
|
} else if (atomic_read(&this_adm.adm_stat) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.adm_stat)));
|
|
result = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.adm_stat));
|
|
goto unlock;
|
|
}
|
|
unlock:
|
|
mutex_unlock(&this_adm.cal_data[cal_index]->lock);
|
|
done:
|
|
return;
|
|
}
|
|
|
|
static int send_adm_cal_block(int port_id, int copp_idx,
|
|
struct cal_block_data *cal_block, int perf_mode,
|
|
int app_type, int acdb_id, int sample_rate)
|
|
{
|
|
s32 result = 0;
|
|
struct adm_cmd_set_pp_params_v5 adm_params;
|
|
int port_idx;
|
|
|
|
pr_debug("%s: Port id 0x%x sample_rate %d ,\n", __func__,
|
|
port_id, sample_rate);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
if (!cal_block) {
|
|
pr_debug("%s: No ADM cal to send for port_id = 0x%x!\n",
|
|
__func__, port_id);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
if (cal_block->cal_data.size <= 0) {
|
|
pr_debug("%s: No ADM cal send for port_id = 0x%x!\n",
|
|
__func__, port_id);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (perf_mode == LEGACY_PCM_MODE &&
|
|
((atomic_read(&this_adm.copp.topology[port_idx][copp_idx])) ==
|
|
DS2_ADM_COPP_TOPOLOGY_ID)) {
|
|
pr_err("%s: perf_mode %d, topology 0x%x\n", __func__, perf_mode,
|
|
atomic_read(
|
|
&this_adm.copp.topology[port_idx][copp_idx]));
|
|
goto done;
|
|
}
|
|
|
|
adm_params.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(20), APR_PKT_VER);
|
|
adm_params.hdr.pkt_size = sizeof(adm_params);
|
|
adm_params.hdr.src_svc = APR_SVC_ADM;
|
|
adm_params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params.hdr.src_port = port_id;
|
|
adm_params.hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
|
|
adm_params.hdr.token = port_idx << 16 | copp_idx;
|
|
adm_params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
adm_params.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
|
|
adm_params.payload_addr_msw = msm_audio_populate_upper_32_bits(
|
|
cal_block->cal_data.paddr);
|
|
adm_params.mem_map_handle = cal_block->map_data.q6map_handle;
|
|
adm_params.payload_size = cal_block->cal_data.size;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
pr_debug("%s: Sending SET_PARAMS payload = 0x%pa, size = %d\n",
|
|
__func__, &cal_block->cal_data.paddr,
|
|
adm_params.payload_size);
|
|
result = apr_send_pkt(this_adm.apr, (uint32_t *)&adm_params);
|
|
if (result < 0) {
|
|
pr_err("%s: Set params failed port 0x%x result %d\n",
|
|
__func__, port_id, result);
|
|
pr_debug("%s: Set params failed port = 0x%x payload = 0x%pa result %d\n",
|
|
__func__, port_id, &cal_block->cal_data.paddr, result);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
/* Wait for the callback */
|
|
result = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!result) {
|
|
pr_err("%s: Set params timed out port = 0x%x\n",
|
|
__func__, port_id);
|
|
pr_debug("%s: Set params timed out port = 0x%x, payload = 0x%pa\n",
|
|
__func__, port_id, &cal_block->cal_data.paddr);
|
|
result = -EINVAL;
|
|
goto done;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
result = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
return result;
|
|
}
|
|
|
|
static struct cal_block_data *adm_find_cal_by_path(int cal_index, int path)
|
|
{
|
|
struct list_head *ptr, *next;
|
|
struct cal_block_data *cal_block = NULL;
|
|
struct audio_cal_info_audproc *audproc_cal_info = NULL;
|
|
struct audio_cal_info_audvol *audvol_cal_info = NULL;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
list_for_each_safe(ptr, next,
|
|
&this_adm.cal_data[cal_index]->cal_blocks) {
|
|
|
|
cal_block = list_entry(ptr,
|
|
struct cal_block_data, list);
|
|
|
|
if (cal_index == ADM_AUDPROC_CAL) {
|
|
audproc_cal_info = cal_block->cal_info;
|
|
if ((audproc_cal_info->path == path) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
} else if (cal_index == ADM_AUDVOL_CAL) {
|
|
audvol_cal_info = cal_block->cal_info;
|
|
if ((audvol_cal_info->path == path) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
}
|
|
}
|
|
pr_debug("%s: Can't find ADM cal for cal_index %d, path %d\n",
|
|
__func__, cal_index, path);
|
|
return NULL;
|
|
}
|
|
|
|
static struct cal_block_data *adm_find_cal_by_app_type(int cal_index, int path,
|
|
int app_type)
|
|
{
|
|
struct list_head *ptr, *next;
|
|
struct cal_block_data *cal_block = NULL;
|
|
struct audio_cal_info_audproc *audproc_cal_info = NULL;
|
|
struct audio_cal_info_audvol *audvol_cal_info = NULL;
|
|
pr_debug("%s\n", __func__);
|
|
|
|
list_for_each_safe(ptr, next,
|
|
&this_adm.cal_data[cal_index]->cal_blocks) {
|
|
|
|
cal_block = list_entry(ptr,
|
|
struct cal_block_data, list);
|
|
|
|
if (cal_index == ADM_AUDPROC_CAL) {
|
|
audproc_cal_info = cal_block->cal_info;
|
|
if ((audproc_cal_info->path == path) &&
|
|
(audproc_cal_info->app_type == app_type) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
} else if (cal_index == ADM_AUDVOL_CAL) {
|
|
audvol_cal_info = cal_block->cal_info;
|
|
if ((audvol_cal_info->path == path) &&
|
|
(audvol_cal_info->app_type == app_type) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
}
|
|
}
|
|
pr_debug("%s: Can't find ADM cali for cal_index %d, path %d, app %d, defaulting to search by path\n",
|
|
__func__, cal_index, path, app_type);
|
|
return adm_find_cal_by_path(cal_index, path);
|
|
}
|
|
|
|
|
|
static struct cal_block_data *adm_find_cal(int cal_index, int path,
|
|
int app_type, int acdb_id,
|
|
int sample_rate)
|
|
{
|
|
struct list_head *ptr, *next;
|
|
struct cal_block_data *cal_block = NULL;
|
|
struct audio_cal_info_audproc *audproc_cal_info = NULL;
|
|
struct audio_cal_info_audvol *audvol_cal_info = NULL;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
list_for_each_safe(ptr, next,
|
|
&this_adm.cal_data[cal_index]->cal_blocks) {
|
|
|
|
cal_block = list_entry(ptr,
|
|
struct cal_block_data, list);
|
|
|
|
if (cal_index == ADM_AUDPROC_CAL) {
|
|
audproc_cal_info = cal_block->cal_info;
|
|
if ((audproc_cal_info->path == path) &&
|
|
(audproc_cal_info->app_type == app_type) &&
|
|
(audproc_cal_info->acdb_id == acdb_id) &&
|
|
(audproc_cal_info->sample_rate == sample_rate) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
} else if (cal_index == ADM_AUDVOL_CAL) {
|
|
audvol_cal_info = cal_block->cal_info;
|
|
if ((audvol_cal_info->path == path) &&
|
|
(audvol_cal_info->app_type == app_type) &&
|
|
(audvol_cal_info->acdb_id == acdb_id) &&
|
|
(cal_block->cal_data.size > 0))
|
|
return cal_block;
|
|
}
|
|
}
|
|
pr_debug("%s: Can't find ADM cal for cal_index %d, path %d, app %d, acdb_id %d sample_rate %d defaulting to search by app type\n",
|
|
__func__, cal_index, path, app_type, acdb_id, sample_rate);
|
|
return adm_find_cal_by_app_type(cal_index, path, app_type);
|
|
}
|
|
|
|
static int adm_remap_and_send_cal_block(int cal_index, int port_id,
|
|
int copp_idx, struct cal_block_data *cal_block, int perf_mode,
|
|
int app_type, int acdb_id, int sample_rate)
|
|
{
|
|
int ret = 0;
|
|
|
|
pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
|
|
ret = remap_cal_data(cal_block, cal_index);
|
|
if (ret) {
|
|
pr_err("%s: Remap_cal_data failed for cal %d!\n",
|
|
__func__, cal_index);
|
|
goto done;
|
|
}
|
|
ret = send_adm_cal_block(port_id, copp_idx, cal_block, perf_mode,
|
|
app_type, acdb_id, sample_rate);
|
|
if (ret < 0)
|
|
pr_debug("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d sample_rate %d\n",
|
|
__func__, cal_index, port_id, ret, sample_rate);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static void send_adm_cal_type(int cal_index, int path, int port_id,
|
|
int copp_idx, int perf_mode, int app_type,
|
|
int acdb_id, int sample_rate)
|
|
{
|
|
struct cal_block_data *cal_block = NULL;
|
|
int ret;
|
|
|
|
pr_debug("%s: cal index %d\n", __func__, cal_index);
|
|
|
|
if (this_adm.cal_data[cal_index] == NULL) {
|
|
pr_debug("%s: cal_index %d not allocated!\n",
|
|
__func__, cal_index);
|
|
goto done;
|
|
}
|
|
|
|
mutex_lock(&this_adm.cal_data[cal_index]->lock);
|
|
cal_block = adm_find_cal(cal_index, path, app_type, acdb_id,
|
|
sample_rate);
|
|
if (cal_block == NULL)
|
|
goto unlock;
|
|
|
|
ret = adm_remap_and_send_cal_block(cal_index, port_id, copp_idx,
|
|
cal_block, perf_mode, app_type, acdb_id, sample_rate);
|
|
unlock:
|
|
mutex_unlock(&this_adm.cal_data[cal_index]->lock);
|
|
done:
|
|
return;
|
|
}
|
|
|
|
static int get_cal_path(int path)
|
|
{
|
|
if (path == 0x1)
|
|
return RX_DEVICE;
|
|
else
|
|
return TX_DEVICE;
|
|
}
|
|
|
|
static void send_adm_cal(int port_id, int copp_idx, int path, int perf_mode,
|
|
int app_type, int acdb_id, int sample_rate)
|
|
{
|
|
pr_debug("%s: port id 0x%x copp_idx %d\n", __func__, port_id, copp_idx);
|
|
|
|
send_adm_cal_type(ADM_AUDPROC_CAL, path, port_id, copp_idx, perf_mode,
|
|
app_type, acdb_id, sample_rate);
|
|
send_adm_cal_type(ADM_AUDVOL_CAL, path, port_id, copp_idx, perf_mode,
|
|
app_type, acdb_id, sample_rate);
|
|
return;
|
|
}
|
|
|
|
int adm_connect_afe_port(int mode, int session_id, int port_id)
|
|
{
|
|
struct adm_cmd_connect_afe_port_v5 cmd;
|
|
int ret = 0;
|
|
int port_idx, copp_idx = 0;
|
|
|
|
pr_debug("%s: port_id: 0x%x session id:%d mode:%d\n", __func__,
|
|
port_id, session_id, mode);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (this_adm.apr == NULL) {
|
|
this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
|
|
0xFFFFFFFF, &this_adm);
|
|
if (this_adm.apr == NULL) {
|
|
pr_err("%s: Unable to register ADM\n", __func__);
|
|
ret = -ENODEV;
|
|
return ret;
|
|
}
|
|
rtac_set_adm_handle(this_adm.apr);
|
|
}
|
|
pr_debug("%s: Port ID 0x%x, index %d\n", __func__, port_id, port_idx);
|
|
|
|
cmd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
cmd.hdr.pkt_size = sizeof(cmd);
|
|
cmd.hdr.src_svc = APR_SVC_ADM;
|
|
cmd.hdr.src_domain = APR_DOMAIN_APPS;
|
|
cmd.hdr.src_port = port_id;
|
|
cmd.hdr.dest_svc = APR_SVC_ADM;
|
|
cmd.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
cmd.hdr.dest_port = 0; /* Ignored */
|
|
cmd.hdr.token = port_idx << 16 | copp_idx;
|
|
cmd.hdr.opcode = ADM_CMD_CONNECT_AFE_PORT_V5;
|
|
|
|
cmd.mode = mode;
|
|
cmd.session_id = session_id;
|
|
cmd.afe_port_id = port_id;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&cmd);
|
|
if (ret < 0) {
|
|
pr_err("%s: ADM enable for port_id: 0x%x failed ret %d\n",
|
|
__func__, port_id, ret);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: ADM connect timedout for port_id: 0x%x\n",
|
|
__func__, port_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
|
|
return 0;
|
|
|
|
fail_cmd:
|
|
|
|
return ret;
|
|
}
|
|
|
|
int adm_arrange_mch_map(struct adm_cmd_device_open_v5 *open, int path,
|
|
int channel_mode)
|
|
{
|
|
int rc = 0, idx;
|
|
|
|
memset(open->dev_channel_mapping, 0,
|
|
PCM_FORMAT_MAX_NUM_CHANNEL);
|
|
|
|
if (channel_mode == 1) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FC;
|
|
} else if (channel_mode == 2) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
} else if (channel_mode == 3) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
|
|
} else if (channel_mode == 4) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
open->dev_channel_mapping[2] = PCM_CHANNEL_LS;
|
|
open->dev_channel_mapping[3] = PCM_CHANNEL_RS;
|
|
} else if (channel_mode == 5) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
|
|
open->dev_channel_mapping[3] = PCM_CHANNEL_LS;
|
|
open->dev_channel_mapping[4] = PCM_CHANNEL_RS;
|
|
} else if (channel_mode == 6) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
|
|
open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
|
|
open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
|
|
open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
|
|
} else if (channel_mode == 8) {
|
|
open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
|
|
open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
|
|
open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
|
|
open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
|
|
open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
|
|
open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
|
|
open->dev_channel_mapping[6] = PCM_CHANNEL_LB;
|
|
open->dev_channel_mapping[7] = PCM_CHANNEL_RB;
|
|
} else {
|
|
pr_err("%s: invalid num_chan %d\n", __func__,
|
|
channel_mode);
|
|
rc = -EINVAL;
|
|
goto inval_ch_mod;
|
|
}
|
|
|
|
switch (path) {
|
|
case ADM_PATH_PLAYBACK:
|
|
idx = ADM_MCH_MAP_IDX_PLAYBACK;
|
|
break;
|
|
case ADM_PATH_LIVE_REC:
|
|
idx = ADM_MCH_MAP_IDX_REC;
|
|
break;
|
|
default:
|
|
goto non_mch_path;
|
|
break;
|
|
};
|
|
|
|
if ((open->dev_num_channel > 2) && multi_ch_maps[idx].set_channel_map)
|
|
memcpy(open->dev_channel_mapping,
|
|
multi_ch_maps[idx].channel_mapping,
|
|
PCM_FORMAT_MAX_NUM_CHANNEL);
|
|
|
|
non_mch_path:
|
|
inval_ch_mod:
|
|
return rc;
|
|
}
|
|
|
|
int adm_open(int port_id, int path, int rate, int channel_mode, int topology,
|
|
int perf_mode, uint16_t bit_width, int app_type, int acdb_id)
|
|
{
|
|
struct adm_cmd_device_open_v5 open;
|
|
int ret = 0;
|
|
int port_idx, copp_idx, flags;
|
|
int tmp_port = q6audio_get_port_id(port_id);
|
|
|
|
pr_debug("%s:port %#x path:%d rate:%d mode:%d perf_mode:%d,topo_id %d\n",
|
|
__func__, port_id, path, rate, channel_mode, perf_mode,
|
|
topology);
|
|
|
|
/* For DTS EAGLE only, force 24 bit */
|
|
if ((topology == ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX) &&
|
|
(perf_mode == LEGACY_PCM_MODE)) {
|
|
bit_width = 24;
|
|
pr_debug("%s: Force open adm in 24-bit for DTS HPX topology 0x%x\n",
|
|
__func__, topology);
|
|
}
|
|
port_id = q6audio_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (this_adm.apr == NULL) {
|
|
this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
|
|
0xFFFFFFFF, &this_adm);
|
|
if (this_adm.apr == NULL) {
|
|
pr_err("%s: Unable to register ADM\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
rtac_set_adm_handle(this_adm.apr);
|
|
}
|
|
|
|
if (perf_mode == ULL_POST_PROCESSING_PCM_MODE) {
|
|
flags = ADM_ULL_POST_PROCESSING_DEVICE_SESSION;
|
|
if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
|
|
(topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
|
|
(topology == SRS_TRUMEDIA_TOPOLOGY_ID) ||
|
|
(topology == ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX))
|
|
topology = DEFAULT_COPP_TOPOLOGY;
|
|
} else if (perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
|
|
flags = ADM_ULTRA_LOW_LATENCY_DEVICE_SESSION;
|
|
topology = NULL_COPP_TOPOLOGY;
|
|
rate = ULL_SUPPORTED_SAMPLE_RATE;
|
|
bit_width = ULL_SUPPORTED_BITS_PER_SAMPLE;
|
|
} else if (perf_mode == LOW_LATENCY_PCM_MODE) {
|
|
flags = ADM_LOW_LATENCY_DEVICE_SESSION;
|
|
if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
|
|
(topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
|
|
(topology == SRS_TRUMEDIA_TOPOLOGY_ID) ||
|
|
(topology == ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX))
|
|
topology = DEFAULT_COPP_TOPOLOGY;
|
|
} else {
|
|
if (path == ADM_PATH_COMPRESSED_RX)
|
|
flags = 0;
|
|
else
|
|
flags = ADM_LEGACY_DEVICE_SESSION;
|
|
}
|
|
|
|
if ((topology == VPM_TX_SM_ECNS_COPP_TOPOLOGY) ||
|
|
(topology == VPM_TX_DM_FLUENCE_COPP_TOPOLOGY) ||
|
|
(topology == VPM_TX_DM_RFECNS_COPP_TOPOLOGY))
|
|
rate = 16000;
|
|
|
|
copp_idx = adm_get_idx_if_copp_exists(port_idx, topology, perf_mode,
|
|
rate, bit_width, app_type);
|
|
if (copp_idx < 0) {
|
|
copp_idx = adm_get_next_available_copp(port_idx);
|
|
if (copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: exceeded copp id %d\n",
|
|
__func__, copp_idx);
|
|
return -EINVAL;
|
|
} else {
|
|
atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.topology[port_idx][copp_idx],
|
|
topology);
|
|
atomic_set(&this_adm.copp.mode[port_idx][copp_idx],
|
|
perf_mode);
|
|
atomic_set(&this_adm.copp.rate[port_idx][copp_idx],
|
|
rate);
|
|
atomic_set(&this_adm.copp.channels[port_idx][copp_idx],
|
|
channel_mode);
|
|
atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx],
|
|
bit_width);
|
|
atomic_set(&this_adm.copp.app_type[port_idx][copp_idx],
|
|
app_type);
|
|
atomic_set(&this_adm.copp.acdb_id[port_idx][copp_idx],
|
|
acdb_id);
|
|
set_bit(ADM_STATUS_CALIBRATION_REQUIRED,
|
|
(void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
|
|
if (path != ADM_PATH_COMPRESSED_RX)
|
|
send_adm_custom_topology();
|
|
}
|
|
}
|
|
|
|
if (this_adm.copp.adm_delay[port_idx][copp_idx] &&
|
|
perf_mode == LEGACY_PCM_MODE) {
|
|
atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
|
|
1);
|
|
this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
|
|
wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
|
|
}
|
|
|
|
/* Create a COPP if port id are not enabled */
|
|
if (atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]) == 0) {
|
|
pr_debug("%s: open ADM: port_idx: %d, copp_idx: %d\n", __func__,
|
|
port_idx, copp_idx);
|
|
if ((topology == SRS_TRUMEDIA_TOPOLOGY_ID) &&
|
|
perf_mode == LEGACY_PCM_MODE) {
|
|
int res;
|
|
atomic_set(&this_adm.mem_map_index, ADM_SRS_TRUMEDIA);
|
|
msm_dts_srs_tm_ion_memmap(&this_adm.outband_memmap);
|
|
res = adm_memory_map_regions(&this_adm.outband_memmap.paddr, 0,
|
|
(uint32_t *)&this_adm.outband_memmap.size, 1);
|
|
if (res < 0) {
|
|
pr_err("%s: SRS adm_memory_map_regions failed ! addr = 0x%p, size = %d\n",
|
|
__func__, (void *)this_adm.outband_memmap.paddr,
|
|
(uint32_t)this_adm.outband_memmap.size);
|
|
}
|
|
}
|
|
if ((topology == ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX) &&
|
|
(perf_mode == LEGACY_PCM_MODE)) {
|
|
int res = 0;
|
|
atomic_set(&this_adm.mem_map_index, ADM_DTS_EAGLE);
|
|
msm_dts_ion_memmap(&this_adm.outband_memmap);
|
|
res = adm_memory_map_regions(
|
|
&this_adm.outband_memmap.paddr,
|
|
0,
|
|
(uint32_t *)&this_adm.outband_memmap.size,
|
|
1);
|
|
if (res < 0)
|
|
pr_err("%s: DTS_EAGLE mmap did not work!",
|
|
__func__);
|
|
}
|
|
open.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE),
|
|
APR_PKT_VER);
|
|
open.hdr.pkt_size = sizeof(open);
|
|
open.hdr.src_svc = APR_SVC_ADM;
|
|
open.hdr.src_domain = APR_DOMAIN_APPS;
|
|
open.hdr.src_port = tmp_port;
|
|
open.hdr.dest_svc = APR_SVC_ADM;
|
|
open.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
open.hdr.dest_port = tmp_port;
|
|
open.hdr.token = port_idx << 16 | copp_idx;
|
|
open.hdr.opcode = ADM_CMD_DEVICE_OPEN_V5;
|
|
open.flags = flags;
|
|
open.mode_of_operation = path;
|
|
open.endpoint_id_1 = tmp_port;
|
|
|
|
if (this_adm.ec_ref_rx == -1) {
|
|
open.endpoint_id_2 = 0xFFFF;
|
|
} else if (this_adm.ec_ref_rx && (path != 1)) {
|
|
open.endpoint_id_2 = this_adm.ec_ref_rx;
|
|
this_adm.ec_ref_rx = -1;
|
|
}
|
|
|
|
open.topology_id = topology;
|
|
|
|
open.dev_num_channel = channel_mode & 0x00FF;
|
|
open.bit_width = bit_width;
|
|
WARN_ON((perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) &&
|
|
(rate != ULL_SUPPORTED_SAMPLE_RATE));
|
|
open.sample_rate = rate;
|
|
|
|
ret = adm_arrange_mch_map(&open, path, channel_mode);
|
|
|
|
if (ret)
|
|
return ret;
|
|
|
|
pr_debug("%s: port_id=0x%x rate=%d topology_id=0x%X\n",
|
|
__func__, open.endpoint_id_1, open.sample_rate,
|
|
open.topology_id);
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&open);
|
|
if (ret < 0) {
|
|
pr_err("%s: port_id: 0x%x for[0x%x] failed %d\n",
|
|
__func__, tmp_port, port_id, ret);
|
|
return -EINVAL;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: ADM open timedout for port_id: 0x%x for [0x%x]\n",
|
|
__func__, tmp_port, port_id);
|
|
return -EINVAL;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
return adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
}
|
|
}
|
|
atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
|
|
return copp_idx;
|
|
}
|
|
|
|
|
|
void adm_copp_mfc_cfg(int port_id, int copp_idx, int dst_sample_rate)
|
|
{
|
|
struct audproc_mfc_output_media_fmt mfc_cfg;
|
|
struct adm_cmd_device_open_v5 open;
|
|
int port_idx;
|
|
int sz = 0;
|
|
int rc = 0;
|
|
int i = 0;
|
|
|
|
port_id = q6audio_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
goto fail_cmd;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
goto fail_cmd;
|
|
}
|
|
|
|
sz = sizeof(struct audproc_mfc_output_media_fmt);
|
|
|
|
mfc_cfg.params.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
mfc_cfg.params.hdr.pkt_size = sz;
|
|
mfc_cfg.params.hdr.src_svc = APR_SVC_ADM;
|
|
mfc_cfg.params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
mfc_cfg.params.hdr.src_port = port_id;
|
|
mfc_cfg.params.hdr.dest_svc = APR_SVC_ADM;
|
|
mfc_cfg.params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
mfc_cfg.params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
mfc_cfg.params.hdr.token = port_idx << 16 | copp_idx;
|
|
mfc_cfg.params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
mfc_cfg.params.payload_addr_lsw = 0;
|
|
mfc_cfg.params.payload_addr_msw = 0;
|
|
mfc_cfg.params.mem_map_handle = 0;
|
|
mfc_cfg.params.payload_size = sizeof(mfc_cfg) -
|
|
sizeof(mfc_cfg.params);
|
|
mfc_cfg.data.module_id = AUDPROC_MODULE_ID_MFC;
|
|
mfc_cfg.data.param_id =
|
|
AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
|
|
mfc_cfg.data.param_size = mfc_cfg.params.payload_size -
|
|
sizeof(mfc_cfg.data);
|
|
mfc_cfg.data.reserved = 0;
|
|
mfc_cfg.sampling_rate = dst_sample_rate;
|
|
mfc_cfg.bits_per_sample =
|
|
atomic_read(&this_adm.copp.bit_width[port_idx][copp_idx]);
|
|
if (24 == mfc_cfg.bits_per_sample)
|
|
mfc_cfg.bits_per_sample = 32;
|
|
open.dev_num_channel = mfc_cfg.num_channels =
|
|
atomic_read(&this_adm.copp.channels[port_idx][copp_idx]);
|
|
|
|
rc = adm_arrange_mch_map(&open, ADM_PATH_PLAYBACK,
|
|
mfc_cfg.num_channels);
|
|
if (rc < 0) {
|
|
pr_err("%s: unable to get channal map\n", __func__);
|
|
goto fail_cmd;
|
|
}
|
|
|
|
for (i = 0; i < mfc_cfg.num_channels; i++)
|
|
mfc_cfg.channel_type[i] =
|
|
(uint16_t) open.dev_channel_mapping[i];
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
|
|
pr_debug("%s: mfc config: port_idx %d copp_idx %d copp SR %d copp BW %d copp chan %d o/p SR %d\n",
|
|
__func__, port_idx, copp_idx,
|
|
atomic_read(&this_adm.copp.rate[port_idx][copp_idx]),
|
|
mfc_cfg.bits_per_sample, mfc_cfg.num_channels,
|
|
mfc_cfg.sampling_rate);
|
|
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)&mfc_cfg);
|
|
|
|
if (rc < 0) {
|
|
pr_err("%s: port_id: for[0x%x] failed %d\n",
|
|
__func__, port_id, rc);
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback with copp id */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: mfc_cfg Set params timed out for port_id: for [0x%x]\n",
|
|
__func__, port_id);
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
goto fail_cmd;
|
|
}
|
|
rc = 0;
|
|
fail_cmd:
|
|
return;
|
|
}
|
|
|
|
|
|
int adm_matrix_map(int path, struct route_payload payload_map, int perf_mode)
|
|
{
|
|
struct adm_cmd_matrix_map_routings_v5 *route;
|
|
struct adm_session_map_node_v5 *node;
|
|
uint16_t *copps_list;
|
|
int cmd_size = 0;
|
|
int ret = 0, i = 0;
|
|
void *payload = NULL;
|
|
void *matrix_map = NULL;
|
|
int port_idx, copp_idx;
|
|
|
|
/* Assumes port_ids have already been validated during adm_open */
|
|
cmd_size = (sizeof(struct adm_cmd_matrix_map_routings_v5) +
|
|
sizeof(struct adm_session_map_node_v5) +
|
|
(sizeof(uint32_t) * payload_map.num_copps));
|
|
matrix_map = kzalloc(cmd_size, GFP_KERNEL);
|
|
if (matrix_map == NULL) {
|
|
pr_err("%s: Mem alloc failed\n", __func__);
|
|
ret = -EINVAL;
|
|
return ret;
|
|
}
|
|
route = (struct adm_cmd_matrix_map_routings_v5 *)matrix_map;
|
|
|
|
route->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
route->hdr.pkt_size = cmd_size;
|
|
route->hdr.src_svc = 0;
|
|
route->hdr.src_domain = APR_DOMAIN_APPS;
|
|
route->hdr.src_port = 0; /* Ignored */;
|
|
route->hdr.dest_svc = APR_SVC_ADM;
|
|
route->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
route->hdr.dest_port = 0; /* Ignored */;
|
|
route->hdr.token = 0;
|
|
if (path == ADM_PATH_COMPRESSED_RX) {
|
|
pr_debug("%s: ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5 0x%x\n",
|
|
__func__, ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5);
|
|
route->hdr.opcode = ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
|
|
} else {
|
|
pr_debug("%s: DM_CMD_MATRIX_MAP_ROUTINGS_V5 0x%x\n",
|
|
__func__, ADM_CMD_MATRIX_MAP_ROUTINGS_V5);
|
|
route->hdr.opcode = ADM_CMD_MATRIX_MAP_ROUTINGS_V5;
|
|
}
|
|
route->num_sessions = 1;
|
|
|
|
switch (path) {
|
|
case ADM_PATH_PLAYBACK:
|
|
route->matrix_id = ADM_MATRIX_ID_AUDIO_RX;
|
|
break;
|
|
case ADM_PATH_LIVE_REC:
|
|
case ADM_PATH_NONLIVE_REC:
|
|
route->matrix_id = ADM_MATRIX_ID_AUDIO_TX;
|
|
break;
|
|
case ADM_PATH_COMPRESSED_RX:
|
|
route->matrix_id = ADM_MATRIX_ID_COMPRESSED_AUDIO_RX;
|
|
break;
|
|
default:
|
|
pr_err("%s: Wrong path set[%d]\n", __func__, path);
|
|
break;
|
|
}
|
|
payload = ((u8 *)matrix_map +
|
|
sizeof(struct adm_cmd_matrix_map_routings_v5));
|
|
node = (struct adm_session_map_node_v5 *)payload;
|
|
|
|
node->session_id = payload_map.session_id;
|
|
node->num_copps = payload_map.num_copps;
|
|
payload = (u8 *)node + sizeof(struct adm_session_map_node_v5);
|
|
copps_list = (uint16_t *)payload;
|
|
for (i = 0; i < payload_map.num_copps; i++) {
|
|
port_idx =
|
|
adm_validate_and_get_port_index(payload_map.port_id[i]);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__,
|
|
payload_map.port_id[i]);
|
|
return -EINVAL;
|
|
}
|
|
copp_idx = payload_map.copp_idx[i];
|
|
copps_list[i] = atomic_read(&this_adm.copp.id[port_idx]
|
|
[copp_idx]);
|
|
}
|
|
atomic_set(&this_adm.matrix_map_stat, -1);
|
|
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)matrix_map);
|
|
if (ret < 0) {
|
|
pr_err("%s: routing for syream %d failed ret %d\n",
|
|
__func__, payload_map.session_id, ret);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
ret = wait_event_timeout(this_adm.matrix_map_wait,
|
|
atomic_read(&this_adm.matrix_map_stat) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: routing for syream %d failed\n", __func__,
|
|
payload_map.session_id);
|
|
ret = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.matrix_map_stat) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n", __func__,
|
|
adsp_err_get_err_str(atomic_read(
|
|
&this_adm.matrix_map_stat)));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.matrix_map_stat));
|
|
goto fail_cmd;
|
|
}
|
|
|
|
if ((perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) &&
|
|
(path != ADM_PATH_COMPRESSED_RX)) {
|
|
for (i = 0; i < payload_map.num_copps; i++) {
|
|
port_idx = afe_get_port_index(payload_map.port_id[i]);
|
|
copp_idx = payload_map.copp_idx[i];
|
|
if (atomic_read(
|
|
&this_adm.copp.topology[port_idx][copp_idx]) ==
|
|
ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX)
|
|
continue;
|
|
rtac_add_adm_device(payload_map.port_id[i],
|
|
atomic_read(&this_adm.copp.id
|
|
[port_idx][copp_idx]),
|
|
get_cal_path(path),
|
|
payload_map.session_id,
|
|
payload_map.app_type,
|
|
payload_map.acdb_dev_id);
|
|
|
|
if (!test_bit(ADM_STATUS_CALIBRATION_REQUIRED,
|
|
(void *)&this_adm.copp.adm_status[port_idx]
|
|
[copp_idx])) {
|
|
pr_debug("%s: adm copp[0x%x][%d] already sent",
|
|
__func__, port_idx, copp_idx);
|
|
continue;
|
|
}
|
|
send_adm_cal(payload_map.port_id[i], copp_idx,
|
|
get_cal_path(path), perf_mode,
|
|
payload_map.app_type,
|
|
payload_map.acdb_dev_id,
|
|
payload_map.sample_rate);
|
|
/* ADM COPP calibration is already sent */
|
|
clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
|
|
(void *)&this_adm.copp.
|
|
adm_status[port_idx][copp_idx]);
|
|
pr_debug("%s: copp_id: %d\n", __func__,
|
|
atomic_read(&this_adm.copp.id[port_idx]
|
|
[copp_idx]));
|
|
}
|
|
}
|
|
|
|
fail_cmd:
|
|
kfree(matrix_map);
|
|
return ret;
|
|
}
|
|
|
|
void adm_ec_ref_rx_id(int port_id)
|
|
{
|
|
this_adm.ec_ref_rx = port_id;
|
|
pr_debug("%s: ec_ref_rx:%d", __func__, this_adm.ec_ref_rx);
|
|
}
|
|
|
|
int adm_close(int port_id, int perf_mode, int copp_idx)
|
|
{
|
|
struct apr_hdr close;
|
|
|
|
int ret = 0, port_idx;
|
|
int copp_id = RESET_COPP_ID;
|
|
|
|
pr_debug("%s: port_id=0x%x perf_mode: %d copp_idx: %d\n", __func__,
|
|
port_id, perf_mode, copp_idx);
|
|
|
|
port_id = q6audio_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n",
|
|
__func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
|
|
pr_err("%s: Invalid copp idx: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (this_adm.copp.adm_delay[port_idx][copp_idx] && perf_mode
|
|
== LEGACY_PCM_MODE) {
|
|
atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
|
|
1);
|
|
this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
|
|
wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
|
|
}
|
|
|
|
atomic_dec(&this_adm.copp.cnt[port_idx][copp_idx]);
|
|
if (!(atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]))) {
|
|
copp_id = adm_get_copp_id(port_idx, copp_idx);
|
|
pr_debug("%s: Closing ADM port_idx:%d copp_idx:%d copp_id:0x%x\n",
|
|
__func__, port_idx, copp_idx, copp_id);
|
|
if ((!perf_mode) && (this_adm.outband_memmap.paddr != 0) &&
|
|
(atomic_read(&this_adm.copp.topology[port_idx][copp_idx]) ==
|
|
SRS_TRUMEDIA_TOPOLOGY_ID)) {
|
|
atomic_set(&this_adm.mem_map_index,
|
|
ADM_SRS_TRUMEDIA);
|
|
ret = adm_memory_unmap_regions();
|
|
if (ret < 0) {
|
|
pr_err("%s: adm mem unmmap err %d",
|
|
__func__, ret);
|
|
} else {
|
|
atomic_set(&this_adm.mem_map_handles
|
|
[ADM_SRS_TRUMEDIA], 0);
|
|
}
|
|
}
|
|
|
|
if ((perf_mode == LEGACY_PCM_MODE) &&
|
|
(this_adm.outband_memmap.paddr != 0) &&
|
|
(atomic_read(
|
|
&this_adm.copp.topology[port_idx][copp_idx]) ==
|
|
ADM_CMD_COPP_OPEN_TOPOLOGY_ID_DTS_HPX)) {
|
|
atomic_set(&this_adm.mem_map_index, ADM_DTS_EAGLE);
|
|
ret = adm_memory_unmap_regions();
|
|
if (ret < 0) {
|
|
pr_err("%s: adm mem unmmap err %d",
|
|
__func__, ret);
|
|
} else {
|
|
atomic_set(&this_adm.mem_map_handles
|
|
[ADM_DTS_EAGLE], 0);
|
|
}
|
|
}
|
|
|
|
if ((afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) &&
|
|
this_adm.sourceTrackingData.memmap.paddr) {
|
|
atomic_set(&this_adm.mem_map_index,
|
|
ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
|
|
ret = adm_memory_unmap_regions();
|
|
if (ret < 0) {
|
|
pr_err("%s: adm mem unmmap err %d",
|
|
__func__, ret);
|
|
}
|
|
msm_audio_ion_free(
|
|
this_adm.sourceTrackingData.ion_client,
|
|
this_adm.sourceTrackingData.ion_handle);
|
|
this_adm.sourceTrackingData.ion_client = NULL;
|
|
this_adm.sourceTrackingData.ion_handle = NULL;
|
|
this_adm.sourceTrackingData.memmap.size = 0;
|
|
this_adm.sourceTrackingData.memmap.kvaddr = NULL;
|
|
this_adm.sourceTrackingData.memmap.paddr = 0;
|
|
this_adm.sourceTrackingData.apr_cmd_status = -1;
|
|
atomic_set(&this_adm.mem_map_handles[
|
|
ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
|
|
}
|
|
|
|
close.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE),
|
|
APR_PKT_VER);
|
|
close.pkt_size = sizeof(close);
|
|
close.src_svc = APR_SVC_ADM;
|
|
close.src_domain = APR_DOMAIN_APPS;
|
|
close.src_port = port_id;
|
|
close.dest_svc = APR_SVC_ADM;
|
|
close.dest_domain = APR_DOMAIN_ADSP;
|
|
close.dest_port = copp_id;
|
|
close.token = port_idx << 16 | copp_idx;
|
|
close.opcode = ADM_CMD_DEVICE_CLOSE_V5;
|
|
|
|
atomic_set(&this_adm.copp.id[port_idx][copp_idx],
|
|
RESET_COPP_ID);
|
|
atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.topology[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.mode[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
atomic_set(&this_adm.copp.rate[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.channels[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx], 0);
|
|
atomic_set(&this_adm.copp.app_type[port_idx][copp_idx], 0);
|
|
|
|
clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
|
|
(void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
|
|
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&close);
|
|
if (ret < 0) {
|
|
pr_err("%s: ADM close failed %d\n", __func__, ret);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: ADM cmd Route timedout for port 0x%x\n",
|
|
__func__, port_id);
|
|
return -EINVAL;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
return adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
}
|
|
}
|
|
|
|
if (perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) {
|
|
pr_debug("%s: remove adm device from rtac\n", __func__);
|
|
rtac_remove_adm_device(port_id, copp_id);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int send_rtac_audvol_cal(void)
|
|
{
|
|
int ret = 0;
|
|
int ret2 = 0;
|
|
int i = 0;
|
|
int copp_idx, port_idx, acdb_id, app_id, path;
|
|
struct cal_block_data *cal_block = NULL;
|
|
struct audio_cal_info_audvol *audvol_cal_info = NULL;
|
|
struct rtac_adm rtac_adm_data;
|
|
|
|
mutex_lock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
|
|
|
|
cal_block = cal_utils_get_only_cal_block(
|
|
this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]);
|
|
if (cal_block == NULL) {
|
|
pr_err("%s: can't find cal block!\n", __func__);
|
|
goto unlock;
|
|
}
|
|
|
|
audvol_cal_info = cal_block->cal_info;
|
|
if (audvol_cal_info == NULL) {
|
|
pr_err("%s: audvol_cal_info is NULL!\n", __func__);
|
|
goto unlock;
|
|
}
|
|
|
|
get_rtac_adm_data(&rtac_adm_data);
|
|
for (; i < rtac_adm_data.num_of_dev; i++) {
|
|
|
|
acdb_id = rtac_adm_data.device[i].acdb_dev_id;
|
|
if (acdb_id == 0)
|
|
acdb_id = audvol_cal_info->acdb_id;
|
|
|
|
app_id = rtac_adm_data.device[i].app_type;
|
|
if (app_id == 0)
|
|
app_id = audvol_cal_info->app_type;
|
|
|
|
path = afe_get_port_type(rtac_adm_data.device[i].afe_port);
|
|
if ((acdb_id == audvol_cal_info->acdb_id) &&
|
|
(app_id == audvol_cal_info->app_type) &&
|
|
(path == audvol_cal_info->path)) {
|
|
|
|
if (adm_get_indexes_from_copp_id(rtac_adm_data.
|
|
device[i].copp, &copp_idx, &port_idx) != 0) {
|
|
pr_debug("%s: Copp Id %d is not active\n",
|
|
__func__,
|
|
rtac_adm_data.device[i].copp);
|
|
continue;
|
|
}
|
|
|
|
ret2 = adm_remap_and_send_cal_block(ADM_RTAC_AUDVOL_CAL,
|
|
rtac_adm_data.device[i].afe_port,
|
|
copp_idx, cal_block,
|
|
atomic_read(&this_adm.copp.
|
|
mode[port_idx][copp_idx]),
|
|
audvol_cal_info->app_type,
|
|
audvol_cal_info->acdb_id,
|
|
atomic_read(&this_adm.copp.
|
|
rate[port_idx][copp_idx]));
|
|
if (ret2 < 0) {
|
|
pr_debug("%s: remap and send failed for copp Id %d, acdb id %d, app type %d, path %d\n",
|
|
__func__, rtac_adm_data.device[i].copp,
|
|
audvol_cal_info->acdb_id,
|
|
audvol_cal_info->app_type,
|
|
audvol_cal_info->path);
|
|
ret = ret2;
|
|
}
|
|
}
|
|
}
|
|
unlock:
|
|
mutex_unlock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
|
|
return ret;
|
|
}
|
|
|
|
int adm_map_rtac_block(struct rtac_cal_block_data *cal_block)
|
|
{
|
|
int result = 0;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
if (cal_block == NULL) {
|
|
pr_err("%s: cal_block is NULL!\n",
|
|
__func__);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (cal_block->cal_data.paddr == 0) {
|
|
pr_debug("%s: No address to map!\n",
|
|
__func__);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (cal_block->map_data.map_size == 0) {
|
|
pr_debug("%s: map size is 0!\n",
|
|
__func__);
|
|
result = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
/* valid port ID needed for callback use primary I2S */
|
|
atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
|
|
result = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
|
|
&cal_block->map_data.map_size, 1);
|
|
if (result < 0) {
|
|
pr_err("%s: RTAC mmap did not work! size = %d result %d\n",
|
|
__func__,
|
|
cal_block->map_data.map_size, result);
|
|
pr_debug("%s: RTAC mmap did not work! addr = 0x%pa, size = %d\n",
|
|
__func__,
|
|
&cal_block->cal_data.paddr,
|
|
cal_block->map_data.map_size);
|
|
goto done;
|
|
}
|
|
|
|
cal_block->map_data.map_handle = atomic_read(
|
|
&this_adm.mem_map_handles[ADM_RTAC_APR_CAL]);
|
|
done:
|
|
return result;
|
|
}
|
|
|
|
int adm_unmap_rtac_block(uint32_t *mem_map_handle)
|
|
{
|
|
int result = 0;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
if (mem_map_handle == NULL) {
|
|
pr_debug("%s: Map handle is NULL, nothing to unmap\n",
|
|
__func__);
|
|
goto done;
|
|
}
|
|
|
|
if (*mem_map_handle == 0) {
|
|
pr_debug("%s: Map handle is 0, nothing to unmap\n",
|
|
__func__);
|
|
goto done;
|
|
}
|
|
|
|
if (*mem_map_handle != atomic_read(
|
|
&this_adm.mem_map_handles[ADM_RTAC_APR_CAL])) {
|
|
pr_err("%s: Map handles do not match! Unmapping RTAC, RTAC map 0x%x, ADM map 0x%x\n",
|
|
__func__, *mem_map_handle, atomic_read(
|
|
&this_adm.mem_map_handles[ADM_RTAC_APR_CAL]));
|
|
|
|
/* if mismatch use handle passed in to unmap */
|
|
atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL],
|
|
*mem_map_handle);
|
|
}
|
|
|
|
/* valid port ID needed for callback use primary I2S */
|
|
atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
|
|
result = adm_memory_unmap_regions();
|
|
if (result < 0) {
|
|
pr_debug("%s: adm_memory_unmap_regions failed, error %d\n",
|
|
__func__, result);
|
|
} else {
|
|
atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL], 0);
|
|
*mem_map_handle = 0;
|
|
}
|
|
done:
|
|
return result;
|
|
}
|
|
|
|
static int get_cal_type_index(int32_t cal_type)
|
|
{
|
|
int ret = -EINVAL;
|
|
|
|
switch (cal_type) {
|
|
case ADM_AUDPROC_CAL_TYPE:
|
|
ret = ADM_AUDPROC_CAL;
|
|
break;
|
|
case ADM_AUDVOL_CAL_TYPE:
|
|
ret = ADM_AUDVOL_CAL;
|
|
break;
|
|
case ADM_CUST_TOPOLOGY_CAL_TYPE:
|
|
ret = ADM_CUSTOM_TOP_CAL;
|
|
break;
|
|
case ADM_RTAC_INFO_CAL_TYPE:
|
|
ret = ADM_RTAC_INFO_CAL;
|
|
break;
|
|
case ADM_RTAC_APR_CAL_TYPE:
|
|
ret = ADM_RTAC_APR_CAL;
|
|
break;
|
|
case ADM_RTAC_AUDVOL_CAL_TYPE:
|
|
ret = ADM_RTAC_AUDVOL_CAL;
|
|
break;
|
|
default:
|
|
pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static int adm_alloc_cal(int32_t cal_type, size_t data_size, void *data)
|
|
{
|
|
int ret = 0;
|
|
int cal_index;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_index = get_cal_type_index(cal_type);
|
|
if (cal_index < 0) {
|
|
pr_err("%s: could not get cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
ret = cal_utils_alloc_cal(data_size, data,
|
|
this_adm.cal_data[cal_index], 0, NULL);
|
|
if (ret < 0) {
|
|
pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
|
|
__func__, ret, cal_type);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int adm_dealloc_cal(int32_t cal_type, size_t data_size, void *data)
|
|
{
|
|
int ret = 0;
|
|
int cal_index;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_index = get_cal_type_index(cal_type);
|
|
if (cal_index < 0) {
|
|
pr_err("%s: could not get cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
ret = cal_utils_dealloc_cal(data_size, data,
|
|
this_adm.cal_data[cal_index]);
|
|
if (ret < 0) {
|
|
pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
|
|
__func__, ret, cal_type);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int adm_set_cal(int32_t cal_type, size_t data_size, void *data)
|
|
{
|
|
int ret = 0;
|
|
int cal_index;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_index = get_cal_type_index(cal_type);
|
|
if (cal_index < 0) {
|
|
pr_err("%s: could not get cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
ret = cal_utils_set_cal(data_size, data,
|
|
this_adm.cal_data[cal_index], 0, NULL);
|
|
if (ret < 0) {
|
|
pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
|
|
__func__, ret, cal_type);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (cal_index == ADM_CUSTOM_TOP_CAL) {
|
|
mutex_lock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
|
|
this_adm.set_custom_topology = 1;
|
|
mutex_unlock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
|
|
} else if (cal_index == ADM_RTAC_AUDVOL_CAL) {
|
|
send_rtac_audvol_cal();
|
|
}
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int adm_map_cal_data(int32_t cal_type,
|
|
struct cal_block_data *cal_block)
|
|
{
|
|
int ret = 0;
|
|
int cal_index;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_index = get_cal_type_index(cal_type);
|
|
if (cal_index < 0) {
|
|
pr_err("%s: could not get cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
atomic_set(&this_adm.mem_map_index, cal_index);
|
|
ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
|
|
(uint32_t *)&cal_block->map_data.map_size, 1);
|
|
if (ret < 0) {
|
|
pr_err("%s: map did not work! cal_type %i ret %d\n",
|
|
__func__, cal_index, ret);
|
|
ret = -ENODEV;
|
|
goto done;
|
|
}
|
|
cal_block->map_data.q6map_handle = atomic_read(&this_adm.
|
|
mem_map_handles[cal_index]);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int adm_unmap_cal_data(int32_t cal_type,
|
|
struct cal_block_data *cal_block)
|
|
{
|
|
int ret = 0;
|
|
int cal_index;
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_index = get_cal_type_index(cal_type);
|
|
if (cal_index < 0) {
|
|
pr_err("%s: could not get cal index %d!\n",
|
|
__func__, cal_index);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
atomic_set(&this_adm.mem_map_handles[cal_index],
|
|
cal_block->map_data.q6map_handle);
|
|
atomic_set(&this_adm.mem_map_index, cal_index);
|
|
ret = adm_memory_unmap_regions();
|
|
if (ret < 0) {
|
|
pr_err("%s: unmap did not work! cal_type %i ret %d\n",
|
|
__func__, cal_index, ret);
|
|
ret = -ENODEV;
|
|
goto done;
|
|
}
|
|
cal_block->map_data.q6map_handle = 0;
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static void adm_delete_cal_data(void)
|
|
{
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
cal_utils_destroy_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data);
|
|
|
|
return;
|
|
}
|
|
|
|
static int adm_init_cal_data(void)
|
|
{
|
|
int ret = 0;
|
|
struct cal_type_info cal_type_info[] = {
|
|
{{ADM_CUST_TOPOLOGY_CAL_TYPE,
|
|
{adm_alloc_cal, adm_dealloc_cal, NULL,
|
|
adm_set_cal, NULL, NULL} },
|
|
{adm_map_cal_data, adm_unmap_cal_data,
|
|
cal_utils_match_buf_num} },
|
|
|
|
{{ADM_AUDPROC_CAL_TYPE,
|
|
{adm_alloc_cal, adm_dealloc_cal, NULL,
|
|
adm_set_cal, NULL, NULL} },
|
|
{adm_map_cal_data, adm_unmap_cal_data,
|
|
cal_utils_match_buf_num} },
|
|
|
|
{{ADM_AUDVOL_CAL_TYPE,
|
|
{adm_alloc_cal, adm_dealloc_cal, NULL,
|
|
adm_set_cal, NULL, NULL} },
|
|
{adm_map_cal_data, adm_unmap_cal_data,
|
|
cal_utils_match_buf_num} },
|
|
|
|
{{ADM_RTAC_INFO_CAL_TYPE,
|
|
{NULL, NULL, NULL, NULL, NULL, NULL} },
|
|
{NULL, NULL, cal_utils_match_buf_num} },
|
|
|
|
{{ADM_RTAC_APR_CAL_TYPE,
|
|
{NULL, NULL, NULL, NULL, NULL, NULL} },
|
|
{NULL, NULL, cal_utils_match_buf_num} },
|
|
|
|
{{DTS_EAGLE_CAL_TYPE,
|
|
{NULL, NULL, NULL, NULL, NULL, NULL} },
|
|
{NULL, NULL, cal_utils_match_buf_num} },
|
|
|
|
{{SRS_TRUMEDIA_CAL_TYPE,
|
|
{NULL, NULL, NULL, NULL, NULL, NULL} },
|
|
{NULL, NULL, cal_utils_match_buf_num} },
|
|
|
|
{{ADM_RTAC_AUDVOL_CAL_TYPE,
|
|
{adm_alloc_cal, adm_dealloc_cal, NULL,
|
|
adm_set_cal, NULL, NULL} },
|
|
{adm_map_cal_data, adm_unmap_cal_data,
|
|
cal_utils_match_buf_num} },
|
|
};
|
|
pr_debug("%s:\n", __func__);
|
|
|
|
ret = cal_utils_create_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data,
|
|
cal_type_info);
|
|
if (ret < 0) {
|
|
pr_err("%s: could not create cal type! ret %d\n",
|
|
__func__, ret);
|
|
ret = -EINVAL;
|
|
goto err;
|
|
}
|
|
|
|
return ret;
|
|
err:
|
|
adm_delete_cal_data();
|
|
return ret;
|
|
}
|
|
|
|
int adm_set_volume(int port_id, int copp_idx, int volume)
|
|
{
|
|
struct audproc_volume_ctrl_master_gain audproc_vol;
|
|
int sz = 0;
|
|
int rc = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s: port_id %d, volume %d\n", __func__, port_id, volume);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct audproc_volume_ctrl_master_gain);
|
|
audproc_vol.params.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
audproc_vol.params.hdr.pkt_size = sz;
|
|
audproc_vol.params.hdr.src_svc = APR_SVC_ADM;
|
|
audproc_vol.params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
audproc_vol.params.hdr.src_port = port_id;
|
|
audproc_vol.params.hdr.dest_svc = APR_SVC_ADM;
|
|
audproc_vol.params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
audproc_vol.params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
audproc_vol.params.hdr.token = port_idx << 16 | copp_idx;
|
|
audproc_vol.params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
audproc_vol.params.payload_addr_lsw = 0;
|
|
audproc_vol.params.payload_addr_msw = 0;
|
|
audproc_vol.params.mem_map_handle = 0;
|
|
audproc_vol.params.payload_size = sizeof(audproc_vol) -
|
|
sizeof(audproc_vol.params);
|
|
audproc_vol.data.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
|
|
audproc_vol.data.param_id = AUDPROC_PARAM_ID_VOL_CTRL_MASTER_GAIN;
|
|
audproc_vol.data.param_size = audproc_vol.params.payload_size -
|
|
sizeof(audproc_vol.data);
|
|
audproc_vol.data.reserved = 0;
|
|
audproc_vol.master_gain = volume;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)&audproc_vol);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Vol cntrl Set params timed out port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
rc = 0;
|
|
fail_cmd:
|
|
return rc;
|
|
}
|
|
|
|
int adm_set_softvolume(int port_id, int copp_idx,
|
|
struct audproc_softvolume_params *softvol_param)
|
|
{
|
|
struct audproc_soft_step_volume_params audproc_softvol;
|
|
int sz = 0;
|
|
int rc = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s: period %d step %d curve %d\n", __func__,
|
|
softvol_param->period, softvol_param->step,
|
|
softvol_param->rampingcurve);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct audproc_soft_step_volume_params);
|
|
|
|
audproc_softvol.params.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
audproc_softvol.params.hdr.pkt_size = sz;
|
|
audproc_softvol.params.hdr.src_svc = APR_SVC_ADM;
|
|
audproc_softvol.params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
audproc_softvol.params.hdr.src_port = port_id;
|
|
audproc_softvol.params.hdr.dest_svc = APR_SVC_ADM;
|
|
audproc_softvol.params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
audproc_softvol.params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
audproc_softvol.params.hdr.token = port_idx << 16 | copp_idx;
|
|
audproc_softvol.params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
audproc_softvol.params.payload_addr_lsw = 0;
|
|
audproc_softvol.params.payload_addr_msw = 0;
|
|
audproc_softvol.params.mem_map_handle = 0;
|
|
audproc_softvol.params.payload_size = sizeof(audproc_softvol) -
|
|
sizeof(audproc_softvol.params);
|
|
audproc_softvol.data.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
|
|
audproc_softvol.data.param_id =
|
|
AUDPROC_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
|
|
audproc_softvol.data.param_size = audproc_softvol.params.payload_size -
|
|
sizeof(audproc_softvol.data);
|
|
audproc_softvol.data.reserved = 0;
|
|
audproc_softvol.period = softvol_param->period;
|
|
audproc_softvol.step = softvol_param->step;
|
|
audproc_softvol.ramping_curve = softvol_param->rampingcurve;
|
|
|
|
pr_debug("%s: period %d, step %d, curve %d\n", __func__,
|
|
audproc_softvol.period, audproc_softvol.step,
|
|
audproc_softvol.ramping_curve);
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)&audproc_softvol);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Soft volume Set params timed out port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
rc = 0;
|
|
fail_cmd:
|
|
return rc;
|
|
}
|
|
|
|
int adm_param_enable(int port_id, int copp_idx, int module_id, int enable)
|
|
{
|
|
struct audproc_enable_param_t adm_mod_enable;
|
|
int sz = 0;
|
|
int rc = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s port_id %d, module_id 0x%x, enable %d\n",
|
|
__func__, port_id, module_id, enable);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
sz = sizeof(struct audproc_enable_param_t);
|
|
|
|
adm_mod_enable.pp_params.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_mod_enable.pp_params.hdr.pkt_size = sz;
|
|
adm_mod_enable.pp_params.hdr.src_svc = APR_SVC_ADM;
|
|
adm_mod_enable.pp_params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_mod_enable.pp_params.hdr.src_port = port_id;
|
|
adm_mod_enable.pp_params.hdr.dest_svc = APR_SVC_ADM;
|
|
adm_mod_enable.pp_params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_mod_enable.pp_params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_mod_enable.pp_params.hdr.token = port_idx << 16 | copp_idx;
|
|
adm_mod_enable.pp_params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
adm_mod_enable.pp_params.payload_addr_lsw = 0;
|
|
adm_mod_enable.pp_params.payload_addr_msw = 0;
|
|
adm_mod_enable.pp_params.mem_map_handle = 0;
|
|
adm_mod_enable.pp_params.payload_size = sizeof(adm_mod_enable) -
|
|
sizeof(adm_mod_enable.pp_params) +
|
|
sizeof(adm_mod_enable.pp_params.params);
|
|
adm_mod_enable.pp_params.params.module_id = module_id;
|
|
adm_mod_enable.pp_params.params.param_id = AUDPROC_PARAM_ID_ENABLE;
|
|
adm_mod_enable.pp_params.params.param_size =
|
|
adm_mod_enable.pp_params.payload_size -
|
|
sizeof(adm_mod_enable.pp_params.params);
|
|
adm_mod_enable.pp_params.params.reserved = 0;
|
|
adm_mod_enable.enable = enable;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)&adm_mod_enable);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: module %x enable %d timed out on port = %#x\n",
|
|
__func__, module_id, enable, port_id);
|
|
rc = -EINVAL;
|
|
goto fail_cmd;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto fail_cmd;
|
|
}
|
|
rc = 0;
|
|
fail_cmd:
|
|
return rc;
|
|
|
|
}
|
|
|
|
int adm_send_calibration(int port_id, int copp_idx, int path, int perf_mode,
|
|
int cal_type, char *params, int size)
|
|
{
|
|
|
|
struct adm_cmd_set_pp_params_v5 *adm_params = NULL;
|
|
int sz, rc = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s:port_id %d, path %d, perf_mode %d, cal_type %d, size %d\n",
|
|
__func__, port_id, path, perf_mode, cal_type, size);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Maps audio_dev_ctrl path definition to ACDB definition */
|
|
if (get_cal_path(path) != RX_DEVICE) {
|
|
pr_err("%s: acdb_path %d\n", __func__, path);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
sz = sizeof(struct adm_cmd_set_pp_params_v5) + size;
|
|
adm_params = kzalloc(sz, GFP_KERNEL);
|
|
if (!adm_params) {
|
|
pr_err("%s, adm params memory alloc failed", __func__);
|
|
rc = -ENOMEM;
|
|
goto end;
|
|
}
|
|
|
|
memcpy(((u8 *)adm_params + sizeof(struct adm_cmd_set_pp_params_v5)),
|
|
params, size);
|
|
|
|
adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
adm_params->hdr.pkt_size = sz;
|
|
adm_params->hdr.src_svc = APR_SVC_ADM;
|
|
adm_params->hdr.src_domain = APR_DOMAIN_APPS;
|
|
adm_params->hdr.src_port = port_id;
|
|
adm_params->hdr.dest_svc = APR_SVC_ADM;
|
|
adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
adm_params->hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
adm_params->hdr.token = port_idx << 16 | copp_idx;
|
|
adm_params->hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
/* payload address and mmap handle initialized to zero by kzalloc */
|
|
adm_params->payload_size = size;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
|
|
if (rc < 0) {
|
|
pr_err("%s: Set params failed port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
/* Wait for the callback */
|
|
rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!rc) {
|
|
pr_err("%s: Set params timed out port = %#x\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
rc = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto end;
|
|
}
|
|
rc = 0;
|
|
|
|
end:
|
|
kfree(adm_params);
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* adm_update_wait_parameters must be called with routing driver locks.
|
|
* adm_reset_wait_parameters must be called with routing driver locks.
|
|
* set and reset parmeters are seperated to make sure it is always called
|
|
* under routing driver lock.
|
|
* adm_wait_timeout is to block until timeout or interrupted. Timeout is
|
|
* not a an error.
|
|
*/
|
|
int adm_set_wait_parameters(int port_id, int copp_idx)
|
|
{
|
|
|
|
int ret = 0, port_idx;
|
|
pr_debug("%s: port_id 0x%x, copp_idx %d\n", __func__, port_id,
|
|
copp_idx);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
this_adm.copp.adm_delay[port_idx][copp_idx] = 1;
|
|
atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 0);
|
|
|
|
end:
|
|
return ret;
|
|
|
|
}
|
|
|
|
int adm_reset_wait_parameters(int port_id, int copp_idx)
|
|
{
|
|
int ret = 0, port_idx;
|
|
|
|
pr_debug("%s: port_id 0x%x copp_idx %d\n", __func__, port_id,
|
|
copp_idx);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 1);
|
|
this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
|
|
|
|
end:
|
|
return ret;
|
|
}
|
|
|
|
int adm_wait_timeout(int port_id, int copp_idx, int wait_time)
|
|
{
|
|
int ret = 0, port_idx;
|
|
|
|
pr_debug("%s: port_id 0x%x, copp_idx %d, wait_time %d\n", __func__,
|
|
port_id, copp_idx, wait_time);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = wait_event_timeout(
|
|
this_adm.copp.adm_delay_wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.adm_delay_stat[port_idx][copp_idx]),
|
|
msecs_to_jiffies(wait_time));
|
|
pr_debug("%s: return %d\n", __func__, ret);
|
|
if (ret != 0)
|
|
ret = -EINTR;
|
|
end:
|
|
pr_debug("%s: return %d--\n", __func__, ret);
|
|
return ret;
|
|
}
|
|
|
|
int adm_store_cal_data(int port_id, int copp_idx, int path, int perf_mode,
|
|
int cal_index, char *params, int *size)
|
|
{
|
|
int rc = 0;
|
|
struct cal_block_data *cal_block = NULL;
|
|
int app_type, acdb_id, port_idx, sample_rate;
|
|
|
|
if (this_adm.cal_data[cal_index] == NULL) {
|
|
pr_debug("%s: cal_index %d not allocated!\n",
|
|
__func__, cal_index);
|
|
goto end;
|
|
}
|
|
|
|
if (get_cal_path(path) != RX_DEVICE) {
|
|
pr_debug("%s: Invalid path to store calibration %d\n",
|
|
__func__, path);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
acdb_id = atomic_read(&this_adm.copp.acdb_id[port_idx][copp_idx]);
|
|
app_type = atomic_read(&this_adm.copp.app_type[port_idx][copp_idx]);
|
|
sample_rate = atomic_read(&this_adm.copp.rate[port_idx][copp_idx]);
|
|
|
|
mutex_lock(&this_adm.cal_data[cal_index]->lock);
|
|
cal_block = adm_find_cal(cal_index, get_cal_path(path), app_type,
|
|
acdb_id, sample_rate);
|
|
if (cal_block == NULL)
|
|
goto unlock;
|
|
|
|
if (cal_block->cal_data.size <= 0) {
|
|
pr_debug("%s: No ADM cal send for port_id = 0x%x!\n",
|
|
__func__, port_id);
|
|
rc = -EINVAL;
|
|
goto unlock;
|
|
}
|
|
|
|
if (cal_index == ADM_AUDPROC_CAL) {
|
|
if (cal_block->cal_data.size > AUD_PROC_BLOCK_SIZE) {
|
|
pr_err("%s:audproc:invalid size exp/actual[%zd, %d]\n",
|
|
__func__, cal_block->cal_data.size, *size);
|
|
rc = -ENOMEM;
|
|
goto unlock;
|
|
}
|
|
} else if (cal_index == ADM_AUDVOL_CAL) {
|
|
if (cal_block->cal_data.size > AUD_VOL_BLOCK_SIZE) {
|
|
pr_err("%s:aud_vol:invalid size exp/actual[%zd, %d]\n",
|
|
__func__, cal_block->cal_data.size, *size);
|
|
rc = -ENOMEM;
|
|
goto unlock;
|
|
}
|
|
} else {
|
|
pr_debug("%s: Not valid calibration for dolby topolgy\n",
|
|
__func__);
|
|
rc = -EINVAL;
|
|
goto unlock;
|
|
}
|
|
memcpy(params, cal_block->cal_data.kvaddr, cal_block->cal_data.size);
|
|
*size = cal_block->cal_data.size;
|
|
|
|
pr_debug("%s:port_id %d, copp_idx %d, path %d",
|
|
__func__, port_id, copp_idx, path);
|
|
pr_debug("perf_mode %d, cal_type %d, size %d\n",
|
|
perf_mode, cal_index, *size);
|
|
|
|
unlock:
|
|
mutex_unlock(&this_adm.cal_data[cal_index]->lock);
|
|
end:
|
|
return rc;
|
|
}
|
|
|
|
int adm_send_compressed_device_mute(int port_id, int copp_idx, bool mute_on)
|
|
{
|
|
struct adm_set_compressed_device_mute mute_params;
|
|
int ret = 0;
|
|
int port_idx;
|
|
|
|
pr_debug("%s port_id: 0x%x, copp_idx %d, mute_on: %d\n",
|
|
__func__, port_id, copp_idx, mute_on);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
|
|
pr_err("%s: Invalid port_id %#x copp_idx %d\n",
|
|
__func__, port_id, copp_idx);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
mute_params.command.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
mute_params.command.hdr.pkt_size =
|
|
sizeof(struct adm_set_compressed_device_mute);
|
|
mute_params.command.hdr.src_svc = APR_SVC_ADM;
|
|
mute_params.command.hdr.src_domain = APR_DOMAIN_APPS;
|
|
mute_params.command.hdr.src_port = port_id;
|
|
mute_params.command.hdr.dest_svc = APR_SVC_ADM;
|
|
mute_params.command.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
mute_params.command.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
mute_params.command.hdr.token = port_idx << 16 | copp_idx;
|
|
mute_params.command.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
mute_params.command.payload_addr_lsw = 0;
|
|
mute_params.command.payload_addr_msw = 0;
|
|
mute_params.command.mem_map_handle = 0;
|
|
mute_params.command.payload_size = sizeof(mute_params) -
|
|
sizeof(mute_params.command);
|
|
mute_params.params.module_id = AUDPROC_MODULE_ID_COMPRESSED_MUTE;
|
|
mute_params.params.param_id = AUDPROC_PARAM_ID_COMPRESSED_MUTE;
|
|
mute_params.params.param_size = mute_params.command.payload_size -
|
|
sizeof(mute_params.params);
|
|
mute_params.params.reserved = 0;
|
|
mute_params.mute_on = mute_on;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&mute_params);
|
|
if (ret < 0) {
|
|
pr_err("%s: device mute for port %d copp %d failed, ret %d\n",
|
|
__func__, port_id, copp_idx, ret);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
/* Wait for the callback */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: send device mute for port %d copp %d failed\n",
|
|
__func__, port_id, copp_idx);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto end;
|
|
}
|
|
ret = 0;
|
|
end:
|
|
return ret;
|
|
}
|
|
|
|
int adm_send_compressed_device_latency(int port_id, int copp_idx, int latency)
|
|
{
|
|
struct adm_set_compressed_device_latency latency_params;
|
|
int port_idx;
|
|
int ret = 0;
|
|
|
|
pr_debug("%s port_id: 0x%x, copp_idx %d latency: %d\n", __func__,
|
|
port_id, copp_idx, latency);
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
|
|
pr_err("%s: Invalid port_id %#x copp_idx %d\n",
|
|
__func__, port_id, copp_idx);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
latency_params.command.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
latency_params.command.hdr.pkt_size =
|
|
sizeof(struct adm_set_compressed_device_latency);
|
|
latency_params.command.hdr.src_svc = APR_SVC_ADM;
|
|
latency_params.command.hdr.src_domain = APR_DOMAIN_APPS;
|
|
latency_params.command.hdr.src_port = port_id;
|
|
latency_params.command.hdr.dest_svc = APR_SVC_ADM;
|
|
latency_params.command.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
latency_params.command.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
latency_params.command.hdr.token = port_idx << 16 | copp_idx;
|
|
latency_params.command.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
latency_params.command.payload_addr_lsw = 0;
|
|
latency_params.command.payload_addr_msw = 0;
|
|
latency_params.command.mem_map_handle = 0;
|
|
latency_params.command.payload_size = sizeof(latency_params) -
|
|
sizeof(latency_params.command);
|
|
latency_params.params.module_id = AUDPROC_MODULE_ID_COMPRESSED_LATENCY;
|
|
latency_params.params.param_id = AUDPROC_PARAM_ID_COMPRESSED_LATENCY;
|
|
latency_params.params.param_size = latency_params.command.payload_size -
|
|
sizeof(latency_params.params);
|
|
latency_params.params.reserved = 0;
|
|
latency_params.latency = latency;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&latency_params);
|
|
if (ret < 0) {
|
|
pr_err("%s: send device latency err %d for port %d copp %d\n",
|
|
__func__, port_id, copp_idx, ret);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
/* Wait for the callback */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: send device latency for port %d failed\n", __func__,
|
|
port_id);
|
|
ret = -EINVAL;
|
|
goto end;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[port_idx][copp_idx]));
|
|
goto end;
|
|
}
|
|
ret = 0;
|
|
end:
|
|
return ret;
|
|
}
|
|
|
|
int adm_set_sound_focus(int port_id, int copp_idx,
|
|
struct sound_focus_param soundFocusData)
|
|
{
|
|
struct adm_set_fluence_soundfocus_param soundfocus_params;
|
|
int sz = 0;
|
|
int ret = 0;
|
|
int port_idx;
|
|
int i;
|
|
|
|
pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
|
|
__func__, port_id, copp_idx);
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
port_idx = adm_validate_and_get_port_index(port_id);
|
|
if (port_idx < 0) {
|
|
pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
|
|
pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
sz = sizeof(struct adm_set_fluence_soundfocus_param);
|
|
soundfocus_params.params.hdr.hdr_field =
|
|
APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
|
|
APR_PKT_VER);
|
|
soundfocus_params.params.hdr.pkt_size = sz;
|
|
soundfocus_params.params.hdr.src_svc = APR_SVC_ADM;
|
|
soundfocus_params.params.hdr.src_domain = APR_DOMAIN_APPS;
|
|
soundfocus_params.params.hdr.src_port = port_id;
|
|
soundfocus_params.params.hdr.dest_svc = APR_SVC_ADM;
|
|
soundfocus_params.params.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
soundfocus_params.params.hdr.dest_port =
|
|
atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
|
|
soundfocus_params.params.hdr.token = port_idx << 16 |
|
|
ADM_CLIENT_ID_SOURCE_TRACKING << 8 | copp_idx;
|
|
soundfocus_params.params.hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
|
|
soundfocus_params.params.payload_addr_lsw = 0;
|
|
soundfocus_params.params.payload_addr_msw = 0;
|
|
soundfocus_params.params.mem_map_handle = 0;
|
|
soundfocus_params.params.payload_size = sizeof(soundfocus_params) -
|
|
sizeof(soundfocus_params.params);
|
|
soundfocus_params.data.module_id = VOICEPROC_MODULE_ID_GENERIC_TX;
|
|
soundfocus_params.data.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS;
|
|
soundfocus_params.data.param_size =
|
|
soundfocus_params.params.payload_size -
|
|
sizeof(soundfocus_params.data);
|
|
soundfocus_params.data.reserved = 0;
|
|
|
|
memset(&(soundfocus_params.soundfocus_data), 0xFF,
|
|
sizeof(struct adm_param_fluence_soundfocus_t));
|
|
for (i = 0; i < MAX_SECTORS; i++) {
|
|
soundfocus_params.soundfocus_data.start_angles[i] =
|
|
soundFocusData.start_angle[i];
|
|
soundfocus_params.soundfocus_data.enables[i] =
|
|
soundFocusData.enable[i];
|
|
pr_debug("%s: start_angle[%d] = %d\n",
|
|
__func__, i, soundFocusData.start_angle[i]);
|
|
pr_debug("%s: enable[%d] = %d\n",
|
|
__func__, i, soundFocusData.enable[i]);
|
|
}
|
|
soundfocus_params.soundfocus_data.gain_step =
|
|
soundFocusData.gain_step;
|
|
pr_debug("%s: gain_step = %d\n", __func__, soundFocusData.gain_step);
|
|
|
|
soundfocus_params.soundfocus_data.reserved = 0;
|
|
|
|
atomic_set(&this_adm.copp.stat[port_idx][copp_idx], 0);
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&soundfocus_params);
|
|
if (ret < 0) {
|
|
pr_err("%s: Set params failed\n", __func__);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
/* Wait for the callback */
|
|
ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[port_idx][copp_idx]),
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s: Set params timed out\n", __func__);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
|
|
pr_err("%s - set params returned error [%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
this_adm.sourceTrackingData.apr_cmd_status));
|
|
|
|
ret = adsp_err_get_lnx_err_code(
|
|
this_adm.sourceTrackingData.apr_cmd_status);
|
|
goto done;
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
done:
|
|
pr_debug("%s: Exit, ret=%d\n", __func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int adm_get_sound_focus(int port_id, int copp_idx,
|
|
struct sound_focus_param *soundFocusData)
|
|
{
|
|
int ret = 0, i;
|
|
char *params_value;
|
|
uint32_t param_payload_len = sizeof(struct adm_param_data_v5) +
|
|
sizeof(struct adm_param_fluence_soundfocus_t);
|
|
struct adm_param_fluence_soundfocus_t *soundfocus_params;
|
|
|
|
pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
|
|
__func__, port_id, copp_idx);
|
|
|
|
params_value = kzalloc(param_payload_len, GFP_KERNEL);
|
|
if (!params_value) {
|
|
pr_err("%s, params memory alloc failed\n", __func__);
|
|
|
|
ret = -ENOMEM;
|
|
goto done;
|
|
}
|
|
ret = adm_get_params_v2(port_id, copp_idx,
|
|
VOICEPROC_MODULE_ID_GENERIC_TX,
|
|
VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS,
|
|
param_payload_len,
|
|
params_value,
|
|
ADM_CLIENT_ID_SOURCE_TRACKING);
|
|
if (ret) {
|
|
pr_err("%s: get parameters failed ret:%d\n", __func__, ret);
|
|
|
|
kfree(params_value);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
|
|
pr_err("%s - get params returned error [%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
this_adm.sourceTrackingData.apr_cmd_status));
|
|
|
|
kfree(params_value);
|
|
ret = adsp_err_get_lnx_err_code(
|
|
this_adm.sourceTrackingData.apr_cmd_status);
|
|
goto done;
|
|
}
|
|
|
|
soundfocus_params = (struct adm_param_fluence_soundfocus_t *)
|
|
params_value;
|
|
for (i = 0; i < MAX_SECTORS; i++) {
|
|
soundFocusData->start_angle[i] =
|
|
soundfocus_params->start_angles[i];
|
|
soundFocusData->enable[i] = soundfocus_params->enables[i];
|
|
pr_debug("%s: start_angle[%d] = %d\n",
|
|
__func__, i, soundFocusData->start_angle[i]);
|
|
pr_debug("%s: enable[%d] = %d\n",
|
|
__func__, i, soundFocusData->enable[i]);
|
|
}
|
|
soundFocusData->gain_step = soundfocus_params->gain_step;
|
|
pr_debug("%s: gain_step = %d\n", __func__, soundFocusData->gain_step);
|
|
|
|
kfree(params_value);
|
|
|
|
done:
|
|
pr_debug("%s: Exit, ret = %d\n", __func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int adm_source_tracking_alloc_map_memory(void)
|
|
{
|
|
int ret;
|
|
|
|
pr_debug("%s: Enter\n", __func__);
|
|
|
|
ret = msm_audio_ion_alloc("SOURCE_TRACKING",
|
|
&this_adm.sourceTrackingData.ion_client,
|
|
&this_adm.sourceTrackingData.ion_handle,
|
|
AUD_PROC_BLOCK_SIZE,
|
|
&this_adm.sourceTrackingData.memmap.paddr,
|
|
&this_adm.sourceTrackingData.memmap.size,
|
|
&this_adm.sourceTrackingData.memmap.kvaddr);
|
|
if (ret) {
|
|
pr_err("%s: failed to allocate memory\n", __func__);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
atomic_set(&this_adm.mem_map_index, ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
|
|
ret = adm_memory_map_regions(&this_adm.sourceTrackingData.memmap.paddr,
|
|
0,
|
|
(uint32_t *)&this_adm.sourceTrackingData.memmap.size,
|
|
1);
|
|
if (ret < 0) {
|
|
pr_err("%s: failed to map memory, paddr = 0x%p, size = %d\n",
|
|
__func__,
|
|
(void *)this_adm.sourceTrackingData.memmap.paddr,
|
|
(uint32_t)this_adm.sourceTrackingData.memmap.size);
|
|
|
|
msm_audio_ion_free(this_adm.sourceTrackingData.ion_client,
|
|
this_adm.sourceTrackingData.ion_handle);
|
|
this_adm.sourceTrackingData.ion_client = NULL;
|
|
this_adm.sourceTrackingData.ion_handle = NULL;
|
|
this_adm.sourceTrackingData.memmap.size = 0;
|
|
this_adm.sourceTrackingData.memmap.kvaddr = NULL;
|
|
this_adm.sourceTrackingData.memmap.paddr = 0;
|
|
this_adm.sourceTrackingData.apr_cmd_status = -1;
|
|
atomic_set(&this_adm.mem_map_handles
|
|
[ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
ret = 0;
|
|
pr_debug("%s: paddr = 0x%p, size = %d, mem_map_handle = 0x%x\n",
|
|
__func__, (void *)this_adm.sourceTrackingData.memmap.paddr,
|
|
(uint32_t)this_adm.sourceTrackingData.memmap.size,
|
|
atomic_read(&this_adm.mem_map_handles
|
|
[ADM_MEM_MAP_INDEX_SOURCE_TRACKING]));
|
|
|
|
done:
|
|
pr_debug("%s: Exit, ret = %d\n", __func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int adm_get_source_tracking(int port_id, int copp_idx,
|
|
struct source_tracking_param *sourceTrackingData)
|
|
{
|
|
struct adm_cmd_get_pp_params_v5 admp;
|
|
int p_idx, ret = 0, i;
|
|
struct adm_param_fluence_sourcetracking_t *source_tracking_params;
|
|
|
|
pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
|
|
__func__, port_id, copp_idx);
|
|
|
|
if (!this_adm.sourceTrackingData.memmap.paddr) {
|
|
/* Allocate and map shared memory for out of band usage */
|
|
ret = adm_source_tracking_alloc_map_memory();
|
|
if (ret != 0) {
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
port_id = afe_convert_virtual_to_portid(port_id);
|
|
p_idx = adm_validate_and_get_port_index(port_id);
|
|
if (p_idx < 0) {
|
|
pr_err("%s - invalid port index %i, port id %i, copp idx %i\n",
|
|
__func__, p_idx, port_id, copp_idx);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
|
|
admp.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
|
|
APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
|
|
admp.hdr.pkt_size = sizeof(admp);
|
|
admp.hdr.src_svc = APR_SVC_ADM;
|
|
admp.hdr.src_domain = APR_DOMAIN_APPS;
|
|
admp.hdr.src_port = port_id;
|
|
admp.hdr.dest_svc = APR_SVC_ADM;
|
|
admp.hdr.dest_domain = APR_DOMAIN_ADSP;
|
|
admp.hdr.dest_port = atomic_read(&this_adm.copp.id[p_idx][copp_idx]);
|
|
admp.hdr.token = p_idx << 16 | ADM_CLIENT_ID_SOURCE_TRACKING << 8 |
|
|
copp_idx;
|
|
admp.hdr.opcode = ADM_CMD_GET_PP_PARAMS_V5;
|
|
admp.data_payload_addr_lsw =
|
|
lower_32_bits(this_adm.sourceTrackingData.memmap.paddr);
|
|
admp.data_payload_addr_msw =
|
|
msm_audio_populate_upper_32_bits(
|
|
this_adm.sourceTrackingData.memmap.paddr);
|
|
admp.mem_map_handle = atomic_read(&this_adm.mem_map_handles[
|
|
ADM_MEM_MAP_INDEX_SOURCE_TRACKING]);
|
|
admp.module_id = VOICEPROC_MODULE_ID_GENERIC_TX;
|
|
admp.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOURCETRACKING;
|
|
admp.param_max_size = sizeof(struct adm_param_fluence_sourcetracking_t)
|
|
+ sizeof(struct adm_param_data_v5);
|
|
admp.reserved = 0;
|
|
|
|
atomic_set(&this_adm.copp.stat[p_idx][copp_idx], -1);
|
|
|
|
ret = apr_send_pkt(this_adm.apr, (uint32_t *)&admp);
|
|
if (ret < 0) {
|
|
pr_err("%s - failed to get Source Tracking Params\n",
|
|
__func__);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
ret = wait_event_timeout(this_adm.copp.wait[p_idx][copp_idx],
|
|
atomic_read(&this_adm.copp.stat[p_idx][copp_idx]) >= 0,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
if (!ret) {
|
|
pr_err("%s - get params timed out\n", __func__);
|
|
|
|
ret = -EINVAL;
|
|
goto done;
|
|
} else if (atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]) > 0) {
|
|
pr_err("%s: DSP returned error[%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx])));
|
|
ret = adsp_err_get_lnx_err_code(
|
|
atomic_read(&this_adm.copp.stat
|
|
[p_idx][copp_idx]));
|
|
goto done;
|
|
}
|
|
|
|
if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
|
|
pr_err("%s - get params returned error [%s]\n",
|
|
__func__, adsp_err_get_err_str(
|
|
this_adm.sourceTrackingData.apr_cmd_status));
|
|
|
|
ret = adsp_err_get_lnx_err_code(
|
|
this_adm.sourceTrackingData.apr_cmd_status);
|
|
goto done;
|
|
}
|
|
|
|
source_tracking_params = (struct adm_param_fluence_sourcetracking_t *)
|
|
(this_adm.sourceTrackingData.memmap.kvaddr +
|
|
sizeof(struct adm_param_data_v5));
|
|
for (i = 0; i < MAX_SECTORS; i++) {
|
|
sourceTrackingData->vad[i] = source_tracking_params->vad[i];
|
|
pr_debug("%s: vad[%d] = %d\n",
|
|
__func__, i, sourceTrackingData->vad[i]);
|
|
}
|
|
sourceTrackingData->doa_speech = source_tracking_params->doa_speech;
|
|
pr_debug("%s: doa_speech = %d\n",
|
|
__func__, sourceTrackingData->doa_speech);
|
|
|
|
for (i = 0; i < MAX_NOISE_SOURCE_INDICATORS; i++) {
|
|
sourceTrackingData->doa_noise[i] =
|
|
source_tracking_params->doa_noise[i];
|
|
pr_debug("%s: doa_noise[%d] = %d\n",
|
|
__func__, i, sourceTrackingData->doa_noise[i]);
|
|
}
|
|
for (i = 0; i < MAX_POLAR_ACTIVITY_INDICATORS; i++) {
|
|
sourceTrackingData->polar_activity[i] =
|
|
source_tracking_params->polar_activity[i];
|
|
pr_debug("%s: polar_activity[%d] = %d\n",
|
|
__func__, i, sourceTrackingData->polar_activity[i]);
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
done:
|
|
pr_debug("%s: Exit, ret=%d\n", __func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int __init adm_init(void)
|
|
{
|
|
int i = 0, j;
|
|
this_adm.apr = NULL;
|
|
this_adm.ec_ref_rx = -1;
|
|
atomic_set(&this_adm.matrix_map_stat, 0);
|
|
init_waitqueue_head(&this_adm.matrix_map_wait);
|
|
atomic_set(&this_adm.adm_stat, 0);
|
|
init_waitqueue_head(&this_adm.adm_wait);
|
|
|
|
for (i = 0; i < AFE_MAX_PORTS; i++) {
|
|
for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
|
|
atomic_set(&this_adm.copp.id[i][j], RESET_COPP_ID);
|
|
atomic_set(&this_adm.copp.cnt[i][j], 0);
|
|
atomic_set(&this_adm.copp.topology[i][j], 0);
|
|
atomic_set(&this_adm.copp.mode[i][j], 0);
|
|
atomic_set(&this_adm.copp.stat[i][j], 0);
|
|
atomic_set(&this_adm.copp.rate[i][j], 0);
|
|
atomic_set(&this_adm.copp.channels[i][j], 0);
|
|
atomic_set(&this_adm.copp.bit_width[i][j], 0);
|
|
atomic_set(&this_adm.copp.app_type[i][j], 0);
|
|
atomic_set(&this_adm.copp.acdb_id[i][j], 0);
|
|
init_waitqueue_head(&this_adm.copp.wait[i][j]);
|
|
atomic_set(&this_adm.copp.adm_delay_stat[i][j], 0);
|
|
init_waitqueue_head(
|
|
&this_adm.copp.adm_delay_wait[i][j]);
|
|
atomic_set(&this_adm.copp.topology[i][j], 0);
|
|
this_adm.copp.adm_delay[i][j] = 0;
|
|
this_adm.copp.adm_status[i][j] =
|
|
ADM_STATUS_CALIBRATION_REQUIRED;
|
|
}
|
|
}
|
|
|
|
if (adm_init_cal_data())
|
|
pr_err("%s: could not init cal data!\n", __func__);
|
|
|
|
this_adm.sourceTrackingData.ion_client = NULL;
|
|
this_adm.sourceTrackingData.ion_handle = NULL;
|
|
this_adm.sourceTrackingData.memmap.size = 0;
|
|
this_adm.sourceTrackingData.memmap.kvaddr = NULL;
|
|
this_adm.sourceTrackingData.memmap.paddr = 0;
|
|
this_adm.sourceTrackingData.apr_cmd_status = -1;
|
|
atomic_set(&this_adm.mem_map_handles[ADM_MEM_MAP_INDEX_SOURCE_TRACKING],
|
|
0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __exit adm_exit(void)
|
|
{
|
|
adm_delete_cal_data();
|
|
}
|
|
|
|
device_initcall(adm_init);
|
|
module_exit(adm_exit);
|