3 * Generic Bluetooth USB driver
5 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
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 ignore_dga
;
34 static bool ignore_csr
;
35 static bool ignore_sniffer
;
36 static bool disable_scofix
;
37 static bool force_scofix
;
39 static bool reset
= 1;
41 static struct usb_driver btusb_driver
;
43 #define BTUSB_IGNORE 0x01
44 #define BTUSB_DIGIANSWER 0x02
45 #define BTUSB_CSR 0x04
46 #define BTUSB_SNIFFER 0x08
47 #define BTUSB_BCM92035 0x10
48 #define BTUSB_BROKEN_ISOC 0x20
49 #define BTUSB_WRONG_SCO_MTU 0x40
50 #define BTUSB_ATH3012 0x80
51 #define BTUSB_INTEL 0x100
52 #define BTUSB_BCM_PATCHRAM 0x200
54 static const struct usb_device_id btusb_table
[] = {
55 /* Generic Bluetooth USB device */
56 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
58 /* Apple-specific (Broadcom) devices */
59 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01) },
61 /* MediaTek MT76x0E */
62 { USB_DEVICE(0x0e8d, 0x763f) },
64 /* Broadcom SoftSailing reporting vendor specific */
65 { USB_DEVICE(0x0a5c, 0x21e1) },
67 /* Apple MacBookPro 7,1 */
68 { USB_DEVICE(0x05ac, 0x8213) },
71 { USB_DEVICE(0x05ac, 0x8215) },
73 /* Apple MacBookPro6,2 */
74 { USB_DEVICE(0x05ac, 0x8218) },
76 /* Apple MacBookAir3,1, MacBookAir3,2 */
77 { USB_DEVICE(0x05ac, 0x821b) },
79 /* Apple MacBookAir4,1 */
80 { USB_DEVICE(0x05ac, 0x821f) },
82 /* Apple MacBookPro8,2 */
83 { USB_DEVICE(0x05ac, 0x821a) },
85 /* Apple MacMini5,1 */
86 { USB_DEVICE(0x05ac, 0x8281) },
88 /* AVM BlueFRITZ! USB v2.0 */
89 { USB_DEVICE(0x057c, 0x3800) },
91 /* Bluetooth Ultraport Module from IBM */
92 { USB_DEVICE(0x04bf, 0x030a) },
94 /* ALPS Modules with non-standard id */
95 { USB_DEVICE(0x044e, 0x3001) },
96 { USB_DEVICE(0x044e, 0x3002) },
98 /* Ericsson with non-standard id */
99 { USB_DEVICE(0x0bdb, 0x1002) },
101 /* Canyon CN-BTU1 with HID interfaces */
102 { USB_DEVICE(0x0c10, 0x0000) },
104 /* Broadcom BCM20702A0 */
105 { USB_DEVICE(0x0489, 0xe042) },
106 { USB_DEVICE(0x04ca, 0x2003) },
107 { USB_DEVICE(0x0b05, 0x17b5) },
108 { USB_DEVICE(0x0b05, 0x17cb) },
109 { USB_DEVICE(0x413c, 0x8197) },
111 /* Foxconn - Hon Hai */
112 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01) },
114 /* Broadcom devices with vendor specific id */
115 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
116 .driver_info
= BTUSB_BCM_PATCHRAM
},
118 /* Belkin F8065bf - Broadcom based */
119 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01) },
121 /* IMC Networks - Broadcom based */
122 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) },
124 { } /* Terminating entry */
127 MODULE_DEVICE_TABLE(usb
, btusb_table
);
129 static const struct usb_device_id blacklist_table
[] = {
130 /* CSR BlueCore devices */
131 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= BTUSB_CSR
},
133 /* Broadcom BCM2033 without firmware */
134 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= BTUSB_IGNORE
},
136 /* Atheros 3011 with sflash firmware */
137 { USB_DEVICE(0x0489, 0xe027), .driver_info
= BTUSB_IGNORE
},
138 { USB_DEVICE(0x0489, 0xe03d), .driver_info
= BTUSB_IGNORE
},
139 { USB_DEVICE(0x0930, 0x0215), .driver_info
= BTUSB_IGNORE
},
140 { USB_DEVICE(0x0cf3, 0x3002), .driver_info
= BTUSB_IGNORE
},
141 { USB_DEVICE(0x0cf3, 0xe019), .driver_info
= BTUSB_IGNORE
},
142 { USB_DEVICE(0x13d3, 0x3304), .driver_info
= BTUSB_IGNORE
},
144 /* Atheros AR9285 Malbec with sflash firmware */
145 { USB_DEVICE(0x03f0, 0x311d), .driver_info
= BTUSB_IGNORE
},
147 /* Atheros 3012 with sflash firmware */
148 { USB_DEVICE(0x0489, 0xe04d), .driver_info
= BTUSB_ATH3012
},
149 { USB_DEVICE(0x0489, 0xe04e), .driver_info
= BTUSB_ATH3012
},
150 { USB_DEVICE(0x0489, 0xe056), .driver_info
= BTUSB_ATH3012
},
151 { USB_DEVICE(0x0489, 0xe057), .driver_info
= BTUSB_ATH3012
},
152 { USB_DEVICE(0x0489, 0xe05f), .driver_info
= BTUSB_ATH3012
},
153 { USB_DEVICE(0x04c5, 0x1330), .driver_info
= BTUSB_ATH3012
},
154 { USB_DEVICE(0x04ca, 0x3004), .driver_info
= BTUSB_ATH3012
},
155 { USB_DEVICE(0x04ca, 0x3005), .driver_info
= BTUSB_ATH3012
},
156 { USB_DEVICE(0x04ca, 0x3006), .driver_info
= BTUSB_ATH3012
},
157 { USB_DEVICE(0x04ca, 0x3007), .driver_info
= BTUSB_ATH3012
},
158 { USB_DEVICE(0x04ca, 0x3008), .driver_info
= BTUSB_ATH3012
},
159 { USB_DEVICE(0x04ca, 0x300b), .driver_info
= BTUSB_ATH3012
},
160 { USB_DEVICE(0x0930, 0x0219), .driver_info
= BTUSB_ATH3012
},
161 { USB_DEVICE(0x0930, 0x0220), .driver_info
= BTUSB_ATH3012
},
162 { USB_DEVICE(0x0b05, 0x17d0), .driver_info
= BTUSB_ATH3012
},
163 { USB_DEVICE(0x0cf3, 0x0036), .driver_info
= BTUSB_ATH3012
},
164 { USB_DEVICE(0x0cf3, 0x3004), .driver_info
= BTUSB_ATH3012
},
165 { USB_DEVICE(0x0cf3, 0x3005), .driver_info
= BTUSB_ATH3012
},
166 { USB_DEVICE(0x0cf3, 0x3008), .driver_info
= BTUSB_ATH3012
},
167 { USB_DEVICE(0x0cf3, 0x311d), .driver_info
= BTUSB_ATH3012
},
168 { USB_DEVICE(0x0cf3, 0x311e), .driver_info
= BTUSB_ATH3012
},
169 { USB_DEVICE(0x0cf3, 0x311f), .driver_info
= BTUSB_ATH3012
},
170 { USB_DEVICE(0x0cf3, 0x3121), .driver_info
= BTUSB_ATH3012
},
171 { USB_DEVICE(0x0cf3, 0x817a), .driver_info
= BTUSB_ATH3012
},
172 { USB_DEVICE(0x0cf3, 0xe003), .driver_info
= BTUSB_ATH3012
},
173 { USB_DEVICE(0x0cf3, 0xe004), .driver_info
= BTUSB_ATH3012
},
174 { USB_DEVICE(0x0cf3, 0xe005), .driver_info
= BTUSB_ATH3012
},
175 { USB_DEVICE(0x13d3, 0x3362), .driver_info
= BTUSB_ATH3012
},
176 { USB_DEVICE(0x13d3, 0x3375), .driver_info
= BTUSB_ATH3012
},
177 { USB_DEVICE(0x13d3, 0x3393), .driver_info
= BTUSB_ATH3012
},
178 { USB_DEVICE(0x13d3, 0x3402), .driver_info
= BTUSB_ATH3012
},
180 /* Atheros AR5BBU12 with sflash firmware */
181 { USB_DEVICE(0x0489, 0xe02c), .driver_info
= BTUSB_IGNORE
},
183 /* Atheros AR5BBU12 with sflash firmware */
184 { USB_DEVICE(0x0489, 0xe036), .driver_info
= BTUSB_ATH3012
},
185 { USB_DEVICE(0x0489, 0xe03c), .driver_info
= BTUSB_ATH3012
},
187 /* Broadcom BCM2035 */
188 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
189 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
190 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
192 /* Broadcom BCM2045 */
193 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
194 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
196 /* IBM/Lenovo ThinkPad with Broadcom chip */
197 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
198 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
200 /* HP laptop with Broadcom chip */
201 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
203 /* Dell laptop with Broadcom chip */
204 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
206 /* Dell Wireless 370 and 410 devices */
207 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
208 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
210 /* Belkin F8T012 and F8T013 devices */
211 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
212 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
214 /* Asus WL-BTD202 device */
215 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
217 /* Kensington Bluetooth USB adapter */
218 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
220 /* RTX Telecom based adapters with buggy SCO support */
221 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
222 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
224 /* CONWISE Technology based adapters with buggy SCO support */
225 { USB_DEVICE(0x0e5e, 0x6622), .driver_info
= BTUSB_BROKEN_ISOC
},
227 /* Digianswer devices */
228 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
229 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
231 /* CSR BlueCore Bluetooth Sniffer */
232 { USB_DEVICE(0x0a12, 0x0002), .driver_info
= BTUSB_SNIFFER
},
234 /* Frontline ComProbe Bluetooth Sniffer */
235 { USB_DEVICE(0x16d3, 0x0002), .driver_info
= BTUSB_SNIFFER
},
237 /* Intel Bluetooth device */
238 { USB_DEVICE(0x8087, 0x07dc), .driver_info
= BTUSB_INTEL
},
239 { USB_DEVICE(0x8087, 0x0a2a), .driver_info
= BTUSB_INTEL
},
241 { } /* Terminating entry */
244 #define BTUSB_MAX_ISOC_FRAMES 10
246 #define BTUSB_INTR_RUNNING 0
247 #define BTUSB_BULK_RUNNING 1
248 #define BTUSB_ISOC_RUNNING 2
249 #define BTUSB_SUSPENDING 3
250 #define BTUSB_DID_ISO_RESUME 4
253 struct hci_dev
*hdev
;
254 struct usb_device
*udev
;
255 struct usb_interface
*intf
;
256 struct usb_interface
*isoc
;
262 struct work_struct work
;
263 struct work_struct waker
;
265 struct usb_anchor tx_anchor
;
266 struct usb_anchor intr_anchor
;
267 struct usb_anchor bulk_anchor
;
268 struct usb_anchor isoc_anchor
;
269 struct usb_anchor deferred
;
273 struct usb_endpoint_descriptor
*intr_ep
;
274 struct usb_endpoint_descriptor
*bulk_tx_ep
;
275 struct usb_endpoint_descriptor
*bulk_rx_ep
;
276 struct usb_endpoint_descriptor
*isoc_tx_ep
;
277 struct usb_endpoint_descriptor
*isoc_rx_ep
;
281 unsigned int sco_num
;
286 static int inc_tx(struct btusb_data
*data
)
291 spin_lock_irqsave(&data
->txlock
, flags
);
292 rv
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
294 data
->tx_in_flight
++;
295 spin_unlock_irqrestore(&data
->txlock
, flags
);
300 static void btusb_intr_complete(struct urb
*urb
)
302 struct hci_dev
*hdev
= urb
->context
;
303 struct btusb_data
*data
= hci_get_drvdata(hdev
);
306 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
307 urb
, urb
->status
, urb
->actual_length
);
309 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
312 if (urb
->status
== 0) {
313 hdev
->stat
.byte_rx
+= urb
->actual_length
;
315 if (hci_recv_fragment(hdev
, HCI_EVENT_PKT
,
316 urb
->transfer_buffer
,
317 urb
->actual_length
) < 0) {
318 BT_ERR("%s corrupted event packet", hdev
->name
);
323 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
326 usb_mark_last_busy(data
->udev
);
327 usb_anchor_urb(urb
, &data
->intr_anchor
);
329 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
331 /* -EPERM: urb is being killed;
332 * -ENODEV: device got disconnected */
333 if (err
!= -EPERM
&& err
!= -ENODEV
)
334 BT_ERR("%s urb %p failed to resubmit (%d)",
335 hdev
->name
, urb
, -err
);
336 usb_unanchor_urb(urb
);
340 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
342 struct btusb_data
*data
= hci_get_drvdata(hdev
);
348 BT_DBG("%s", hdev
->name
);
353 urb
= usb_alloc_urb(0, mem_flags
);
357 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
359 buf
= kmalloc(size
, mem_flags
);
365 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
367 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
368 btusb_intr_complete
, hdev
,
369 data
->intr_ep
->bInterval
);
371 urb
->transfer_flags
|= URB_FREE_BUFFER
;
373 usb_anchor_urb(urb
, &data
->intr_anchor
);
375 err
= usb_submit_urb(urb
, mem_flags
);
377 if (err
!= -EPERM
&& err
!= -ENODEV
)
378 BT_ERR("%s urb %p submission failed (%d)",
379 hdev
->name
, urb
, -err
);
380 usb_unanchor_urb(urb
);
388 static void btusb_bulk_complete(struct urb
*urb
)
390 struct hci_dev
*hdev
= urb
->context
;
391 struct btusb_data
*data
= hci_get_drvdata(hdev
);
394 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
395 urb
, urb
->status
, urb
->actual_length
);
397 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
400 if (urb
->status
== 0) {
401 hdev
->stat
.byte_rx
+= urb
->actual_length
;
403 if (hci_recv_fragment(hdev
, HCI_ACLDATA_PKT
,
404 urb
->transfer_buffer
,
405 urb
->actual_length
) < 0) {
406 BT_ERR("%s corrupted ACL packet", hdev
->name
);
411 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
414 usb_anchor_urb(urb
, &data
->bulk_anchor
);
415 usb_mark_last_busy(data
->udev
);
417 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
419 /* -EPERM: urb is being killed;
420 * -ENODEV: device got disconnected */
421 if (err
!= -EPERM
&& err
!= -ENODEV
)
422 BT_ERR("%s urb %p failed to resubmit (%d)",
423 hdev
->name
, urb
, -err
);
424 usb_unanchor_urb(urb
);
428 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
430 struct btusb_data
*data
= hci_get_drvdata(hdev
);
434 int err
, size
= HCI_MAX_FRAME_SIZE
;
436 BT_DBG("%s", hdev
->name
);
438 if (!data
->bulk_rx_ep
)
441 urb
= usb_alloc_urb(0, mem_flags
);
445 buf
= kmalloc(size
, mem_flags
);
451 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
453 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
454 buf
, size
, btusb_bulk_complete
, hdev
);
456 urb
->transfer_flags
|= URB_FREE_BUFFER
;
458 usb_mark_last_busy(data
->udev
);
459 usb_anchor_urb(urb
, &data
->bulk_anchor
);
461 err
= usb_submit_urb(urb
, mem_flags
);
463 if (err
!= -EPERM
&& err
!= -ENODEV
)
464 BT_ERR("%s urb %p submission failed (%d)",
465 hdev
->name
, urb
, -err
);
466 usb_unanchor_urb(urb
);
474 static void btusb_isoc_complete(struct urb
*urb
)
476 struct hci_dev
*hdev
= urb
->context
;
477 struct btusb_data
*data
= hci_get_drvdata(hdev
);
480 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
481 urb
, urb
->status
, urb
->actual_length
);
483 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
486 if (urb
->status
== 0) {
487 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
488 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
489 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
491 if (urb
->iso_frame_desc
[i
].status
)
494 hdev
->stat
.byte_rx
+= length
;
496 if (hci_recv_fragment(hdev
, HCI_SCODATA_PKT
,
497 urb
->transfer_buffer
+ offset
,
499 BT_ERR("%s corrupted SCO packet", hdev
->name
);
505 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
508 usb_anchor_urb(urb
, &data
->isoc_anchor
);
510 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
512 /* -EPERM: urb is being killed;
513 * -ENODEV: device got disconnected */
514 if (err
!= -EPERM
&& err
!= -ENODEV
)
515 BT_ERR("%s urb %p failed to resubmit (%d)",
516 hdev
->name
, urb
, -err
);
517 usb_unanchor_urb(urb
);
521 static inline void __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
525 BT_DBG("len %d mtu %d", len
, mtu
);
527 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
528 i
++, offset
+= mtu
, len
-= mtu
) {
529 urb
->iso_frame_desc
[i
].offset
= offset
;
530 urb
->iso_frame_desc
[i
].length
= mtu
;
533 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
534 urb
->iso_frame_desc
[i
].offset
= offset
;
535 urb
->iso_frame_desc
[i
].length
= len
;
539 urb
->number_of_packets
= i
;
542 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
544 struct btusb_data
*data
= hci_get_drvdata(hdev
);
550 BT_DBG("%s", hdev
->name
);
552 if (!data
->isoc_rx_ep
)
555 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
559 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
560 BTUSB_MAX_ISOC_FRAMES
;
562 buf
= kmalloc(size
, mem_flags
);
568 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
570 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
, btusb_isoc_complete
,
571 hdev
, data
->isoc_rx_ep
->bInterval
);
573 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
575 __fill_isoc_descriptor(urb
, size
,
576 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
578 usb_anchor_urb(urb
, &data
->isoc_anchor
);
580 err
= usb_submit_urb(urb
, mem_flags
);
582 if (err
!= -EPERM
&& err
!= -ENODEV
)
583 BT_ERR("%s urb %p submission failed (%d)",
584 hdev
->name
, urb
, -err
);
585 usb_unanchor_urb(urb
);
593 static void btusb_tx_complete(struct urb
*urb
)
595 struct sk_buff
*skb
= urb
->context
;
596 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
597 struct btusb_data
*data
= hci_get_drvdata(hdev
);
599 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
600 urb
, urb
->status
, urb
->actual_length
);
602 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
606 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
611 spin_lock(&data
->txlock
);
612 data
->tx_in_flight
--;
613 spin_unlock(&data
->txlock
);
615 kfree(urb
->setup_packet
);
620 static void btusb_isoc_tx_complete(struct urb
*urb
)
622 struct sk_buff
*skb
= urb
->context
;
623 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
625 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
626 urb
, urb
->status
, urb
->actual_length
);
628 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
632 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
637 kfree(urb
->setup_packet
);
642 static int btusb_open(struct hci_dev
*hdev
)
644 struct btusb_data
*data
= hci_get_drvdata(hdev
);
647 BT_DBG("%s", hdev
->name
);
649 err
= usb_autopm_get_interface(data
->intf
);
653 data
->intf
->needs_remote_wakeup
= 1;
655 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
658 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
661 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
665 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
667 usb_kill_anchored_urbs(&data
->intr_anchor
);
671 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
672 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
675 usb_autopm_put_interface(data
->intf
);
679 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
680 clear_bit(HCI_RUNNING
, &hdev
->flags
);
681 usb_autopm_put_interface(data
->intf
);
685 static void btusb_stop_traffic(struct btusb_data
*data
)
687 usb_kill_anchored_urbs(&data
->intr_anchor
);
688 usb_kill_anchored_urbs(&data
->bulk_anchor
);
689 usb_kill_anchored_urbs(&data
->isoc_anchor
);
692 static int btusb_close(struct hci_dev
*hdev
)
694 struct btusb_data
*data
= hci_get_drvdata(hdev
);
697 BT_DBG("%s", hdev
->name
);
699 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
702 cancel_work_sync(&data
->work
);
703 cancel_work_sync(&data
->waker
);
705 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
706 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
707 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
709 btusb_stop_traffic(data
);
710 err
= usb_autopm_get_interface(data
->intf
);
714 data
->intf
->needs_remote_wakeup
= 0;
715 usb_autopm_put_interface(data
->intf
);
718 usb_scuttle_anchored_urbs(&data
->deferred
);
722 static int btusb_flush(struct hci_dev
*hdev
)
724 struct btusb_data
*data
= hci_get_drvdata(hdev
);
726 BT_DBG("%s", hdev
->name
);
728 usb_kill_anchored_urbs(&data
->tx_anchor
);
733 static int btusb_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
735 struct btusb_data
*data
= hci_get_drvdata(hdev
);
736 struct usb_ctrlrequest
*dr
;
741 BT_DBG("%s", hdev
->name
);
743 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
746 skb
->dev
= (void *) hdev
;
748 switch (bt_cb(skb
)->pkt_type
) {
749 case HCI_COMMAND_PKT
:
750 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
754 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
760 dr
->bRequestType
= data
->cmdreq_type
;
764 dr
->wLength
= __cpu_to_le16(skb
->len
);
766 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
768 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
769 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
774 case HCI_ACLDATA_PKT
:
775 if (!data
->bulk_tx_ep
)
778 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
782 pipe
= usb_sndbulkpipe(data
->udev
,
783 data
->bulk_tx_ep
->bEndpointAddress
);
785 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
786 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
791 case HCI_SCODATA_PKT
:
792 if (!data
->isoc_tx_ep
|| hci_conn_num(hdev
, SCO_LINK
) < 1)
795 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
799 pipe
= usb_sndisocpipe(data
->udev
,
800 data
->isoc_tx_ep
->bEndpointAddress
);
802 usb_fill_int_urb(urb
, data
->udev
, pipe
,
803 skb
->data
, skb
->len
, btusb_isoc_tx_complete
,
804 skb
, data
->isoc_tx_ep
->bInterval
);
806 urb
->transfer_flags
= URB_ISO_ASAP
;
808 __fill_isoc_descriptor(urb
, skb
->len
,
809 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
820 usb_anchor_urb(urb
, &data
->deferred
);
821 schedule_work(&data
->waker
);
827 usb_anchor_urb(urb
, &data
->tx_anchor
);
829 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
831 if (err
!= -EPERM
&& err
!= -ENODEV
)
832 BT_ERR("%s urb %p submission failed (%d)",
833 hdev
->name
, urb
, -err
);
834 kfree(urb
->setup_packet
);
835 usb_unanchor_urb(urb
);
837 usb_mark_last_busy(data
->udev
);
845 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
847 struct btusb_data
*data
= hci_get_drvdata(hdev
);
849 BT_DBG("%s evt %d", hdev
->name
, evt
);
851 if (hci_conn_num(hdev
, SCO_LINK
) != data
->sco_num
) {
852 data
->sco_num
= hci_conn_num(hdev
, SCO_LINK
);
853 schedule_work(&data
->work
);
857 static inline int __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
859 struct btusb_data
*data
= hci_get_drvdata(hdev
);
860 struct usb_interface
*intf
= data
->isoc
;
861 struct usb_endpoint_descriptor
*ep_desc
;
867 err
= usb_set_interface(data
->udev
, 1, altsetting
);
869 BT_ERR("%s setting interface failed (%d)", hdev
->name
, -err
);
873 data
->isoc_altsetting
= altsetting
;
875 data
->isoc_tx_ep
= NULL
;
876 data
->isoc_rx_ep
= NULL
;
878 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
879 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
881 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
882 data
->isoc_tx_ep
= ep_desc
;
886 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
887 data
->isoc_rx_ep
= ep_desc
;
892 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
893 BT_ERR("%s invalid SCO descriptors", hdev
->name
);
900 static void btusb_work(struct work_struct
*work
)
902 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
903 struct hci_dev
*hdev
= data
->hdev
;
907 if (data
->sco_num
> 0) {
908 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
909 err
= usb_autopm_get_interface(data
->isoc
? data
->isoc
: data
->intf
);
911 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
912 usb_kill_anchored_urbs(&data
->isoc_anchor
);
916 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
919 if (hdev
->voice_setting
& 0x0020) {
920 static const int alts
[3] = { 2, 4, 5 };
921 new_alts
= alts
[data
->sco_num
- 1];
923 new_alts
= data
->sco_num
;
926 if (data
->isoc_altsetting
!= new_alts
) {
927 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
928 usb_kill_anchored_urbs(&data
->isoc_anchor
);
930 if (__set_isoc_interface(hdev
, new_alts
) < 0)
934 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
935 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
936 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
938 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
941 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
942 usb_kill_anchored_urbs(&data
->isoc_anchor
);
944 __set_isoc_interface(hdev
, 0);
945 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
946 usb_autopm_put_interface(data
->isoc
? data
->isoc
: data
->intf
);
950 static void btusb_waker(struct work_struct
*work
)
952 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
955 err
= usb_autopm_get_interface(data
->intf
);
959 usb_autopm_put_interface(data
->intf
);
962 static int btusb_setup_bcm92035(struct hci_dev
*hdev
)
967 BT_DBG("%s", hdev
->name
);
969 skb
= __hci_cmd_sync(hdev
, 0xfc3b, 1, &val
, HCI_INIT_TIMEOUT
);
971 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb
));
978 static int btusb_setup_csr(struct hci_dev
*hdev
)
980 struct hci_rp_read_local_version
*rp
;
984 BT_DBG("%s", hdev
->name
);
986 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
989 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb
));
990 return -PTR_ERR(skb
);
993 rp
= (struct hci_rp_read_local_version
*) skb
->data
;
996 if (le16_to_cpu(rp
->manufacturer
) != 10) {
997 /* Clear the reset quirk since this is not an actual
998 * early Bluetooth 1.1 device from CSR.
1000 clear_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1002 /* These fake CSR controllers have all a broken
1003 * stored link key handling and so just disable it.
1005 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
,
1010 ret
= -bt_to_errno(rp
->status
);
1017 struct intel_version
{
1030 static const struct firmware
*btusb_setup_intel_get_fw(struct hci_dev
*hdev
,
1031 struct intel_version
*ver
)
1033 const struct firmware
*fw
;
1037 snprintf(fwname
, sizeof(fwname
),
1038 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1039 ver
->hw_platform
, ver
->hw_variant
, ver
->hw_revision
,
1040 ver
->fw_variant
, ver
->fw_revision
, ver
->fw_build_num
,
1041 ver
->fw_build_ww
, ver
->fw_build_yy
);
1043 ret
= request_firmware(&fw
, fwname
, &hdev
->dev
);
1045 if (ret
== -EINVAL
) {
1046 BT_ERR("%s Intel firmware file request failed (%d)",
1051 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1052 hdev
->name
, fwname
, ret
);
1054 /* If the correct firmware patch file is not found, use the
1055 * default firmware patch file instead
1057 snprintf(fwname
, sizeof(fwname
), "intel/ibt-hw-%x.%x.bseq",
1058 ver
->hw_platform
, ver
->hw_variant
);
1059 if (request_firmware(&fw
, fwname
, &hdev
->dev
) < 0) {
1060 BT_ERR("%s failed to open default Intel fw file: %s",
1061 hdev
->name
, fwname
);
1066 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev
->name
, fwname
);
1071 static int btusb_setup_intel_patching(struct hci_dev
*hdev
,
1072 const struct firmware
*fw
,
1073 const u8
**fw_ptr
, int *disable_patch
)
1075 struct sk_buff
*skb
;
1076 struct hci_command_hdr
*cmd
;
1077 const u8
*cmd_param
;
1078 struct hci_event_hdr
*evt
= NULL
;
1079 const u8
*evt_param
= NULL
;
1080 int remain
= fw
->size
- (*fw_ptr
- fw
->data
);
1082 /* The first byte indicates the types of the patch command or event.
1083 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1084 * in the current firmware buffer doesn't start with 0x01 or
1085 * the size of remain buffer is smaller than HCI command header,
1086 * the firmware file is corrupted and it should stop the patching
1089 if (remain
> HCI_COMMAND_HDR_SIZE
&& *fw_ptr
[0] != 0x01) {
1090 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev
->name
);
1096 cmd
= (struct hci_command_hdr
*)(*fw_ptr
);
1097 *fw_ptr
+= sizeof(*cmd
);
1098 remain
-= sizeof(*cmd
);
1100 /* Ensure that the remain firmware data is long enough than the length
1101 * of command parameter. If not, the firmware file is corrupted.
1103 if (remain
< cmd
->plen
) {
1104 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev
->name
);
1108 /* If there is a command that loads a patch in the firmware
1109 * file, then enable the patch upon success, otherwise just
1110 * disable the manufacturer mode, for example patch activation
1111 * is not required when the default firmware patch file is used
1112 * because there are no patch data to load.
1114 if (*disable_patch
&& le16_to_cpu(cmd
->opcode
) == 0xfc8e)
1117 cmd_param
= *fw_ptr
;
1118 *fw_ptr
+= cmd
->plen
;
1119 remain
-= cmd
->plen
;
1121 /* This reads the expected events when the above command is sent to the
1122 * device. Some vendor commands expects more than one events, for
1123 * example command status event followed by vendor specific event.
1124 * For this case, it only keeps the last expected event. so the command
1125 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1126 * last expected event.
1128 while (remain
> HCI_EVENT_HDR_SIZE
&& *fw_ptr
[0] == 0x02) {
1132 evt
= (struct hci_event_hdr
*)(*fw_ptr
);
1133 *fw_ptr
+= sizeof(*evt
);
1134 remain
-= sizeof(*evt
);
1136 if (remain
< evt
->plen
) {
1137 BT_ERR("%s Intel fw corrupted: invalid evt len",
1142 evt_param
= *fw_ptr
;
1143 *fw_ptr
+= evt
->plen
;
1144 remain
-= evt
->plen
;
1147 /* Every HCI commands in the firmware file has its correspond event.
1148 * If event is not found or remain is smaller than zero, the firmware
1149 * file is corrupted.
1151 if (!evt
|| !evt_param
|| remain
< 0) {
1152 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev
->name
);
1156 skb
= __hci_cmd_sync_ev(hdev
, le16_to_cpu(cmd
->opcode
), cmd
->plen
,
1157 cmd_param
, evt
->evt
, HCI_INIT_TIMEOUT
);
1159 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1160 hdev
->name
, cmd
->opcode
, PTR_ERR(skb
));
1161 return PTR_ERR(skb
);
1164 /* It ensures that the returned event matches the event data read from
1165 * the firmware file. At fist, it checks the length and then
1166 * the contents of the event.
1168 if (skb
->len
!= evt
->plen
) {
1169 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev
->name
,
1170 le16_to_cpu(cmd
->opcode
));
1175 if (memcmp(skb
->data
, evt_param
, evt
->plen
)) {
1176 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1177 hdev
->name
, le16_to_cpu(cmd
->opcode
));
1186 static int btusb_setup_intel(struct hci_dev
*hdev
)
1188 struct sk_buff
*skb
;
1189 const struct firmware
*fw
;
1192 struct intel_version
*ver
;
1194 const u8 mfg_enable
[] = { 0x01, 0x00 };
1195 const u8 mfg_disable
[] = { 0x00, 0x00 };
1196 const u8 mfg_reset_deactivate
[] = { 0x00, 0x01 };
1197 const u8 mfg_reset_activate
[] = { 0x00, 0x02 };
1199 BT_DBG("%s", hdev
->name
);
1201 /* The controller has a bug with the first HCI command sent to it
1202 * returning number of completed commands as zero. This would stall the
1203 * command processing in the Bluetooth core.
1205 * As a workaround, send HCI Reset command first which will reset the
1206 * number of completed commands and allow normal command processing
1209 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1211 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1212 hdev
->name
, PTR_ERR(skb
));
1213 return PTR_ERR(skb
);
1217 /* Read Intel specific controller version first to allow selection of
1218 * which firmware file to load.
1220 * The returned information are hardware variant and revision plus
1221 * firmware variant, revision and build number.
1223 skb
= __hci_cmd_sync(hdev
, 0xfc05, 0, NULL
, HCI_INIT_TIMEOUT
);
1225 BT_ERR("%s reading Intel fw version command failed (%ld)",
1226 hdev
->name
, PTR_ERR(skb
));
1227 return PTR_ERR(skb
);
1230 if (skb
->len
!= sizeof(*ver
)) {
1231 BT_ERR("%s Intel version event length mismatch", hdev
->name
);
1236 ver
= (struct intel_version
*)skb
->data
;
1238 BT_ERR("%s Intel fw version event failed (%02x)", hdev
->name
,
1241 return -bt_to_errno(ver
->status
);
1244 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1245 hdev
->name
, ver
->hw_platform
, ver
->hw_variant
,
1246 ver
->hw_revision
, ver
->fw_variant
, ver
->fw_revision
,
1247 ver
->fw_build_num
, ver
->fw_build_ww
, ver
->fw_build_yy
,
1250 /* fw_patch_num indicates the version of patch the device currently
1251 * have. If there is no patch data in the device, it is always 0x00.
1252 * So, if it is other than 0x00, no need to patch the deivce again.
1254 if (ver
->fw_patch_num
) {
1255 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1256 hdev
->name
, ver
->fw_patch_num
);
1261 /* Opens the firmware patch file based on the firmware version read
1262 * from the controller. If it fails to open the matching firmware
1263 * patch file, it tries to open the default firmware patch file.
1264 * If no patch file is found, allow the device to operate without
1267 fw
= btusb_setup_intel_get_fw(hdev
, ver
);
1274 /* This Intel specific command enables the manufacturer mode of the
1277 * Only while this mode is enabled, the driver can download the
1278 * firmware patch data and configuration parameters.
1280 skb
= __hci_cmd_sync(hdev
, 0xfc11, 2, mfg_enable
, HCI_INIT_TIMEOUT
);
1282 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1283 hdev
->name
, PTR_ERR(skb
));
1284 release_firmware(fw
);
1285 return PTR_ERR(skb
);
1289 u8 evt_status
= skb
->data
[0];
1290 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1291 hdev
->name
, evt_status
);
1293 release_firmware(fw
);
1294 return -bt_to_errno(evt_status
);
1300 /* The firmware data file consists of list of Intel specific HCI
1301 * commands and its expected events. The first byte indicates the
1302 * type of the message, either HCI command or HCI event.
1304 * It reads the command and its expected event from the firmware file,
1305 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1306 * the returned event is compared with the event read from the firmware
1307 * file and it will continue until all the messages are downloaded to
1310 * Once the firmware patching is completed successfully,
1311 * the manufacturer mode is disabled with reset and activating the
1314 * If the firmware patching fails, the manufacturer mode is
1315 * disabled with reset and deactivating the patch.
1317 * If the default patch file is used, no reset is done when disabling
1320 while (fw
->size
> fw_ptr
- fw
->data
) {
1323 ret
= btusb_setup_intel_patching(hdev
, fw
, &fw_ptr
,
1326 goto exit_mfg_deactivate
;
1329 release_firmware(fw
);
1332 goto exit_mfg_disable
;
1334 /* Patching completed successfully and disable the manufacturer mode
1335 * with reset and activate the downloaded firmware patches.
1337 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_reset_activate
),
1338 mfg_reset_activate
, HCI_INIT_TIMEOUT
);
1340 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1341 hdev
->name
, PTR_ERR(skb
));
1342 return PTR_ERR(skb
);
1346 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1352 /* Disable the manufacturer mode without reset */
1353 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_disable
), mfg_disable
,
1356 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1357 hdev
->name
, PTR_ERR(skb
));
1358 return PTR_ERR(skb
);
1362 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev
->name
);
1365 exit_mfg_deactivate
:
1366 release_firmware(fw
);
1368 /* Patching failed. Disable the manufacturer mode with reset and
1369 * deactivate the downloaded firmware patches.
1371 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_reset_deactivate
),
1372 mfg_reset_deactivate
, HCI_INIT_TIMEOUT
);
1374 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1375 hdev
->name
, PTR_ERR(skb
));
1376 return PTR_ERR(skb
);
1380 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1386 static int btusb_setup_bcm_patchram(struct hci_dev
*hdev
)
1388 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1389 struct usb_device
*udev
= data
->udev
;
1391 const struct firmware
*fw
;
1394 const struct hci_command_hdr
*cmd
;
1395 const u8
*cmd_param
;
1397 struct sk_buff
*skb
;
1398 struct hci_rp_read_local_version
*ver
;
1401 snprintf(fw_name
, sizeof(fw_name
), "brcm/%s-%04x-%04x.hcd",
1402 udev
->product
? udev
->product
: "BCM",
1403 le16_to_cpu(udev
->descriptor
.idVendor
),
1404 le16_to_cpu(udev
->descriptor
.idProduct
));
1406 ret
= request_firmware(&fw
, fw_name
, &hdev
->dev
);
1408 BT_INFO("%s: BCM: patch %s not found", hdev
->name
,
1414 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1417 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev
->name
, ret
);
1422 /* Read Local Version Info */
1423 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1427 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1432 if (skb
->len
!= sizeof(*ver
)) {
1433 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1440 ver
= (struct hci_rp_read_local_version
*) skb
->data
;
1441 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1442 "lmp_subver=%04x", hdev
->name
, ver
->hci_ver
, ver
->hci_rev
,
1443 ver
->lmp_ver
, ver
->lmp_subver
);
1446 /* Start Download */
1447 skb
= __hci_cmd_sync(hdev
, 0xfc2e, 0, NULL
, HCI_INIT_TIMEOUT
);
1450 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
1456 /* 50 msec delay after Download Minidrv completes */
1462 while (fw_size
>= sizeof(*cmd
)) {
1463 cmd
= (struct hci_command_hdr
*) fw_ptr
;
1464 fw_ptr
+= sizeof(*cmd
);
1465 fw_size
-= sizeof(*cmd
);
1467 if (fw_size
< cmd
->plen
) {
1468 BT_ERR("%s: BCM: patch %s is corrupted",
1469 hdev
->name
, fw_name
);
1475 fw_ptr
+= cmd
->plen
;
1476 fw_size
-= cmd
->plen
;
1478 opcode
= le16_to_cpu(cmd
->opcode
);
1480 skb
= __hci_cmd_sync(hdev
, opcode
, cmd
->plen
, cmd_param
,
1484 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
1485 hdev
->name
, opcode
, ret
);
1491 /* 250 msec delay after Launch Ram completes */
1496 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1499 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev
->name
, ret
);
1504 /* Read Local Version Info */
1505 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1509 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1514 if (skb
->len
!= sizeof(*ver
)) {
1515 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1522 ver
= (struct hci_rp_read_local_version
*) skb
->data
;
1523 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1524 "lmp_subver=%04x", hdev
->name
, ver
->hci_ver
, ver
->hci_rev
,
1525 ver
->lmp_ver
, ver
->lmp_subver
);
1529 release_firmware(fw
);
1534 static int btusb_probe(struct usb_interface
*intf
,
1535 const struct usb_device_id
*id
)
1537 struct usb_endpoint_descriptor
*ep_desc
;
1538 struct btusb_data
*data
;
1539 struct hci_dev
*hdev
;
1542 BT_DBG("intf %p id %p", intf
, id
);
1544 /* interface numbers are hardcoded in the spec */
1545 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
1548 if (!id
->driver_info
) {
1549 const struct usb_device_id
*match
;
1550 match
= usb_match_id(intf
, blacklist_table
);
1555 if (id
->driver_info
== BTUSB_IGNORE
)
1558 if (ignore_dga
&& id
->driver_info
& BTUSB_DIGIANSWER
)
1561 if (ignore_csr
&& id
->driver_info
& BTUSB_CSR
)
1564 if (ignore_sniffer
&& id
->driver_info
& BTUSB_SNIFFER
)
1567 if (id
->driver_info
& BTUSB_ATH3012
) {
1568 struct usb_device
*udev
= interface_to_usbdev(intf
);
1570 /* Old firmware would otherwise let ath3k driver load
1571 * patch and sysconfig files */
1572 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) <= 0x0001)
1576 data
= devm_kzalloc(&intf
->dev
, sizeof(*data
), GFP_KERNEL
);
1580 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
1581 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
1583 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
1584 data
->intr_ep
= ep_desc
;
1588 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
1589 data
->bulk_tx_ep
= ep_desc
;
1593 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
1594 data
->bulk_rx_ep
= ep_desc
;
1599 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
)
1602 data
->cmdreq_type
= USB_TYPE_CLASS
;
1604 data
->udev
= interface_to_usbdev(intf
);
1607 spin_lock_init(&data
->lock
);
1609 INIT_WORK(&data
->work
, btusb_work
);
1610 INIT_WORK(&data
->waker
, btusb_waker
);
1611 spin_lock_init(&data
->txlock
);
1613 init_usb_anchor(&data
->tx_anchor
);
1614 init_usb_anchor(&data
->intr_anchor
);
1615 init_usb_anchor(&data
->bulk_anchor
);
1616 init_usb_anchor(&data
->isoc_anchor
);
1617 init_usb_anchor(&data
->deferred
);
1619 hdev
= hci_alloc_dev();
1623 hdev
->bus
= HCI_USB
;
1624 hci_set_drvdata(hdev
, data
);
1628 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
1630 hdev
->open
= btusb_open
;
1631 hdev
->close
= btusb_close
;
1632 hdev
->flush
= btusb_flush
;
1633 hdev
->send
= btusb_send_frame
;
1634 hdev
->notify
= btusb_notify
;
1636 if (id
->driver_info
& BTUSB_BCM92035
)
1637 hdev
->setup
= btusb_setup_bcm92035
;
1639 if (id
->driver_info
& BTUSB_BCM_PATCHRAM
)
1640 hdev
->setup
= btusb_setup_bcm_patchram
;
1642 if (id
->driver_info
& BTUSB_INTEL
)
1643 hdev
->setup
= btusb_setup_intel
;
1645 /* Interface numbers are hardcoded in the specification */
1646 data
->isoc
= usb_ifnum_to_if(data
->udev
, 1);
1649 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1651 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
1652 if (!disable_scofix
)
1653 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
1656 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
1659 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
1660 data
->cmdreq_type
= USB_TYPE_VENDOR
;
1661 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1664 if (id
->driver_info
& BTUSB_CSR
) {
1665 struct usb_device
*udev
= data
->udev
;
1666 u16 bcdDevice
= le16_to_cpu(udev
->descriptor
.bcdDevice
);
1668 /* Old firmware would otherwise execute USB reset */
1669 if (bcdDevice
< 0x117)
1670 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1672 /* Fake CSR devices with broken commands */
1673 if (bcdDevice
<= 0x100)
1674 hdev
->setup
= btusb_setup_csr
;
1677 if (id
->driver_info
& BTUSB_SNIFFER
) {
1678 struct usb_device
*udev
= data
->udev
;
1680 /* New sniffer firmware has crippled HCI interface */
1681 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
1682 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1688 err
= usb_driver_claim_interface(&btusb_driver
,
1696 err
= hci_register_dev(hdev
);
1702 usb_set_intfdata(intf
, data
);
1707 static void btusb_disconnect(struct usb_interface
*intf
)
1709 struct btusb_data
*data
= usb_get_intfdata(intf
);
1710 struct hci_dev
*hdev
;
1712 BT_DBG("intf %p", intf
);
1718 usb_set_intfdata(data
->intf
, NULL
);
1721 usb_set_intfdata(data
->isoc
, NULL
);
1723 hci_unregister_dev(hdev
);
1725 if (intf
== data
->isoc
)
1726 usb_driver_release_interface(&btusb_driver
, data
->intf
);
1727 else if (data
->isoc
)
1728 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
1734 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1736 struct btusb_data
*data
= usb_get_intfdata(intf
);
1738 BT_DBG("intf %p", intf
);
1740 if (data
->suspend_count
++)
1743 spin_lock_irq(&data
->txlock
);
1744 if (!(PMSG_IS_AUTO(message
) && data
->tx_in_flight
)) {
1745 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
1746 spin_unlock_irq(&data
->txlock
);
1748 spin_unlock_irq(&data
->txlock
);
1749 data
->suspend_count
--;
1753 cancel_work_sync(&data
->work
);
1755 btusb_stop_traffic(data
);
1756 usb_kill_anchored_urbs(&data
->tx_anchor
);
1761 static void play_deferred(struct btusb_data
*data
)
1766 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
1767 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1771 data
->tx_in_flight
++;
1773 usb_scuttle_anchored_urbs(&data
->deferred
);
1776 static int btusb_resume(struct usb_interface
*intf
)
1778 struct btusb_data
*data
= usb_get_intfdata(intf
);
1779 struct hci_dev
*hdev
= data
->hdev
;
1782 BT_DBG("intf %p", intf
);
1784 if (--data
->suspend_count
)
1787 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1790 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
1791 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
1793 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1798 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
1799 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1801 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1805 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1808 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1809 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
1810 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1812 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
1815 spin_lock_irq(&data
->txlock
);
1816 play_deferred(data
);
1817 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1818 spin_unlock_irq(&data
->txlock
);
1819 schedule_work(&data
->work
);
1824 usb_scuttle_anchored_urbs(&data
->deferred
);
1826 spin_lock_irq(&data
->txlock
);
1827 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1828 spin_unlock_irq(&data
->txlock
);
1834 static struct usb_driver btusb_driver
= {
1836 .probe
= btusb_probe
,
1837 .disconnect
= btusb_disconnect
,
1839 .suspend
= btusb_suspend
,
1840 .resume
= btusb_resume
,
1842 .id_table
= btusb_table
,
1843 .supports_autosuspend
= 1,
1844 .disable_hub_initiated_lpm
= 1,
1847 module_usb_driver(btusb_driver
);
1849 module_param(ignore_dga
, bool, 0644);
1850 MODULE_PARM_DESC(ignore_dga
, "Ignore devices with id 08fd:0001");
1852 module_param(ignore_csr
, bool, 0644);
1853 MODULE_PARM_DESC(ignore_csr
, "Ignore devices with id 0a12:0001");
1855 module_param(ignore_sniffer
, bool, 0644);
1856 MODULE_PARM_DESC(ignore_sniffer
, "Ignore devices with id 0a12:0002");
1858 module_param(disable_scofix
, bool, 0644);
1859 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
1861 module_param(force_scofix
, bool, 0644);
1862 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
1864 module_param(reset
, bool, 0644);
1865 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
1867 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1868 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
1869 MODULE_VERSION(VERSION
);
1870 MODULE_LICENSE("GPL");