Kaynağa Gözat

dsp: add support for new AFE LSM cal types

Add support for new AFE LSM cal types in order
to avoid topology and cal block overriding during
concurrent use cases like SVA with speaker
protection.

CRs-Fixed: 2085865
Change-Id: I9af5c34ea7ad9403b9e6d63ac5d3e73e708a320e
Signed-off-by: Aditya Bavanari <[email protected]>
Aditya Bavanari 7 yıl önce
ebeveyn
işleme
3889b4aebb

+ 4 - 0
dsp/audio_cal_utils.c

@@ -77,6 +77,7 @@ size_t get_cal_info_size(int32_t cal_type)
 		size = sizeof(struct audio_cal_info_audstrm);
 		size = sizeof(struct audio_cal_info_audstrm);
 		break;
 		break;
 	case AFE_TOPOLOGY_CAL_TYPE:
 	case AFE_TOPOLOGY_CAL_TYPE:
+	case AFE_LSM_TOPOLOGY_CAL_TYPE:
 		size = sizeof(struct audio_cal_info_afe_top);
 		size = sizeof(struct audio_cal_info_afe_top);
 		break;
 		break;
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
@@ -86,6 +87,7 @@ size_t get_cal_info_size(int32_t cal_type)
 		size = sizeof(struct audio_cal_info_afe);
 		size = sizeof(struct audio_cal_info_afe);
 		break;
 		break;
 	case AFE_COMMON_TX_CAL_TYPE:
 	case AFE_COMMON_TX_CAL_TYPE:
+	case AFE_LSM_TX_CAL_TYPE:
 		size = sizeof(struct audio_cal_info_afe);
 		size = sizeof(struct audio_cal_info_afe);
 		break;
 		break;
 	case AFE_FB_SPKR_PROT_CAL_TYPE:
 	case AFE_FB_SPKR_PROT_CAL_TYPE:
@@ -223,6 +225,7 @@ size_t get_user_cal_type_size(int32_t cal_type)
 		size = sizeof(struct audio_cal_type_audstrm);
 		size = sizeof(struct audio_cal_type_audstrm);
 		break;
 		break;
 	case AFE_TOPOLOGY_CAL_TYPE:
 	case AFE_TOPOLOGY_CAL_TYPE:
+	case AFE_LSM_TOPOLOGY_CAL_TYPE:
 		size = sizeof(struct audio_cal_type_afe_top);
 		size = sizeof(struct audio_cal_type_afe_top);
 		break;
 		break;
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
@@ -232,6 +235,7 @@ size_t get_user_cal_type_size(int32_t cal_type)
 		size = sizeof(struct audio_cal_type_afe);
 		size = sizeof(struct audio_cal_type_afe);
 		break;
 		break;
 	case AFE_COMMON_TX_CAL_TYPE:
 	case AFE_COMMON_TX_CAL_TYPE:
+	case AFE_LSM_TX_CAL_TYPE:
 		size = sizeof(struct audio_cal_type_afe);
 		size = sizeof(struct audio_cal_type_afe);
 		break;
 		break;
 	case AFE_FB_SPKR_PROT_CAL_TYPE:
 	case AFE_FB_SPKR_PROT_CAL_TYPE:

+ 45 - 10
dsp/q6afe.c

@@ -30,12 +30,14 @@
 enum {
 enum {
 	AFE_COMMON_RX_CAL = 0,
 	AFE_COMMON_RX_CAL = 0,
 	AFE_COMMON_TX_CAL,
 	AFE_COMMON_TX_CAL,
+	AFE_LSM_TX_CAL,
 	AFE_AANC_CAL,
 	AFE_AANC_CAL,
 	AFE_FB_SPKR_PROT_CAL,
 	AFE_FB_SPKR_PROT_CAL,
 	AFE_HW_DELAY_CAL,
 	AFE_HW_DELAY_CAL,
 	AFE_SIDETONE_CAL,
 	AFE_SIDETONE_CAL,
 	AFE_SIDETONE_IIR_CAL,
 	AFE_SIDETONE_IIR_CAL,
 	AFE_TOPOLOGY_CAL,
 	AFE_TOPOLOGY_CAL,
+	AFE_LSM_TOPOLOGY_CAL,
 	AFE_CUST_TOPOLOGY_CAL,
 	AFE_CUST_TOPOLOGY_CAL,
 	AFE_FB_SPKR_PROT_TH_VI_CAL,
 	AFE_FB_SPKR_PROT_TH_VI_CAL,
 	AFE_FB_SPKR_PROT_EX_VI_CAL,
 	AFE_FB_SPKR_PROT_EX_VI_CAL,
@@ -1396,14 +1398,15 @@ err_exit:
 	return NULL;
 	return NULL;
 }
 }
 
 
-static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id)
+static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id,
+				   int cal_type_index)
 {
 {
 	int ret = 0;
 	int ret = 0;
 
 
 	struct cal_block_data   *cal_block = NULL;
 	struct cal_block_data   *cal_block = NULL;
 	struct audio_cal_info_afe_top   *afe_top_info = NULL;
 	struct audio_cal_info_afe_top   *afe_top_info = NULL;
 
 
-	if (this_afe.cal_data[AFE_TOPOLOGY_CAL] == NULL) {
+	if (this_afe.cal_data[cal_type_index] == NULL) {
 		pr_err("%s: [AFE_TOPOLOGY_CAL] not initialized\n", __func__);
 		pr_err("%s: [AFE_TOPOLOGY_CAL] not initialized\n", __func__);
 		return -EINVAL;
 		return -EINVAL;
 	}
 	}
@@ -1413,9 +1416,9 @@ static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id)
 	}
 	}
 	*topology_id = 0;
 	*topology_id = 0;
 
 
-	mutex_lock(&this_afe.cal_data[AFE_TOPOLOGY_CAL]->lock);
+	mutex_lock(&this_afe.cal_data[cal_type_index]->lock);
 	cal_block = afe_find_cal_topo_id_by_port(
 	cal_block = afe_find_cal_topo_id_by_port(
-		this_afe.cal_data[AFE_TOPOLOGY_CAL], port_id);
+		this_afe.cal_data[cal_type_index], port_id);
 	if (cal_block == NULL) {
 	if (cal_block == NULL) {
 		pr_err("%s: [AFE_TOPOLOGY_CAL] not initialized for this port %d\n",
 		pr_err("%s: [AFE_TOPOLOGY_CAL] not initialized for this port %d\n",
 				__func__, port_id);
 				__func__, port_id);
@@ -1437,7 +1440,7 @@ static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id)
 		__func__, port_id, afe_top_info->acdb_id,
 		__func__, port_id, afe_top_info->acdb_id,
 		afe_top_info->topology, ret);
 		afe_top_info->topology, ret);
 unlock:
 unlock:
-	mutex_unlock(&this_afe.cal_data[AFE_TOPOLOGY_CAL]->lock);
+	mutex_unlock(&this_afe.cal_data[cal_type_index]->lock);
 	return ret;
 	return ret;
 }
 }
 
 
@@ -1455,7 +1458,12 @@ static int afe_send_port_topology_id(u16 port_id)
 		return -EINVAL;
 		return -EINVAL;
 	}
 	}
 
 
-	ret = afe_get_cal_topology_id(port_id, &topology_id);
+	ret = afe_get_cal_topology_id(port_id, &topology_id, AFE_TOPOLOGY_CAL);
+	if (ret < 0) {
+		pr_debug("%s: Check for LSM topology\n", __func__);
+		ret = afe_get_cal_topology_id(port_id, &topology_id,
+					      AFE_LSM_TOPOLOGY_CAL);
+	}
 	if (ret || !topology_id) {
 	if (ret || !topology_id) {
 		pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
 		pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
 				__func__, port_id, topology_id);
 				__func__, port_id, topology_id);
@@ -1572,7 +1580,7 @@ exit:
 	return cal_block;
 	return cal_block;
 }
 }
 
 
-static void send_afe_cal_type(int cal_index, int port_id)
+static int send_afe_cal_type(int cal_index, int port_id)
 {
 {
 	struct cal_block_data		*cal_block = NULL;
 	struct cal_block_data		*cal_block = NULL;
 	int ret;
 	int ret;
@@ -1583,19 +1591,22 @@ static void send_afe_cal_type(int cal_index, int port_id)
 	if (this_afe.cal_data[cal_index] == NULL) {
 	if (this_afe.cal_data[cal_index] == NULL) {
 		pr_warn("%s: cal_index %d not allocated!\n",
 		pr_warn("%s: cal_index %d not allocated!\n",
 			__func__, cal_index);
 			__func__, cal_index);
+		ret = -EINVAL;
 		goto done;
 		goto done;
 	}
 	}
 
 
 	if (afe_port_index < 0) {
 	if (afe_port_index < 0) {
 		pr_err("%s: Error getting AFE port index %d\n",
 		pr_err("%s: Error getting AFE port index %d\n",
 			__func__, afe_port_index);
 			__func__, afe_port_index);
+		ret = -EINVAL;
 		goto done;
 		goto done;
 	}
 	}
 
 
 	mutex_lock(&this_afe.cal_data[cal_index]->lock);
 	mutex_lock(&this_afe.cal_data[cal_index]->lock);
 
 
 	if (((cal_index == AFE_COMMON_RX_CAL) ||
 	if (((cal_index == AFE_COMMON_RX_CAL) ||
-	     (cal_index == AFE_COMMON_TX_CAL)) &&
+	     (cal_index == AFE_COMMON_TX_CAL) ||
+	     (cal_index == AFE_LSM_TX_CAL)) &&
 	    (this_afe.dev_acdb_id[afe_port_index] > 0))
 	    (this_afe.dev_acdb_id[afe_port_index] > 0))
 		cal_block = afe_find_cal(cal_index, port_id);
 		cal_block = afe_find_cal(cal_index, port_id);
 	else
 	else
@@ -1604,6 +1615,7 @@ static void send_afe_cal_type(int cal_index, int port_id)
 
 
 	if (cal_block == NULL) {
 	if (cal_block == NULL) {
 		pr_err("%s cal_block not found!!\n", __func__);
 		pr_err("%s cal_block not found!!\n", __func__);
+		ret = -EINVAL;
 		goto unlock;
 		goto unlock;
 	}
 	}
 
 
@@ -1613,6 +1625,7 @@ static void send_afe_cal_type(int cal_index, int port_id)
 	if (ret) {
 	if (ret) {
 		pr_err("%s: Remap_cal_data failed for cal %d!\n",
 		pr_err("%s: Remap_cal_data failed for cal %d!\n",
 			__func__, cal_index);
 			__func__, cal_index);
+		ret = -EINVAL;
 		goto unlock;
 		goto unlock;
 	}
 	}
 	ret = afe_send_cal_block(port_id, cal_block);
 	ret = afe_send_cal_block(port_id, cal_block);
@@ -1622,16 +1635,20 @@ static void send_afe_cal_type(int cal_index, int port_id)
 unlock:
 unlock:
 	mutex_unlock(&this_afe.cal_data[cal_index]->lock);
 	mutex_unlock(&this_afe.cal_data[cal_index]->lock);
 done:
 done:
-	return;
+	return ret;
 }
 }
 
 
 void afe_send_cal(u16 port_id)
 void afe_send_cal(u16 port_id)
 {
 {
+	int ret;
+
 	pr_debug("%s: port_id=0x%x\n", __func__, port_id);
 	pr_debug("%s: port_id=0x%x\n", __func__, port_id);
 
 
 	if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
 	if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
 		afe_send_cal_spkr_prot_tx(port_id);
 		afe_send_cal_spkr_prot_tx(port_id);
-		send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
+		ret = send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
+		if (ret < 0)
+			send_afe_cal_type(AFE_LSM_TX_CAL, port_id);
 	} else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
 	} else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
 		afe_send_cal_spkr_prot_rx(port_id);
 		afe_send_cal_spkr_prot_rx(port_id);
 		send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
 		send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
@@ -6888,6 +6905,9 @@ static int get_cal_type_index(int32_t cal_type)
 	case AFE_COMMON_TX_CAL_TYPE:
 	case AFE_COMMON_TX_CAL_TYPE:
 		ret = AFE_COMMON_TX_CAL;
 		ret = AFE_COMMON_TX_CAL;
 		break;
 		break;
+	case AFE_LSM_TX_CAL_TYPE:
+		ret = AFE_LSM_TX_CAL;
+		break;
 	case AFE_AANC_CAL_TYPE:
 	case AFE_AANC_CAL_TYPE:
 		ret = AFE_AANC_CAL;
 		ret = AFE_AANC_CAL;
 		break;
 		break;
@@ -6906,6 +6926,9 @@ static int get_cal_type_index(int32_t cal_type)
 	case AFE_TOPOLOGY_CAL_TYPE:
 	case AFE_TOPOLOGY_CAL_TYPE:
 		ret = AFE_TOPOLOGY_CAL;
 		ret = AFE_TOPOLOGY_CAL;
 		break;
 		break;
+	case AFE_LSM_TOPOLOGY_CAL_TYPE:
+		ret = AFE_LSM_TOPOLOGY_CAL;
+		break;
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
 	case AFE_CUST_TOPOLOGY_CAL_TYPE:
 		ret = AFE_CUST_TOPOLOGY_CAL;
 		ret = AFE_CUST_TOPOLOGY_CAL;
 		break;
 		break;
@@ -7408,6 +7431,12 @@ static int afe_init_cal_data(void)
 		{afe_map_cal_data, afe_unmap_cal_data,
 		{afe_map_cal_data, afe_unmap_cal_data,
 		cal_utils_match_buf_num} },
 		cal_utils_match_buf_num} },
 
 
+		{{AFE_LSM_TX_CAL_TYPE,
+		{afe_alloc_cal, afe_dealloc_cal, NULL,
+		afe_set_cal, NULL, NULL} },
+		{afe_map_cal_data, afe_unmap_cal_data,
+		cal_utils_match_buf_num} },
+
 		{{AFE_AANC_CAL_TYPE,
 		{{AFE_AANC_CAL_TYPE,
 		{afe_alloc_cal, afe_dealloc_cal, NULL,
 		{afe_alloc_cal, afe_dealloc_cal, NULL,
 		afe_set_cal, NULL, NULL} },
 		afe_set_cal, NULL, NULL} },
@@ -7440,6 +7469,12 @@ static int afe_init_cal_data(void)
 		{NULL, NULL,
 		{NULL, NULL,
 		cal_utils_match_buf_num} },
 		cal_utils_match_buf_num} },
 
 
+		{{AFE_LSM_TOPOLOGY_CAL_TYPE,
+		{NULL, NULL, NULL,
+		afe_set_cal, NULL, NULL} },
+		{NULL, NULL,
+		cal_utils_match_buf_num} },
+
 		{{AFE_CUST_TOPOLOGY_CAL_TYPE,
 		{{AFE_CUST_TOPOLOGY_CAL_TYPE,
 		{afe_alloc_cal, afe_dealloc_cal, NULL,
 		{afe_alloc_cal, afe_dealloc_cal, NULL,
 		afe_set_cal, NULL, NULL} },
 		afe_set_cal, NULL, NULL} },

+ 5 - 0
include/uapi/linux/msm_audio_calibration.h

@@ -99,6 +99,8 @@ enum {
 	AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
 	AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
 	AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
 	AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
 	AFE_SIDETONE_IIR_CAL_TYPE,
 	AFE_SIDETONE_IIR_CAL_TYPE,
+	AFE_LSM_TOPOLOGY_CAL_TYPE,
+	AFE_LSM_TX_CAL_TYPE,
 	MAX_CAL_TYPES,
 	MAX_CAL_TYPES,
 };
 };
 
 
@@ -107,6 +109,9 @@ enum {
 
 
 #define AFE_SIDETONE_IIR_CAL_TYPE AFE_SIDETONE_IIR_CAL_TYPE
 #define AFE_SIDETONE_IIR_CAL_TYPE AFE_SIDETONE_IIR_CAL_TYPE
 
 
+#define AFE_LSM_TOPOLOGY_CAL_TYPE AFE_LSM_TOPOLOGY_CAL_TYPE
+#define AFE_LSM_TX_CAL_TYPE AFE_LSM_TX_CAL_TYPE
+
 #define TOPOLOGY_SPECIFIC_CHANNEL_INFO
 #define TOPOLOGY_SPECIFIC_CHANNEL_INFO
 #define MSM_SPKR_PROT_SPV3
 #define MSM_SPKR_PROT_SPV3