You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
1 year ago
|
From 964b468a2a75a36becff335be9aa7dfb64769d6c Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?=C3=8D=C3=B1igo=20Huguet?= <ihuguet@redhat.com>
|
||
|
Date: Wed, 24 May 2023 15:00:37 +0200
|
||
|
Subject: [PATCH 113/142] wifi: rtw89: 8852b: fill the missing configuration
|
||
|
about queue empty checking
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Bugzilla: https://bugzilla.redhat.com/2207499
|
||
|
|
||
|
commit a3edb20146f000dfd5aba1f17e2dc0f363ff9446
|
||
|
Author: Zong-Zhe Yang <kevin_yang@realtek.com>
|
||
|
Date: Fri Jan 13 17:06:32 2023 +0800
|
||
|
|
||
|
wifi: rtw89: 8852b: fill the missing configuration about queue empty checking
|
||
|
|
||
|
The configurations, wde_qempty_acq_num and wde_qempty_mgq_sel, are used
|
||
|
when MAC checks if TX queues are empty. Fill the corresponding setting
|
||
|
for 8852B.
|
||
|
|
||
|
Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com>
|
||
|
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
|
||
|
Signed-off-by: Kalle Valo <kvalo@kernel.org>
|
||
|
Link: https://lore.kernel.org/r/20230113090632.60957-5-pkshih@realtek.com
|
||
|
|
||
|
Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>
|
||
|
---
|
||
|
drivers/net/wireless/realtek/rtw89/rtw8852b.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852b.c b/drivers/net/wireless/realtek/rtw89/rtw8852b.c
|
||
|
index e0f6dfe31bddd..c6345228d049f 100644
|
||
|
--- a/drivers/net/wireless/realtek/rtw89/rtw8852b.c
|
||
|
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852b.c
|
||
|
@@ -2437,6 +2437,8 @@ const struct rtw89_chip_info rtw8852b_chip_info = {
|
||
|
.rsvd_ple_ofst = 0x2f800,
|
||
|
.hfc_param_ini = rtw8852b_hfc_param_ini_pcie,
|
||
|
.dle_mem = rtw8852b_dle_mem_pcie,
|
||
|
+ .wde_qempty_acq_num = 4,
|
||
|
+ .wde_qempty_mgq_sel = 4,
|
||
|
.rf_base_addr = {0xe000, 0xf000},
|
||
|
.pwr_on_seq = NULL,
|
||
|
.pwr_off_seq = NULL,
|
||
|
--
|
||
|
2.13.6
|
||
|
|