Message ID | 20240916032228.6601-1-jiande.lu@mediatek.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Bluetooth: btusb: Add USB HW IDs for MT7920/MT7925 | expand |
Hi Jiande, On Sun, Sep 15, 2024 at 11:22 PM Jiande Lu <jiande.lu@mediatek.com> wrote: > > Add HW IDs for wireless module. These HW IDs are extracted from > Windows driver inf file and the test for card bring up successful. Well this is not enough if we don't have firmware published for them, or you have confirmed that firmware is available and it does load properly? In that case please add the information about the firmware as well and perhaps some logs that it can be loaded properly. > Signed-off-by: Jiande Lu <jiande.lu@mediatek.com> > --- > drivers/bluetooth/btusb.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c > index 6c9c761d5b93..8946aafae640 100644 > --- a/drivers/bluetooth/btusb.c > +++ b/drivers/bluetooth/btusb.c > @@ -563,6 +563,16 @@ static const struct usb_device_id quirks_table[] = { > { USB_DEVICE(0x043e, 0x3109), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH }, > > + /* Additional MediaTek MT7920 Bluetooth devices */ > + { USB_DEVICE(0x0489, 0xe134), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH }, > + { USB_DEVICE(0x13d3, 0x3620), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH }, > + { USB_DEVICE(0x13d3, 0x3621), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH }, > + { USB_DEVICE(0x13d3, 0x3622), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH }, > + > /* Additional MediaTek MT7921 Bluetooth devices */ > { USB_DEVICE(0x0489, 0xe0c8), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH }, > @@ -636,6 +646,8 @@ static const struct usb_device_id quirks_table[] = { > BTUSB_WIDEBAND_SPEECH }, > { USB_DEVICE(0x0489, 0xe11e), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH }, > + { USB_DEVICE(0x0489, 0xe139), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH }, > { USB_DEVICE(0x13d3, 0x3602), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH }, > { USB_DEVICE(0x13d3, 0x3603), .driver_info = BTUSB_MEDIATEK | > -- > 2.45.2 >
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 6c9c761d5b93..8946aafae640 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -563,6 +563,16 @@ static const struct usb_device_id quirks_table[] = { { USB_DEVICE(0x043e, 0x3109), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH }, + /* Additional MediaTek MT7920 Bluetooth devices */ + { USB_DEVICE(0x0489, 0xe134), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x13d3, 0x3620), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x13d3, 0x3621), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x13d3, 0x3622), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH }, + /* Additional MediaTek MT7921 Bluetooth devices */ { USB_DEVICE(0x0489, 0xe0c8), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH }, @@ -636,6 +646,8 @@ static const struct usb_device_id quirks_table[] = { BTUSB_WIDEBAND_SPEECH }, { USB_DEVICE(0x0489, 0xe11e), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x0489, 0xe139), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH }, { USB_DEVICE(0x13d3, 0x3602), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH }, { USB_DEVICE(0x13d3, 0x3603), .driver_info = BTUSB_MEDIATEK |
Add HW IDs for wireless module. These HW IDs are extracted from Windows driver inf file and the test for card bring up successful. Signed-off-by: Jiande Lu <jiande.lu@mediatek.com> --- drivers/bluetooth/btusb.c | 12 ++++++++++++ 1 file changed, 12 insertions(+)