Pārlūkot izejas kodu

msm: ipa3: Add max PDN num based on hardware version

Currently defined max PDN number is generic for all
hardware version which is incorrect. Define PDN based
on hardware version to support correct number of PDN.

Change-Id: I3e898a32104562584b4702132c57b7f1cb8deeca
Signed-off-by: Pooja Kumari <[email protected]>
Pooja Kumari 4 gadi atpakaļ
vecāks
revīzija
4221a04488

+ 1 - 1
drivers/platform/msm/ipa/ipa_v3/ipa_debugfs.c

@@ -2073,7 +2073,7 @@ static void ipa3_read_pdn_table(void)
 		}
 
 		for (i = 0, pdn_entry = ipa3_ctx->nat_mem.pdn_mem.base;
-			 i < IPA_MAX_PDN_NUM;
+			 i < ipa3_get_max_pdn();
 			 ++i, pdn_entry += pdn_entry_size) {
 
 			result = ipahal_nat_is_entry_zeroed(

+ 1 - 1
drivers/platform/msm/ipa/ipa_v3/ipa_flt.c

@@ -883,7 +883,7 @@ static int __ipa_validate_flt_rule(const struct ipa_flt_rule_i *rule,
 					"PDN index should be 0 when action is not pass to NAT\n");
 				goto error;
 			} else {
-				if (rule->pdn_idx >= IPA_MAX_PDN_NUM) {
+				if (rule->pdn_idx >= ipa3_get_max_pdn()) {
 					IPAERR_RL("PDN index %d is too large\n",
 						rule->pdn_idx);
 					goto error;

+ 2 - 0
drivers/platform/msm/ipa/ipa_v3/ipa_i.h

@@ -2909,6 +2909,8 @@ int ipa3_query_intf_tx_props(struct ipa_ioc_query_intf_tx_props *tx);
 int ipa3_query_intf_rx_props(struct ipa_ioc_query_intf_rx_props *rx);
 int ipa3_query_intf_ext_props(struct ipa_ioc_query_intf_ext_props *ext);
 
+int ipa3_get_max_pdn(void);
+
 void wwan_cleanup(void);
 
 int ipa3_teth_bridge_driver_init(void);

+ 3 - 3
drivers/platform/msm/ipa/ipa_v3/ipa_nat.c

@@ -759,7 +759,7 @@ int ipa3_allocate_nat_table(
 
 		ipahal_nat_entry_size(IPAHAL_NAT_IPV4_PDN, &pdn_entry_size);
 
-		pdn_mem_ptr->size = pdn_entry_size * IPA_MAX_PDN_NUM;
+		pdn_mem_ptr->size = pdn_entry_size * ipa3_get_max_pdn();
 
 		if (IPA_MEM_PART(pdn_config_size) < pdn_mem_ptr->size) {
 			IPAERR(
@@ -1173,7 +1173,7 @@ static int ipa3_nat_create_modify_pdn_cmd(
 	IPADBG("\n");
 
 	ipahal_nat_entry_size(IPAHAL_NAT_IPV4_PDN, &pdn_entry_size);
-	mem_size = pdn_entry_size * IPA_MAX_PDN_NUM;
+	mem_size = pdn_entry_size * ipa3_get_max_pdn();
 
 	/* Before providing physical base address check pointer exist or not*/
 	if (!ipa3_ctx->nat_mem.pdn_mem.base)
@@ -1721,7 +1721,7 @@ int ipa3_nat_mdfy_pdn(
 		goto bail;
 	}
 
-	if (mdfy_pdn->pdn_index > (IPA_MAX_PDN_NUM - 1)) {
+	if (mdfy_pdn->pdn_index > (ipa3_get_max_pdn() - 1)) {
 		IPAERR_RL("pdn index out of range %d\n", mdfy_pdn->pdn_index);
 		result = -EPERM;
 		goto bail;

+ 14 - 1
drivers/platform/msm/ipa/ipa_v3/ipa_utils.c

@@ -10465,7 +10465,6 @@ int ipa3_get_prot_id(enum ipa_client_type client)
 	return prot_id;
 }
 
-
 void ipa3_eth_get_status(u32 client, int scratch_id,
 	struct ipa3_eth_error_stats *stats)
 {
@@ -10482,3 +10481,17 @@ void ipa3_eth_get_status(u32 client, int scratch_id,
 	stats->err = gsi_get_drop_stats(ipa_ep_idx, scratch_id);
 	IPA_ACTIVE_CLIENTS_DEC_SIMPLE();
 }
+
+/**
+ * ipa3_get_max_pdn() - get max PDN number based on hardware version
+ * Returns:     IPA_MAX_PDN_NUM of IPAv4_5 and IPA_MAX_PDN_NUM_v4 for others
+ *
+ */
+
+int ipa3_get_max_pdn(void)
+{
+	if (ipa3_get_hw_type_index() == IPA_4_5_AUTO)
+		return IPA_MAX_PDN_NUM;
+	else
+		return IPA_MAX_PDN_NUM_v4;
+}