rtlbtfw(8): Add support for Realtek 8852CE

Add the USB Vendor/Product ID (0x13d3:0x3612) for
the new Realtek 8852CE drive to make sure it works.

Signed-off-by: Ying Xu <fakeshadow1337@gmail.com>
Reviewed by: pouria, wulf
Pull Request: https://github.com/freebsd/freebsd-src/pull/2071
This commit is contained in:
Ying Xu
2026-03-11 15:55:45 +08:00
committed by Pouria Mousavizadeh Tehrani
parent 0bebad8d07
commit 2e93669827
3 changed files with 3 additions and 1 deletions
@@ -100,6 +100,7 @@ const STRUCT_USB_HOST_ID ubt_rtl_devs[] =
{ USB_VPI(0x13d3, 0x3587, 0) },
{ USB_VPI(0x13d3, 0x3586, 0) },
{ USB_VPI(0x13d3, 0x3592, 0) },
{ USB_VPI(0x13d3, 0x3612, 0) },
{ USB_VPI(0x0489, 0xe122, 0) },
/* Realtek 8852BE Bluetooth devices */
+1
View File
@@ -83,6 +83,7 @@ static struct rtlbt_devid rtlbt_list[] = {
{ .vendor_id = 0x13d3, .product_id = 0x3587 },
{ .vendor_id = 0x13d3, .product_id = 0x3586 },
{ .vendor_id = 0x13d3, .product_id = 0x3592 },
{ .vendor_id = 0x13d3, .product_id = 0x3612 },
{ .vendor_id = 0x0489, .product_id = 0xe122 },
/* Realtek 8852BE Bluetooth devices */
+1 -1
View File
@@ -110,7 +110,7 @@ notify 100 {
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "0x13d3";
match "product" "(0x3587|0x3586|0x3592)";
match "product" "(0x3587|0x3586|0x3592|0x3612)";
action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
};
notify 100 {