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 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(0x0b05, 0x17d0), .driver_info
= BTUSB_ATH3012
},
169 { USB_DEVICE(0x0cf3, 0x0036), .driver_info
= BTUSB_ATH3012
},
170 { USB_DEVICE(0x0cf3, 0x3004), .driver_info
= BTUSB_ATH3012
},
171 { USB_DEVICE(0x0cf3, 0x3008), .driver_info
= BTUSB_ATH3012
},
172 { USB_DEVICE(0x0cf3, 0x311d), .driver_info
= BTUSB_ATH3012
},
173 { USB_DEVICE(0x0cf3, 0x311e), .driver_info
= BTUSB_ATH3012
},
174 { USB_DEVICE(0x0cf3, 0x311f), .driver_info
= BTUSB_ATH3012
},
175 { USB_DEVICE(0x0cf3, 0x3121), .driver_info
= BTUSB_ATH3012
},
176 { USB_DEVICE(0x0cf3, 0x817a), .driver_info
= BTUSB_ATH3012
},
177 { USB_DEVICE(0x0cf3, 0xe003), .driver_info
= BTUSB_ATH3012
},
178 { USB_DEVICE(0x0cf3, 0xe004), .driver_info
= BTUSB_ATH3012
},
179 { USB_DEVICE(0x0cf3, 0xe005), .driver_info
= BTUSB_ATH3012
},
180 { USB_DEVICE(0x13d3, 0x3362), .driver_info
= BTUSB_ATH3012
},
181 { USB_DEVICE(0x13d3, 0x3375), .driver_info
= BTUSB_ATH3012
},
182 { USB_DEVICE(0x13d3, 0x3393), .driver_info
= BTUSB_ATH3012
},
183 { USB_DEVICE(0x13d3, 0x3402), .driver_info
= BTUSB_ATH3012
},
184 { USB_DEVICE(0x13d3, 0x3432), .driver_info
= BTUSB_ATH3012
},
186 /* Atheros AR5BBU12 with sflash firmware */
187 { USB_DEVICE(0x0489, 0xe02c), .driver_info
= BTUSB_IGNORE
},
189 /* Atheros AR5BBU12 with sflash firmware */
190 { USB_DEVICE(0x0489, 0xe036), .driver_info
= BTUSB_ATH3012
},
191 { USB_DEVICE(0x0489, 0xe03c), .driver_info
= BTUSB_ATH3012
},
193 /* Broadcom BCM2035 */
194 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
195 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
196 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
198 /* Broadcom BCM2045 */
199 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
200 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
202 /* IBM/Lenovo ThinkPad with Broadcom chip */
203 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
204 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
206 /* HP laptop with Broadcom chip */
207 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
209 /* Dell laptop with Broadcom chip */
210 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
212 /* Dell Wireless 370 and 410 devices */
213 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
214 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
216 /* Belkin F8T012 and F8T013 devices */
217 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
218 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
220 /* Asus WL-BTD202 device */
221 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
223 /* Kensington Bluetooth USB adapter */
224 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
226 /* RTX Telecom based adapters with buggy SCO support */
227 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
228 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
230 /* CONWISE Technology based adapters with buggy SCO support */
231 { USB_DEVICE(0x0e5e, 0x6622), .driver_info
= BTUSB_BROKEN_ISOC
},
233 /* Digianswer devices */
234 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
235 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
237 /* CSR BlueCore Bluetooth Sniffer */
238 { USB_DEVICE(0x0a12, 0x0002),
239 .driver_info
= BTUSB_SNIFFER
| BTUSB_BROKEN_ISOC
},
241 /* Frontline ComProbe Bluetooth Sniffer */
242 { USB_DEVICE(0x16d3, 0x0002),
243 .driver_info
= BTUSB_SNIFFER
| BTUSB_BROKEN_ISOC
},
245 /* Intel Bluetooth device */
246 { USB_DEVICE(0x8087, 0x07dc), .driver_info
= BTUSB_INTEL
},
247 { USB_DEVICE(0x8087, 0x0a2a), .driver_info
= BTUSB_INTEL
},
250 { USB_DEVICE(0x1286, 0x2044), .driver_info
= BTUSB_MARVELL
},
251 { USB_DEVICE(0x1286, 0x2046), .driver_info
= BTUSB_MARVELL
},
253 { } /* Terminating entry */
256 #define BTUSB_MAX_ISOC_FRAMES 10
258 #define BTUSB_INTR_RUNNING 0
259 #define BTUSB_BULK_RUNNING 1
260 #define BTUSB_ISOC_RUNNING 2
261 #define BTUSB_SUSPENDING 3
262 #define BTUSB_DID_ISO_RESUME 4
265 struct hci_dev
*hdev
;
266 struct usb_device
*udev
;
267 struct usb_interface
*intf
;
268 struct usb_interface
*isoc
;
274 struct work_struct work
;
275 struct work_struct waker
;
277 struct usb_anchor tx_anchor
;
278 struct usb_anchor intr_anchor
;
279 struct usb_anchor bulk_anchor
;
280 struct usb_anchor isoc_anchor
;
281 struct usb_anchor deferred
;
285 struct usb_endpoint_descriptor
*intr_ep
;
286 struct usb_endpoint_descriptor
*bulk_tx_ep
;
287 struct usb_endpoint_descriptor
*bulk_rx_ep
;
288 struct usb_endpoint_descriptor
*isoc_tx_ep
;
289 struct usb_endpoint_descriptor
*isoc_rx_ep
;
293 unsigned int sco_num
;
298 static int inc_tx(struct btusb_data
*data
)
303 spin_lock_irqsave(&data
->txlock
, flags
);
304 rv
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
306 data
->tx_in_flight
++;
307 spin_unlock_irqrestore(&data
->txlock
, flags
);
312 static void btusb_intr_complete(struct urb
*urb
)
314 struct hci_dev
*hdev
= urb
->context
;
315 struct btusb_data
*data
= hci_get_drvdata(hdev
);
318 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
319 urb
, urb
->status
, urb
->actual_length
);
321 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
324 if (urb
->status
== 0) {
325 hdev
->stat
.byte_rx
+= urb
->actual_length
;
327 if (hci_recv_fragment(hdev
, HCI_EVENT_PKT
,
328 urb
->transfer_buffer
,
329 urb
->actual_length
) < 0) {
330 BT_ERR("%s corrupted event packet", hdev
->name
);
335 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
338 usb_mark_last_busy(data
->udev
);
339 usb_anchor_urb(urb
, &data
->intr_anchor
);
341 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
343 /* -EPERM: urb is being killed;
344 * -ENODEV: device got disconnected */
345 if (err
!= -EPERM
&& err
!= -ENODEV
)
346 BT_ERR("%s urb %p failed to resubmit (%d)",
347 hdev
->name
, urb
, -err
);
348 usb_unanchor_urb(urb
);
352 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
354 struct btusb_data
*data
= hci_get_drvdata(hdev
);
360 BT_DBG("%s", hdev
->name
);
365 urb
= usb_alloc_urb(0, mem_flags
);
369 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
371 buf
= kmalloc(size
, mem_flags
);
377 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
379 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
380 btusb_intr_complete
, hdev
,
381 data
->intr_ep
->bInterval
);
383 urb
->transfer_flags
|= URB_FREE_BUFFER
;
385 usb_anchor_urb(urb
, &data
->intr_anchor
);
387 err
= usb_submit_urb(urb
, mem_flags
);
389 if (err
!= -EPERM
&& err
!= -ENODEV
)
390 BT_ERR("%s urb %p submission failed (%d)",
391 hdev
->name
, urb
, -err
);
392 usb_unanchor_urb(urb
);
400 static void btusb_bulk_complete(struct urb
*urb
)
402 struct hci_dev
*hdev
= urb
->context
;
403 struct btusb_data
*data
= hci_get_drvdata(hdev
);
406 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
407 urb
, urb
->status
, urb
->actual_length
);
409 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
412 if (urb
->status
== 0) {
413 hdev
->stat
.byte_rx
+= urb
->actual_length
;
415 if (hci_recv_fragment(hdev
, HCI_ACLDATA_PKT
,
416 urb
->transfer_buffer
,
417 urb
->actual_length
) < 0) {
418 BT_ERR("%s corrupted ACL packet", hdev
->name
);
423 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
426 usb_anchor_urb(urb
, &data
->bulk_anchor
);
427 usb_mark_last_busy(data
->udev
);
429 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
431 /* -EPERM: urb is being killed;
432 * -ENODEV: device got disconnected */
433 if (err
!= -EPERM
&& err
!= -ENODEV
)
434 BT_ERR("%s urb %p failed to resubmit (%d)",
435 hdev
->name
, urb
, -err
);
436 usb_unanchor_urb(urb
);
440 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
442 struct btusb_data
*data
= hci_get_drvdata(hdev
);
446 int err
, size
= HCI_MAX_FRAME_SIZE
;
448 BT_DBG("%s", hdev
->name
);
450 if (!data
->bulk_rx_ep
)
453 urb
= usb_alloc_urb(0, mem_flags
);
457 buf
= kmalloc(size
, mem_flags
);
463 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
465 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
466 buf
, size
, btusb_bulk_complete
, hdev
);
468 urb
->transfer_flags
|= URB_FREE_BUFFER
;
470 usb_mark_last_busy(data
->udev
);
471 usb_anchor_urb(urb
, &data
->bulk_anchor
);
473 err
= usb_submit_urb(urb
, mem_flags
);
475 if (err
!= -EPERM
&& err
!= -ENODEV
)
476 BT_ERR("%s urb %p submission failed (%d)",
477 hdev
->name
, urb
, -err
);
478 usb_unanchor_urb(urb
);
486 static void btusb_isoc_complete(struct urb
*urb
)
488 struct hci_dev
*hdev
= urb
->context
;
489 struct btusb_data
*data
= hci_get_drvdata(hdev
);
492 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
493 urb
, urb
->status
, urb
->actual_length
);
495 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
498 if (urb
->status
== 0) {
499 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
500 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
501 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
503 if (urb
->iso_frame_desc
[i
].status
)
506 hdev
->stat
.byte_rx
+= length
;
508 if (hci_recv_fragment(hdev
, HCI_SCODATA_PKT
,
509 urb
->transfer_buffer
+ offset
,
511 BT_ERR("%s corrupted SCO packet", hdev
->name
);
517 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
520 usb_anchor_urb(urb
, &data
->isoc_anchor
);
522 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
524 /* -EPERM: urb is being killed;
525 * -ENODEV: device got disconnected */
526 if (err
!= -EPERM
&& err
!= -ENODEV
)
527 BT_ERR("%s urb %p failed to resubmit (%d)",
528 hdev
->name
, urb
, -err
);
529 usb_unanchor_urb(urb
);
533 static inline void __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
537 BT_DBG("len %d mtu %d", len
, mtu
);
539 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
540 i
++, offset
+= mtu
, len
-= mtu
) {
541 urb
->iso_frame_desc
[i
].offset
= offset
;
542 urb
->iso_frame_desc
[i
].length
= mtu
;
545 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
546 urb
->iso_frame_desc
[i
].offset
= offset
;
547 urb
->iso_frame_desc
[i
].length
= len
;
551 urb
->number_of_packets
= i
;
554 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
556 struct btusb_data
*data
= hci_get_drvdata(hdev
);
562 BT_DBG("%s", hdev
->name
);
564 if (!data
->isoc_rx_ep
)
567 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
571 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
572 BTUSB_MAX_ISOC_FRAMES
;
574 buf
= kmalloc(size
, mem_flags
);
580 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
582 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
, btusb_isoc_complete
,
583 hdev
, data
->isoc_rx_ep
->bInterval
);
585 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
587 __fill_isoc_descriptor(urb
, size
,
588 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
590 usb_anchor_urb(urb
, &data
->isoc_anchor
);
592 err
= usb_submit_urb(urb
, mem_flags
);
594 if (err
!= -EPERM
&& err
!= -ENODEV
)
595 BT_ERR("%s urb %p submission failed (%d)",
596 hdev
->name
, urb
, -err
);
597 usb_unanchor_urb(urb
);
605 static void btusb_tx_complete(struct urb
*urb
)
607 struct sk_buff
*skb
= urb
->context
;
608 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
609 struct btusb_data
*data
= hci_get_drvdata(hdev
);
611 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
612 urb
, urb
->status
, urb
->actual_length
);
614 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
618 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
623 spin_lock(&data
->txlock
);
624 data
->tx_in_flight
--;
625 spin_unlock(&data
->txlock
);
627 kfree(urb
->setup_packet
);
632 static void btusb_isoc_tx_complete(struct urb
*urb
)
634 struct sk_buff
*skb
= urb
->context
;
635 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
637 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
638 urb
, urb
->status
, urb
->actual_length
);
640 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
644 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
649 kfree(urb
->setup_packet
);
654 static int btusb_open(struct hci_dev
*hdev
)
656 struct btusb_data
*data
= hci_get_drvdata(hdev
);
659 BT_DBG("%s", hdev
->name
);
661 err
= usb_autopm_get_interface(data
->intf
);
665 data
->intf
->needs_remote_wakeup
= 1;
667 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
670 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
673 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
677 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
679 usb_kill_anchored_urbs(&data
->intr_anchor
);
683 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
684 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
687 usb_autopm_put_interface(data
->intf
);
691 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
692 clear_bit(HCI_RUNNING
, &hdev
->flags
);
693 usb_autopm_put_interface(data
->intf
);
697 static void btusb_stop_traffic(struct btusb_data
*data
)
699 usb_kill_anchored_urbs(&data
->intr_anchor
);
700 usb_kill_anchored_urbs(&data
->bulk_anchor
);
701 usb_kill_anchored_urbs(&data
->isoc_anchor
);
704 static int btusb_close(struct hci_dev
*hdev
)
706 struct btusb_data
*data
= hci_get_drvdata(hdev
);
709 BT_DBG("%s", hdev
->name
);
711 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
714 cancel_work_sync(&data
->work
);
715 cancel_work_sync(&data
->waker
);
717 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
718 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
719 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
721 btusb_stop_traffic(data
);
722 err
= usb_autopm_get_interface(data
->intf
);
726 data
->intf
->needs_remote_wakeup
= 0;
727 usb_autopm_put_interface(data
->intf
);
730 usb_scuttle_anchored_urbs(&data
->deferred
);
734 static int btusb_flush(struct hci_dev
*hdev
)
736 struct btusb_data
*data
= hci_get_drvdata(hdev
);
738 BT_DBG("%s", hdev
->name
);
740 usb_kill_anchored_urbs(&data
->tx_anchor
);
745 static int btusb_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
747 struct btusb_data
*data
= hci_get_drvdata(hdev
);
748 struct usb_ctrlrequest
*dr
;
753 BT_DBG("%s", hdev
->name
);
755 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
758 skb
->dev
= (void *) hdev
;
760 switch (bt_cb(skb
)->pkt_type
) {
761 case HCI_COMMAND_PKT
:
762 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
766 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
772 dr
->bRequestType
= data
->cmdreq_type
;
776 dr
->wLength
= __cpu_to_le16(skb
->len
);
778 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
780 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
781 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
786 case HCI_ACLDATA_PKT
:
787 if (!data
->bulk_tx_ep
)
790 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
794 pipe
= usb_sndbulkpipe(data
->udev
,
795 data
->bulk_tx_ep
->bEndpointAddress
);
797 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
798 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
803 case HCI_SCODATA_PKT
:
804 if (!data
->isoc_tx_ep
|| hci_conn_num(hdev
, SCO_LINK
) < 1)
807 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
811 pipe
= usb_sndisocpipe(data
->udev
,
812 data
->isoc_tx_ep
->bEndpointAddress
);
814 usb_fill_int_urb(urb
, data
->udev
, pipe
,
815 skb
->data
, skb
->len
, btusb_isoc_tx_complete
,
816 skb
, data
->isoc_tx_ep
->bInterval
);
818 urb
->transfer_flags
= URB_ISO_ASAP
;
820 __fill_isoc_descriptor(urb
, skb
->len
,
821 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
832 usb_anchor_urb(urb
, &data
->deferred
);
833 schedule_work(&data
->waker
);
839 usb_anchor_urb(urb
, &data
->tx_anchor
);
841 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
843 if (err
!= -EPERM
&& err
!= -ENODEV
)
844 BT_ERR("%s urb %p submission failed (%d)",
845 hdev
->name
, urb
, -err
);
846 kfree(urb
->setup_packet
);
847 usb_unanchor_urb(urb
);
849 usb_mark_last_busy(data
->udev
);
857 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
859 struct btusb_data
*data
= hci_get_drvdata(hdev
);
861 BT_DBG("%s evt %d", hdev
->name
, evt
);
863 if (hci_conn_num(hdev
, SCO_LINK
) != data
->sco_num
) {
864 data
->sco_num
= hci_conn_num(hdev
, SCO_LINK
);
865 schedule_work(&data
->work
);
869 static inline int __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
871 struct btusb_data
*data
= hci_get_drvdata(hdev
);
872 struct usb_interface
*intf
= data
->isoc
;
873 struct usb_endpoint_descriptor
*ep_desc
;
879 err
= usb_set_interface(data
->udev
, 1, altsetting
);
881 BT_ERR("%s setting interface failed (%d)", hdev
->name
, -err
);
885 data
->isoc_altsetting
= altsetting
;
887 data
->isoc_tx_ep
= NULL
;
888 data
->isoc_rx_ep
= NULL
;
890 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
891 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
893 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
894 data
->isoc_tx_ep
= ep_desc
;
898 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
899 data
->isoc_rx_ep
= ep_desc
;
904 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
905 BT_ERR("%s invalid SCO descriptors", hdev
->name
);
912 static void btusb_work(struct work_struct
*work
)
914 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
915 struct hci_dev
*hdev
= data
->hdev
;
919 if (data
->sco_num
> 0) {
920 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
921 err
= usb_autopm_get_interface(data
->isoc
? data
->isoc
: data
->intf
);
923 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
924 usb_kill_anchored_urbs(&data
->isoc_anchor
);
928 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
931 if (hdev
->voice_setting
& 0x0020) {
932 static const int alts
[3] = { 2, 4, 5 };
933 new_alts
= alts
[data
->sco_num
- 1];
935 new_alts
= data
->sco_num
;
938 if (data
->isoc_altsetting
!= new_alts
) {
939 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
940 usb_kill_anchored_urbs(&data
->isoc_anchor
);
942 if (__set_isoc_interface(hdev
, new_alts
) < 0)
946 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
947 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
948 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
950 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
953 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
954 usb_kill_anchored_urbs(&data
->isoc_anchor
);
956 __set_isoc_interface(hdev
, 0);
957 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
958 usb_autopm_put_interface(data
->isoc
? data
->isoc
: data
->intf
);
962 static void btusb_waker(struct work_struct
*work
)
964 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
967 err
= usb_autopm_get_interface(data
->intf
);
971 usb_autopm_put_interface(data
->intf
);
974 static int btusb_setup_bcm92035(struct hci_dev
*hdev
)
979 BT_DBG("%s", hdev
->name
);
981 skb
= __hci_cmd_sync(hdev
, 0xfc3b, 1, &val
, HCI_INIT_TIMEOUT
);
983 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb
));
990 static int btusb_setup_csr(struct hci_dev
*hdev
)
992 struct hci_rp_read_local_version
*rp
;
996 BT_DBG("%s", hdev
->name
);
998 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1001 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb
));
1002 return -PTR_ERR(skb
);
1005 rp
= (struct hci_rp_read_local_version
*) skb
->data
;
1008 if (le16_to_cpu(rp
->manufacturer
) != 10) {
1009 /* Clear the reset quirk since this is not an actual
1010 * early Bluetooth 1.1 device from CSR.
1012 clear_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1014 /* These fake CSR controllers have all a broken
1015 * stored link key handling and so just disable it.
1017 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
,
1022 ret
= -bt_to_errno(rp
->status
);
1029 struct intel_version
{
1042 static const struct firmware
*btusb_setup_intel_get_fw(struct hci_dev
*hdev
,
1043 struct intel_version
*ver
)
1045 const struct firmware
*fw
;
1049 snprintf(fwname
, sizeof(fwname
),
1050 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1051 ver
->hw_platform
, ver
->hw_variant
, ver
->hw_revision
,
1052 ver
->fw_variant
, ver
->fw_revision
, ver
->fw_build_num
,
1053 ver
->fw_build_ww
, ver
->fw_build_yy
);
1055 ret
= request_firmware(&fw
, fwname
, &hdev
->dev
);
1057 if (ret
== -EINVAL
) {
1058 BT_ERR("%s Intel firmware file request failed (%d)",
1063 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1064 hdev
->name
, fwname
, ret
);
1066 /* If the correct firmware patch file is not found, use the
1067 * default firmware patch file instead
1069 snprintf(fwname
, sizeof(fwname
), "intel/ibt-hw-%x.%x.bseq",
1070 ver
->hw_platform
, ver
->hw_variant
);
1071 if (request_firmware(&fw
, fwname
, &hdev
->dev
) < 0) {
1072 BT_ERR("%s failed to open default Intel fw file: %s",
1073 hdev
->name
, fwname
);
1078 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev
->name
, fwname
);
1083 static int btusb_setup_intel_patching(struct hci_dev
*hdev
,
1084 const struct firmware
*fw
,
1085 const u8
**fw_ptr
, int *disable_patch
)
1087 struct sk_buff
*skb
;
1088 struct hci_command_hdr
*cmd
;
1089 const u8
*cmd_param
;
1090 struct hci_event_hdr
*evt
= NULL
;
1091 const u8
*evt_param
= NULL
;
1092 int remain
= fw
->size
- (*fw_ptr
- fw
->data
);
1094 /* The first byte indicates the types of the patch command or event.
1095 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1096 * in the current firmware buffer doesn't start with 0x01 or
1097 * the size of remain buffer is smaller than HCI command header,
1098 * the firmware file is corrupted and it should stop the patching
1101 if (remain
> HCI_COMMAND_HDR_SIZE
&& *fw_ptr
[0] != 0x01) {
1102 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev
->name
);
1108 cmd
= (struct hci_command_hdr
*)(*fw_ptr
);
1109 *fw_ptr
+= sizeof(*cmd
);
1110 remain
-= sizeof(*cmd
);
1112 /* Ensure that the remain firmware data is long enough than the length
1113 * of command parameter. If not, the firmware file is corrupted.
1115 if (remain
< cmd
->plen
) {
1116 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev
->name
);
1120 /* If there is a command that loads a patch in the firmware
1121 * file, then enable the patch upon success, otherwise just
1122 * disable the manufacturer mode, for example patch activation
1123 * is not required when the default firmware patch file is used
1124 * because there are no patch data to load.
1126 if (*disable_patch
&& le16_to_cpu(cmd
->opcode
) == 0xfc8e)
1129 cmd_param
= *fw_ptr
;
1130 *fw_ptr
+= cmd
->plen
;
1131 remain
-= cmd
->plen
;
1133 /* This reads the expected events when the above command is sent to the
1134 * device. Some vendor commands expects more than one events, for
1135 * example command status event followed by vendor specific event.
1136 * For this case, it only keeps the last expected event. so the command
1137 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1138 * last expected event.
1140 while (remain
> HCI_EVENT_HDR_SIZE
&& *fw_ptr
[0] == 0x02) {
1144 evt
= (struct hci_event_hdr
*)(*fw_ptr
);
1145 *fw_ptr
+= sizeof(*evt
);
1146 remain
-= sizeof(*evt
);
1148 if (remain
< evt
->plen
) {
1149 BT_ERR("%s Intel fw corrupted: invalid evt len",
1154 evt_param
= *fw_ptr
;
1155 *fw_ptr
+= evt
->plen
;
1156 remain
-= evt
->plen
;
1159 /* Every HCI commands in the firmware file has its correspond event.
1160 * If event is not found or remain is smaller than zero, the firmware
1161 * file is corrupted.
1163 if (!evt
|| !evt_param
|| remain
< 0) {
1164 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev
->name
);
1168 skb
= __hci_cmd_sync_ev(hdev
, le16_to_cpu(cmd
->opcode
), cmd
->plen
,
1169 cmd_param
, evt
->evt
, HCI_INIT_TIMEOUT
);
1171 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1172 hdev
->name
, cmd
->opcode
, PTR_ERR(skb
));
1173 return PTR_ERR(skb
);
1176 /* It ensures that the returned event matches the event data read from
1177 * the firmware file. At fist, it checks the length and then
1178 * the contents of the event.
1180 if (skb
->len
!= evt
->plen
) {
1181 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev
->name
,
1182 le16_to_cpu(cmd
->opcode
));
1187 if (memcmp(skb
->data
, evt_param
, evt
->plen
)) {
1188 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1189 hdev
->name
, le16_to_cpu(cmd
->opcode
));
1198 #define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1200 static int btusb_check_bdaddr_intel(struct hci_dev
*hdev
)
1202 struct sk_buff
*skb
;
1203 struct hci_rp_read_bd_addr
*rp
;
1205 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_BD_ADDR
, 0, NULL
,
1208 BT_ERR("%s reading Intel device address failed (%ld)",
1209 hdev
->name
, PTR_ERR(skb
));
1210 return PTR_ERR(skb
);
1213 if (skb
->len
!= sizeof(*rp
)) {
1214 BT_ERR("%s Intel device address length mismatch", hdev
->name
);
1219 rp
= (struct hci_rp_read_bd_addr
*) skb
->data
;
1221 BT_ERR("%s Intel device address result failed (%02x)",
1222 hdev
->name
, rp
->status
);
1224 return -bt_to_errno(rp
->status
);
1227 /* For some Intel based controllers, the default Bluetooth device
1228 * address 00:03:19:9E:8B:00 can be found. These controllers are
1229 * fully operational, but have the danger of duplicate addresses
1230 * and that in turn can cause problems with Bluetooth operation.
1232 if (!bacmp(&rp
->bdaddr
, BDADDR_INTEL
)) {
1233 BT_ERR("%s found Intel default device address (%pMR)",
1234 hdev
->name
, &rp
->bdaddr
);
1235 set_bit(HCI_QUIRK_INVALID_BDADDR
, &hdev
->quirks
);
1243 static int btusb_setup_intel(struct hci_dev
*hdev
)
1245 struct sk_buff
*skb
;
1246 const struct firmware
*fw
;
1249 struct intel_version
*ver
;
1251 const u8 mfg_enable
[] = { 0x01, 0x00 };
1252 const u8 mfg_disable
[] = { 0x00, 0x00 };
1253 const u8 mfg_reset_deactivate
[] = { 0x00, 0x01 };
1254 const u8 mfg_reset_activate
[] = { 0x00, 0x02 };
1256 BT_DBG("%s", hdev
->name
);
1258 /* The controller has a bug with the first HCI command sent to it
1259 * returning number of completed commands as zero. This would stall the
1260 * command processing in the Bluetooth core.
1262 * As a workaround, send HCI Reset command first which will reset the
1263 * number of completed commands and allow normal command processing
1266 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1268 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1269 hdev
->name
, PTR_ERR(skb
));
1270 return PTR_ERR(skb
);
1274 /* Read Intel specific controller version first to allow selection of
1275 * which firmware file to load.
1277 * The returned information are hardware variant and revision plus
1278 * firmware variant, revision and build number.
1280 skb
= __hci_cmd_sync(hdev
, 0xfc05, 0, NULL
, HCI_INIT_TIMEOUT
);
1282 BT_ERR("%s reading Intel fw version command failed (%ld)",
1283 hdev
->name
, PTR_ERR(skb
));
1284 return PTR_ERR(skb
);
1287 if (skb
->len
!= sizeof(*ver
)) {
1288 BT_ERR("%s Intel version event length mismatch", hdev
->name
);
1293 ver
= (struct intel_version
*)skb
->data
;
1295 BT_ERR("%s Intel fw version event failed (%02x)", hdev
->name
,
1298 return -bt_to_errno(ver
->status
);
1301 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1302 hdev
->name
, ver
->hw_platform
, ver
->hw_variant
,
1303 ver
->hw_revision
, ver
->fw_variant
, ver
->fw_revision
,
1304 ver
->fw_build_num
, ver
->fw_build_ww
, ver
->fw_build_yy
,
1307 /* fw_patch_num indicates the version of patch the device currently
1308 * have. If there is no patch data in the device, it is always 0x00.
1309 * So, if it is other than 0x00, no need to patch the deivce again.
1311 if (ver
->fw_patch_num
) {
1312 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1313 hdev
->name
, ver
->fw_patch_num
);
1315 btusb_check_bdaddr_intel(hdev
);
1319 /* Opens the firmware patch file based on the firmware version read
1320 * from the controller. If it fails to open the matching firmware
1321 * patch file, it tries to open the default firmware patch file.
1322 * If no patch file is found, allow the device to operate without
1325 fw
= btusb_setup_intel_get_fw(hdev
, ver
);
1328 btusb_check_bdaddr_intel(hdev
);
1333 /* This Intel specific command enables the manufacturer mode of the
1336 * Only while this mode is enabled, the driver can download the
1337 * firmware patch data and configuration parameters.
1339 skb
= __hci_cmd_sync(hdev
, 0xfc11, 2, mfg_enable
, HCI_INIT_TIMEOUT
);
1341 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1342 hdev
->name
, PTR_ERR(skb
));
1343 release_firmware(fw
);
1344 return PTR_ERR(skb
);
1348 u8 evt_status
= skb
->data
[0];
1349 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1350 hdev
->name
, evt_status
);
1352 release_firmware(fw
);
1353 return -bt_to_errno(evt_status
);
1359 /* The firmware data file consists of list of Intel specific HCI
1360 * commands and its expected events. The first byte indicates the
1361 * type of the message, either HCI command or HCI event.
1363 * It reads the command and its expected event from the firmware file,
1364 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1365 * the returned event is compared with the event read from the firmware
1366 * file and it will continue until all the messages are downloaded to
1369 * Once the firmware patching is completed successfully,
1370 * the manufacturer mode is disabled with reset and activating the
1373 * If the firmware patching fails, the manufacturer mode is
1374 * disabled with reset and deactivating the patch.
1376 * If the default patch file is used, no reset is done when disabling
1379 while (fw
->size
> fw_ptr
- fw
->data
) {
1382 ret
= btusb_setup_intel_patching(hdev
, fw
, &fw_ptr
,
1385 goto exit_mfg_deactivate
;
1388 release_firmware(fw
);
1391 goto exit_mfg_disable
;
1393 /* Patching completed successfully and disable the manufacturer mode
1394 * with reset and activate the downloaded firmware patches.
1396 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_reset_activate
),
1397 mfg_reset_activate
, HCI_INIT_TIMEOUT
);
1399 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1400 hdev
->name
, PTR_ERR(skb
));
1401 return PTR_ERR(skb
);
1405 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1408 btusb_check_bdaddr_intel(hdev
);
1412 /* Disable the manufacturer mode without reset */
1413 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_disable
), mfg_disable
,
1416 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1417 hdev
->name
, PTR_ERR(skb
));
1418 return PTR_ERR(skb
);
1422 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev
->name
);
1424 btusb_check_bdaddr_intel(hdev
);
1427 exit_mfg_deactivate
:
1428 release_firmware(fw
);
1430 /* Patching failed. Disable the manufacturer mode with reset and
1431 * deactivate the downloaded firmware patches.
1433 skb
= __hci_cmd_sync(hdev
, 0xfc11, sizeof(mfg_reset_deactivate
),
1434 mfg_reset_deactivate
, HCI_INIT_TIMEOUT
);
1436 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1437 hdev
->name
, PTR_ERR(skb
));
1438 return PTR_ERR(skb
);
1442 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1445 btusb_check_bdaddr_intel(hdev
);
1449 static int btusb_set_bdaddr_intel(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
)
1451 struct sk_buff
*skb
;
1454 skb
= __hci_cmd_sync(hdev
, 0xfc31, 6, bdaddr
, HCI_INIT_TIMEOUT
);
1457 BT_ERR("%s: changing Intel device address failed (%ld)",
1466 static int btusb_set_bdaddr_marvell(struct hci_dev
*hdev
,
1467 const bdaddr_t
*bdaddr
)
1469 struct sk_buff
*skb
;
1474 buf
[1] = sizeof(bdaddr_t
);
1475 memcpy(buf
+ 2, bdaddr
, sizeof(bdaddr_t
));
1477 skb
= __hci_cmd_sync(hdev
, 0xfc22, sizeof(buf
), buf
, HCI_INIT_TIMEOUT
);
1480 BT_ERR("%s: changing Marvell device address failed (%ld)",
1489 #define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
1491 static int btusb_setup_bcm_patchram(struct hci_dev
*hdev
)
1493 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1494 struct usb_device
*udev
= data
->udev
;
1496 const struct firmware
*fw
;
1499 const struct hci_command_hdr
*cmd
;
1500 const u8
*cmd_param
;
1502 struct sk_buff
*skb
;
1503 struct hci_rp_read_local_version
*ver
;
1504 struct hci_rp_read_bd_addr
*bda
;
1507 snprintf(fw_name
, sizeof(fw_name
), "brcm/%s-%04x-%04x.hcd",
1508 udev
->product
? udev
->product
: "BCM",
1509 le16_to_cpu(udev
->descriptor
.idVendor
),
1510 le16_to_cpu(udev
->descriptor
.idProduct
));
1512 ret
= request_firmware(&fw
, fw_name
, &hdev
->dev
);
1514 BT_INFO("%s: BCM: patch %s not found", hdev
->name
, fw_name
);
1519 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1522 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev
->name
, ret
);
1527 /* Read Local Version Info */
1528 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1532 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1537 if (skb
->len
!= sizeof(*ver
)) {
1538 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1545 ver
= (struct hci_rp_read_local_version
*) skb
->data
;
1546 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1547 "lmp_subver=%04x", hdev
->name
, ver
->hci_ver
, ver
->hci_rev
,
1548 ver
->lmp_ver
, ver
->lmp_subver
);
1551 /* Start Download */
1552 skb
= __hci_cmd_sync(hdev
, 0xfc2e, 0, NULL
, HCI_INIT_TIMEOUT
);
1555 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
1561 /* 50 msec delay after Download Minidrv completes */
1567 while (fw_size
>= sizeof(*cmd
)) {
1568 cmd
= (struct hci_command_hdr
*) fw_ptr
;
1569 fw_ptr
+= sizeof(*cmd
);
1570 fw_size
-= sizeof(*cmd
);
1572 if (fw_size
< cmd
->plen
) {
1573 BT_ERR("%s: BCM: patch %s is corrupted",
1574 hdev
->name
, fw_name
);
1580 fw_ptr
+= cmd
->plen
;
1581 fw_size
-= cmd
->plen
;
1583 opcode
= le16_to_cpu(cmd
->opcode
);
1585 skb
= __hci_cmd_sync(hdev
, opcode
, cmd
->plen
, cmd_param
,
1589 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
1590 hdev
->name
, opcode
, ret
);
1596 /* 250 msec delay after Launch Ram completes */
1601 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1604 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev
->name
, ret
);
1609 /* Read Local Version Info */
1610 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1614 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1619 if (skb
->len
!= sizeof(*ver
)) {
1620 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1627 ver
= (struct hci_rp_read_local_version
*) skb
->data
;
1628 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1629 "lmp_subver=%04x", hdev
->name
, ver
->hci_ver
, ver
->hci_rev
,
1630 ver
->lmp_ver
, ver
->lmp_subver
);
1633 /* Read BD Address */
1634 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_BD_ADDR
, 0, NULL
,
1638 BT_ERR("%s: HCI_OP_READ_BD_ADDR failed (%ld)",
1643 if (skb
->len
!= sizeof(*bda
)) {
1644 BT_ERR("%s: HCI_OP_READ_BD_ADDR event length mismatch",
1651 bda
= (struct hci_rp_read_bd_addr
*) skb
->data
;
1653 BT_ERR("%s: HCI_OP_READ_BD_ADDR error status (%02x)",
1654 hdev
->name
, bda
->status
);
1656 ret
= -bt_to_errno(bda
->status
);
1660 /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
1661 * with no configured address.
1663 if (!bacmp(&bda
->bdaddr
, BDADDR_BCM20702A0
)) {
1664 BT_INFO("%s: BCM: using default device address (%pMR)",
1665 hdev
->name
, &bda
->bdaddr
);
1666 set_bit(HCI_QUIRK_INVALID_BDADDR
, &hdev
->quirks
);
1672 release_firmware(fw
);
1677 static int btusb_set_bdaddr_bcm(struct hci_dev
*hdev
, const bdaddr_t
*bdaddr
)
1679 struct sk_buff
*skb
;
1682 skb
= __hci_cmd_sync(hdev
, 0xfc01, 6, bdaddr
, HCI_INIT_TIMEOUT
);
1685 BT_ERR("%s: BCM: Change address command failed (%ld)",
1694 static int btusb_probe(struct usb_interface
*intf
,
1695 const struct usb_device_id
*id
)
1697 struct usb_endpoint_descriptor
*ep_desc
;
1698 struct btusb_data
*data
;
1699 struct hci_dev
*hdev
;
1702 BT_DBG("intf %p id %p", intf
, id
);
1704 /* interface numbers are hardcoded in the spec */
1705 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
1708 if (!id
->driver_info
) {
1709 const struct usb_device_id
*match
;
1710 match
= usb_match_id(intf
, blacklist_table
);
1715 if (id
->driver_info
== BTUSB_IGNORE
)
1718 if (id
->driver_info
& BTUSB_ATH3012
) {
1719 struct usb_device
*udev
= interface_to_usbdev(intf
);
1721 /* Old firmware would otherwise let ath3k driver load
1722 * patch and sysconfig files */
1723 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) <= 0x0001)
1727 data
= devm_kzalloc(&intf
->dev
, sizeof(*data
), GFP_KERNEL
);
1731 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
1732 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
1734 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
1735 data
->intr_ep
= ep_desc
;
1739 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
1740 data
->bulk_tx_ep
= ep_desc
;
1744 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
1745 data
->bulk_rx_ep
= ep_desc
;
1750 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
)
1753 data
->cmdreq_type
= USB_TYPE_CLASS
;
1755 data
->udev
= interface_to_usbdev(intf
);
1758 spin_lock_init(&data
->lock
);
1760 INIT_WORK(&data
->work
, btusb_work
);
1761 INIT_WORK(&data
->waker
, btusb_waker
);
1762 spin_lock_init(&data
->txlock
);
1764 init_usb_anchor(&data
->tx_anchor
);
1765 init_usb_anchor(&data
->intr_anchor
);
1766 init_usb_anchor(&data
->bulk_anchor
);
1767 init_usb_anchor(&data
->isoc_anchor
);
1768 init_usb_anchor(&data
->deferred
);
1770 hdev
= hci_alloc_dev();
1774 hdev
->bus
= HCI_USB
;
1775 hci_set_drvdata(hdev
, data
);
1779 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
1781 hdev
->open
= btusb_open
;
1782 hdev
->close
= btusb_close
;
1783 hdev
->flush
= btusb_flush
;
1784 hdev
->send
= btusb_send_frame
;
1785 hdev
->notify
= btusb_notify
;
1787 if (id
->driver_info
& BTUSB_BCM92035
)
1788 hdev
->setup
= btusb_setup_bcm92035
;
1790 if (id
->driver_info
& BTUSB_BCM_PATCHRAM
) {
1791 hdev
->setup
= btusb_setup_bcm_patchram
;
1792 hdev
->set_bdaddr
= btusb_set_bdaddr_bcm
;
1795 if (id
->driver_info
& BTUSB_INTEL
) {
1796 hdev
->setup
= btusb_setup_intel
;
1797 hdev
->set_bdaddr
= btusb_set_bdaddr_intel
;
1800 if (id
->driver_info
& BTUSB_MARVELL
)
1801 hdev
->set_bdaddr
= btusb_set_bdaddr_marvell
;
1803 if (id
->driver_info
& BTUSB_INTEL_BOOT
)
1804 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1806 /* Interface numbers are hardcoded in the specification */
1807 data
->isoc
= usb_ifnum_to_if(data
->udev
, 1);
1810 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1812 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
1813 if (!disable_scofix
)
1814 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
1817 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
1820 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
1821 data
->cmdreq_type
= USB_TYPE_VENDOR
;
1822 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1825 if (id
->driver_info
& BTUSB_CSR
) {
1826 struct usb_device
*udev
= data
->udev
;
1827 u16 bcdDevice
= le16_to_cpu(udev
->descriptor
.bcdDevice
);
1829 /* Old firmware would otherwise execute USB reset */
1830 if (bcdDevice
< 0x117)
1831 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1833 /* Fake CSR devices with broken commands */
1834 if (bcdDevice
<= 0x100)
1835 hdev
->setup
= btusb_setup_csr
;
1838 if (id
->driver_info
& BTUSB_SNIFFER
) {
1839 struct usb_device
*udev
= data
->udev
;
1841 /* New sniffer firmware has crippled HCI interface */
1842 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
1843 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1846 if (id
->driver_info
& BTUSB_INTEL_BOOT
) {
1847 /* A bug in the bootloader causes that interrupt interface is
1848 * only enabled after receiving SetInterface(0, AltSetting=0).
1850 err
= usb_set_interface(data
->udev
, 0, 0);
1852 BT_ERR("failed to set interface 0, alt 0 %d", err
);
1859 err
= usb_driver_claim_interface(&btusb_driver
,
1867 err
= hci_register_dev(hdev
);
1873 usb_set_intfdata(intf
, data
);
1878 static void btusb_disconnect(struct usb_interface
*intf
)
1880 struct btusb_data
*data
= usb_get_intfdata(intf
);
1881 struct hci_dev
*hdev
;
1883 BT_DBG("intf %p", intf
);
1889 usb_set_intfdata(data
->intf
, NULL
);
1892 usb_set_intfdata(data
->isoc
, NULL
);
1894 hci_unregister_dev(hdev
);
1896 if (intf
== data
->isoc
)
1897 usb_driver_release_interface(&btusb_driver
, data
->intf
);
1898 else if (data
->isoc
)
1899 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
1905 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1907 struct btusb_data
*data
= usb_get_intfdata(intf
);
1909 BT_DBG("intf %p", intf
);
1911 if (data
->suspend_count
++)
1914 spin_lock_irq(&data
->txlock
);
1915 if (!(PMSG_IS_AUTO(message
) && data
->tx_in_flight
)) {
1916 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
1917 spin_unlock_irq(&data
->txlock
);
1919 spin_unlock_irq(&data
->txlock
);
1920 data
->suspend_count
--;
1924 cancel_work_sync(&data
->work
);
1926 btusb_stop_traffic(data
);
1927 usb_kill_anchored_urbs(&data
->tx_anchor
);
1932 static void play_deferred(struct btusb_data
*data
)
1937 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
1938 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1942 data
->tx_in_flight
++;
1944 usb_scuttle_anchored_urbs(&data
->deferred
);
1947 static int btusb_resume(struct usb_interface
*intf
)
1949 struct btusb_data
*data
= usb_get_intfdata(intf
);
1950 struct hci_dev
*hdev
= data
->hdev
;
1953 BT_DBG("intf %p", intf
);
1955 if (--data
->suspend_count
)
1958 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1961 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
1962 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
1964 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1969 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
1970 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1972 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1976 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1979 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1980 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
1981 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1983 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
1986 spin_lock_irq(&data
->txlock
);
1987 play_deferred(data
);
1988 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1989 spin_unlock_irq(&data
->txlock
);
1990 schedule_work(&data
->work
);
1995 usb_scuttle_anchored_urbs(&data
->deferred
);
1997 spin_lock_irq(&data
->txlock
);
1998 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1999 spin_unlock_irq(&data
->txlock
);
2005 static struct usb_driver btusb_driver
= {
2007 .probe
= btusb_probe
,
2008 .disconnect
= btusb_disconnect
,
2010 .suspend
= btusb_suspend
,
2011 .resume
= btusb_resume
,
2013 .id_table
= btusb_table
,
2014 .supports_autosuspend
= 1,
2015 .disable_hub_initiated_lpm
= 1,
2018 module_usb_driver(btusb_driver
);
2020 module_param(disable_scofix
, bool, 0644);
2021 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
2023 module_param(force_scofix
, bool, 0644);
2024 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
2026 module_param(reset
, bool, 0644);
2027 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
2029 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
2030 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
2031 MODULE_VERSION(VERSION
);
2032 MODULE_LICENSE("GPL");