3 * Bluetooth support for Broadcom devices
5 * Copyright (C) 2015 Intel Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/module.h>
25 #include <linux/firmware.h>
26 #include <asm/unaligned.h>
28 #include <net/bluetooth/bluetooth.h>
29 #include <net/bluetooth/hci_core.h>
35 #define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
36 #define BDADDR_BCM4324B3 (&(bdaddr_t) {{0x00, 0x00, 0x00, 0xb3, 0x24, 0x43}})
38 int btbcm_check_bdaddr(struct hci_dev
*hdev
)
40 struct hci_rp_read_bd_addr
*bda
;
43 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_BD_ADDR
, 0, NULL
,
46 int err
= PTR_ERR(skb
);
47 BT_ERR("%s: BCM: Reading device address failed (%d)",
52 if (skb
->len
!= sizeof(*bda
)) {
53 BT_ERR("%s: BCM: Device address length mismatch", hdev
->name
);
58 bda
= (struct hci_rp_read_bd_addr
*)skb
->data
;
60 /* Check if the address indicates a controller with either an
61 * invalid or default address. In both cases the device needs
62 * to be marked as not having a valid address.
64 * The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
65 * with no configured address.
67 * The address 43:24:B3:00:00:00 indicates a BCM4324B3 controller
68 * with waiting for configuration state.
70 if (!bacmp(&bda
->bdaddr
, BDADDR_BCM20702A0
) ||
71 !bacmp(&bda
->bdaddr
, BDADDR_BCM4324B3
)) {
72 BT_INFO("%s: BCM: Using default device address (%pMR)",
73 hdev
->name
, &bda
->bdaddr
);
74 set_bit(HCI_QUIRK_INVALID_BDADDR
, &hdev
->quirks
);
81 EXPORT_SYMBOL_GPL(btbcm_check_bdaddr
);
83 int btbcm_set_bdaddr(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
)
88 skb
= __hci_cmd_sync(hdev
, 0xfc01, 6, bdaddr
, HCI_INIT_TIMEOUT
);
91 BT_ERR("%s: BCM: Change address command failed (%d)",
99 EXPORT_SYMBOL_GPL(btbcm_set_bdaddr
);
101 int btbcm_patchram(struct hci_dev
*hdev
, const struct firmware
*fw
)
103 const struct hci_command_hdr
*cmd
;
111 skb
= __hci_cmd_sync(hdev
, 0xfc2e, 0, NULL
, HCI_INIT_TIMEOUT
);
114 BT_ERR("%s: BCM: Download Minidrv command failed (%d)",
120 /* 50 msec delay after Download Minidrv completes */
126 while (fw_size
>= sizeof(*cmd
)) {
129 cmd
= (struct hci_command_hdr
*)fw_ptr
;
130 fw_ptr
+= sizeof(*cmd
);
131 fw_size
-= sizeof(*cmd
);
133 if (fw_size
< cmd
->plen
) {
134 BT_ERR("%s: BCM: Patch is corrupted", hdev
->name
);
141 fw_size
-= cmd
->plen
;
143 opcode
= le16_to_cpu(cmd
->opcode
);
145 skb
= __hci_cmd_sync(hdev
, opcode
, cmd
->plen
, cmd_param
,
149 BT_ERR("%s: BCM: Patch command %04x failed (%d)",
150 hdev
->name
, opcode
, err
);
156 /* 250 msec delay after Launch Ram completes */
162 EXPORT_SYMBOL(btbcm_patchram
);
164 static int btbcm_reset(struct hci_dev
*hdev
)
168 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
170 int err
= PTR_ERR(skb
);
171 BT_ERR("%s: BCM: Reset failed (%d)", hdev
->name
, err
);
179 static struct sk_buff
*btbcm_read_local_version(struct hci_dev
*hdev
)
183 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
186 BT_ERR("%s: BCM: Reading local version info failed (%ld)",
187 hdev
->name
, PTR_ERR(skb
));
191 if (skb
->len
!= sizeof(struct hci_rp_read_local_version
)) {
192 BT_ERR("%s: BCM: Local version length mismatch", hdev
->name
);
194 return ERR_PTR(-EIO
);
200 static struct sk_buff
*btbcm_read_verbose_config(struct hci_dev
*hdev
)
204 skb
= __hci_cmd_sync(hdev
, 0xfc79, 0, NULL
, HCI_INIT_TIMEOUT
);
206 BT_ERR("%s: BCM: Read verbose config info failed (%ld)",
207 hdev
->name
, PTR_ERR(skb
));
212 BT_ERR("%s: BCM: Verbose config length mismatch", hdev
->name
);
214 return ERR_PTR(-EIO
);
220 static struct sk_buff
*btbcm_read_usb_product(struct hci_dev
*hdev
)
224 skb
= __hci_cmd_sync(hdev
, 0xfc5a, 0, NULL
, HCI_INIT_TIMEOUT
);
226 BT_ERR("%s: BCM: Read USB product info failed (%ld)",
227 hdev
->name
, PTR_ERR(skb
));
232 BT_ERR("%s: BCM: USB product length mismatch", hdev
->name
);
234 return ERR_PTR(-EIO
);
240 static const struct {
243 } bcm_uart_subver_table
[] = {
244 { 0x410e, "BCM43341B0" }, /* 002.001.014 */
245 { 0x4406, "BCM4324B3" }, /* 002.004.006 */
246 { 0x610c, "BCM4354" }, /* 003.001.012 */
250 int btbcm_initialize(struct hci_dev
*hdev
, char *fw_name
, size_t len
)
253 const char *hw_name
= NULL
;
255 struct hci_rp_read_local_version
*ver
;
259 err
= btbcm_reset(hdev
);
263 /* Read Local Version Info */
264 skb
= btbcm_read_local_version(hdev
);
268 ver
= (struct hci_rp_read_local_version
*)skb
->data
;
269 rev
= le16_to_cpu(ver
->hci_rev
);
270 subver
= le16_to_cpu(ver
->lmp_subver
);
273 /* Read Verbose Config Version Info */
274 skb
= btbcm_read_verbose_config(hdev
);
278 BT_INFO("%s: BCM: chip id %u", hdev
->name
, skb
->data
[1]);
281 switch ((rev
& 0xf000) >> 12) {
285 for (i
= 0; bcm_uart_subver_table
[i
].name
; i
++) {
286 if (subver
== bcm_uart_subver_table
[i
].subver
) {
287 hw_name
= bcm_uart_subver_table
[i
].name
;
292 snprintf(fw_name
, len
, "brcm/%s.hcd", hw_name
? : "BCM");
298 BT_INFO("%s: %s (%3.3u.%3.3u.%3.3u) build %4.4u", hdev
->name
,
299 hw_name
? : "BCM", (subver
& 0x7000) >> 13,
300 (subver
& 0x1f00) >> 8, (subver
& 0x00ff), rev
& 0x0fff);
304 EXPORT_SYMBOL_GPL(btbcm_initialize
);
306 int btbcm_finalize(struct hci_dev
*hdev
)
309 struct hci_rp_read_local_version
*ver
;
314 err
= btbcm_reset(hdev
);
318 /* Read Local Version Info */
319 skb
= btbcm_read_local_version(hdev
);
323 ver
= (struct hci_rp_read_local_version
*)skb
->data
;
324 rev
= le16_to_cpu(ver
->hci_rev
);
325 subver
= le16_to_cpu(ver
->lmp_subver
);
328 BT_INFO("%s: BCM (%3.3u.%3.3u.%3.3u) build %4.4u", hdev
->name
,
329 (subver
& 0x7000) >> 13, (subver
& 0x1f00) >> 8,
330 (subver
& 0x00ff), rev
& 0x0fff);
332 btbcm_check_bdaddr(hdev
);
334 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
338 EXPORT_SYMBOL_GPL(btbcm_finalize
);
340 static const struct {
343 } bcm_usb_subver_table
[] = {
344 { 0x210b, "BCM43142A0" }, /* 001.001.011 */
345 { 0x2112, "BCM4314A0" }, /* 001.001.018 */
346 { 0x2118, "BCM20702A0" }, /* 001.001.024 */
347 { 0x2126, "BCM4335A0" }, /* 001.001.038 */
348 { 0x220e, "BCM20702A1" }, /* 001.002.014 */
349 { 0x230f, "BCM4354A2" }, /* 001.003.015 */
350 { 0x4106, "BCM4335B0" }, /* 002.001.006 */
351 { 0x410e, "BCM20702B0" }, /* 002.001.014 */
352 { 0x6109, "BCM4335C0" }, /* 003.001.009 */
353 { 0x610c, "BCM4354" }, /* 003.001.012 */
357 int btbcm_setup_patchram(struct hci_dev
*hdev
)
360 const struct firmware
*fw
;
361 u16 subver
, rev
, pid
, vid
;
362 const char *hw_name
= NULL
;
364 struct hci_rp_read_local_version
*ver
;
368 err
= btbcm_reset(hdev
);
372 /* Read Local Version Info */
373 skb
= btbcm_read_local_version(hdev
);
377 ver
= (struct hci_rp_read_local_version
*)skb
->data
;
378 rev
= le16_to_cpu(ver
->hci_rev
);
379 subver
= le16_to_cpu(ver
->lmp_subver
);
382 /* Read Verbose Config Version Info */
383 skb
= btbcm_read_verbose_config(hdev
);
387 BT_INFO("%s: BCM: chip id %u", hdev
->name
, skb
->data
[1]);
390 switch ((rev
& 0xf000) >> 12) {
393 for (i
= 0; bcm_uart_subver_table
[i
].name
; i
++) {
394 if (subver
== bcm_uart_subver_table
[i
].subver
) {
395 hw_name
= bcm_uart_subver_table
[i
].name
;
400 snprintf(fw_name
, sizeof(fw_name
), "brcm/%s.hcd",
405 /* Read USB Product Info */
406 skb
= btbcm_read_usb_product(hdev
);
410 vid
= get_unaligned_le16(skb
->data
+ 1);
411 pid
= get_unaligned_le16(skb
->data
+ 3);
414 for (i
= 0; bcm_usb_subver_table
[i
].name
; i
++) {
415 if (subver
== bcm_usb_subver_table
[i
].subver
) {
416 hw_name
= bcm_usb_subver_table
[i
].name
;
421 snprintf(fw_name
, sizeof(fw_name
), "brcm/%s-%4.4x-%4.4x.hcd",
422 hw_name
? : "BCM", vid
, pid
);
428 BT_INFO("%s: %s (%3.3u.%3.3u.%3.3u) build %4.4u", hdev
->name
,
429 hw_name
? : "BCM", (subver
& 0x7000) >> 13,
430 (subver
& 0x1f00) >> 8, (subver
& 0x00ff), rev
& 0x0fff);
432 err
= request_firmware(&fw
, fw_name
, &hdev
->dev
);
434 BT_INFO("%s: BCM: Patch %s not found", hdev
->name
, fw_name
);
438 btbcm_patchram(hdev
, fw
);
440 release_firmware(fw
);
443 err
= btbcm_reset(hdev
);
447 /* Read Local Version Info */
448 skb
= btbcm_read_local_version(hdev
);
452 ver
= (struct hci_rp_read_local_version
*)skb
->data
;
453 rev
= le16_to_cpu(ver
->hci_rev
);
454 subver
= le16_to_cpu(ver
->lmp_subver
);
457 BT_INFO("%s: %s (%3.3u.%3.3u.%3.3u) build %4.4u", hdev
->name
,
458 hw_name
? : "BCM", (subver
& 0x7000) >> 13,
459 (subver
& 0x1f00) >> 8, (subver
& 0x00ff), rev
& 0x0fff);
461 btbcm_check_bdaddr(hdev
);
463 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
467 EXPORT_SYMBOL_GPL(btbcm_setup_patchram
);
469 int btbcm_setup_apple(struct hci_dev
*hdev
)
473 /* Read Verbose Config Version Info */
474 skb
= btbcm_read_verbose_config(hdev
);
476 BT_INFO("%s: BCM: chip id %u build %4.4u", hdev
->name
, skb
->data
[1],
477 get_unaligned_le16(skb
->data
+ 5));
481 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
485 EXPORT_SYMBOL_GPL(btbcm_setup_apple
);
487 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
488 MODULE_DESCRIPTION("Bluetooth support for Broadcom devices ver " VERSION
);
489 MODULE_VERSION(VERSION
);
490 MODULE_LICENSE("GPL");