linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ping-Ke Shih <pkshih@realtek.com>
To: <linux-wireless@vger.kernel.org>
Cc: <gary.chang@realtek.com>, <timlee@realtek.com>,
	<dian_syuan0116@realtek.com>, <damon.chen@realtek.com>,
	<kevin_yang@realtek.com>
Subject: [PATCH rtw-next v2 00/12] wifi: rtw89: more preparations for 8922D and refine of MCC
Date: Mon, 29 Dec 2025 11:09:14 +0800	[thread overview]
Message-ID: <20251229030926.27004-1-pkshih@realtek.com> (raw)

The first eight patches are preparations to abstract common flow for
8922D, including WoWLAN, TX/RX aggregation capabilities, hardware chip ID,
and default quirks.

Patches 8 and 9 are to refine MCC that two channels are operating
simultaneously.

Patch 10 is to correct 6GHz power type; patch 11 is better beacon loss
handling.

v2:
 - patch 7/12: add enum reference of AID and CID to comment

Chih-Kang Chang (2):
  wifi: rtw89: refine TX nulldata judgement when scan with 2 OP channels
  wifi: rtw89: 8922a: configure FW version for SCAN_OFFLOAD_EXTRA_OP
    feature

Chin-Yen Lee (3):
  wifi: rtw89: wow: use struct style to fill WOW CAM H2C command
  wifi: rtw89: wow: add WOW_CAM update function for 8922D
  wifi: rtw89: wow: abstract DMA check register for RTL8922DE

Dian-Syuan Yang (1):
  wifi: rtw89: enhance connection stability when triggering beacon loss

Kuan-Chung Chen (1):
  wifi: rtw89: define TX/RX aggregation and MPDU capability per chip

Ping-Ke Shih (4):
  wifi: rtw89: wow: change type of WoWLAN pattern mask to __le32
  wifi: rtw89: efuse: read hardware version from efuse for WiFi 7 chips
  wifi: rtw89: read chip ID for RTL8922D variants
  wifi: rtw89: add default quirks as features to chip_info

Zong-Zhe Yang (1):
  wifi: rtw89: regd: 6 GHz power type marks default when inactive

 drivers/net/wireless/realtek/rtw89/core.c     |  40 ++++-
 drivers/net/wireless/realtek/rtw89/core.h     |  26 ++-
 drivers/net/wireless/realtek/rtw89/efuse.c    |   4 -
 drivers/net/wireless/realtek/rtw89/efuse.h    |   6 +
 drivers/net/wireless/realtek/rtw89/efuse_be.c |  26 +++
 drivers/net/wireless/realtek/rtw89/fw.c       | 166 +++++++++++++-----
 drivers/net/wireless/realtek/rtw89/fw.h       | 126 +++++++------
 drivers/net/wireless/realtek/rtw89/mac.c      |  11 +-
 drivers/net/wireless/realtek/rtw89/mac.h      |  13 ++
 drivers/net/wireless/realtek/rtw89/mac_be.c   |   1 +
 drivers/net/wireless/realtek/rtw89/pci_be.c   |   7 +-
 drivers/net/wireless/realtek/rtw89/reg.h      |   7 +
 drivers/net/wireless/realtek/rtw89/regd.c     |   1 +
 drivers/net/wireless/realtek/rtw89/rtw8851b.c |   8 +-
 drivers/net/wireless/realtek/rtw89/rtw8852a.c |   8 +-
 drivers/net/wireless/realtek/rtw89/rtw8852b.c |   6 +
 .../wireless/realtek/rtw89/rtw8852b_common.c  |   2 -
 .../net/wireless/realtek/rtw89/rtw8852bt.c    |   6 +
 drivers/net/wireless/realtek/rtw89/rtw8852c.c |   8 +-
 drivers/net/wireless/realtek/rtw89/rtw8922a.c |   8 +-
 drivers/net/wireless/realtek/rtw89/wow.c      |   4 +-
 21 files changed, 342 insertions(+), 142 deletions(-)

-- 
2.25.1


             reply	other threads:[~2025-12-29  3:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-29  3:09 Ping-Ke Shih [this message]
2025-12-29  3:09 ` [PATCH rtw-next v2 01/12] wifi: rtw89: wow: use struct style to fill WOW CAM H2C command Ping-Ke Shih
2025-12-31  8:33   ` Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 02/12] wifi: rtw89: wow: change type of WoWLAN pattern mask to __le32 Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 03/12] wifi: rtw89: wow: add WOW_CAM update function for 8922D Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 04/12] wifi: rtw89: wow: abstract DMA check register for RTL8922DE Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 05/12] wifi: rtw89: define TX/RX aggregation and MPDU capability per chip Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 06/12] wifi: rtw89: efuse: read hardware version from efuse for WiFi 7 chips Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 07/12] wifi: rtw89: read chip ID for RTL8922D variants Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 08/12] wifi: rtw89: add default quirks as features to chip_info Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 09/12] wifi: rtw89: refine TX nulldata judgement when scan with 2 OP channels Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 10/12] wifi: rtw89: 8922a: configure FW version for SCAN_OFFLOAD_EXTRA_OP feature Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 11/12] wifi: rtw89: regd: 6 GHz power type marks default when inactive Ping-Ke Shih
2025-12-29  3:09 ` [PATCH rtw-next v2 12/12] wifi: rtw89: enhance connection stability when triggering beacon loss Ping-Ke Shih

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251229030926.27004-1-pkshih@realtek.com \
    --to=pkshih@realtek.com \
    --cc=damon.chen@realtek.com \
    --cc=dian_syuan0116@realtek.com \
    --cc=gary.chang@realtek.com \
    --cc=kevin_yang@realtek.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=timlee@realtek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).