* [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1
@ 2025-09-02 3:02 Zenm Chen
2025-09-02 3:21 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U Zenm Chen
2025-09-02 3:30 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Ping-Ke Shih
0 siblings, 2 replies; 4+ messages in thread
From: Zenm Chen @ 2025-09-02 3:02 UTC (permalink / raw)
To: linux-wireless, pkshih, rtl8821cerfe2; +Cc: zenmchen, usbwifi2024
Add USB ID 2001:332a for D-Link AX9U rev. A1 which is a RTL8851BU-based
Wi-Fi adapter.
Only managed mode and AP mode are tested and it works in both.
Signed-off-by: Zenm Chen <zenmchen@gmail.com>
---
Although it works, but it disconnects occasionally and Bitterblue is working on it.
https://github.com/morrownr/rtw89/issues/11
---
drivers/net/wireless/realtek/rtw89/rtw8851bu.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
index c3722547c..510d124a4 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
@@ -19,6 +19,9 @@ static const struct usb_device_id rtw_8851bu_id_table[] = {
/* TP-Link Archer TX10UB Nano */
{ USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010b, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
+ /* D-Link AX9U rev. A1 */
+ { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x332a, 0xff, 0xff, 0xff),
+ .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
/* Edimax EW-7611UXB */
{ USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xe611, 0xff, 0xff, 0xff),
.driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* RE: [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U
2025-09-02 3:02 [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Zenm Chen
@ 2025-09-02 3:21 ` Zenm Chen
2025-09-02 3:30 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Ping-Ke Shih
1 sibling, 0 replies; 4+ messages in thread
From: Zenm Chen @ 2025-09-02 3:21 UTC (permalink / raw)
To: pkshih; +Cc: linux-wireless, rtl8821cerfe2, usbwifi2024, zenmchen
Hi Ping-Ke,
Please drop this patch, I found I put the code at the wrong place.
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1
2025-09-02 3:02 [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Zenm Chen
2025-09-02 3:21 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U Zenm Chen
@ 2025-09-02 3:30 ` Ping-Ke Shih
2025-09-02 4:01 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U Zenm Chen
1 sibling, 1 reply; 4+ messages in thread
From: Ping-Ke Shih @ 2025-09-02 3:30 UTC (permalink / raw)
To: Zenm Chen, linux-wireless@vger.kernel.org,
rtl8821cerfe2@gmail.com
Cc: usbwifi2024@gmail.com
Zenm Chen <zenmchen@gmail.com> wrote:
> Add USB ID 2001:332a for D-Link AX9U rev. A1 which is a RTL8851BU-based
> Wi-Fi adapter.
>
> Only managed mode and AP mode are tested and it works in both.
>
> Signed-off-by: Zenm Chen <zenmchen@gmail.com>
> ---
> Although it works, but it disconnects occasionally and Bitterblue is working on it.
>
> https://github.com/morrownr/rtw89/issues/11
Thank you all for working on this.
> ---
> drivers/net/wireless/realtek/rtw89/rtw8851bu.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> index c3722547c..510d124a4 100644
> --- a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> +++ b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> @@ -19,6 +19,9 @@ static const struct usb_device_id rtw_8851bu_id_table[] = {
> /* TP-Link Archer TX10UB Nano */
> { USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010b, 0xff, 0xff, 0xff),
> .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> + /* D-Link AX9U rev. A1 */
> + { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x332a, 0xff, 0xff, 0xff),
What is the rule you put this entry here? Can they be in increasing order
of VID/PID?
> + .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> /* Edimax EW-7611UXB */
> { USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xe611, 0xff, 0xff, 0xff),
> .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> --
> 2.51.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U
2025-09-02 3:30 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Ping-Ke Shih
@ 2025-09-02 4:01 ` Zenm Chen
0 siblings, 0 replies; 4+ messages in thread
From: Zenm Chen @ 2025-09-02 4:01 UTC (permalink / raw)
To: pkshih; +Cc: linux-wireless, rtl8821cerfe2, usbwifi2024, zenmchen
Ping-Ke Shih <pkshih@realtek.com> 於 2025年9月2日 週二 上午11:30寫道:
>
> Zenm Chen <zenmchen@gmail.com> wrote:
> > Add USB ID 2001:332a for D-Link AX9U rev. A1 which is a RTL8851BU-based
> > Wi-Fi adapter.
> >
> > Only managed mode and AP mode are tested and it works in both.
> >
> > Signed-off-by: Zenm Chen <zenmchen@gmail.com>
> > ---
> > Although it works, but it disconnects occasionally and Bitterblue is working on it.
> >
> > https://github.com/morrownr/rtw89/issues/11
>
> Thank you all for working on this.
>
> > ---
> > drivers/net/wireless/realtek/rtw89/rtw8851bu.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> > b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> > index c3722547c..510d124a4 100644
> > --- a/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> > +++ b/drivers/net/wireless/realtek/rtw89/rtw8851bu.c
> > @@ -19,6 +19,9 @@ static const struct usb_device_id rtw_8851bu_id_table[] = {
> > /* TP-Link Archer TX10UB Nano */
> > { USB_DEVICE_AND_INTERFACE_INFO(0x3625, 0x010b, 0xff, 0xff, 0xff),
> > .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> > + /* D-Link AX9U rev. A1 */
> > + { USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x332a, 0xff, 0xff, 0xff),
>
> What is the rule you put this entry here? Can they be in increasing order
> of VID/PID?
Sorry about this, just fixed it in v2.
>
> > + .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> > /* Edimax EW-7611UXB */
> > { USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xe611, 0xff, 0xff, 0xff),
> > .driver_info = (kernel_ulong_t)&rtw89_8851bu_info },
> > --
> > 2.51.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-02 4:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-02 3:02 [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Zenm Chen
2025-09-02 3:21 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U Zenm Chen
2025-09-02 3:30 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Ping-Ke Shih
2025-09-02 4:01 ` [PATCH rtw-next] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U Zenm Chen
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).