Skip to content

Commit 4f17c2b

Browse files
a3fVudentz
authored andcommitted
Bluetooth: hci_bcm: Add BCM4349B1 variant
The BCM4349B1, aka CYW/BCM89359, is a WiFi+BT chip and its Bluetooth portion can be controlled over serial. Two subversions are added for the chip, because ROM firmware reports 002.002.013 (at least for the chips I have here), while depending on patchram firmware revision, either 002.002.013 or 002.002.014 is reported. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
1 parent 88b6588 commit 4f17c2b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

drivers/bluetooth/btbcm.c

+2
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,8 @@ static const struct bcm_subver_table bcm_uart_subver_table[] = {
461461
{ 0x6606, "BCM4345C5" }, /* 003.006.006 */
462462
{ 0x230f, "BCM4356A2" }, /* 001.003.015 */
463463
{ 0x220e, "BCM20702A1" }, /* 001.002.014 */
464+
{ 0x420d, "BCM4349B1" }, /* 002.002.013 */
465+
{ 0x420e, "BCM4349B1" }, /* 002.002.014 */
464466
{ 0x4217, "BCM4329B1" }, /* 002.002.023 */
465467
{ 0x6106, "BCM4359C0" }, /* 003.001.006 */
466468
{ 0x4106, "BCM4335A0" }, /* 002.001.006 */

drivers/bluetooth/hci_bcm.c

+1
Original file line numberDiff line numberDiff line change
@@ -1554,6 +1554,7 @@ static const struct of_device_id bcm_bluetooth_of_match[] = {
15541554
{ .compatible = "brcm,bcm43430a0-bt" },
15551555
{ .compatible = "brcm,bcm43430a1-bt" },
15561556
{ .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },
1557+
{ .compatible = "brcm,bcm4349-bt", .data = &bcm43438_device_data },
15571558
{ .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data },
15581559
{ .compatible = "brcm,bcm4335a0" },
15591560
{ },

0 commit comments

Comments
 (0)