Commit 889ab61d authored by Govind Singh's avatar Govind Singh Committed by Kalle Valo

ath10k: Modify CE4 src buffer entries to 2048 for WCN3990

CE4 is host to target HTT tx pipe, tx completion are not served
on time when CPU is loaded and this cause ce src ring full condition
due to less no of src buffer entries.

To mitigate the issue increase CE4 src buffer entries to 2048.

Testing:
        Tested on QCS404 platform(WCN3990 HW)
        Tested FW: WLAN.HL.3.1-00784-QCAHLSWMTPLZ-1
Signed-off-by: default avatarGovind Singh <govinds@codeaurora.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 7b612ed9
...@@ -165,7 +165,7 @@ static struct ce_attr host_ce_config_wlan[] = { ...@@ -165,7 +165,7 @@ static struct ce_attr host_ce_config_wlan[] = {
/* CE4: host->target HTT */ /* CE4: host->target HTT */
{ {
.flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR, .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
.src_nentries = 256, .src_nentries = 2048,
.src_sz_max = 256, .src_sz_max = 256,
.dest_nentries = 0, .dest_nentries = 0,
.send_cb = ath10k_snoc_htt_tx_cb, .send_cb = ath10k_snoc_htt_tx_cb,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment