Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH rtw-next 00/15] wifi: rtw89: correct MLO behavior, fix Coverity issues, and update hardware settings
@ 2026-09-09  6:59 Ping-Ke Shih
  2026-09-09  6:59 ` [PATCH rtw-next 01/15] wifi: rtw89: consider sta maximum AMSDU subframes number to decide TX work waiting Ping-Ke Shih
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Ping-Ke Shih @ 2026-09-09  6:59 UTC (permalink / raw)
  To: linux-wireless; +Cc: dian_syuan0116, echuang, phhuang, kevin_yang

The first patch is to consider AMSDU off as a factor to lower latency.

Patches 2/15 - 4/15 are to correct MLO behavior.

Patches 5/15 - 8/15 are to fix Coverity issues.

Others are to update firmware format and hardware settings according to
firmware development and update from internal driver.

Dian-Syuan Yang (1):
  wifi: rtw89: 8922d: update BA cam format to G7

Eric Huang (2):
  wifi: rtw89: 8922d: add extra data to PS H2C
  wifi: rtw89: phy: correct PHY-1 EDCCA report register access

Ping-Ke Shih (5):
  wifi: rtw89: consider sta maximum AMSDU subframes number to decide TX
    work waiting
  wifi: rtw89: mac: change beamformee CSI direct forward to CMAC_TXDMA
  wifi: rtw89: fw: extend ch_info format of hw_scan to v2
  wifi: rtw89: 8851b: rfk: set DCK start and delay time
  wifi: rtw89: 8852b: update default value for ANA SWR

Po-Hao Huang (3):
  wifi: rtw89: mlo: update link id to FW upon connection
  Revert "wifi: rtw89: fix unable to receive probe responses under MLO
    connection"
  wifi: rtw89: modify active scan rule for 6GHz band

Zong-Zhe Yang (4):
  wifi: rtw89: fix ctrl_sco_cck for Wi-Fi 7
  wifi: rtw89: 8852a: prevent potential OOB in ctrl_sco_cck
  wifi: rtw89: fw: cmd_ofld_flush always reset counter
  wifi: rtw89: explicitly declare TX queue flags by DECLARE_BITMAP()

 drivers/net/wireless/realtek/rtw89/core.c     |  36 ++--
 drivers/net/wireless/realtek/rtw89/core.h     |   8 +-
 drivers/net/wireless/realtek/rtw89/fw.c       | 173 ++++++++++++++++--
 drivers/net/wireless/realtek/rtw89/fw.h       |  49 ++++-
 drivers/net/wireless/realtek/rtw89/mac.c      |   3 +-
 drivers/net/wireless/realtek/rtw89/mac80211.c |   4 +-
 drivers/net/wireless/realtek/rtw89/mac_be.c   |   3 +
 drivers/net/wireless/realtek/rtw89/phy.c      |  25 ++-
 drivers/net/wireless/realtek/rtw89/reg.h      |  22 ++-
 .../realtek/rtw89/rtw8851b_rfk_table.c        |   3 +-
 drivers/net/wireless/realtek/rtw89/rtw8852a.c |   8 +
 drivers/net/wireless/realtek/rtw89/rtw8852b.c |   5 +-
 drivers/net/wireless/realtek/rtw89/rtw8922a.c |   2 +-
 drivers/net/wireless/realtek/rtw89/rtw8922d.c |   8 +-
 14 files changed, 284 insertions(+), 65 deletions(-)


base-commit: f71dd599a98182d6bc34dce39977f928068ecd64
-- 
2.25.1


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2026-09-09  7:02 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-09  6:59 [PATCH rtw-next 00/15] wifi: rtw89: correct MLO behavior, fix Coverity issues, and update hardware settings Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 01/15] wifi: rtw89: consider sta maximum AMSDU subframes number to decide TX work waiting Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 02/15] wifi: rtw89: mlo: update link id to FW upon connection Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 03/15] Revert "wifi: rtw89: fix unable to receive probe responses under MLO connection" Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 04/15] wifi: rtw89: modify active scan rule for 6GHz band Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 05/15] wifi: rtw89: fix ctrl_sco_cck for Wi-Fi 7 Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 06/15] wifi: rtw89: 8852a: prevent potential OOB in ctrl_sco_cck Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 07/15] wifi: rtw89: fw: cmd_ofld_flush always reset counter Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 08/15] wifi: rtw89: explicitly declare TX queue flags by DECLARE_BITMAP() Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 09/15] wifi: rtw89: 8922d: add extra data to PS H2C Ping-Ke Shih
2026-09-09  6:59 ` [PATCH rtw-next 10/15] wifi: rtw89: mac: change beamformee CSI direct forward to CMAC_TXDMA Ping-Ke Shih
2026-09-09  7:00 ` [PATCH rtw-next 11/15] wifi: rtw89: fw: extend ch_info format of hw_scan to v2 Ping-Ke Shih
2026-09-09  7:00 ` [PATCH rtw-next 12/15] wifi: rtw89: 8922d: update BA cam format to G7 Ping-Ke Shih
2026-09-09  7:00 ` [PATCH rtw-next 13/15] wifi: rtw89: 8851b: rfk: set DCK start and delay time Ping-Ke Shih
2026-09-09  7:00 ` [PATCH rtw-next 14/15] wifi: rtw89: 8852b: update default value for ANA SWR Ping-Ke Shih
2026-09-09  7:00 ` [PATCH rtw-next 15/15] wifi: rtw89: phy: correct PHY-1 EDCCA report register access Ping-Ke Shih

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox