From: Ping-Ke Shih <pkshih@realtek.com>
To: <linux-wireless@vger.kernel.org>
Cc: <gary.chang@realtek.com>, <echuang@realtek.com>
Subject: [PATCH rtw-next 00/15] wifi: rtw89: add voltage thermal protect and some random patches for RTL8922D
Date: Tue, 7 Jul 2026 17:10:41 +0800 [thread overview]
Message-ID: <20260707091056.42771-1-pkshih@realtek.com> (raw)
First 5 patches and patch 11 and 13 are related to PHY settings to
improve PHY performance.
Patches 6-9 are main change to support voltage thermal protection, which
adjusts voltage according to thermal value to reduce power consumption.
Patch 10 is to adjust hardware clock for ANA circuit.
Patch 12 is a improvement of RTL8852A.
Since we have prepared firmware containing BB/RF parameters and etc, notify
users that we are going to remove built-in tables of BB/RF parameters from
driver. Patches 14-15 are to add transition state to notify users to update
their old firmware. Currently users can still use old firmware, and we plan
to remove built-in tables years later.
Chih-Kang Chang (1):
wifi: rtw89: 8852a: fix RSSI report when average beacon RSSI is not
ready
Eric Huang (4):
wifi: rtw89: 8922d: remove CCK bandwidth compensation
wifi: rtw89: 8922d: dynamic adjust channel smoothing
wifi: rtw89: 8922d: fix EMLSR BB switch sequence for MLO mode
transition
wifi: rtw89: phy: fix bandedge primary channel for 2.4GHz 40MHz and
6GHz
Ping-Ke Shih (10):
wifi: rtw89: 8922d: set TX compensation by format v2
wifi: rtw89: efuse: no need to export rtw89_efuse_read_ecv_be()
wifi: rtw89: efuse: read thermal calibration value for RTL8922D
wifi: rtw89: 8922d: read default digital voltage calibration values
wifi: rtw89: add thermal protect by digital voltage reduction
wifi: rtw89: 8922d: set ANA CLK enter to 500KHz
wifi: rtw89: 8922d: update scaling factor for RX path
wifi: rtw89: phy: add NCTL check for WiFi 7 chips
wifi: rtw89: unify access struct of TX power track tables
wifi: rtw89: set needed firmware elements for early chips transition
drivers/net/wireless/realtek/rtw89/core.c | 17 ++
drivers/net/wireless/realtek/rtw89/core.h | 34 +++
drivers/net/wireless/realtek/rtw89/debug.c | 1 +
drivers/net/wireless/realtek/rtw89/efuse.h | 7 +
drivers/net/wireless/realtek/rtw89/efuse_be.c | 117 ++++++++++-
drivers/net/wireless/realtek/rtw89/fw.c | 10 +
drivers/net/wireless/realtek/rtw89/fw.h | 27 ++-
drivers/net/wireless/realtek/rtw89/mac.c | 7 +
drivers/net/wireless/realtek/rtw89/mac.h | 47 +++++
drivers/net/wireless/realtek/rtw89/mac_be.c | 40 ++++
drivers/net/wireless/realtek/rtw89/phy.c | 33 +++
drivers/net/wireless/realtek/rtw89/phy.h | 25 +--
drivers/net/wireless/realtek/rtw89/phy_be.c | 45 +++-
drivers/net/wireless/realtek/rtw89/reg.h | 53 +++++
drivers/net/wireless/realtek/rtw89/rtw8851b.c | 4 +-
.../net/wireless/realtek/rtw89/rtw8851b_rfk.c | 20 +-
.../wireless/realtek/rtw89/rtw8851b_table.c | 15 +-
.../wireless/realtek/rtw89/rtw8851b_table.h | 2 +-
drivers/net/wireless/realtek/rtw89/rtw8852a.c | 6 +-
.../net/wireless/realtek/rtw89/rtw8852a_rfk.c | 36 ++--
.../wireless/realtek/rtw89/rtw8852a_table.c | 27 +--
.../wireless/realtek/rtw89/rtw8852a_table.h | 2 +-
drivers/net/wireless/realtek/rtw89/rtw8852b.c | 4 +-
.../net/wireless/realtek/rtw89/rtw8852b_rfk.c | 36 ++--
.../wireless/realtek/rtw89/rtw8852b_table.c | 27 +--
.../wireless/realtek/rtw89/rtw8852b_table.h | 2 +-
.../net/wireless/realtek/rtw89/rtw8852bt.c | 1 +
drivers/net/wireless/realtek/rtw89/rtw8852c.c | 4 +-
.../net/wireless/realtek/rtw89/rtw8852c_rfk.c | 101 ++++-----
.../wireless/realtek/rtw89/rtw8852c_table.c | 35 ++--
.../wireless/realtek/rtw89/rtw8852c_table.h | 2 +-
drivers/net/wireless/realtek/rtw89/rtw8922a.c | 1 +
drivers/net/wireless/realtek/rtw89/rtw8922d.c | 196 ++++++++++++++----
33 files changed, 750 insertions(+), 234 deletions(-)
base-commit: 2b7858891b100587c10c136cf07205335a897be0
--
2.25.1
next reply other threads:[~2026-07-07 9:11 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-07 9:10 Ping-Ke Shih [this message]
2026-07-07 9:10 ` [PATCH rtw-next 01/15] wifi: rtw89: 8922d: remove CCK bandwidth compensation Ping-Ke Shih
2026-07-12 1:55 ` Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 02/15] wifi: rtw89: 8922d: dynamic adjust channel smoothing Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 03/15] wifi: rtw89: 8922d: fix EMLSR BB switch sequence for MLO mode transition Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 04/15] wifi: rtw89: phy: fix bandedge primary channel for 2.4GHz 40MHz and 6GHz Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 05/15] wifi: rtw89: 8922d: set TX compensation by format v2 Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 06/15] wifi: rtw89: efuse: no need to export rtw89_efuse_read_ecv_be() Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 07/15] wifi: rtw89: efuse: read thermal calibration value for RTL8922D Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 08/15] wifi: rtw89: 8922d: read default digital voltage calibration values Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 09/15] wifi: rtw89: add thermal protect by digital voltage reduction Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 10/15] wifi: rtw89: 8922d: set ANA CLK enter to 500KHz Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 11/15] wifi: rtw89: 8922d: update scaling factor for RX path Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 12/15] wifi: rtw89: 8852a: fix RSSI report when average beacon RSSI is not ready Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 13/15] wifi: rtw89: phy: add NCTL check for WiFi 7 chips Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 14/15] wifi: rtw89: unify access struct of TX power track tables Ping-Ke Shih
2026-07-07 9:10 ` [PATCH rtw-next 15/15] wifi: rtw89: set needed firmware elements for early chips transition 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=20260707091056.42771-1-pkshih@realtek.com \
--to=pkshih@realtek.com \
--cc=echuang@realtek.com \
--cc=gary.chang@realtek.com \
--cc=linux-wireless@vger.kernel.org \
/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