[PATCH] Bluetooth: btusb: add Realtek RTL8852CE device ID 0x0852
From: Christos Longros
Date: Sun Mar 29 2026 - 04:15:27 EST
Add the native Realtek vendor device ID (0bda:0852) for the RTL8852CE
Bluetooth radio to the btusb device table.
Without this entry the device is matched only by the generic Bluetooth
class rule (USB_INTERFACE_INFO 0xe0/0x01/0x01), which means btusb
binds but without the BTUSB_REALTEK flag. This skips Realtek-specific
firmware loading, event handling, and wideband speech support.
Tested on a Gigabyte B650 Gaming X AX V2 with the onboard RTL8852CE
combo WiFi/BT card (USB ID 0bda:0852).
Signed-off-by: Christos Longros <chris.longros@xxxxxxxxx>
---
drivers/bluetooth/btusb.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 5c535f3ab..0bc77b29b 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -549,6 +549,8 @@ static const struct usb_device_id quirks_table[] = {
BTUSB_WIDEBAND_SPEECH },
/* Realtek 8852CE Bluetooth devices */
+ { USB_DEVICE(0x0bda, 0x0852), .driver_info = BTUSB_REALTEK |
+ BTUSB_WIDEBAND_SPEECH },
{ USB_DEVICE(0x04ca, 0x4007), .driver_info = BTUSB_REALTEK |
BTUSB_WIDEBAND_SPEECH },
{ USB_DEVICE(0x04c5, 0x1675), .driver_info = BTUSB_REALTEK |
--
2.53.0