Backport support for RTL8812AU/RTL8821AU USB adapters
Manually backported patch:
045-v6.13-wifi-rtw88-Enable-the-new-RTL8821AU-RTL8812AU-driver
Patches from 046 to 051 are pending.
Signed-off-by: Marty Jones <mj8263788@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17079
[Move BPAUTO_WANT_DEV_COREDUMP to original patch]
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 36f6d6ddcd)
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 8f82bb2cfaf7b8992e0e8493cb765138254f87c9 Mon Sep 17 00:00:00 2001
 | 
						|
From: Bitterblue Smith <rtl8821cerfe2@gmail.com>
 | 
						|
Date: Wed, 30 Oct 2024 20:29:28 +0200
 | 
						|
Subject: [PATCH] wifi: rtw88: Add rtw8821au.c and rtw8812au.c
 | 
						|
 | 
						|
These are the entry points for the new modules rtw88_8821au
 | 
						|
(RTL8821AU/RTL8811AU) and rtw88_8812au (RTL8812AU).
 | 
						|
 | 
						|
Signed-off-by: Bitterblue Smith <rtl8821cerfe2@gmail.com>
 | 
						|
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
 | 
						|
Link: https://patch.msgid.link/91c495f8-a607-429b-8bc0-5a45d3c1393e@gmail.com
 | 
						|
---
 | 
						|
 .../net/wireless/realtek/rtw88/rtw8812au.c    | 28 +++++++++++++++++++
 | 
						|
 .../net/wireless/realtek/rtw88/rtw8821au.c    | 28 +++++++++++++++++++
 | 
						|
 2 files changed, 56 insertions(+)
 | 
						|
 create mode 100644 drivers/net/wireless/realtek/rtw88/rtw8812au.c
 | 
						|
 create mode 100644 drivers/net/wireless/realtek/rtw88/rtw8821au.c
 | 
						|
 | 
						|
--- /dev/null
 | 
						|
+++ b/drivers/net/wireless/realtek/rtw88/rtw8812au.c
 | 
						|
@@ -0,0 +1,28 @@
 | 
						|
+// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
 | 
						|
+/* Copyright(c) 2024  Realtek Corporation
 | 
						|
+ */
 | 
						|
+
 | 
						|
+#include <linux/module.h>
 | 
						|
+#include <linux/usb.h>
 | 
						|
+#include "main.h"
 | 
						|
+#include "rtw8812a.h"
 | 
						|
+#include "usb.h"
 | 
						|
+
 | 
						|
+static const struct usb_device_id rtw_8812au_id_table[] = {
 | 
						|
+	{ USB_DEVICE_AND_INTERFACE_INFO(0x2604, 0x0012, 0xff, 0xff, 0xff),
 | 
						|
+	  .driver_info = (kernel_ulong_t)&(rtw8812a_hw_spec) },
 | 
						|
+	{},
 | 
						|
+};
 | 
						|
+MODULE_DEVICE_TABLE(usb, rtw_8812au_id_table);
 | 
						|
+
 | 
						|
+static struct usb_driver rtw_8812au_driver = {
 | 
						|
+	.name = "rtw_8812au",
 | 
						|
+	.id_table = rtw_8812au_id_table,
 | 
						|
+	.probe = rtw_usb_probe,
 | 
						|
+	.disconnect = rtw_usb_disconnect,
 | 
						|
+};
 | 
						|
+module_usb_driver(rtw_8812au_driver);
 | 
						|
+
 | 
						|
+MODULE_AUTHOR("Bitterblue Smith <rtl8821cerfe2@gmail.com>");
 | 
						|
+MODULE_DESCRIPTION("Realtek 802.11ac wireless 8812au driver");
 | 
						|
+MODULE_LICENSE("Dual BSD/GPL");
 | 
						|
--- /dev/null
 | 
						|
+++ b/drivers/net/wireless/realtek/rtw88/rtw8821au.c
 | 
						|
@@ -0,0 +1,28 @@
 | 
						|
+// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
 | 
						|
+/* Copyright(c) 2024  Realtek Corporation
 | 
						|
+ */
 | 
						|
+
 | 
						|
+#include <linux/module.h>
 | 
						|
+#include <linux/usb.h>
 | 
						|
+#include "main.h"
 | 
						|
+#include "rtw8821a.h"
 | 
						|
+#include "usb.h"
 | 
						|
+
 | 
						|
+static const struct usb_device_id rtw_8821au_id_table[] = {
 | 
						|
+	{ USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x011e, 0xff, 0xff, 0xff),
 | 
						|
+	  .driver_info = (kernel_ulong_t)&(rtw8821a_hw_spec) },
 | 
						|
+	{},
 | 
						|
+};
 | 
						|
+MODULE_DEVICE_TABLE(usb, rtw_8821au_id_table);
 | 
						|
+
 | 
						|
+static struct usb_driver rtw_8821au_driver = {
 | 
						|
+	.name = "rtw_8821au",
 | 
						|
+	.id_table = rtw_8821au_id_table,
 | 
						|
+	.probe = rtw_usb_probe,
 | 
						|
+	.disconnect = rtw_usb_disconnect,
 | 
						|
+};
 | 
						|
+module_usb_driver(rtw_8821au_driver);
 | 
						|
+
 | 
						|
+MODULE_AUTHOR("Bitterblue Smith <rtl8821cerfe2@gmail.com>");
 | 
						|
+MODULE_DESCRIPTION("Realtek 802.11ac wireless 8821au/8811au driver");
 | 
						|
+MODULE_LICENSE("Dual BSD/GPL");
 |