]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: rtw89: adjust thermal protection step and more RTL8852BE-VT ID
authorChih-Kang Chang <gary.chang@realtek.com>
Thu, 19 Dec 2024 01:45:11 +0000 (09:45 +0800)
committerPing-Ke Shih <pkshih@realtek.com>
Mon, 30 Dec 2024 01:14:15 +0000 (09:14 +0800)
To have better tuning of TX duty for fields usage, adjust thermal
protection step to 5, then TX duty reduce to 75% at most. Add RTL8852BE-VT
ID to enable this function by the way.

Signed-off-by: Chih-Kang Chang <gary.chang@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20241219014511.9056-1-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/core.h
drivers/net/wireless/realtek/rtw89/rtw8852bte.c

index 155538370a898bc252945aae11a7bed729aae63b..37722a0b6a8bf553e91c2b3429c552249568d452 100644 (file)
@@ -4728,7 +4728,7 @@ enum rtw89_dm_type {
 };
 
 #define RTW89_THERMAL_PROT_LV_MAX 5
-#define RTW89_THERMAL_PROT_STEP 19 /* -19% for each level */
+#define RTW89_THERMAL_PROT_STEP 5 /* -5% for each level */
 
 struct rtw89_hal {
        u32 rx_fltr;
index e4f40c2e287ded98481af1a3e8dd847df0ed8475..d1eebecfcd732d3bf0fa03b4c4318d95fc174b5b 100644 (file)
@@ -9,6 +9,12 @@
 #include "reg.h"
 #include "rtw8852bt.h"
 
+static const struct rtw89_pci_ssid_quirk rtw8852bt_pci_ssid_quirks[] = {
+       {RTW89_PCI_SSID(PCI_VENDOR_ID_REALTEK, 0xB520, 0x103C, 0x88E9, HP),
+        .bitmap = BIT(RTW89_QUIRK_THERMAL_PROT_110C)},
+       {},
+};
+
 static const struct rtw89_pci_info rtw8852bt_pci_info = {
        .gen_def                = &rtw89_pci_gen_ax,
        .txbd_trunc_mode        = MAC_AX_BD_TRUNC,
@@ -61,7 +67,7 @@ static const struct rtw89_pci_info rtw8852bt_pci_info = {
        .disable_intr           = rtw89_pci_disable_intr,
        .recognize_intrs        = rtw89_pci_recognize_intrs,
 
-       .ssid_quirks            = NULL,
+       .ssid_quirks            = rtw8852bt_pci_ssid_quirks,
 };
 
 static const struct rtw89_driver_info rtw89_8852bte_info = {