* [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-10 8:00 ` [PATCH 0/2] wifi: rtw89: fix RF calibration for USB transport Louis Kotze
@ 2026-04-10 8:00 ` Louis Kotze
2026-04-14 6:32 ` Ping-Ke Shih
2026-04-10 8:00 ` [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB Louis Kotze
2026-04-15 11:13 ` [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport Louis Kotze
2 siblings, 1 reply; 10+ messages in thread
From: Louis Kotze @ 2026-04-10 8:00 UTC (permalink / raw)
To: linux-wireless; +Cc: pkshih, rtl8821cerfe2, linux-kernel, Louis Kotze
USB transport adds significant latency to H2C/C2H round-trips used
by RF calibration. The existing timeout values were designed for PCIe
and are too tight for USB, causing "failed to wait RF DACK",
"failed to wait RF TSSI" and similar errors on USB adapters.
Apply a 4x timeout multiplier when the device uses USB transport.
The multiplier is applied in rtw89_phy_rfk_report_wait() so all
calibrations benefit without changing any call sites or PCIe
timeout values.
The 4x multiplier was chosen based on measured data from two
independent testers (RTL8922AU, 6GHz MLO and 2.4/5GHz):
Calibration PCIe timeout Max measured (USB) 4x timeout
PRE_NTFY 5ms 1ms 20ms
DACK 58ms 72ms 232ms
RX_DCK 128ms 374ms 512ms
TSSI normal 20ms 24ms 80ms
TSSI scan 6ms 14ms 24ms
TXGAPK 54ms 18ms 216ms
IQK 84ms 53ms 336ms
DPK 34ms 30ms 136ms
Tested with RTL8922AU on 6GHz MLO (5GHz + 6GHz simultaneous):
25 connect/disconnect cycles with zero failures.
Signed-off-by: Louis Kotze <loukot@gmail.com>
---
drivers/net/wireless/realtek/rtw89/phy.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/phy.c b/drivers/net/wireless/realtek/rtw89/phy.c
index e70d0e283..4d809df8b 100644
--- a/drivers/net/wireless/realtek/rtw89/phy.c
+++ b/drivers/net/wireless/realtek/rtw89/phy.c
@@ -3956,6 +3956,13 @@ int rtw89_phy_rfk_report_wait(struct rtw89_dev *rtwdev, const char *rfk_name,
struct rtw89_rfk_wait_info *wait = &rtwdev->rfk_wait;
unsigned long time_left;
+ /* USB transport adds latency to H2C/C2H round-trips, so RF
+ * calibrations take longer than on PCIe. Apply a 4x multiplier
+ * to avoid spurious timeouts.
+ */
+ if (rtwdev->hci.type == RTW89_HCI_TYPE_USB)
+ ms *= 4;
+
/* Since we can't receive C2H event during SER, use a fixed delay. */
if (test_bit(RTW89_FLAG_SER_HANDLING, rtwdev->flags)) {
fsleep(1000 * ms / 2);
--
2.53.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* RE: [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-10 8:00 ` [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts " Louis Kotze
@ 2026-04-14 6:32 ` Ping-Ke Shih
2026-04-15 11:13 ` Louis Kotze
0 siblings, 1 reply; 10+ messages in thread
From: Ping-Ke Shih @ 2026-04-14 6:32 UTC (permalink / raw)
To: Louis Kotze, linux-wireless@vger.kernel.org
Cc: rtl8821cerfe2@gmail.com, linux-kernel@vger.kernel.org
Louis Kotze <loukot@gmail.com> wrote:
> USB transport adds significant latency to H2C/C2H round-trips used
> by RF calibration. The existing timeout values were designed for PCIe
> and are too tight for USB, causing "failed to wait RF DACK",
> "failed to wait RF TSSI" and similar errors on USB adapters.
>
> Apply a 4x timeout multiplier when the device uses USB transport.
> The multiplier is applied in rtw89_phy_rfk_report_wait() so all
> calibrations benefit without changing any call sites or PCIe
> timeout values.
>
> The 4x multiplier was chosen based on measured data from two
> independent testers (RTL8922AU, 6GHz MLO and 2.4/5GHz):
>
> Calibration PCIe timeout Max measured (USB) 4x timeout
> PRE_NTFY 5ms 1ms 20ms
> DACK 58ms 72ms 232ms
> RX_DCK 128ms 374ms 512ms
> TSSI normal 20ms 24ms 80ms
> TSSI scan 6ms 14ms 24ms
> TXGAPK 54ms 18ms 216ms
> IQK 84ms 53ms 336ms
> DPK 34ms 30ms 136ms
>
> Tested with RTL8922AU on 6GHz MLO (5GHz + 6GHz simultaneous):
> 25 connect/disconnect cycles with zero failures.
>
> Signed-off-by: Louis Kotze <loukot@gmail.com>
Looks good to me. But please change comment style.
> ---
> drivers/net/wireless/realtek/rtw89/phy.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/net/wireless/realtek/rtw89/phy.c b/drivers/net/wireless/realtek/rtw89/phy.c
> index e70d0e283..4d809df8b 100644
> --- a/drivers/net/wireless/realtek/rtw89/phy.c
> +++ b/drivers/net/wireless/realtek/rtw89/phy.c
> @@ -3956,6 +3956,13 @@ int rtw89_phy_rfk_report_wait(struct rtw89_dev *rtwdev, const char *rfk_name,
> struct rtw89_rfk_wait_info *wait = &rtwdev->rfk_wait;
> unsigned long time_left;
>
> + /* USB transport adds latency to H2C/C2H round-trips, so RF
> + * calibrations take longer than on PCIe. Apply a 4x multiplier
> + * to avoid spurious timeouts.
> + */
For now, we don't apply networking specific comment style. Keep first line '/*'.
> + if (rtwdev->hci.type == RTW89_HCI_TYPE_USB)
> + ms *= 4;
> +
> /* Since we can't receive C2H event during SER, use a fixed delay. */
> if (test_bit(RTW89_FLAG_SER_HANDLING, rtwdev->flags)) {
> fsleep(1000 * ms / 2);
> --
> 2.53.0
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-14 6:32 ` Ping-Ke Shih
@ 2026-04-15 11:13 ` Louis Kotze
0 siblings, 0 replies; 10+ messages in thread
From: Louis Kotze @ 2026-04-15 11:13 UTC (permalink / raw)
To: Ping-Ke Shih; +Cc: linux-wireless, linux-kernel, rtl8821cerfe2, Louis Kotze
On Tue, 14 Apr 2026 06:32:35 +0000, Ping-Ke Shih wrote:
> Looks good to me. But please change comment style.
>
> > + /* USB transport adds latency to H2C/C2H round-trips, so RF
> > + * calibrations take longer than on PCIe. Apply a 4x multiplier
> > + * to avoid spurious timeouts.
> > + */
>
> For now, we don't apply networking specific comment style. Keep first line '/*'.
Will fix in v2 — thanks for the review.
Louis
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB
2026-04-10 8:00 ` [PATCH 0/2] wifi: rtw89: fix RF calibration for USB transport Louis Kotze
2026-04-10 8:00 ` [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts " Louis Kotze
@ 2026-04-10 8:00 ` Louis Kotze
2026-04-14 6:39 ` Ping-Ke Shih
2026-04-15 11:13 ` [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport Louis Kotze
2 siblings, 1 reply; 10+ messages in thread
From: Louis Kotze @ 2026-04-10 8:00 UTC (permalink / raw)
To: linux-wireless; +Cc: pkshih, rtl8821cerfe2, linux-kernel, Louis Kotze
On USB adapters, RF calibration timeouts can still occasionally occur
despite the increased timeout values, particularly under system load
or USB bus contention. However, the radio typically continues to
operate correctly despite an incomplete calibration — the timeout
does not indicate a hardware failure.
Make calibration timeouts and bad state returns non-fatal on USB by
logging at debug level and continuing, rather than returning
-ETIMEDOUT/-EFAULT which can cascade into a connection failure or
disconnect.
PCIe error handling is unchanged — timeouts remain fatal on PCIe
where they indicate a real problem.
Signed-off-by: Louis Kotze <loukot@gmail.com>
---
drivers/net/wireless/realtek/rtw89/phy.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/phy.c b/drivers/net/wireless/realtek/rtw89/phy.c
index 4d809df8b..a06bea88e 100644
--- a/drivers/net/wireless/realtek/rtw89/phy.c
+++ b/drivers/net/wireless/realtek/rtw89/phy.c
@@ -3972,9 +3972,21 @@ int rtw89_phy_rfk_report_wait(struct rtw89_dev *rtwdev, const char *rfk_name,
time_left = wait_for_completion_timeout(&wait->completion,
msecs_to_jiffies(ms));
if (time_left == 0) {
+ if (rtwdev->hci.type == RTW89_HCI_TYPE_USB) {
+ rtw89_debug(rtwdev, RTW89_DBG_RFK,
+ "RF %s timeout (non-fatal on USB)\n",
+ rfk_name);
+ goto out;
+ }
rtw89_warn(rtwdev, "failed to wait RF %s\n", rfk_name);
return -ETIMEDOUT;
} else if (wait->state != RTW89_RFK_STATE_OK) {
+ if (rtwdev->hci.type == RTW89_HCI_TYPE_USB) {
+ rtw89_debug(rtwdev, RTW89_DBG_RFK,
+ "RF %s state %d (non-fatal on USB)\n",
+ rfk_name, wait->state);
+ goto out;
+ }
rtw89_warn(rtwdev, "failed to do RF %s result from state %d\n",
rfk_name, wait->state);
return -EFAULT;
--
2.53.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* RE: [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB
2026-04-10 8:00 ` [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB Louis Kotze
@ 2026-04-14 6:39 ` Ping-Ke Shih
2026-04-15 11:13 ` Louis Kotze
0 siblings, 1 reply; 10+ messages in thread
From: Ping-Ke Shih @ 2026-04-14 6:39 UTC (permalink / raw)
To: Louis Kotze, linux-wireless@vger.kernel.org
Cc: rtl8821cerfe2@gmail.com, linux-kernel@vger.kernel.org
Louis Kotze <loukot@gmail.com> wrote:
> On USB adapters, RF calibration timeouts can still occasionally occur
> despite the increased timeout values, particularly under system load
> or USB bus contention. However, the radio typically continues to
> operate correctly despite an incomplete calibration — the timeout
> does not indicate a hardware failure.
>
> Make calibration timeouts and bad state returns non-fatal on USB by
> logging at debug level and continuing, rather than
If calibration timeouts, the performance might be bad. How about just
to enlarge timeout time in 1/2 patch?
> returning
> -ETIMEDOUT/-EFAULT which can cascade into a connection failure or
> disconnect.
It seems like we don't actually handle the return code for now.
Could you point out the path you encountered?
>
> PCIe error handling is unchanged — timeouts remain fatal on PCIe
> where they indicate a real problem.
>
> Signed-off-by: Louis Kotze <loukot@gmail.com>
> ---
> drivers/net/wireless/realtek/rtw89/phy.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/net/wireless/realtek/rtw89/phy.c b/drivers/net/wireless/realtek/rtw89/phy.c
> index 4d809df8b..a06bea88e 100644
> --- a/drivers/net/wireless/realtek/rtw89/phy.c
> +++ b/drivers/net/wireless/realtek/rtw89/phy.c
> @@ -3972,9 +3972,21 @@ int rtw89_phy_rfk_report_wait(struct rtw89_dev *rtwdev, const char *rfk_name,
> time_left = wait_for_completion_timeout(&wait->completion,
> msecs_to_jiffies(ms));
> if (time_left == 0) {
> + if (rtwdev->hci.type == RTW89_HCI_TYPE_USB) {
> + rtw89_debug(rtwdev, RTW89_DBG_RFK,
> + "RF %s timeout (non-fatal on USB)\n",
> + rfk_name);
> + goto out;
> + }
> rtw89_warn(rtwdev, "failed to wait RF %s\n", rfk_name);
> return -ETIMEDOUT;
> } else if (wait->state != RTW89_RFK_STATE_OK) {
> + if (rtwdev->hci.type == RTW89_HCI_TYPE_USB) {
> + rtw89_debug(rtwdev, RTW89_DBG_RFK,
> + "RF %s state %d (non-fatal on USB)\n",
> + rfk_name, wait->state);
> + goto out;
> + }
> rtw89_warn(rtwdev, "failed to do RF %s result from state %d\n",
> rfk_name, wait->state);
> return -EFAULT;
> --
> 2.53.0
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB
2026-04-14 6:39 ` Ping-Ke Shih
@ 2026-04-15 11:13 ` Louis Kotze
0 siblings, 0 replies; 10+ messages in thread
From: Louis Kotze @ 2026-04-15 11:13 UTC (permalink / raw)
To: Ping-Ke Shih; +Cc: linux-wireless, linux-kernel, rtl8821cerfe2, Louis Kotze
On Tue, 14 Apr 2026 06:39 +0000, Ping-Ke Shih wrote:
> If calibration timeouts, the performance might be bad. How about just
> to enlarge timeout time in 1/2 patch?
> [...]
> It seems like we don't actually handle the return code for now.
> Could you point out the path you encountered?
You're right on both points — dropping this patch in v2.
On the return code: it is indeed discarded by all 8922a callers of
rtw89_phy_rfk_*_and_wait() (11 call sites). My original "connection
failure" report was the host dropping the link after repeated
"failed to wait RF DACK" kernel warnings, not a return-code cascade.
The 4x multiplier in 1/2 already fixes the observable symptom.
Also, on 8922d rtw8922d_rfk_tssi() does check the return and uses
the failure to fall back by clearing is_tssi_mode — making the call
non-fatal on USB would silently break that fallback. Not something
I should ship, even for hardware I don't own.
On enlarging 1/2 only: re-verified the 4x multiplier under stress-ng
(CPU, memory, combined). DACK peaks at 71ms on 5GHz in every
scenario, including baseline idle — the calibrations are I/O bound
on the USB H2C/C2H round-trip, not CPU/memory bound, so host stress
doesn't move the numbers. 4x leaves ~3.3x headroom on the worst case.
Full matrix is in the v2 1/2 commit message.
v2 keeps only 1/2, with the comment-style fix. Sending shortly.
Louis
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-10 8:00 ` [PATCH 0/2] wifi: rtw89: fix RF calibration for USB transport Louis Kotze
2026-04-10 8:00 ` [PATCH 1/2] wifi: rtw89: phy: increase RF calibration timeouts " Louis Kotze
2026-04-10 8:00 ` [PATCH 2/2] wifi: rtw89: phy: make RF calibration timeouts non-fatal on USB Louis Kotze
@ 2026-04-15 11:13 ` Louis Kotze
2026-04-16 1:15 ` Ping-Ke Shih
2 siblings, 1 reply; 10+ messages in thread
From: Louis Kotze @ 2026-04-15 11:13 UTC (permalink / raw)
To: Ping-Ke Shih; +Cc: linux-wireless, linux-kernel, rtl8821cerfe2, Louis Kotze
USB transport adds significant latency to H2C/C2H round-trips used
by RF calibration. The existing timeout values were designed for PCIe
and are too tight for USB, causing "failed to wait RF DACK",
"failed to wait RF TSSI" and similar errors on USB adapters.
Apply a 4x timeout multiplier when the device uses USB transport.
The multiplier is applied in rtw89_phy_rfk_report_wait() so all
calibrations benefit without changing any call sites or PCIe
timeout values.
The 4x multiplier was chosen based on measured data from two
independent testers (RTL8922AU, 6GHz MLO and 2.4/5GHz):
Calibration PCIe timeout Max measured (USB) 4x timeout
PRE_NTFY 5ms 1ms 20ms
DACK 58ms 72ms 232ms
RX_DCK 128ms 374ms 512ms
TSSI normal 20ms 24ms 80ms
TSSI scan 6ms 14ms 24ms
TXGAPK 54ms 18ms 216ms
IQK 84ms 53ms 336ms
DPK 34ms 30ms 136ms
Tested with RTL8922AU on 6GHz MLO (5GHz + 6GHz simultaneous):
25 connect/disconnect cycles with zero failures.
In response to review feedback on v1, the 4x multiplier was also
re-verified under adverse host conditions on 5GHz. 5 cycles per
scenario, stress-ng as the load generator, max observed time per
calibration:
Calibration PCIe 4x Baseline CPU stress Mem stress Combined
PRE_NTFY 5 20 0 0 0 1
DACK 58 232 71 (!) 71 (!) 71 (!) 71 (!)
RX_DCK 128 512 23 22 22 23
IQK 84 336 53 53 53 53
DPK 34 136 23 23 26 23
TSSI 20 80 6 9 14 9
TXGAPK 54 216 16 16 16 16
Legend: (!) = exceeds PCIe budget but within 4x budget.
Two observations from that matrix:
1. DACK exceeds the stock PCIe budget (58ms) in baseline on 5GHz
on this hardware. Without the 4x multiplier, DACK fails
-ETIMEDOUT deterministically on every connect, no stress
needed. This is the specific bug the patch fixes.
2. Calibration times are I/O bound (USB H2C/C2H round-trip
latency), not CPU or memory bound. DACK stays at 71ms across
all four scenarios. Host-side stress has essentially zero
effect on observed calibration duration. Bumping the
multiplier above 4x would not address a failure mode that
this stress matrix produces.
Signed-off-by: Louis Kotze <loukot@gmail.com>
---
Changes since v1:
- Fix comment style per Ping-Ke Shih review (first line '/*' on its
own line, kernel-standard format).
- Add stress-test verification table to the commit message. The 4x
multiplier was re-measured on 5GHz under CPU stress, memory stress,
and combined stress using stress-ng. DACK max is 71ms in all four
scenarios, confirming calibration times are I/O bound (USB H2C/C2H
round-trip) and not affected by host-side load.
- Drop v1 patch 2/2 ("make RF calibration timeouts non-fatal on USB").
As Ping-Ke noted, the return code from rtw89_phy_rfk_*_and_wait() is
discarded by all 8922a callers, making the non-fatal change a no-op
for 8922a. Worse, the one 8922d caller that does check the return
(rtw8922d_rfk_tssi) uses it to fall back to non-TSSI mode on
calibration failure — patch 2/2 would have silently broken that
fallback. With patch 1/2's multiplier alone, 25 connect/disconnect
cycles complete with zero failures, and the new stress matrix above
confirms the margin.
drivers/net/wireless/realtek/rtw89/phy.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/phy.c b/drivers/net/wireless/realtek/rtw89/phy.c
index e70d0e283..1f249c297 100644
--- a/drivers/net/wireless/realtek/rtw89/phy.c
+++ b/drivers/net/wireless/realtek/rtw89/phy.c
@@ -3956,6 +3956,14 @@ int rtw89_phy_rfk_report_wait(struct rtw89_dev *rtwdev, const char *rfk_name,
struct rtw89_rfk_wait_info *wait = &rtwdev->rfk_wait;
unsigned long time_left;
+ /*
+ * USB transport adds latency to H2C/C2H round-trips, so RF
+ * calibrations take longer than on PCIe. Apply a 4x multiplier
+ * to avoid spurious timeouts.
+ */
+ if (rtwdev->hci.type == RTW89_HCI_TYPE_USB)
+ ms *= 4;
+
/* Since we can't receive C2H event during SER, use a fixed delay. */
if (test_bit(RTW89_FLAG_SER_HANDLING, rtwdev->flags)) {
fsleep(1000 * ms / 2);
--
2.53.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* RE: [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-15 11:13 ` [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport Louis Kotze
@ 2026-04-16 1:15 ` Ping-Ke Shih
2026-04-16 4:56 ` Louis Kotze
0 siblings, 1 reply; 10+ messages in thread
From: Ping-Ke Shih @ 2026-04-16 1:15 UTC (permalink / raw)
To: Louis Kotze
Cc: linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org,
rtl8821cerfe2@gmail.com
Louis Kotze <loukot@gmail.com> wrote:
> USB transport adds significant latency to H2C/C2H round-trips used
> by RF calibration. The existing timeout values were designed for PCIe
> and are too tight for USB, causing "failed to wait RF DACK",
> "failed to wait RF TSSI" and similar errors on USB adapters.
>
> Apply a 4x timeout multiplier when the device uses USB transport.
> The multiplier is applied in rtw89_phy_rfk_report_wait() so all
> calibrations benefit without changing any call sites or PCIe
> timeout values.
>
> The 4x multiplier was chosen based on measured data from two
> independent testers (RTL8922AU, 6GHz MLO and 2.4/5GHz):
>
> Calibration PCIe timeout Max measured (USB) 4x timeout
> PRE_NTFY 5ms 1ms 20ms
> DACK 58ms 72ms 232ms
> RX_DCK 128ms 374ms 512ms
> TSSI normal 20ms 24ms 80ms
> TSSI scan 6ms 14ms 24ms
> TXGAPK 54ms 18ms 216ms
> IQK 84ms 53ms 336ms
> DPK 34ms 30ms 136ms
>
> Tested with RTL8922AU on 6GHz MLO (5GHz + 6GHz simultaneous):
> 25 connect/disconnect cycles with zero failures.
>
> In response to review feedback on v1,
Can we remove this phrase? No need to mention v1 in commit message.
> the 4x multiplier was also
> re-verified under adverse host conditions on 5GHz. 5 cycles per
> scenario, stress-ng as the load generator, max observed time per
> calibration:
>
> Calibration PCIe 4x Baseline CPU stress Mem stress Combined
> PRE_NTFY 5 20 0 0 0 1
> DACK 58 232 71 (!) 71 (!) 71 (!) 71 (!)
> RX_DCK 128 512 23 22 22 23
> IQK 84 336 53 53 53 53
> DPK 34 136 23 23 26 23
> TSSI 20 80 6 9 14 9
> TXGAPK 54 216 16 16 16 16
>
> Legend: (!) = exceeds PCIe budget but within 4x budget.
>
> Two observations from that matrix:
>
> 1. DACK exceeds the stock PCIe budget (58ms) in baseline on 5GHz
> on this hardware. Without the 4x multiplier, DACK fails
> -ETIMEDOUT deterministically on every connect, no stress
> needed. This is the specific bug the patch fixes.
I'm not sure this should be called "bug", as Bitterblue has not adjusted
these timeout time by earlier version.
>
> 2. Calibration times are I/O bound (USB H2C/C2H round-trip
> latency),
I'm also not sure if this is correct. The calibration time of DACK might
rely on WiFi hardware and external components, not only I/O speed.
> not CPU or memory bound. DACK stays at 71ms across
> all four scenarios. Host-side stress has essentially zero
> effect on observed calibration duration. Bumping the
> multiplier above 4x would not address a failure mode that
> this stress matrix produces.
>
> Signed-off-by: Louis Kotze <loukot@gmail.com>
Otherwise, patch content looks good to me.
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2] wifi: rtw89: phy: increase RF calibration timeouts for USB transport
2026-04-16 1:15 ` Ping-Ke Shih
@ 2026-04-16 4:56 ` Louis Kotze
0 siblings, 0 replies; 10+ messages in thread
From: Louis Kotze @ 2026-04-16 4:56 UTC (permalink / raw)
To: pkshih; +Cc: linux-wireless, linux-kernel, rtl8821cerfe2, lucid_duck,
Louis Kotze
> Can we remove this phrase? No need to mention v1 in commit message.
Done -- reworded to stand alone without referencing prior versions.
> I'm not sure this should be called "bug", as Bitterblue has not
> adjusted these timeout time by earlier version.
Fair point -- the timeouts were correct for PCIe; USB was not in
scope yet. Changed to "condition" instead of "bug".
> I'm also not sure if this is correct. The calibration time of DACK
> might rely on WiFi hardware and external components, not only I/O
> speed.
You're right, I overclaimed. Reworded to note that transport
round-trip latency appears to dominate under these test conditions,
but hardware and external component factors may also contribute.
All three changes applied in v3. Also added Tested-by tags from
Devin Wittmayer across RTL8922AU/8852AU/8852BU/8852CU (Framework 13
and Raspberry Pi 5), and Reported-by with a link to his xHCI hard
lockup evidence.
Thank you for the review.
^ permalink raw reply [flat|nested] 10+ messages in thread