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/kernel.h>
25 #include <linux/module.h>
26 #include <linux/init.h>
27 #include <linux/slab.h>
28 #include <linux/types.h>
29 #include <linux/sched.h>
30 #include <linux/errno.h>
31 #include <linux/skbuff.h>
33 #include <linux/usb.h>
35 #include <net/bluetooth/bluetooth.h>
36 #include <net/bluetooth/hci_core.h>
40 static int ignore_dga
;
41 static int ignore_csr
;
42 static int ignore_sniffer
;
43 static int disable_scofix
;
44 static int force_scofix
;
48 static struct usb_driver btusb_driver
;
50 #define BTUSB_IGNORE 0x01
51 #define BTUSB_DIGIANSWER 0x02
52 #define BTUSB_CSR 0x04
53 #define BTUSB_SNIFFER 0x08
54 #define BTUSB_BCM92035 0x10
55 #define BTUSB_BROKEN_ISOC 0x20
56 #define BTUSB_WRONG_SCO_MTU 0x40
57 #define BTUSB_ATH3012 0x80
59 static struct usb_device_id btusb_table
[] = {
60 /* Generic Bluetooth USB device */
61 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
63 /* Apple MacBookPro 7,1 */
64 { USB_DEVICE(0x05ac, 0x8213) },
67 { USB_DEVICE(0x05ac, 0x8215) },
69 /* Apple MacBookPro6,2 */
70 { USB_DEVICE(0x05ac, 0x8218) },
72 /* Apple MacBookAir3,1, MacBookAir3,2 */
73 { USB_DEVICE(0x05ac, 0x821b) },
75 /* Apple MacBookAir4,1 */
76 { USB_DEVICE(0x05ac, 0x821f) },
78 /* Apple MacBookPro8,2 */
79 { USB_DEVICE(0x05ac, 0x821a) },
81 /* Apple MacMini5,1 */
82 { USB_DEVICE(0x05ac, 0x8281) },
84 /* AVM BlueFRITZ! USB v2.0 */
85 { USB_DEVICE(0x057c, 0x3800) },
87 /* Bluetooth Ultraport Module from IBM */
88 { USB_DEVICE(0x04bf, 0x030a) },
90 /* ALPS Modules with non-standard id */
91 { USB_DEVICE(0x044e, 0x3001) },
92 { USB_DEVICE(0x044e, 0x3002) },
94 /* Ericsson with non-standard id */
95 { USB_DEVICE(0x0bdb, 0x1002) },
97 /* Canyon CN-BTU1 with HID interfaces */
98 { USB_DEVICE(0x0c10, 0x0000) },
100 { } /* Terminating entry */
103 MODULE_DEVICE_TABLE(usb
, btusb_table
);
105 static struct usb_device_id blacklist_table
[] = {
106 /* CSR BlueCore devices */
107 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= BTUSB_CSR
},
109 /* Broadcom BCM2033 without firmware */
110 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= BTUSB_IGNORE
},
112 /* Atheros 3011 with sflash firmware */
113 { USB_DEVICE(0x0cf3, 0x3002), .driver_info
= BTUSB_IGNORE
},
114 { USB_DEVICE(0x13d3, 0x3304), .driver_info
= BTUSB_IGNORE
},
115 { USB_DEVICE(0x0930, 0x0215), .driver_info
= BTUSB_IGNORE
},
117 /* Atheros AR9285 Malbec with sflash firmware */
118 { USB_DEVICE(0x03f0, 0x311d), .driver_info
= BTUSB_IGNORE
},
120 /* Atheros 3012 with sflash firmware */
121 { USB_DEVICE(0x0cf3, 0x3004), .driver_info
= BTUSB_ATH3012
},
123 /* Atheros AR5BBU12 with sflash firmware */
124 { USB_DEVICE(0x0489, 0xe02c), .driver_info
= BTUSB_IGNORE
},
126 /* Broadcom BCM2035 */
127 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
128 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
129 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
131 /* Broadcom BCM2045 */
132 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
133 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
135 /* IBM/Lenovo ThinkPad with Broadcom chip */
136 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
137 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
139 /* HP laptop with Broadcom chip */
140 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
142 /* Dell laptop with Broadcom chip */
143 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
145 /* Dell Wireless 370 and 410 devices */
146 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
147 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
149 /* Belkin F8T012 and F8T013 devices */
150 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
151 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
153 /* Asus WL-BTD202 device */
154 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
156 /* Kensington Bluetooth USB adapter */
157 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
159 /* RTX Telecom based adapters with buggy SCO support */
160 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
161 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
163 /* CONWISE Technology based adapters with buggy SCO support */
164 { USB_DEVICE(0x0e5e, 0x6622), .driver_info
= BTUSB_BROKEN_ISOC
},
166 /* Digianswer devices */
167 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
168 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
170 /* CSR BlueCore Bluetooth Sniffer */
171 { USB_DEVICE(0x0a12, 0x0002), .driver_info
= BTUSB_SNIFFER
},
173 /* Frontline ComProbe Bluetooth Sniffer */
174 { USB_DEVICE(0x16d3, 0x0002), .driver_info
= BTUSB_SNIFFER
},
176 { } /* Terminating entry */
179 #define BTUSB_MAX_ISOC_FRAMES 10
181 #define BTUSB_INTR_RUNNING 0
182 #define BTUSB_BULK_RUNNING 1
183 #define BTUSB_ISOC_RUNNING 2
184 #define BTUSB_SUSPENDING 3
185 #define BTUSB_DID_ISO_RESUME 4
188 struct hci_dev
*hdev
;
189 struct usb_device
*udev
;
190 struct usb_interface
*intf
;
191 struct usb_interface
*isoc
;
197 struct work_struct work
;
198 struct work_struct waker
;
200 struct usb_anchor tx_anchor
;
201 struct usb_anchor intr_anchor
;
202 struct usb_anchor bulk_anchor
;
203 struct usb_anchor isoc_anchor
;
204 struct usb_anchor deferred
;
208 struct usb_endpoint_descriptor
*intr_ep
;
209 struct usb_endpoint_descriptor
*bulk_tx_ep
;
210 struct usb_endpoint_descriptor
*bulk_rx_ep
;
211 struct usb_endpoint_descriptor
*isoc_tx_ep
;
212 struct usb_endpoint_descriptor
*isoc_rx_ep
;
216 unsigned int sco_num
;
221 static int inc_tx(struct btusb_data
*data
)
226 spin_lock_irqsave(&data
->txlock
, flags
);
227 rv
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
229 data
->tx_in_flight
++;
230 spin_unlock_irqrestore(&data
->txlock
, flags
);
235 static void btusb_intr_complete(struct urb
*urb
)
237 struct hci_dev
*hdev
= urb
->context
;
238 struct btusb_data
*data
= hdev
->driver_data
;
241 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
242 urb
, urb
->status
, urb
->actual_length
);
244 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
247 if (urb
->status
== 0) {
248 hdev
->stat
.byte_rx
+= urb
->actual_length
;
250 if (hci_recv_fragment(hdev
, HCI_EVENT_PKT
,
251 urb
->transfer_buffer
,
252 urb
->actual_length
) < 0) {
253 BT_ERR("%s corrupted event packet", hdev
->name
);
258 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
261 usb_mark_last_busy(data
->udev
);
262 usb_anchor_urb(urb
, &data
->intr_anchor
);
264 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
266 /* -EPERM: urb is being killed;
267 * -ENODEV: device got disconnected */
268 if (err
!= -EPERM
&& err
!= -ENODEV
)
269 BT_ERR("%s urb %p failed to resubmit (%d)",
270 hdev
->name
, urb
, -err
);
271 usb_unanchor_urb(urb
);
275 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
277 struct btusb_data
*data
= hdev
->driver_data
;
283 BT_DBG("%s", hdev
->name
);
288 urb
= usb_alloc_urb(0, mem_flags
);
292 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
294 buf
= kmalloc(size
, mem_flags
);
300 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
302 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
303 btusb_intr_complete
, hdev
,
304 data
->intr_ep
->bInterval
);
306 urb
->transfer_flags
|= URB_FREE_BUFFER
;
308 usb_anchor_urb(urb
, &data
->intr_anchor
);
310 err
= usb_submit_urb(urb
, mem_flags
);
312 BT_ERR("%s urb %p submission failed (%d)",
313 hdev
->name
, urb
, -err
);
314 usb_unanchor_urb(urb
);
322 static void btusb_bulk_complete(struct urb
*urb
)
324 struct hci_dev
*hdev
= urb
->context
;
325 struct btusb_data
*data
= hdev
->driver_data
;
328 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
329 urb
, urb
->status
, urb
->actual_length
);
331 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
334 if (urb
->status
== 0) {
335 hdev
->stat
.byte_rx
+= urb
->actual_length
;
337 if (hci_recv_fragment(hdev
, HCI_ACLDATA_PKT
,
338 urb
->transfer_buffer
,
339 urb
->actual_length
) < 0) {
340 BT_ERR("%s corrupted ACL packet", hdev
->name
);
345 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
348 usb_anchor_urb(urb
, &data
->bulk_anchor
);
349 usb_mark_last_busy(data
->udev
);
351 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
353 /* -EPERM: urb is being killed;
354 * -ENODEV: device got disconnected */
355 if (err
!= -EPERM
&& err
!= -ENODEV
)
356 BT_ERR("%s urb %p failed to resubmit (%d)",
357 hdev
->name
, urb
, -err
);
358 usb_unanchor_urb(urb
);
362 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
364 struct btusb_data
*data
= hdev
->driver_data
;
368 int err
, size
= HCI_MAX_FRAME_SIZE
;
370 BT_DBG("%s", hdev
->name
);
372 if (!data
->bulk_rx_ep
)
375 urb
= usb_alloc_urb(0, mem_flags
);
379 buf
= kmalloc(size
, mem_flags
);
385 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
387 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
388 buf
, size
, btusb_bulk_complete
, hdev
);
390 urb
->transfer_flags
|= URB_FREE_BUFFER
;
392 usb_mark_last_busy(data
->udev
);
393 usb_anchor_urb(urb
, &data
->bulk_anchor
);
395 err
= usb_submit_urb(urb
, mem_flags
);
397 BT_ERR("%s urb %p submission failed (%d)",
398 hdev
->name
, urb
, -err
);
399 usb_unanchor_urb(urb
);
407 static void btusb_isoc_complete(struct urb
*urb
)
409 struct hci_dev
*hdev
= urb
->context
;
410 struct btusb_data
*data
= hdev
->driver_data
;
413 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
414 urb
, urb
->status
, urb
->actual_length
);
416 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
419 if (urb
->status
== 0) {
420 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
421 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
422 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
424 if (urb
->iso_frame_desc
[i
].status
)
427 hdev
->stat
.byte_rx
+= length
;
429 if (hci_recv_fragment(hdev
, HCI_SCODATA_PKT
,
430 urb
->transfer_buffer
+ offset
,
432 BT_ERR("%s corrupted SCO packet", hdev
->name
);
438 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
441 usb_anchor_urb(urb
, &data
->isoc_anchor
);
443 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
445 /* -EPERM: urb is being killed;
446 * -ENODEV: device got disconnected */
447 if (err
!= -EPERM
&& err
!= -ENODEV
)
448 BT_ERR("%s urb %p failed to resubmit (%d)",
449 hdev
->name
, urb
, -err
);
450 usb_unanchor_urb(urb
);
454 static inline void __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
458 BT_DBG("len %d mtu %d", len
, mtu
);
460 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
461 i
++, offset
+= mtu
, len
-= mtu
) {
462 urb
->iso_frame_desc
[i
].offset
= offset
;
463 urb
->iso_frame_desc
[i
].length
= mtu
;
466 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
467 urb
->iso_frame_desc
[i
].offset
= offset
;
468 urb
->iso_frame_desc
[i
].length
= len
;
472 urb
->number_of_packets
= i
;
475 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
477 struct btusb_data
*data
= hdev
->driver_data
;
483 BT_DBG("%s", hdev
->name
);
485 if (!data
->isoc_rx_ep
)
488 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
492 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
493 BTUSB_MAX_ISOC_FRAMES
;
495 buf
= kmalloc(size
, mem_flags
);
501 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
503 urb
->dev
= data
->udev
;
506 urb
->complete
= btusb_isoc_complete
;
507 urb
->interval
= data
->isoc_rx_ep
->bInterval
;
509 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
510 urb
->transfer_buffer
= buf
;
511 urb
->transfer_buffer_length
= size
;
513 __fill_isoc_descriptor(urb
, size
,
514 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
516 usb_anchor_urb(urb
, &data
->isoc_anchor
);
518 err
= usb_submit_urb(urb
, mem_flags
);
520 BT_ERR("%s urb %p submission failed (%d)",
521 hdev
->name
, urb
, -err
);
522 usb_unanchor_urb(urb
);
530 static void btusb_tx_complete(struct urb
*urb
)
532 struct sk_buff
*skb
= urb
->context
;
533 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
534 struct btusb_data
*data
= hdev
->driver_data
;
536 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
537 urb
, urb
->status
, urb
->actual_length
);
539 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
543 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
548 spin_lock(&data
->txlock
);
549 data
->tx_in_flight
--;
550 spin_unlock(&data
->txlock
);
552 kfree(urb
->setup_packet
);
557 static void btusb_isoc_tx_complete(struct urb
*urb
)
559 struct sk_buff
*skb
= urb
->context
;
560 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
562 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
563 urb
, urb
->status
, urb
->actual_length
);
565 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
569 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
574 kfree(urb
->setup_packet
);
579 static int btusb_open(struct hci_dev
*hdev
)
581 struct btusb_data
*data
= hdev
->driver_data
;
584 BT_DBG("%s", hdev
->name
);
586 err
= usb_autopm_get_interface(data
->intf
);
590 data
->intf
->needs_remote_wakeup
= 1;
592 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
595 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
598 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
602 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
604 usb_kill_anchored_urbs(&data
->intr_anchor
);
608 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
609 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
612 usb_autopm_put_interface(data
->intf
);
616 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
617 clear_bit(HCI_RUNNING
, &hdev
->flags
);
618 usb_autopm_put_interface(data
->intf
);
622 static void btusb_stop_traffic(struct btusb_data
*data
)
624 usb_kill_anchored_urbs(&data
->intr_anchor
);
625 usb_kill_anchored_urbs(&data
->bulk_anchor
);
626 usb_kill_anchored_urbs(&data
->isoc_anchor
);
629 static int btusb_close(struct hci_dev
*hdev
)
631 struct btusb_data
*data
= hdev
->driver_data
;
634 BT_DBG("%s", hdev
->name
);
636 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
639 cancel_work_sync(&data
->work
);
640 cancel_work_sync(&data
->waker
);
642 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
643 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
644 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
646 btusb_stop_traffic(data
);
647 err
= usb_autopm_get_interface(data
->intf
);
651 data
->intf
->needs_remote_wakeup
= 0;
652 usb_autopm_put_interface(data
->intf
);
655 usb_scuttle_anchored_urbs(&data
->deferred
);
659 static int btusb_flush(struct hci_dev
*hdev
)
661 struct btusb_data
*data
= hdev
->driver_data
;
663 BT_DBG("%s", hdev
->name
);
665 usb_kill_anchored_urbs(&data
->tx_anchor
);
670 static int btusb_send_frame(struct sk_buff
*skb
)
672 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
673 struct btusb_data
*data
= hdev
->driver_data
;
674 struct usb_ctrlrequest
*dr
;
679 BT_DBG("%s", hdev
->name
);
681 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
684 switch (bt_cb(skb
)->pkt_type
) {
685 case HCI_COMMAND_PKT
:
686 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
690 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
696 dr
->bRequestType
= data
->cmdreq_type
;
700 dr
->wLength
= __cpu_to_le16(skb
->len
);
702 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
704 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
705 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
710 case HCI_ACLDATA_PKT
:
711 if (!data
->bulk_tx_ep
|| (hdev
->conn_hash
.acl_num
< 1 &&
712 hdev
->conn_hash
.le_num
< 1))
715 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
719 pipe
= usb_sndbulkpipe(data
->udev
,
720 data
->bulk_tx_ep
->bEndpointAddress
);
722 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
723 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
728 case HCI_SCODATA_PKT
:
729 if (!data
->isoc_tx_ep
|| hdev
->conn_hash
.sco_num
< 1)
732 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
736 pipe
= usb_sndisocpipe(data
->udev
,
737 data
->isoc_tx_ep
->bEndpointAddress
);
739 usb_fill_int_urb(urb
, data
->udev
, pipe
,
740 skb
->data
, skb
->len
, btusb_isoc_tx_complete
,
741 skb
, data
->isoc_tx_ep
->bInterval
);
743 urb
->transfer_flags
= URB_ISO_ASAP
;
745 __fill_isoc_descriptor(urb
, skb
->len
,
746 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
757 usb_anchor_urb(urb
, &data
->deferred
);
758 schedule_work(&data
->waker
);
764 usb_anchor_urb(urb
, &data
->tx_anchor
);
766 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
768 BT_ERR("%s urb %p submission failed", hdev
->name
, urb
);
769 kfree(urb
->setup_packet
);
770 usb_unanchor_urb(urb
);
772 usb_mark_last_busy(data
->udev
);
781 static void btusb_destruct(struct hci_dev
*hdev
)
783 struct btusb_data
*data
= hdev
->driver_data
;
785 BT_DBG("%s", hdev
->name
);
790 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
792 struct btusb_data
*data
= hdev
->driver_data
;
794 BT_DBG("%s evt %d", hdev
->name
, evt
);
796 if (hdev
->conn_hash
.sco_num
!= data
->sco_num
) {
797 data
->sco_num
= hdev
->conn_hash
.sco_num
;
798 schedule_work(&data
->work
);
802 static inline int __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
804 struct btusb_data
*data
= hdev
->driver_data
;
805 struct usb_interface
*intf
= data
->isoc
;
806 struct usb_endpoint_descriptor
*ep_desc
;
812 err
= usb_set_interface(data
->udev
, 1, altsetting
);
814 BT_ERR("%s setting interface failed (%d)", hdev
->name
, -err
);
818 data
->isoc_altsetting
= altsetting
;
820 data
->isoc_tx_ep
= NULL
;
821 data
->isoc_rx_ep
= NULL
;
823 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
824 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
826 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
827 data
->isoc_tx_ep
= ep_desc
;
831 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
832 data
->isoc_rx_ep
= ep_desc
;
837 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
838 BT_ERR("%s invalid SCO descriptors", hdev
->name
);
845 static void btusb_work(struct work_struct
*work
)
847 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
848 struct hci_dev
*hdev
= data
->hdev
;
851 if (hdev
->conn_hash
.sco_num
> 0) {
852 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
853 err
= usb_autopm_get_interface(data
->isoc
? data
->isoc
: data
->intf
);
855 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
856 usb_kill_anchored_urbs(&data
->isoc_anchor
);
860 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
862 if (data
->isoc_altsetting
!= 2) {
863 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
864 usb_kill_anchored_urbs(&data
->isoc_anchor
);
866 if (__set_isoc_interface(hdev
, 2) < 0)
870 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
871 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
872 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
874 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
877 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
878 usb_kill_anchored_urbs(&data
->isoc_anchor
);
880 __set_isoc_interface(hdev
, 0);
881 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
882 usb_autopm_put_interface(data
->isoc
? data
->isoc
: data
->intf
);
886 static void btusb_waker(struct work_struct
*work
)
888 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
891 err
= usb_autopm_get_interface(data
->intf
);
895 usb_autopm_put_interface(data
->intf
);
898 static int btusb_probe(struct usb_interface
*intf
,
899 const struct usb_device_id
*id
)
901 struct usb_endpoint_descriptor
*ep_desc
;
902 struct btusb_data
*data
;
903 struct hci_dev
*hdev
;
906 BT_DBG("intf %p id %p", intf
, id
);
908 /* interface numbers are hardcoded in the spec */
909 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
912 if (!id
->driver_info
) {
913 const struct usb_device_id
*match
;
914 match
= usb_match_id(intf
, blacklist_table
);
919 if (id
->driver_info
== BTUSB_IGNORE
)
922 if (ignore_dga
&& id
->driver_info
& BTUSB_DIGIANSWER
)
925 if (ignore_csr
&& id
->driver_info
& BTUSB_CSR
)
928 if (ignore_sniffer
&& id
->driver_info
& BTUSB_SNIFFER
)
931 if (id
->driver_info
& BTUSB_ATH3012
) {
932 struct usb_device
*udev
= interface_to_usbdev(intf
);
934 /* Old firmware would otherwise let ath3k driver load
935 * patch and sysconfig files */
936 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) <= 0x0001)
940 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
944 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
945 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
947 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
948 data
->intr_ep
= ep_desc
;
952 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
953 data
->bulk_tx_ep
= ep_desc
;
957 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
958 data
->bulk_rx_ep
= ep_desc
;
963 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
) {
968 data
->cmdreq_type
= USB_TYPE_CLASS
;
970 data
->udev
= interface_to_usbdev(intf
);
973 spin_lock_init(&data
->lock
);
975 INIT_WORK(&data
->work
, btusb_work
);
976 INIT_WORK(&data
->waker
, btusb_waker
);
977 spin_lock_init(&data
->txlock
);
979 init_usb_anchor(&data
->tx_anchor
);
980 init_usb_anchor(&data
->intr_anchor
);
981 init_usb_anchor(&data
->bulk_anchor
);
982 init_usb_anchor(&data
->isoc_anchor
);
983 init_usb_anchor(&data
->deferred
);
985 hdev
= hci_alloc_dev();
992 hdev
->driver_data
= data
;
996 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
998 hdev
->open
= btusb_open
;
999 hdev
->close
= btusb_close
;
1000 hdev
->flush
= btusb_flush
;
1001 hdev
->send
= btusb_send_frame
;
1002 hdev
->destruct
= btusb_destruct
;
1003 hdev
->notify
= btusb_notify
;
1005 hdev
->owner
= THIS_MODULE
;
1007 /* Interface numbers are hardcoded in the specification */
1008 data
->isoc
= usb_ifnum_to_if(data
->udev
, 1);
1011 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1013 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
1014 if (!disable_scofix
)
1015 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
1018 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
1021 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
1022 data
->cmdreq_type
= USB_TYPE_VENDOR
;
1023 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1026 if (id
->driver_info
& BTUSB_CSR
) {
1027 struct usb_device
*udev
= data
->udev
;
1029 /* Old firmware would otherwise execute USB reset */
1030 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) < 0x117)
1031 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1034 if (id
->driver_info
& BTUSB_SNIFFER
) {
1035 struct usb_device
*udev
= data
->udev
;
1037 /* New sniffer firmware has crippled HCI interface */
1038 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
1039 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1044 if (id
->driver_info
& BTUSB_BCM92035
) {
1045 unsigned char cmd
[] = { 0x3b, 0xfc, 0x01, 0x00 };
1046 struct sk_buff
*skb
;
1048 skb
= bt_skb_alloc(sizeof(cmd
), GFP_KERNEL
);
1050 memcpy(skb_put(skb
, sizeof(cmd
)), cmd
, sizeof(cmd
));
1051 skb_queue_tail(&hdev
->driver_init
, skb
);
1056 err
= usb_driver_claim_interface(&btusb_driver
,
1065 err
= hci_register_dev(hdev
);
1072 usb_set_intfdata(intf
, data
);
1077 static void btusb_disconnect(struct usb_interface
*intf
)
1079 struct btusb_data
*data
= usb_get_intfdata(intf
);
1080 struct hci_dev
*hdev
;
1082 BT_DBG("intf %p", intf
);
1089 __hci_dev_hold(hdev
);
1091 usb_set_intfdata(data
->intf
, NULL
);
1094 usb_set_intfdata(data
->isoc
, NULL
);
1096 hci_unregister_dev(hdev
);
1098 if (intf
== data
->isoc
)
1099 usb_driver_release_interface(&btusb_driver
, data
->intf
);
1100 else if (data
->isoc
)
1101 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
1103 __hci_dev_put(hdev
);
1109 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1111 struct btusb_data
*data
= usb_get_intfdata(intf
);
1113 BT_DBG("intf %p", intf
);
1115 if (data
->suspend_count
++)
1118 spin_lock_irq(&data
->txlock
);
1119 if (!((message
.event
& PM_EVENT_AUTO
) && data
->tx_in_flight
)) {
1120 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
1121 spin_unlock_irq(&data
->txlock
);
1123 spin_unlock_irq(&data
->txlock
);
1124 data
->suspend_count
--;
1128 cancel_work_sync(&data
->work
);
1130 btusb_stop_traffic(data
);
1131 usb_kill_anchored_urbs(&data
->tx_anchor
);
1136 static void play_deferred(struct btusb_data
*data
)
1141 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
1142 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1146 data
->tx_in_flight
++;
1148 usb_scuttle_anchored_urbs(&data
->deferred
);
1151 static int btusb_resume(struct usb_interface
*intf
)
1153 struct btusb_data
*data
= usb_get_intfdata(intf
);
1154 struct hci_dev
*hdev
= data
->hdev
;
1157 BT_DBG("intf %p", intf
);
1159 if (--data
->suspend_count
)
1162 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1165 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
1166 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
1168 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1173 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
1174 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1176 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1180 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1183 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1184 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
1185 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1187 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
1190 spin_lock_irq(&data
->txlock
);
1191 play_deferred(data
);
1192 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1193 spin_unlock_irq(&data
->txlock
);
1194 schedule_work(&data
->work
);
1199 usb_scuttle_anchored_urbs(&data
->deferred
);
1201 spin_lock_irq(&data
->txlock
);
1202 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1203 spin_unlock_irq(&data
->txlock
);
1209 static struct usb_driver btusb_driver
= {
1211 .probe
= btusb_probe
,
1212 .disconnect
= btusb_disconnect
,
1214 .suspend
= btusb_suspend
,
1215 .resume
= btusb_resume
,
1217 .id_table
= btusb_table
,
1218 .supports_autosuspend
= 1,
1221 static int __init
btusb_init(void)
1223 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION
);
1225 return usb_register(&btusb_driver
);
1228 static void __exit
btusb_exit(void)
1230 usb_deregister(&btusb_driver
);
1233 module_init(btusb_init
);
1234 module_exit(btusb_exit
);
1236 module_param(ignore_dga
, bool, 0644);
1237 MODULE_PARM_DESC(ignore_dga
, "Ignore devices with id 08fd:0001");
1239 module_param(ignore_csr
, bool, 0644);
1240 MODULE_PARM_DESC(ignore_csr
, "Ignore devices with id 0a12:0001");
1242 module_param(ignore_sniffer
, bool, 0644);
1243 MODULE_PARM_DESC(ignore_sniffer
, "Ignore devices with id 0a12:0002");
1245 module_param(disable_scofix
, bool, 0644);
1246 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
1248 module_param(force_scofix
, bool, 0644);
1249 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
1251 module_param(reset
, bool, 0644);
1252 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
1254 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1255 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
1256 MODULE_VERSION(VERSION
);
1257 MODULE_LICENSE("GPL");