lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20211019095738.2098486-2-adeep@lexina.in> Date: Tue, 19 Oct 2021 12:57:37 +0300 From: Vyacheslav Bocharov <adeep@...ina.in> To: marcel@...tmann.org, johan.hedberg@...il.com, luiz.dentz@...il.com Cc: linux-bluetooth@...r.kernel.org, linux-kernel@...r.kernel.org, chbgdn <chbgdn@...il.com> Subject: [PATCH 1/2] Bluetooth: btrtl: Add support for RTL8822C hci_ver 0x08 Add detection of RTL8822CS controller with hci_ver = 0x08 Signed-off-by: chbgdn <chbgdn@...il.com> Signed-off-by: Vyacheslav Bocharov <adeep@...ina.in> --- drivers/bluetooth/btrtl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/bluetooth/btrtl.c b/drivers/bluetooth/btrtl.c index 1f8afa0244d8..60c4a9976d5a 100644 --- a/drivers/bluetooth/btrtl.c +++ b/drivers/bluetooth/btrtl.c @@ -152,6 +152,13 @@ static const struct id_table ic_id_table[] = { .fw_name = "rtl_bt/rtl8822cs_fw.bin", .cfg_name = "rtl_bt/rtl8822cs_config" }, + /* 8822C with UART interface */ + { IC_INFO(RTL_ROM_LMP_8822B, 0xc, 0x8, HCI_UART), + .config_needed = true, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8822cs_fw.bin", + .cfg_name = "rtl_bt/rtl8822cs_config" }, + /* 8822C with USB interface */ { IC_INFO(RTL_ROM_LMP_8822B, 0xc, 0xa, HCI_USB), .config_needed = false, -- 2.30.2
Powered by blists - more mailing lists