* [PATCH] Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device
@ 2026-07-07 22:15 Pavel Zverev
2026-07-07 22:44 ` bluez.test.bot
2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Pavel Zverev @ 2026-07-07 22:15 UTC (permalink / raw)
To: marcel, luiz.dentz; +Cc: linux-bluetooth, Pavel Zverev
Wiko Hi MateBook 14 Ryzen 200 laptops (DMI system-product-name
"MNCA-XX", board "M1060") are equipped with an RTL8852BE Wi-Fi/BT
combo chip (rtw89_8852be), whose Bluetooth radio enumerates as
1357:c123 instead of one of the already-supported 1358:c123 / 0bda:c123
identifiers, presumably due to OEM rebranding. Without a matching
entry it only matches the generic USB Bluetooth class fallback, so the
Realtek firmware/config (rtl8852btu_fw.bin / rtl8852btu_config.bin) is
never loaded and the adapter cannot discover or connect to any device,
even though hciconfig reports it as powered and scanning.
Device descriptor:
idVendor 0x1357
idProduct 0xc123
bcdDevice 0.00
iManufacturer 1 Realtek
iProduct 2 Bluetooth Radio
bDeviceClass 224 Wireless
bDeviceSubClass 1 Radio Frequency
bDeviceProtocol 1 Bluetooth
Adding the same BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH quirk already
used for 1358:c123 and 0bda:c123 fixes firmware loading and normal
operation.
Signed-off-by: Pavel Zverev <playximik29@gmail.com>
---
drivers/bluetooth/btusb.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 08c0a99a6..532493e48 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -882,6 +882,8 @@ static const struct usb_device_id quirks_table[] = {
BTUSB_WIDEBAND_SPEECH },
{ USB_DEVICE(0x0bda, 0xc123), .driver_info = BTUSB_REALTEK |
BTUSB_WIDEBAND_SPEECH },
+ { USB_DEVICE(0x1357, 0xc123), .driver_info = BTUSB_REALTEK |
+ BTUSB_WIDEBAND_SPEECH },
{ USB_DEVICE(0x0cb5, 0xc547), .driver_info = BTUSB_REALTEK |
BTUSB_WIDEBAND_SPEECH },
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device
2026-07-07 22:15 [PATCH] Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device Pavel Zverev
@ 2026-07-07 22:44 ` bluez.test.bot
2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2026-07-07 22:44 UTC (permalink / raw)
To: linux-bluetooth, playximik29
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1123385
---Test result---
Test Summary:
CheckPatch PASS 0.71 seconds
VerifyFixes PASS 0.13 seconds
VerifySignedoff PASS 0.13 seconds
GitLint PASS 0.32 seconds
SubjectPrefix PASS 0.19 seconds
BuildKernel PASS 26.76 seconds
CheckAllWarning PASS 29.29 seconds
CheckSparse PASS 28.14 seconds
BuildKernel32 PASS 26.02 seconds
CheckKernelLLVM SKIP 0.00 seconds
TestRunnerSetup PASS 502.79 seconds
IncrementalBuild PASS 26.23 seconds
Details
##############################
Test: CheckKernelLLVM - SKIP
Desc: Build kernel with LLVM + context analysis
Output:
Clang not found
https://github.com/bluez/bluetooth-next/pull/408
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device
2026-07-07 22:15 [PATCH] Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device Pavel Zverev
2026-07-07 22:44 ` bluez.test.bot
@ 2026-07-10 20:10 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2026-07-10 20:10 UTC (permalink / raw)
To: Pavel Zverev; +Cc: marcel, luiz.dentz, linux-bluetooth
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Wed, 8 Jul 2026 01:15:49 +0300 you wrote:
> Wiko Hi MateBook 14 Ryzen 200 laptops (DMI system-product-name
> "MNCA-XX", board "M1060") are equipped with an RTL8852BE Wi-Fi/BT
> combo chip (rtw89_8852be), whose Bluetooth radio enumerates as
> 1357:c123 instead of one of the already-supported 1358:c123 / 0bda:c123
> identifiers, presumably due to OEM rebranding. Without a matching
> entry it only matches the generic USB Bluetooth class fallback, so the
> Realtek firmware/config (rtl8852btu_fw.bin / rtl8852btu_config.bin) is
> never loaded and the adapter cannot discover or connect to any device,
> even though hciconfig reports it as powered and scanning.
>
> [...]
Here is the summary with links:
- Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device
https://git.kernel.org/bluetooth/bluetooth-next/c/1386e748cfc0
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-10 20:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-07 22:15 [PATCH] Bluetooth: btusb: Add support for 1357:c123 Realtek 8852BE device Pavel Zverev
2026-07-07 22:44 ` bluez.test.bot
2026-07-10 20:10 ` [PATCH] " patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox