3 * Generic Bluetooth USB driver
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/usb.h>
26 #include <linux/firmware.h>
28 #include <net/bluetooth/bluetooth.h>
29 #include <net/bluetooth/hci_core.h>
33 static bool disable_scofix;
34 static bool force_scofix;
36 static bool reset = 1;
38 static struct usb_driver btusb_driver;
40 #define BTUSB_IGNORE 0x01
41 #define BTUSB_DIGIANSWER 0x02
42 #define BTUSB_CSR 0x04
43 #define BTUSB_SNIFFER 0x08
44 #define BTUSB_BCM92035 0x10
45 #define BTUSB_BROKEN_ISOC 0x20
46 #define BTUSB_WRONG_SCO_MTU 0x40
47 #define BTUSB_ATH3012 0x80
48 #define BTUSB_INTEL 0x100
49 #define BTUSB_INTEL_BOOT 0x200
50 #define BTUSB_BCM_PATCHRAM 0x400
51 #define BTUSB_MARVELL 0x800
53 static const struct usb_device_id btusb_table[] = {
54 /* Generic Bluetooth USB device */
55 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
57 /* Apple-specific (Broadcom) devices */
58 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01) },
60 /* MediaTek MT76x0E */
61 { USB_DEVICE(0x0e8d, 0x763f) },
63 /* Broadcom SoftSailing reporting vendor specific */
64 { USB_DEVICE(0x0a5c, 0x21e1) },
66 /* Apple MacBookPro 7,1 */
67 { USB_DEVICE(0x05ac, 0x8213) },
70 { USB_DEVICE(0x05ac, 0x8215) },
72 /* Apple MacBookPro6,2 */
73 { USB_DEVICE(0x05ac, 0x8218) },
75 /* Apple MacBookAir3,1, MacBookAir3,2 */
76 { USB_DEVICE(0x05ac, 0x821b) },
78 /* Apple MacBookAir4,1 */
79 { USB_DEVICE(0x05ac, 0x821f) },
81 /* Apple MacBookPro8,2 */
82 { USB_DEVICE(0x05ac, 0x821a) },
84 /* Apple MacMini5,1 */
85 { USB_DEVICE(0x05ac, 0x8281) },
87 /* AVM BlueFRITZ! USB v2.0 */
88 { USB_DEVICE(0x057c, 0x3800) },
90 /* Bluetooth Ultraport Module from IBM */
91 { USB_DEVICE(0x04bf, 0x030a) },
93 /* ALPS Modules with non-standard id */
94 { USB_DEVICE(0x044e, 0x3001) },
95 { USB_DEVICE(0x044e, 0x3002) },
97 /* Ericsson with non-standard id */
98 { USB_DEVICE(0x0bdb, 0x1002) },
100 /* Canyon CN-BTU1 with HID interfaces */
101 { USB_DEVICE(0x0c10, 0x0000) },
103 /* Broadcom BCM20702A0 */
104 { USB_DEVICE(0x0489, 0xe042) },
105 { USB_DEVICE(0x04ca, 0x2003) },
106 { USB_DEVICE(0x0b05, 0x17b5) },
107 { USB_DEVICE(0x0b05, 0x17cb) },
108 { USB_DEVICE(0x413c, 0x8197) },
110 /* Foxconn - Hon Hai */
111 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01) },
113 /* Broadcom devices with vendor specific id */
114 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
115 .driver_info = BTUSB_BCM_PATCHRAM },
117 /* ASUSTek Computer - Broadcom based */
118 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01) },
120 /* Belkin F8065bf - Broadcom based */
121 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01) },
123 /* IMC Networks - Broadcom based */
124 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) },
126 /* Intel Bluetooth USB Bootloader (RAM module) */
127 { USB_DEVICE(0x8087, 0x0a5a),
128 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
130 { } /* Terminating entry */
133 MODULE_DEVICE_TABLE(usb, btusb_table);
135 static const struct usb_device_id blacklist_table[] = {
136 /* CSR BlueCore devices */
137 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
139 /* Broadcom BCM2033 without firmware */
140 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
142 /* Atheros 3011 with sflash firmware */
143 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
144 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
145 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
146 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
147 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
148 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
150 /* Atheros AR9285 Malbec with sflash firmware */
151 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
153 /* Atheros 3012 with sflash firmware */
154 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
155 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
156 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
157 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
158 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
159 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
160 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
161 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
162 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
163 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
164 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
165 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
166 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
167 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
168 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
169 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
170 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
171 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
172 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
173 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
174 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
175 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
176 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
177 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
178 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
179 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
180 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
181 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
182 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
183 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
184 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
185 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
187 /* Atheros AR5BBU12 with sflash firmware */
188 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
190 /* Atheros AR5BBU12 with sflash firmware */
191 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
192 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
194 /* Broadcom BCM2035 */
195 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
196 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
197 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
199 /* Broadcom BCM2045 */
200 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
201 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
203 /* IBM/Lenovo ThinkPad with Broadcom chip */
204 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
205 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
207 /* HP laptop with Broadcom chip */
208 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
210 /* Dell laptop with Broadcom chip */
211 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
213 /* Dell Wireless 370 and 410 devices */
214 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
215 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
217 /* Belkin F8T012 and F8T013 devices */
218 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
219 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
221 /* Asus WL-BTD202 device */
222 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
224 /* Kensington Bluetooth USB adapter */
225 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
227 /* RTX Telecom based adapters with buggy SCO support */
228 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
229 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
231 /* CONWISE Technology based adapters with buggy SCO support */
232 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
234 /* Digianswer devices */
235 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
236 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
238 /* CSR BlueCore Bluetooth Sniffer */
239 { USB_DEVICE(0x0a12, 0x0002),
240 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
242 /* Frontline ComProbe Bluetooth Sniffer */
243 { USB_DEVICE(0x16d3, 0x0002),
244 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
246 /* Intel Bluetooth device */
247 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
248 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
251 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
252 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
254 { } /* Terminating entry */
257 #define BTUSB_MAX_ISOC_FRAMES 10
259 #define BTUSB_INTR_RUNNING 0
260 #define BTUSB_BULK_RUNNING 1
261 #define BTUSB_ISOC_RUNNING 2
262 #define BTUSB_SUSPENDING 3
263 #define BTUSB_DID_ISO_RESUME 4
266 struct hci_dev *hdev;
267 struct usb_device *udev;
268 struct usb_interface *intf;
269 struct usb_interface *isoc;
273 struct work_struct work;
274 struct work_struct waker;
276 struct usb_anchor deferred;
277 struct usb_anchor tx_anchor;
281 struct usb_anchor intr_anchor;
282 struct usb_anchor bulk_anchor;
283 struct usb_anchor isoc_anchor;
286 struct sk_buff *evt_skb;
287 struct sk_buff *acl_skb;
288 struct sk_buff *sco_skb;
290 struct usb_endpoint_descriptor *intr_ep;
291 struct usb_endpoint_descriptor *bulk_tx_ep;
292 struct usb_endpoint_descriptor *bulk_rx_ep;
293 struct usb_endpoint_descriptor *isoc_tx_ep;
294 struct usb_endpoint_descriptor *isoc_rx_ep;
298 unsigned int sco_num;
303 static inline void btusb_free_frags(struct btusb_data *data)
307 spin_lock_irqsave(&data->rxlock, flags);
309 kfree_skb(data->evt_skb);
310 data->evt_skb = NULL;
312 kfree_skb(data->acl_skb);
313 data->acl_skb = NULL;
315 kfree_skb(data->sco_skb);
316 data->sco_skb = NULL;
318 spin_unlock_irqrestore(&data->rxlock, flags);
321 static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
326 spin_lock(&data->rxlock);
333 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
339 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
340 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
343 len = min_t(uint, bt_cb(skb)->expect, count);
344 memcpy(skb_put(skb, len), buffer, len);
348 bt_cb(skb)->expect -= len;
350 if (skb->len == HCI_EVENT_HDR_SIZE) {
351 /* Complete event header */
352 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
354 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
363 if (bt_cb(skb)->expect == 0) {
365 hci_recv_frame(data->hdev, skb);
371 spin_unlock(&data->rxlock);
376 static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
381 spin_lock(&data->rxlock);
388 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
394 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
395 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
398 len = min_t(uint, bt_cb(skb)->expect, count);
399 memcpy(skb_put(skb, len), buffer, len);
403 bt_cb(skb)->expect -= len;
405 if (skb->len == HCI_ACL_HDR_SIZE) {
406 __le16 dlen = hci_acl_hdr(skb)->dlen;
408 /* Complete ACL header */
409 bt_cb(skb)->expect = __le16_to_cpu(dlen);
411 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
420 if (bt_cb(skb)->expect == 0) {
422 hci_recv_frame(data->hdev, skb);
428 spin_unlock(&data->rxlock);
433 static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
438 spin_lock(&data->rxlock);
445 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
451 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
452 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
455 len = min_t(uint, bt_cb(skb)->expect, count);
456 memcpy(skb_put(skb, len), buffer, len);
460 bt_cb(skb)->expect -= len;
462 if (skb->len == HCI_SCO_HDR_SIZE) {
463 /* Complete SCO header */
464 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
466 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
475 if (bt_cb(skb)->expect == 0) {
477 hci_recv_frame(data->hdev, skb);
483 spin_unlock(&data->rxlock);
488 static void btusb_intr_complete(struct urb *urb)
490 struct hci_dev *hdev = urb->context;
491 struct btusb_data *data = hci_get_drvdata(hdev);
494 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
497 if (!test_bit(HCI_RUNNING, &hdev->flags))
500 if (urb->status == 0) {
501 hdev->stat.byte_rx += urb->actual_length;
503 if (btusb_recv_intr(data, urb->transfer_buffer,
504 urb->actual_length) < 0) {
505 BT_ERR("%s corrupted event packet", hdev->name);
508 } else if (urb->status == -ENOENT) {
509 /* Avoid suspend failed when usb_kill_urb */
513 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
516 usb_mark_last_busy(data->udev);
517 usb_anchor_urb(urb, &data->intr_anchor);
519 err = usb_submit_urb(urb, GFP_ATOMIC);
521 /* -EPERM: urb is being killed;
522 * -ENODEV: device got disconnected */
523 if (err != -EPERM && err != -ENODEV)
524 BT_ERR("%s urb %p failed to resubmit (%d)",
525 hdev->name, urb, -err);
526 usb_unanchor_urb(urb);
530 static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
532 struct btusb_data *data = hci_get_drvdata(hdev);
538 BT_DBG("%s", hdev->name);
543 urb = usb_alloc_urb(0, mem_flags);
547 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
549 buf = kmalloc(size, mem_flags);
555 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
557 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
558 btusb_intr_complete, hdev, data->intr_ep->bInterval);
560 urb->transfer_flags |= URB_FREE_BUFFER;
562 usb_anchor_urb(urb, &data->intr_anchor);
564 err = usb_submit_urb(urb, mem_flags);
566 if (err != -EPERM && err != -ENODEV)
567 BT_ERR("%s urb %p submission failed (%d)",
568 hdev->name, urb, -err);
569 usb_unanchor_urb(urb);
577 static void btusb_bulk_complete(struct urb *urb)
579 struct hci_dev *hdev = urb->context;
580 struct btusb_data *data = hci_get_drvdata(hdev);
583 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
586 if (!test_bit(HCI_RUNNING, &hdev->flags))
589 if (urb->status == 0) {
590 hdev->stat.byte_rx += urb->actual_length;
592 if (btusb_recv_bulk(data, urb->transfer_buffer,
593 urb->actual_length) < 0) {
594 BT_ERR("%s corrupted ACL packet", hdev->name);
597 } else if (urb->status == -ENOENT) {
598 /* Avoid suspend failed when usb_kill_urb */
602 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
605 usb_anchor_urb(urb, &data->bulk_anchor);
606 usb_mark_last_busy(data->udev);
608 err = usb_submit_urb(urb, GFP_ATOMIC);
610 /* -EPERM: urb is being killed;
611 * -ENODEV: device got disconnected */
612 if (err != -EPERM && err != -ENODEV)
613 BT_ERR("%s urb %p failed to resubmit (%d)",
614 hdev->name, urb, -err);
615 usb_unanchor_urb(urb);
619 static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
621 struct btusb_data *data = hci_get_drvdata(hdev);
625 int err, size = HCI_MAX_FRAME_SIZE;
627 BT_DBG("%s", hdev->name);
629 if (!data->bulk_rx_ep)
632 urb = usb_alloc_urb(0, mem_flags);
636 buf = kmalloc(size, mem_flags);
642 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
644 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
645 btusb_bulk_complete, hdev);
647 urb->transfer_flags |= URB_FREE_BUFFER;
649 usb_mark_last_busy(data->udev);
650 usb_anchor_urb(urb, &data->bulk_anchor);
652 err = usb_submit_urb(urb, mem_flags);
654 if (err != -EPERM && err != -ENODEV)
655 BT_ERR("%s urb %p submission failed (%d)",
656 hdev->name, urb, -err);
657 usb_unanchor_urb(urb);
665 static void btusb_isoc_complete(struct urb *urb)
667 struct hci_dev *hdev = urb->context;
668 struct btusb_data *data = hci_get_drvdata(hdev);
671 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
674 if (!test_bit(HCI_RUNNING, &hdev->flags))
677 if (urb->status == 0) {
678 for (i = 0; i < urb->number_of_packets; i++) {
679 unsigned int offset = urb->iso_frame_desc[i].offset;
680 unsigned int length = urb->iso_frame_desc[i].actual_length;
682 if (urb->iso_frame_desc[i].status)
685 hdev->stat.byte_rx += length;
687 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
689 BT_ERR("%s corrupted SCO packet", hdev->name);
693 } else if (urb->status == -ENOENT) {
694 /* Avoid suspend failed when usb_kill_urb */
698 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
701 usb_anchor_urb(urb, &data->isoc_anchor);
703 err = usb_submit_urb(urb, GFP_ATOMIC);
705 /* -EPERM: urb is being killed;
706 * -ENODEV: device got disconnected */
707 if (err != -EPERM && err != -ENODEV)
708 BT_ERR("%s urb %p failed to resubmit (%d)",
709 hdev->name, urb, -err);
710 usb_unanchor_urb(urb);
714 static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
718 BT_DBG("len %d mtu %d", len, mtu);
720 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
721 i++, offset += mtu, len -= mtu) {
722 urb->iso_frame_desc[i].offset = offset;
723 urb->iso_frame_desc[i].length = mtu;
726 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
727 urb->iso_frame_desc[i].offset = offset;
728 urb->iso_frame_desc[i].length = len;
732 urb->number_of_packets = i;
735 static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
737 struct btusb_data *data = hci_get_drvdata(hdev);
743 BT_DBG("%s", hdev->name);
745 if (!data->isoc_rx_ep)
748 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
752 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
753 BTUSB_MAX_ISOC_FRAMES;
755 buf = kmalloc(size, mem_flags);
761 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
763 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
764 hdev, data->isoc_rx_ep->bInterval);
766 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
768 __fill_isoc_descriptor(urb, size,
769 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
771 usb_anchor_urb(urb, &data->isoc_anchor);
773 err = usb_submit_urb(urb, mem_flags);
775 if (err != -EPERM && err != -ENODEV)
776 BT_ERR("%s urb %p submission failed (%d)",
777 hdev->name, urb, -err);
778 usb_unanchor_urb(urb);
786 static void btusb_tx_complete(struct urb *urb)
788 struct sk_buff *skb = urb->context;
789 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
790 struct btusb_data *data = hci_get_drvdata(hdev);
792 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
795 if (!test_bit(HCI_RUNNING, &hdev->flags))
799 hdev->stat.byte_tx += urb->transfer_buffer_length;
804 spin_lock(&data->txlock);
805 data->tx_in_flight--;
806 spin_unlock(&data->txlock);
808 kfree(urb->setup_packet);
813 static void btusb_isoc_tx_complete(struct urb *urb)
815 struct sk_buff *skb = urb->context;
816 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
818 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
821 if (!test_bit(HCI_RUNNING, &hdev->flags))
825 hdev->stat.byte_tx += urb->transfer_buffer_length;
830 kfree(urb->setup_packet);
835 static int btusb_open(struct hci_dev *hdev)
837 struct btusb_data *data = hci_get_drvdata(hdev);
840 BT_DBG("%s", hdev->name);
842 err = usb_autopm_get_interface(data->intf);
846 data->intf->needs_remote_wakeup = 1;
848 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
851 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
854 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
858 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
860 usb_kill_anchored_urbs(&data->intr_anchor);
864 set_bit(BTUSB_BULK_RUNNING, &data->flags);
865 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
868 usb_autopm_put_interface(data->intf);
872 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
873 clear_bit(HCI_RUNNING, &hdev->flags);
874 usb_autopm_put_interface(data->intf);
878 static void btusb_stop_traffic(struct btusb_data *data)
880 usb_kill_anchored_urbs(&data->intr_anchor);
881 usb_kill_anchored_urbs(&data->bulk_anchor);
882 usb_kill_anchored_urbs(&data->isoc_anchor);
885 static int btusb_close(struct hci_dev *hdev)
887 struct btusb_data *data = hci_get_drvdata(hdev);
890 BT_DBG("%s", hdev->name);
892 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
895 cancel_work_sync(&data->work);
896 cancel_work_sync(&data->waker);
898 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
899 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
900 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
902 btusb_stop_traffic(data);
903 btusb_free_frags(data);
905 err = usb_autopm_get_interface(data->intf);
909 data->intf->needs_remote_wakeup = 0;
910 usb_autopm_put_interface(data->intf);
913 usb_scuttle_anchored_urbs(&data->deferred);
917 static int btusb_flush(struct hci_dev *hdev)
919 struct btusb_data *data = hci_get_drvdata(hdev);
921 BT_DBG("%s", hdev->name);
923 usb_kill_anchored_urbs(&data->tx_anchor);
924 btusb_free_frags(data);
929 static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
931 struct btusb_data *data = hci_get_drvdata(hdev);
932 struct usb_ctrlrequest *dr;
936 urb = usb_alloc_urb(0, GFP_KERNEL);
938 return ERR_PTR(-ENOMEM);
940 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
943 return ERR_PTR(-ENOMEM);
946 dr->bRequestType = data->cmdreq_type;
950 dr->wLength = __cpu_to_le16(skb->len);
952 pipe = usb_sndctrlpipe(data->udev, 0x00);
954 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
955 skb->data, skb->len, btusb_tx_complete, skb);
957 skb->dev = (void *)hdev;
962 static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
964 struct btusb_data *data = hci_get_drvdata(hdev);
968 if (!data->bulk_tx_ep)
969 return ERR_PTR(-ENODEV);
971 urb = usb_alloc_urb(0, GFP_KERNEL);
973 return ERR_PTR(-ENOMEM);
975 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
977 usb_fill_bulk_urb(urb, data->udev, pipe,
978 skb->data, skb->len, btusb_tx_complete, skb);
980 skb->dev = (void *)hdev;
985 static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
987 struct btusb_data *data = hci_get_drvdata(hdev);
991 if (!data->isoc_tx_ep)
992 return ERR_PTR(-ENODEV);
994 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
996 return ERR_PTR(-ENOMEM);
998 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
1000 usb_fill_int_urb(urb, data->udev, pipe,
1001 skb->data, skb->len, btusb_isoc_tx_complete,
1002 skb, data->isoc_tx_ep->bInterval);
1004 urb->transfer_flags = URB_ISO_ASAP;
1006 __fill_isoc_descriptor(urb, skb->len,
1007 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
1009 skb->dev = (void *)hdev;
1014 static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1016 struct btusb_data *data = hci_get_drvdata(hdev);
1019 usb_anchor_urb(urb, &data->tx_anchor);
1021 err = usb_submit_urb(urb, GFP_KERNEL);
1023 if (err != -EPERM && err != -ENODEV)
1024 BT_ERR("%s urb %p submission failed (%d)",
1025 hdev->name, urb, -err);
1026 kfree(urb->setup_packet);
1027 usb_unanchor_urb(urb);
1029 usb_mark_last_busy(data->udev);
1036 static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1038 struct btusb_data *data = hci_get_drvdata(hdev);
1039 unsigned long flags;
1042 spin_lock_irqsave(&data->txlock, flags);
1043 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1045 data->tx_in_flight++;
1046 spin_unlock_irqrestore(&data->txlock, flags);
1049 return submit_tx_urb(hdev, urb);
1051 usb_anchor_urb(urb, &data->deferred);
1052 schedule_work(&data->waker);
1058 static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1062 BT_DBG("%s", hdev->name);
1064 if (!test_bit(HCI_RUNNING, &hdev->flags))
1067 switch (bt_cb(skb)->pkt_type) {
1068 case HCI_COMMAND_PKT:
1069 urb = alloc_ctrl_urb(hdev, skb);
1071 return PTR_ERR(urb);
1073 hdev->stat.cmd_tx++;
1074 return submit_or_queue_tx_urb(hdev, urb);
1076 case HCI_ACLDATA_PKT:
1077 urb = alloc_bulk_urb(hdev, skb);
1079 return PTR_ERR(urb);
1081 hdev->stat.acl_tx++;
1082 return submit_or_queue_tx_urb(hdev, urb);
1084 case HCI_SCODATA_PKT:
1085 if (hci_conn_num(hdev, SCO_LINK) < 1)
1088 urb = alloc_isoc_urb(hdev, skb);
1090 return PTR_ERR(urb);
1092 hdev->stat.sco_tx++;
1093 return submit_tx_urb(hdev, urb);
1099 static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1101 struct btusb_data *data = hci_get_drvdata(hdev);
1103 BT_DBG("%s evt %d", hdev->name, evt);
1105 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1106 data->sco_num = hci_conn_num(hdev, SCO_LINK);
1107 schedule_work(&data->work);
1111 static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
1113 struct btusb_data *data = hci_get_drvdata(hdev);
1114 struct usb_interface *intf = data->isoc;
1115 struct usb_endpoint_descriptor *ep_desc;
1121 err = usb_set_interface(data->udev, 1, altsetting);
1123 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1127 data->isoc_altsetting = altsetting;
1129 data->isoc_tx_ep = NULL;
1130 data->isoc_rx_ep = NULL;
1132 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1133 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1135 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1136 data->isoc_tx_ep = ep_desc;
1140 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1141 data->isoc_rx_ep = ep_desc;
1146 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1147 BT_ERR("%s invalid SCO descriptors", hdev->name);
1154 static void btusb_work(struct work_struct *work)
1156 struct btusb_data *data = container_of(work, struct btusb_data, work);
1157 struct hci_dev *hdev = data->hdev;
1161 if (data->sco_num > 0) {
1162 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
1163 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
1165 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1166 usb_kill_anchored_urbs(&data->isoc_anchor);
1170 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
1173 if (hdev->voice_setting & 0x0020) {
1174 static const int alts[3] = { 2, 4, 5 };
1176 new_alts = alts[data->sco_num - 1];
1178 new_alts = data->sco_num;
1181 if (data->isoc_altsetting != new_alts) {
1182 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1183 usb_kill_anchored_urbs(&data->isoc_anchor);
1185 if (__set_isoc_interface(hdev, new_alts) < 0)
1189 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1190 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
1191 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1193 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
1196 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1197 usb_kill_anchored_urbs(&data->isoc_anchor);
1199 __set_isoc_interface(hdev, 0);
1200 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
1201 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
1205 static void btusb_waker(struct work_struct *work)
1207 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1210 err = usb_autopm_get_interface(data->intf);
1214 usb_autopm_put_interface(data->intf);
1217 static int btusb_setup_bcm92035(struct hci_dev *hdev)
1219 struct sk_buff *skb;
1222 BT_DBG("%s", hdev->name);
1224 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1226 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1233 static int btusb_setup_csr(struct hci_dev *hdev)
1235 struct hci_rp_read_local_version *rp;
1236 struct sk_buff *skb;
1239 BT_DBG("%s", hdev->name);
1241 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1244 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb));
1245 return -PTR_ERR(skb);
1248 rp = (struct hci_rp_read_local_version *)skb->data;
1251 if (le16_to_cpu(rp->manufacturer) != 10) {
1252 /* Clear the reset quirk since this is not an actual
1253 * early Bluetooth 1.1 device from CSR.
1255 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1257 /* These fake CSR controllers have all a broken
1258 * stored link key handling and so just disable it.
1260 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1265 ret = -bt_to_errno(rp->status);
1272 struct intel_version {
1285 static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
1286 struct intel_version *ver)
1288 const struct firmware *fw;
1292 snprintf(fwname, sizeof(fwname),
1293 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1294 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1295 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1296 ver->fw_build_ww, ver->fw_build_yy);
1298 ret = request_firmware(&fw, fwname, &hdev->dev);
1300 if (ret == -EINVAL) {
1301 BT_ERR("%s Intel firmware file request failed (%d)",
1306 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1307 hdev->name, fwname, ret);
1309 /* If the correct firmware patch file is not found, use the
1310 * default firmware patch file instead
1312 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1313 ver->hw_platform, ver->hw_variant);
1314 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1315 BT_ERR("%s failed to open default Intel fw file: %s",
1316 hdev->name, fwname);
1321 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1326 static int btusb_setup_intel_patching(struct hci_dev *hdev,
1327 const struct firmware *fw,
1328 const u8 **fw_ptr, int *disable_patch)
1330 struct sk_buff *skb;
1331 struct hci_command_hdr *cmd;
1332 const u8 *cmd_param;
1333 struct hci_event_hdr *evt = NULL;
1334 const u8 *evt_param = NULL;
1335 int remain = fw->size - (*fw_ptr - fw->data);
1337 /* The first byte indicates the types of the patch command or event.
1338 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1339 * in the current firmware buffer doesn't start with 0x01 or
1340 * the size of remain buffer is smaller than HCI command header,
1341 * the firmware file is corrupted and it should stop the patching
1344 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1345 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1351 cmd = (struct hci_command_hdr *)(*fw_ptr);
1352 *fw_ptr += sizeof(*cmd);
1353 remain -= sizeof(*cmd);
1355 /* Ensure that the remain firmware data is long enough than the length
1356 * of command parameter. If not, the firmware file is corrupted.
1358 if (remain < cmd->plen) {
1359 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1363 /* If there is a command that loads a patch in the firmware
1364 * file, then enable the patch upon success, otherwise just
1365 * disable the manufacturer mode, for example patch activation
1366 * is not required when the default firmware patch file is used
1367 * because there are no patch data to load.
1369 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1372 cmd_param = *fw_ptr;
1373 *fw_ptr += cmd->plen;
1374 remain -= cmd->plen;
1376 /* This reads the expected events when the above command is sent to the
1377 * device. Some vendor commands expects more than one events, for
1378 * example command status event followed by vendor specific event.
1379 * For this case, it only keeps the last expected event. so the command
1380 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1381 * last expected event.
1383 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1387 evt = (struct hci_event_hdr *)(*fw_ptr);
1388 *fw_ptr += sizeof(*evt);
1389 remain -= sizeof(*evt);
1391 if (remain < evt->plen) {
1392 BT_ERR("%s Intel fw corrupted: invalid evt len",
1397 evt_param = *fw_ptr;
1398 *fw_ptr += evt->plen;
1399 remain -= evt->plen;
1402 /* Every HCI commands in the firmware file has its correspond event.
1403 * If event is not found or remain is smaller than zero, the firmware
1404 * file is corrupted.
1406 if (!evt || !evt_param || remain < 0) {
1407 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1411 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1412 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1414 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1415 hdev->name, cmd->opcode, PTR_ERR(skb));
1416 return PTR_ERR(skb);
1419 /* It ensures that the returned event matches the event data read from
1420 * the firmware file. At fist, it checks the length and then
1421 * the contents of the event.
1423 if (skb->len != evt->plen) {
1424 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1425 le16_to_cpu(cmd->opcode));
1430 if (memcmp(skb->data, evt_param, evt->plen)) {
1431 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1432 hdev->name, le16_to_cpu(cmd->opcode));
1441 #define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1443 static int btusb_check_bdaddr_intel(struct hci_dev *hdev)
1445 struct sk_buff *skb;
1446 struct hci_rp_read_bd_addr *rp;
1448 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1451 BT_ERR("%s reading Intel device address failed (%ld)",
1452 hdev->name, PTR_ERR(skb));
1453 return PTR_ERR(skb);
1456 if (skb->len != sizeof(*rp)) {
1457 BT_ERR("%s Intel device address length mismatch", hdev->name);
1462 rp = (struct hci_rp_read_bd_addr *)skb->data;
1464 BT_ERR("%s Intel device address result failed (%02x)",
1465 hdev->name, rp->status);
1467 return -bt_to_errno(rp->status);
1470 /* For some Intel based controllers, the default Bluetooth device
1471 * address 00:03:19:9E:8B:00 can be found. These controllers are
1472 * fully operational, but have the danger of duplicate addresses
1473 * and that in turn can cause problems with Bluetooth operation.
1475 if (!bacmp(&rp->bdaddr, BDADDR_INTEL)) {
1476 BT_ERR("%s found Intel default device address (%pMR)",
1477 hdev->name, &rp->bdaddr);
1478 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1486 static int btusb_setup_intel(struct hci_dev *hdev)
1488 struct sk_buff *skb;
1489 const struct firmware *fw;
1492 struct intel_version *ver;
1494 const u8 mfg_enable[] = { 0x01, 0x00 };
1495 const u8 mfg_disable[] = { 0x00, 0x00 };
1496 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1497 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1499 BT_DBG("%s", hdev->name);
1501 /* The controller has a bug with the first HCI command sent to it
1502 * returning number of completed commands as zero. This would stall the
1503 * command processing in the Bluetooth core.
1505 * As a workaround, send HCI Reset command first which will reset the
1506 * number of completed commands and allow normal command processing
1509 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1511 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1512 hdev->name, PTR_ERR(skb));
1513 return PTR_ERR(skb);
1517 /* Read Intel specific controller version first to allow selection of
1518 * which firmware file to load.
1520 * The returned information are hardware variant and revision plus
1521 * firmware variant, revision and build number.
1523 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1525 BT_ERR("%s reading Intel fw version command failed (%ld)",
1526 hdev->name, PTR_ERR(skb));
1527 return PTR_ERR(skb);
1530 if (skb->len != sizeof(*ver)) {
1531 BT_ERR("%s Intel version event length mismatch", hdev->name);
1536 ver = (struct intel_version *)skb->data;
1538 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1541 return -bt_to_errno(ver->status);
1544 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1545 hdev->name, ver->hw_platform, ver->hw_variant,
1546 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1547 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1550 /* fw_patch_num indicates the version of patch the device currently
1551 * have. If there is no patch data in the device, it is always 0x00.
1552 * So, if it is other than 0x00, no need to patch the deivce again.
1554 if (ver->fw_patch_num) {
1555 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1556 hdev->name, ver->fw_patch_num);
1558 btusb_check_bdaddr_intel(hdev);
1562 /* Opens the firmware patch file based on the firmware version read
1563 * from the controller. If it fails to open the matching firmware
1564 * patch file, it tries to open the default firmware patch file.
1565 * If no patch file is found, allow the device to operate without
1568 fw = btusb_setup_intel_get_fw(hdev, ver);
1571 btusb_check_bdaddr_intel(hdev);
1576 /* This Intel specific command enables the manufacturer mode of the
1579 * Only while this mode is enabled, the driver can download the
1580 * firmware patch data and configuration parameters.
1582 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1584 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1585 hdev->name, PTR_ERR(skb));
1586 release_firmware(fw);
1587 return PTR_ERR(skb);
1591 u8 evt_status = skb->data[0];
1593 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1594 hdev->name, evt_status);
1596 release_firmware(fw);
1597 return -bt_to_errno(evt_status);
1603 /* The firmware data file consists of list of Intel specific HCI
1604 * commands and its expected events. The first byte indicates the
1605 * type of the message, either HCI command or HCI event.
1607 * It reads the command and its expected event from the firmware file,
1608 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1609 * the returned event is compared with the event read from the firmware
1610 * file and it will continue until all the messages are downloaded to
1613 * Once the firmware patching is completed successfully,
1614 * the manufacturer mode is disabled with reset and activating the
1617 * If the firmware patching fails, the manufacturer mode is
1618 * disabled with reset and deactivating the patch.
1620 * If the default patch file is used, no reset is done when disabling
1623 while (fw->size > fw_ptr - fw->data) {
1626 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1629 goto exit_mfg_deactivate;
1632 release_firmware(fw);
1635 goto exit_mfg_disable;
1637 /* Patching completed successfully and disable the manufacturer mode
1638 * with reset and activate the downloaded firmware patches.
1640 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1641 mfg_reset_activate, HCI_INIT_TIMEOUT);
1643 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1644 hdev->name, PTR_ERR(skb));
1645 return PTR_ERR(skb);
1649 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1652 btusb_check_bdaddr_intel(hdev);
1656 /* Disable the manufacturer mode without reset */
1657 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1660 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1661 hdev->name, PTR_ERR(skb));
1662 return PTR_ERR(skb);
1666 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
1668 btusb_check_bdaddr_intel(hdev);
1671 exit_mfg_deactivate:
1672 release_firmware(fw);
1674 /* Patching failed. Disable the manufacturer mode with reset and
1675 * deactivate the downloaded firmware patches.
1677 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1678 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1680 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1681 hdev->name, PTR_ERR(skb));
1682 return PTR_ERR(skb);
1686 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1689 btusb_check_bdaddr_intel(hdev);
1693 static int btusb_set_bdaddr_intel(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1695 struct sk_buff *skb;
1698 skb = __hci_cmd_sync(hdev, 0xfc31, 6, bdaddr, HCI_INIT_TIMEOUT);
1701 BT_ERR("%s: changing Intel device address failed (%ld)",
1710 static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
1711 const bdaddr_t *bdaddr)
1713 struct sk_buff *skb;
1718 buf[1] = sizeof(bdaddr_t);
1719 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
1721 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
1724 BT_ERR("%s: changing Marvell device address failed (%ld)",
1733 #define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
1735 static int btusb_setup_bcm_patchram(struct hci_dev *hdev)
1737 struct btusb_data *data = hci_get_drvdata(hdev);
1738 struct usb_device *udev = data->udev;
1740 const struct firmware *fw;
1743 const struct hci_command_hdr *cmd;
1744 const u8 *cmd_param;
1746 struct sk_buff *skb;
1747 struct hci_rp_read_local_version *ver;
1748 struct hci_rp_read_bd_addr *bda;
1751 snprintf(fw_name, sizeof(fw_name), "brcm/%s-%04x-%04x.hcd",
1752 udev->product ? udev->product : "BCM",
1753 le16_to_cpu(udev->descriptor.idVendor),
1754 le16_to_cpu(udev->descriptor.idProduct));
1756 ret = request_firmware(&fw, fw_name, &hdev->dev);
1758 BT_INFO("%s: BCM: patch %s not found", hdev->name, fw_name);
1763 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1766 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1771 /* Read Local Version Info */
1772 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1776 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1781 if (skb->len != sizeof(*ver)) {
1782 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1789 ver = (struct hci_rp_read_local_version *)skb->data;
1790 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1791 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1792 ver->lmp_ver, ver->lmp_subver);
1795 /* Start Download */
1796 skb = __hci_cmd_sync(hdev, 0xfc2e, 0, NULL, HCI_INIT_TIMEOUT);
1799 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
1805 /* 50 msec delay after Download Minidrv completes */
1811 while (fw_size >= sizeof(*cmd)) {
1812 cmd = (struct hci_command_hdr *)fw_ptr;
1813 fw_ptr += sizeof(*cmd);
1814 fw_size -= sizeof(*cmd);
1816 if (fw_size < cmd->plen) {
1817 BT_ERR("%s: BCM: patch %s is corrupted",
1818 hdev->name, fw_name);
1824 fw_ptr += cmd->plen;
1825 fw_size -= cmd->plen;
1827 opcode = le16_to_cpu(cmd->opcode);
1829 skb = __hci_cmd_sync(hdev, opcode, cmd->plen, cmd_param,
1833 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
1834 hdev->name, opcode, ret);
1840 /* 250 msec delay after Launch Ram completes */
1845 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1848 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1853 /* Read Local Version Info */
1854 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1858 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1863 if (skb->len != sizeof(*ver)) {
1864 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1871 ver = (struct hci_rp_read_local_version *)skb->data;
1872 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1873 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1874 ver->lmp_ver, ver->lmp_subver);
1877 /* Read BD Address */
1878 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1882 BT_ERR("%s: HCI_OP_READ_BD_ADDR failed (%ld)",
1887 if (skb->len != sizeof(*bda)) {
1888 BT_ERR("%s: HCI_OP_READ_BD_ADDR event length mismatch",
1895 bda = (struct hci_rp_read_bd_addr *)skb->data;
1897 BT_ERR("%s: HCI_OP_READ_BD_ADDR error status (%02x)",
1898 hdev->name, bda->status);
1900 ret = -bt_to_errno(bda->status);
1904 /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
1905 * with no configured address.
1907 if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) {
1908 BT_INFO("%s: BCM: using default device address (%pMR)",
1909 hdev->name, &bda->bdaddr);
1910 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1916 release_firmware(fw);
1921 static int btusb_set_bdaddr_bcm(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1923 struct sk_buff *skb;
1926 skb = __hci_cmd_sync(hdev, 0xfc01, 6, bdaddr, HCI_INIT_TIMEOUT);
1929 BT_ERR("%s: BCM: Change address command failed (%ld)",
1938 static int btusb_probe(struct usb_interface *intf,
1939 const struct usb_device_id *id)
1941 struct usb_endpoint_descriptor *ep_desc;
1942 struct btusb_data *data;
1943 struct hci_dev *hdev;
1946 BT_DBG("intf %p id %p", intf, id);
1948 /* interface numbers are hardcoded in the spec */
1949 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
1952 if (!id->driver_info) {
1953 const struct usb_device_id *match;
1955 match = usb_match_id(intf, blacklist_table);
1960 if (id->driver_info == BTUSB_IGNORE)
1963 if (id->driver_info & BTUSB_ATH3012) {
1964 struct usb_device *udev = interface_to_usbdev(intf);
1966 /* Old firmware would otherwise let ath3k driver load
1967 * patch and sysconfig files */
1968 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
1972 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
1976 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1977 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1979 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
1980 data->intr_ep = ep_desc;
1984 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
1985 data->bulk_tx_ep = ep_desc;
1989 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
1990 data->bulk_rx_ep = ep_desc;
1995 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
1998 data->cmdreq_type = USB_TYPE_CLASS;
2000 data->udev = interface_to_usbdev(intf);
2003 INIT_WORK(&data->work, btusb_work);
2004 INIT_WORK(&data->waker, btusb_waker);
2005 init_usb_anchor(&data->deferred);
2006 init_usb_anchor(&data->tx_anchor);
2007 spin_lock_init(&data->txlock);
2009 init_usb_anchor(&data->intr_anchor);
2010 init_usb_anchor(&data->bulk_anchor);
2011 init_usb_anchor(&data->isoc_anchor);
2012 spin_lock_init(&data->rxlock);
2014 hdev = hci_alloc_dev();
2018 hdev->bus = HCI_USB;
2019 hci_set_drvdata(hdev, data);
2023 SET_HCIDEV_DEV(hdev, &intf->dev);
2025 hdev->open = btusb_open;
2026 hdev->close = btusb_close;
2027 hdev->flush = btusb_flush;
2028 hdev->send = btusb_send_frame;
2029 hdev->notify = btusb_notify;
2031 if (id->driver_info & BTUSB_BCM92035)
2032 hdev->setup = btusb_setup_bcm92035;
2034 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
2035 hdev->setup = btusb_setup_bcm_patchram;
2036 hdev->set_bdaddr = btusb_set_bdaddr_bcm;
2039 if (id->driver_info & BTUSB_INTEL) {
2040 hdev->setup = btusb_setup_intel;
2041 hdev->set_bdaddr = btusb_set_bdaddr_intel;
2044 if (id->driver_info & BTUSB_MARVELL)
2045 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2047 if (id->driver_info & BTUSB_INTEL_BOOT)
2048 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2050 /* Interface numbers are hardcoded in the specification */
2051 data->isoc = usb_ifnum_to_if(data->udev, 1);
2054 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2056 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2057 if (!disable_scofix)
2058 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2061 if (id->driver_info & BTUSB_BROKEN_ISOC)
2064 if (id->driver_info & BTUSB_DIGIANSWER) {
2065 data->cmdreq_type = USB_TYPE_VENDOR;
2066 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2069 if (id->driver_info & BTUSB_CSR) {
2070 struct usb_device *udev = data->udev;
2071 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
2073 /* Old firmware would otherwise execute USB reset */
2074 if (bcdDevice < 0x117)
2075 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2077 /* Fake CSR devices with broken commands */
2078 if (bcdDevice <= 0x100)
2079 hdev->setup = btusb_setup_csr;
2082 if (id->driver_info & BTUSB_SNIFFER) {
2083 struct usb_device *udev = data->udev;
2085 /* New sniffer firmware has crippled HCI interface */
2086 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2087 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2090 if (id->driver_info & BTUSB_INTEL_BOOT) {
2091 /* A bug in the bootloader causes that interrupt interface is
2092 * only enabled after receiving SetInterface(0, AltSetting=0).
2094 err = usb_set_interface(data->udev, 0, 0);
2096 BT_ERR("failed to set interface 0, alt 0 %d", err);
2103 err = usb_driver_claim_interface(&btusb_driver,
2111 err = hci_register_dev(hdev);
2117 usb_set_intfdata(intf, data);
2122 static void btusb_disconnect(struct usb_interface *intf)
2124 struct btusb_data *data = usb_get_intfdata(intf);
2125 struct hci_dev *hdev;
2127 BT_DBG("intf %p", intf);
2133 usb_set_intfdata(data->intf, NULL);
2136 usb_set_intfdata(data->isoc, NULL);
2138 hci_unregister_dev(hdev);
2140 if (intf == data->isoc)
2141 usb_driver_release_interface(&btusb_driver, data->intf);
2142 else if (data->isoc)
2143 usb_driver_release_interface(&btusb_driver, data->isoc);
2145 btusb_free_frags(data);
2150 static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2152 struct btusb_data *data = usb_get_intfdata(intf);
2154 BT_DBG("intf %p", intf);
2156 if (data->suspend_count++)
2159 spin_lock_irq(&data->txlock);
2160 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
2161 set_bit(BTUSB_SUSPENDING, &data->flags);
2162 spin_unlock_irq(&data->txlock);
2164 spin_unlock_irq(&data->txlock);
2165 data->suspend_count--;
2169 cancel_work_sync(&data->work);
2171 btusb_stop_traffic(data);
2172 usb_kill_anchored_urbs(&data->tx_anchor);
2177 static void play_deferred(struct btusb_data *data)
2182 while ((urb = usb_get_from_anchor(&data->deferred))) {
2183 err = usb_submit_urb(urb, GFP_ATOMIC);
2187 data->tx_in_flight++;
2189 usb_scuttle_anchored_urbs(&data->deferred);
2192 static int btusb_resume(struct usb_interface *intf)
2194 struct btusb_data *data = usb_get_intfdata(intf);
2195 struct hci_dev *hdev = data->hdev;
2198 BT_DBG("intf %p", intf);
2200 if (--data->suspend_count)
2203 if (!test_bit(HCI_RUNNING, &hdev->flags))
2206 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2207 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2209 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
2214 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
2215 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2217 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
2221 btusb_submit_bulk_urb(hdev, GFP_NOIO);
2224 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2225 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2226 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2228 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2231 spin_lock_irq(&data->txlock);
2232 play_deferred(data);
2233 clear_bit(BTUSB_SUSPENDING, &data->flags);
2234 spin_unlock_irq(&data->txlock);
2235 schedule_work(&data->work);
2240 usb_scuttle_anchored_urbs(&data->deferred);
2242 spin_lock_irq(&data->txlock);
2243 clear_bit(BTUSB_SUSPENDING, &data->flags);
2244 spin_unlock_irq(&data->txlock);
2250 static struct usb_driver btusb_driver = {
2252 .probe = btusb_probe,
2253 .disconnect = btusb_disconnect,
2255 .suspend = btusb_suspend,
2256 .resume = btusb_resume,
2258 .id_table = btusb_table,
2259 .supports_autosuspend = 1,
2260 .disable_hub_initiated_lpm = 1,
2263 module_usb_driver(btusb_driver);
2265 module_param(disable_scofix, bool, 0644);
2266 MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
2268 module_param(force_scofix, bool, 0644);
2269 MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
2271 module_param(reset, bool, 0644);
2272 MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
2275 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
2276 MODULE_VERSION(VERSION);
2277 MODULE_LICENSE("GPL");