mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Re-extract the kernel patches as a series. Re-extract the u-boot patches as "git format-patch" command. Unified patch extraction makes it easier to work with patches.
46 lines
1.6 KiB
Diff
46 lines
1.6 KiB
Diff
From ba9768cf884ba4f030d9bc006ef4c067575821d0 Mon Sep 17 00:00:00 2001
|
|
From: Victor Hassan <victor@allwinnertech.com>
|
|
Date: Wed, 22 Feb 2023 17:47:20 +0800
|
|
Subject: Bluetooth: btrtl: Add support for RTL8852BS
|
|
|
|
Add the support for RTL8852BS BT controller on UART interface.
|
|
The necessary firmware file will be submitted to linux-firmware.
|
|
|
|
Signed-off-by: Victor Hassan <victor@allwinnertech.com>
|
|
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
|
|
---
|
|
drivers/bluetooth/btrtl.c | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/drivers/bluetooth/btrtl.c b/drivers/bluetooth/btrtl.c
|
|
index fb52313a1d45..a42dd93b2900 100644
|
|
--- a/drivers/bluetooth/btrtl.c
|
|
+++ b/drivers/bluetooth/btrtl.c
|
|
@@ -190,6 +190,14 @@ static const struct id_table ic_id_table[] = {
|
|
.fw_name = "rtl_bt/rtl8852au_fw.bin",
|
|
.cfg_name = "rtl_bt/rtl8852au_config" },
|
|
|
|
+ /* 8852B with UART interface */
|
|
+ { IC_INFO(RTL_ROM_LMP_8852A, 0xb, 0xb, HCI_UART),
|
|
+ .config_needed = true,
|
|
+ .has_rom_version = true,
|
|
+ .has_msft_ext = true,
|
|
+ .fw_name = "rtl_bt/rtl8852bs_fw.bin",
|
|
+ .cfg_name = "rtl_bt/rtl8852bs_config" },
|
|
+
|
|
/* 8852B */
|
|
{ IC_INFO(RTL_ROM_LMP_8852A, 0xb, 0xb, HCI_USB),
|
|
.config_needed = false,
|
|
@@ -956,6 +964,8 @@ MODULE_FIRMWARE("rtl_bt/rtl8822b_fw.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8822b_config.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8852au_fw.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8852au_config.bin");
|
|
+MODULE_FIRMWARE("rtl_bt/rtl8852bs_fw.bin");
|
|
+MODULE_FIRMWARE("rtl_bt/rtl8852bs_config.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8852bu_fw.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8852bu_config.bin");
|
|
MODULE_FIRMWARE("rtl_bt/rtl8852cu_fw.bin");
|
|
--
|
|
2.35.3
|
|
|