All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH rtw-next 00/13] wifi: rtw89: update SER, PCI, WoW and quota settings
@ 2026-05-15  1:44 Ping-Ke Shih
  2026-05-15  1:44 ` [PATCH rtw-next 01/13] wifi: rtw89: debug: Wi-Fi 7 show count of SER L0 simulation Ping-Ke Shih
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Ping-Ke Shih @ 2026-05-15  1:44 UTC (permalink / raw)
  To: linux-wireless; +Cc: timlee, dian_syuan0116, phhuang, kevin_yang

Update many stuffs according to internal updates.

Patches 1-3 are related to SER, which is to simulate SER trigger and dump
more related registers for debugging.

Patches 4-6 are PCIE PHY settings.

Patch 7 is to clear (reset) calibration value of delay function.

Patch 8 is to keep connection alive in WoWLAN mode.

Patch 9 is used to correct logic to handle malformed AMPDU packets.

Patches 10-13 are to extend quota definition for RTL8922D, because there
are many variants with different quota values.

Chin-Yen Lee (1):
  wifi: rtw89: wow: send ARP reply packets instead of Null packets to
    keep alive

Dian-Syuan Yang (1):
  wifi: rtw89: pci: enable LTR based on pcie control register

Ping-Ke Shih (7):
  wifi: rtw89: pci: not disable PCI completion timeout control for a
    variant of RTL8922DE
  wifi: rtw89: pci: disable PCI PHY error flag 8
  wifi: rtw89: clear auto K delay value before downloading firmware
  wifi: rtw89: 8922d: change naming number and update values for WDE/PLE
    quota
  wifi: rtw89: mac: add field of release report size to DLE quota
  wifi: rtw89: mac: consolidate quota into a struct for variant chips
  wifi: rtw89: 8922d: add quota for RTL8922DE variant

Po-Hao Huang (1):
  wifi: rtw89: correct drop logic for malformed AMPDU frames

Zong-Zhe Yang (3):
  wifi: rtw89: debug: Wi-Fi 7 show count of SER L0 simulation
  wifi: rtw89: debug: Wi-Fi 7 update simulation of SER L0/L1 by halt H2C
    command
  wifi: rtw89: fw: dump status of H2C command and C2H event for SER

 drivers/net/wireless/realtek/rtw89/core.c     |   3 +-
 drivers/net/wireless/realtek/rtw89/core.h     |  21 +++-
 drivers/net/wireless/realtek/rtw89/debug.c    | 107 ++++++++----------
 drivers/net/wireless/realtek/rtw89/fw.c       |  12 +-
 drivers/net/wireless/realtek/rtw89/mac.c      |  26 ++++-
 drivers/net/wireless/realtek/rtw89/mac.h      |  27 ++++-
 drivers/net/wireless/realtek/rtw89/mac80211.c |   3 +-
 drivers/net/wireless/realtek/rtw89/mac_be.c   |   7 ++
 drivers/net/wireless/realtek/rtw89/pci.c      |  30 ++++-
 drivers/net/wireless/realtek/rtw89/pci.h      |   4 +-
 drivers/net/wireless/realtek/rtw89/pci_be.c   |   3 +
 drivers/net/wireless/realtek/rtw89/reg.h      |   4 +
 drivers/net/wireless/realtek/rtw89/rtw8851b.c |   6 +-
 drivers/net/wireless/realtek/rtw89/rtw8852a.c |   6 +-
 drivers/net/wireless/realtek/rtw89/rtw8852b.c |   6 +-
 .../net/wireless/realtek/rtw89/rtw8852bt.c    |   6 +-
 drivers/net/wireless/realtek/rtw89/rtw8852c.c |   6 +-
 drivers/net/wireless/realtek/rtw89/rtw8922a.c |   7 +-
 drivers/net/wireless/realtek/rtw89/rtw8922d.c |  96 +++++++++++++---
 19 files changed, 275 insertions(+), 105 deletions(-)


base-commit: 4c13e00cc6798f8e63354982ec172b7829ae825a
-- 
2.25.1


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

end of thread, other threads:[~2026-05-15  1:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-15  1:44 [PATCH rtw-next 00/13] wifi: rtw89: update SER, PCI, WoW and quota settings Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 01/13] wifi: rtw89: debug: Wi-Fi 7 show count of SER L0 simulation Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 02/13] wifi: rtw89: debug: Wi-Fi 7 update simulation of SER L0/L1 by halt H2C command Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 03/13] wifi: rtw89: fw: dump status of H2C command and C2H event for SER Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 04/13] wifi: rtw89: pci: enable LTR based on pcie control register Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 05/13] wifi: rtw89: pci: not disable PCI completion timeout control for a variant of RTL8922DE Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 06/13] wifi: rtw89: pci: disable PCI PHY error flag 8 Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 07/13] wifi: rtw89: clear auto K delay value before downloading firmware Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 08/13] wifi: rtw89: wow: send ARP reply packets instead of Null packets to keep alive Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 09/13] wifi: rtw89: correct drop logic for malformed AMPDU frames Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 10/13] wifi: rtw89: 8922d: change naming number and update values for WDE/PLE quota Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 11/13] wifi: rtw89: mac: add field of release report size to DLE quota Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 12/13] wifi: rtw89: mac: consolidate quota into a struct for variant chips Ping-Ke Shih
2026-05-15  1:44 ` [PATCH rtw-next 13/13] wifi: rtw89: 8922d: add quota for RTL8922DE variant Ping-Ke Shih

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.