Message ID | 20230222094720.67185-1-victor@allwinnertech.com |
---|---|
State | Accepted |
Commit | fbfd2d6d43f8e701f89692e05fcb34e904b087b4 |
Headers | show |
Series | [RESEND,v2] Bluetooth: btrtl: Add support for RTL8852BS | expand |
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 22 Feb 2023 17:47:20 +0800 you wrote: > 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> > --- > drivers/bluetooth/btrtl.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) Here is the summary with links: - [RESEND,v2] Bluetooth: btrtl: Add support for RTL8852BS https://git.kernel.org/bluetooth/bluetooth-next/c/1fb7281c62c9 You are awesome, thank you!
diff --git a/drivers/bluetooth/btrtl.c b/drivers/bluetooth/btrtl.c index 69c3fe649ca7..aee75f278e60 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, @@ -963,6 +971,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");
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> --- drivers/bluetooth/btrtl.c | 10 ++++++++++ 1 file changed, 10 insertions(+)