ath10k: increase the allowed num of tx pending pkts
HL1.0 has more number of descriptors and hence we can queue more packets for tx. Allow a higher number of tx pending packets for better throughput in concurrency cases. CRs-Fixed: 2104072 Change-Id: I8dd98cee04200fbeccf655dcb1d982d037077101 Signed-off-by: Rakesh Pillai <pillair@codeaurora.org>
This commit is contained in:
parent
252c16792e
commit
28095e48ce
2 changed files with 6 additions and 1 deletions
|
@ -1698,6 +1698,10 @@ static int ath10k_core_init_firmware_features(struct ath10k *ar)
|
|||
ar->max_num_stations = TARGET_TLV_NUM_STATIONS;
|
||||
ar->max_num_vdevs = TARGET_TLV_NUM_VDEVS;
|
||||
ar->max_num_tdls_vdevs = TARGET_TLV_NUM_TDLS_VDEVS;
|
||||
if (QCA_REV_WCN3990(ar))
|
||||
ar->htt.max_num_pending_tx =
|
||||
TARGET_HL_1_0_NUM_MSDU_DESC;
|
||||
else
|
||||
ar->htt.max_num_pending_tx = TARGET_TLV_NUM_MSDU_DESC;
|
||||
ar->wow.max_num_patterns = TARGET_TLV_NUM_WOW_PATTERNS;
|
||||
ar->fw_stats_req_mask = WMI_STAT_PDEV | WMI_STAT_VDEV |
|
||||
|
|
|
@ -628,6 +628,7 @@ ath10k_rx_desc_get_l3_pad_bytes(struct ath10k_hw_params *hw,
|
|||
#define TARGET_HL_10_TLV_NUM_PEERS 14
|
||||
#define TARGET_HL_10_TLV_AST_SKID_LIMIT 6
|
||||
#define TARGET_HL_10_TLV_NUM_WDS_ENTRIES 2
|
||||
#define TARGET_HL_1_0_NUM_MSDU_DESC (3600)
|
||||
|
||||
/* Diagnostic Window */
|
||||
#define CE_DIAG_PIPE 7
|
||||
|
|
Loading…
Add table
Reference in a new issue