mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-05 18:49:30 +00:00
3bd2962c3d
- drop patches accepted upstream - include build fixes in the tarball - based on https://github.com/nbd168/backports commit 410656ef04d2 Signed-off-by: Felix Fietkau <nbd@nbd.name> (cherry picked from commit a85059438f2caed0d01a87fce9b8bd5bed134bb2)
70 lines
2.2 KiB
Diff
70 lines
2.2 KiB
Diff
From 213dfa630285bb0241f3eaeb778db8ff128f10ba Mon Sep 17 00:00:00 2001
|
|
From: Bitterblue Smith <rtl8821cerfe2@gmail.com>
|
|
Date: Fri, 8 Nov 2024 01:41:08 +0200
|
|
Subject: [PATCH 3/6] wifi: rtw88: usb: Support USB 3 with RTL8812AU
|
|
|
|
Add the function to automatically switch the RTL8812AU into USB 3 mode.
|
|
|
|
Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
|
|
---
|
|
drivers/net/wireless/realtek/rtw88/usb.c | 34 ++++++++++++++++++++++--
|
|
1 file changed, 32 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/realtek/rtw88/usb.c
|
|
+++ b/drivers/net/wireless/realtek/rtw88/usb.c
|
|
@@ -930,6 +930,32 @@ static void rtw_usb_intf_deinit(struct r
|
|
usb_set_intfdata(intf, NULL);
|
|
}
|
|
|
|
+static int rtw_usb_switch_mode_old(struct rtw_dev *rtwdev)
|
|
+{
|
|
+ struct rtw_usb *rtwusb = rtw_get_usb_priv(rtwdev);
|
|
+ enum usb_device_speed cur_speed = rtwusb->udev->speed;
|
|
+ u8 hci_opt;
|
|
+
|
|
+ if (cur_speed == USB_SPEED_HIGH) {
|
|
+ hci_opt = rtw_read8(rtwdev, REG_HCI_OPT_CTRL);
|
|
+
|
|
+ if ((hci_opt & (BIT(2) | BIT(3))) != BIT(3)) {
|
|
+ rtw_write8(rtwdev, REG_HCI_OPT_CTRL, 0x8);
|
|
+ rtw_write8(rtwdev, REG_SYS_SDIO_CTRL, 0x2);
|
|
+ rtw_write8(rtwdev, REG_ACLK_MON, 0x1);
|
|
+ rtw_write8(rtwdev, 0x3d, 0x3);
|
|
+ /* usb disconnect */
|
|
+ rtw_write8(rtwdev, REG_SYS_PW_CTRL + 1, 0x80);
|
|
+ return 1;
|
|
+ }
|
|
+ } else if (cur_speed == USB_SPEED_SUPER) {
|
|
+ rtw_write8_clr(rtwdev, REG_SYS_SDIO_CTRL, BIT(1));
|
|
+ rtw_write8_clr(rtwdev, REG_ACLK_MON, BIT(0));
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
static int rtw_usb_switch_mode_new(struct rtw_dev *rtwdev)
|
|
{
|
|
enum usb_device_speed cur_speed;
|
|
@@ -983,7 +1009,8 @@ static int rtw_usb_switch_mode(struct rt
|
|
{
|
|
u8 id = rtwdev->chip->id;
|
|
|
|
- if (id != RTW_CHIP_TYPE_8822C && id != RTW_CHIP_TYPE_8822B)
|
|
+ if (id != RTW_CHIP_TYPE_8822C && id != RTW_CHIP_TYPE_8822B &&
|
|
+ id != RTW_CHIP_TYPE_8812A)
|
|
return 0;
|
|
|
|
if (!rtwdev->efuse.usb_mode_switch) {
|
|
@@ -998,7 +1025,10 @@ static int rtw_usb_switch_mode(struct rt
|
|
return 0;
|
|
}
|
|
|
|
- return rtw_usb_switch_mode_new(rtwdev);
|
|
+ if (id == RTW_CHIP_TYPE_8812A)
|
|
+ return rtw_usb_switch_mode_old(rtwdev);
|
|
+ else /* RTL8822CU, RTL8822BU */
|
|
+ return rtw_usb_switch_mode_new(rtwdev);
|
|
}
|
|
|
|
int rtw_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
|