Browse Source

qcacmn: Increase AST table size to 4k

As fw has doubled the skid length we need to increase
the table size from 2k to 4k

Change-Id: Iaf46c9451220ce8e890cdf1909841917029ce32f
Tallapragada Kalyan 6 years ago
parent
commit
c741308260
2 changed files with 39 additions and 2 deletions
  1. 38 1
      dp/wifi3.0/dp_peer.c
  2. 1 1
      dp/wifi3.0/dp_types.h

+ 38 - 1
dp/wifi3.0/dp_peer.c

@@ -67,6 +67,24 @@ static inline int dp_peer_find_mac_addr_cmp(
 		(mac_addr1->align4.bytes_ef == mac_addr2->align4.bytes_ef));
 }
 
+static int dp_peer_ast_table_attach(struct dp_soc *soc)
+{
+	uint32_t max_ast_index;
+
+	max_ast_index = wlan_cfg_get_max_ast_idx(soc->wlan_cfg_ctx);
+	/* allocate ast_table for ast entry to ast_index map */
+	QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
+		  "\n<=== cfg max ast idx %d ====>", max_ast_index);
+	soc->ast_table = qdf_mem_malloc(max_ast_index *
+					sizeof(struct dp_ast_entry *));
+	if (!soc->ast_table) {
+		QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
+			  "%s: ast_table memory allocation failed", __func__);
+		return QDF_STATUS_E_NOMEM;
+	}
+	return 0; /* success */
+}
+
 static int dp_peer_find_map_attach(struct dp_soc *soc)
 {
 	uint32_t max_peers, peer_map_size;
@@ -201,8 +219,9 @@ void dp_peer_find_hash_add(struct dp_soc *soc, struct dp_peer *peer)
 static int dp_peer_ast_hash_attach(struct dp_soc *soc)
 {
 	int i, hash_elems, log2;
+	unsigned int max_ast_idx = wlan_cfg_get_max_ast_idx(soc->wlan_cfg_ctx);
 
-	hash_elems = ((soc->max_peers * DP_AST_HASH_LOAD_MULT) >>
+	hash_elems = ((max_ast_idx * DP_AST_HASH_LOAD_MULT) >>
 		DP_AST_HASH_LOAD_SHIFT);
 
 	log2 = dp_log2_ceil(hash_elems);
@@ -211,6 +230,10 @@ static int dp_peer_ast_hash_attach(struct dp_soc *soc)
 	soc->ast_hash.mask = hash_elems - 1;
 	soc->ast_hash.idx_bits = log2;
 
+	QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO,
+		  "ast hash_elems: %d, max_ast_idx: %d",
+		  hash_elems, max_ast_idx);
+
 	/* allocate an array of TAILQ peer object lists */
 	soc->ast_hash.bins = qdf_mem_malloc(
 		hash_elems * sizeof(TAILQ_HEAD(anonymous_tail_q,
@@ -1172,6 +1195,11 @@ void dp_peer_find_hash_erase(struct dp_soc *soc)
 	}
 }
 
+static void dp_peer_ast_table_detach(struct dp_soc *soc)
+{
+	qdf_mem_free(soc->ast_table);
+}
+
 static void dp_peer_find_map_detach(struct dp_soc *soc)
 {
 	qdf_mem_free(soc->peer_id_to_obj_map);
@@ -1187,11 +1215,19 @@ int dp_peer_find_attach(struct dp_soc *soc)
 		return 1;
 	}
 
+	if (dp_peer_ast_table_attach(soc)) {
+		dp_peer_find_hash_detach(soc);
+		dp_peer_find_map_detach(soc);
+		return 1;
+	}
+
 	if (dp_peer_ast_hash_attach(soc)) {
+		dp_peer_ast_table_detach(soc);
 		dp_peer_find_hash_detach(soc);
 		dp_peer_find_map_detach(soc);
 		return 1;
 	}
+
 	return 0; /* success */
 }
 
@@ -1527,6 +1563,7 @@ dp_peer_find_detach(struct dp_soc *soc)
 	dp_peer_find_map_detach(soc);
 	dp_peer_find_hash_detach(soc);
 	dp_peer_ast_hash_detach(soc);
+	dp_peer_ast_table_detach(soc);
 }
 
 static void dp_rx_tid_update_cb(struct dp_soc *soc, void *cb_ctxt,

+ 1 - 1
dp/wifi3.0/dp_types.h

@@ -945,7 +945,7 @@ struct dp_soc {
 	/* Enable processing of Tx completion status words */
 	bool process_tx_status;
 	bool process_rx_status;
-	struct dp_ast_entry *ast_table[WLAN_UMAC_PSOC_MAX_PEERS * 2];
+	struct dp_ast_entry **ast_table;
 	struct {
 		unsigned mask;
 		unsigned idx_bits;