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
58 static struct usb_device_id btusb_table
[] = {
59 /* Generic Bluetooth USB device */
60 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
62 /* Apple MacBookPro 7,1 */
63 { USB_DEVICE(0x05ac, 0x8213) },
66 { USB_DEVICE(0x05ac, 0x8215) },
68 /* Apple MacBookPro6,2 */
69 { USB_DEVICE(0x05ac, 0x8218) },
71 /* Apple MacBookAir3,1, MacBookAir3,2 */
72 { USB_DEVICE(0x05ac, 0x821b) },
74 /* AVM BlueFRITZ! USB v2.0 */
75 { USB_DEVICE(0x057c, 0x3800) },
77 /* Bluetooth Ultraport Module from IBM */
78 { USB_DEVICE(0x04bf, 0x030a) },
80 /* ALPS Modules with non-standard id */
81 { USB_DEVICE(0x044e, 0x3001) },
82 { USB_DEVICE(0x044e, 0x3002) },
84 /* Ericsson with non-standard id */
85 { USB_DEVICE(0x0bdb, 0x1002) },
87 /* Canyon CN-BTU1 with HID interfaces */
88 { USB_DEVICE(0x0c10, 0x0000) },
90 { } /* Terminating entry */
93 MODULE_DEVICE_TABLE(usb
, btusb_table
);
95 static struct usb_device_id blacklist_table
[] = {
96 /* CSR BlueCore devices */
97 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= BTUSB_CSR
},
99 /* Broadcom BCM2033 without firmware */
100 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= BTUSB_IGNORE
},
102 /* Atheros 3011 with sflash firmware */
103 { USB_DEVICE(0x0cf3, 0x3002), .driver_info
= BTUSB_IGNORE
},
105 /* Broadcom BCM2035 */
106 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
107 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
108 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
110 /* Broadcom BCM2045 */
111 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
112 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
114 /* IBM/Lenovo ThinkPad with Broadcom chip */
115 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
116 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
118 /* HP laptop with Broadcom chip */
119 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
121 /* Dell laptop with Broadcom chip */
122 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
124 /* Dell Wireless 370 and 410 devices */
125 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
126 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
128 /* Belkin F8T012 and F8T013 devices */
129 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
130 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
132 /* Asus WL-BTD202 device */
133 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
135 /* Kensington Bluetooth USB adapter */
136 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
138 /* RTX Telecom based adapters with buggy SCO support */
139 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
140 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
142 /* CONWISE Technology based adapters with buggy SCO support */
143 { USB_DEVICE(0x0e5e, 0x6622), .driver_info
= BTUSB_BROKEN_ISOC
},
145 /* Digianswer devices */
146 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
147 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
149 /* CSR BlueCore Bluetooth Sniffer */
150 { USB_DEVICE(0x0a12, 0x0002), .driver_info
= BTUSB_SNIFFER
},
152 /* Frontline ComProbe Bluetooth Sniffer */
153 { USB_DEVICE(0x16d3, 0x0002), .driver_info
= BTUSB_SNIFFER
},
155 { } /* Terminating entry */
158 #define BTUSB_MAX_ISOC_FRAMES 10
160 #define BTUSB_INTR_RUNNING 0
161 #define BTUSB_BULK_RUNNING 1
162 #define BTUSB_ISOC_RUNNING 2
163 #define BTUSB_SUSPENDING 3
164 #define BTUSB_DID_ISO_RESUME 4
167 struct hci_dev
*hdev
;
168 struct usb_device
*udev
;
169 struct usb_interface
*intf
;
170 struct usb_interface
*isoc
;
176 struct work_struct work
;
177 struct work_struct waker
;
179 struct usb_anchor tx_anchor
;
180 struct usb_anchor intr_anchor
;
181 struct usb_anchor bulk_anchor
;
182 struct usb_anchor isoc_anchor
;
183 struct usb_anchor deferred
;
187 struct usb_endpoint_descriptor
*intr_ep
;
188 struct usb_endpoint_descriptor
*bulk_tx_ep
;
189 struct usb_endpoint_descriptor
*bulk_rx_ep
;
190 struct usb_endpoint_descriptor
*isoc_tx_ep
;
191 struct usb_endpoint_descriptor
*isoc_rx_ep
;
195 unsigned int sco_num
;
200 static int inc_tx(struct btusb_data
*data
)
205 spin_lock_irqsave(&data
->txlock
, flags
);
206 rv
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
208 data
->tx_in_flight
++;
209 spin_unlock_irqrestore(&data
->txlock
, flags
);
214 static void btusb_intr_complete(struct urb
*urb
)
216 struct hci_dev
*hdev
= urb
->context
;
217 struct btusb_data
*data
= hdev
->driver_data
;
220 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
221 urb
, urb
->status
, urb
->actual_length
);
223 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
226 if (urb
->status
== 0) {
227 hdev
->stat
.byte_rx
+= urb
->actual_length
;
229 if (hci_recv_fragment(hdev
, HCI_EVENT_PKT
,
230 urb
->transfer_buffer
,
231 urb
->actual_length
) < 0) {
232 BT_ERR("%s corrupted event packet", hdev
->name
);
237 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
240 usb_mark_last_busy(data
->udev
);
241 usb_anchor_urb(urb
, &data
->intr_anchor
);
243 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
246 BT_ERR("%s urb %p failed to resubmit (%d)",
247 hdev
->name
, urb
, -err
);
248 usb_unanchor_urb(urb
);
252 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
254 struct btusb_data
*data
= hdev
->driver_data
;
260 BT_DBG("%s", hdev
->name
);
265 urb
= usb_alloc_urb(0, mem_flags
);
269 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
271 buf
= kmalloc(size
, mem_flags
);
277 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
279 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
280 btusb_intr_complete
, hdev
,
281 data
->intr_ep
->bInterval
);
283 urb
->transfer_flags
|= URB_FREE_BUFFER
;
285 usb_anchor_urb(urb
, &data
->intr_anchor
);
287 err
= usb_submit_urb(urb
, mem_flags
);
289 BT_ERR("%s urb %p submission failed (%d)",
290 hdev
->name
, urb
, -err
);
291 usb_unanchor_urb(urb
);
299 static void btusb_bulk_complete(struct urb
*urb
)
301 struct hci_dev
*hdev
= urb
->context
;
302 struct btusb_data
*data
= hdev
->driver_data
;
305 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
306 urb
, urb
->status
, urb
->actual_length
);
308 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
311 if (urb
->status
== 0) {
312 hdev
->stat
.byte_rx
+= urb
->actual_length
;
314 if (hci_recv_fragment(hdev
, HCI_ACLDATA_PKT
,
315 urb
->transfer_buffer
,
316 urb
->actual_length
) < 0) {
317 BT_ERR("%s corrupted ACL packet", hdev
->name
);
322 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
325 usb_anchor_urb(urb
, &data
->bulk_anchor
);
326 usb_mark_last_busy(data
->udev
);
328 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
331 BT_ERR("%s urb %p failed to resubmit (%d)",
332 hdev
->name
, urb
, -err
);
333 usb_unanchor_urb(urb
);
337 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
339 struct btusb_data
*data
= hdev
->driver_data
;
343 int err
, size
= HCI_MAX_FRAME_SIZE
;
345 BT_DBG("%s", hdev
->name
);
347 if (!data
->bulk_rx_ep
)
350 urb
= usb_alloc_urb(0, mem_flags
);
354 buf
= kmalloc(size
, mem_flags
);
360 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
362 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
363 buf
, size
, btusb_bulk_complete
, hdev
);
365 urb
->transfer_flags
|= URB_FREE_BUFFER
;
367 usb_mark_last_busy(data
->udev
);
368 usb_anchor_urb(urb
, &data
->bulk_anchor
);
370 err
= usb_submit_urb(urb
, mem_flags
);
372 BT_ERR("%s urb %p submission failed (%d)",
373 hdev
->name
, urb
, -err
);
374 usb_unanchor_urb(urb
);
382 static void btusb_isoc_complete(struct urb
*urb
)
384 struct hci_dev
*hdev
= urb
->context
;
385 struct btusb_data
*data
= hdev
->driver_data
;
388 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
389 urb
, urb
->status
, urb
->actual_length
);
391 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
394 if (urb
->status
== 0) {
395 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
396 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
397 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
399 if (urb
->iso_frame_desc
[i
].status
)
402 hdev
->stat
.byte_rx
+= length
;
404 if (hci_recv_fragment(hdev
, HCI_SCODATA_PKT
,
405 urb
->transfer_buffer
+ offset
,
407 BT_ERR("%s corrupted SCO packet", hdev
->name
);
413 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
416 usb_anchor_urb(urb
, &data
->isoc_anchor
);
418 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
421 BT_ERR("%s urb %p failed to resubmit (%d)",
422 hdev
->name
, urb
, -err
);
423 usb_unanchor_urb(urb
);
427 static void inline __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
431 BT_DBG("len %d mtu %d", len
, mtu
);
433 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
434 i
++, offset
+= mtu
, len
-= mtu
) {
435 urb
->iso_frame_desc
[i
].offset
= offset
;
436 urb
->iso_frame_desc
[i
].length
= mtu
;
439 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
440 urb
->iso_frame_desc
[i
].offset
= offset
;
441 urb
->iso_frame_desc
[i
].length
= len
;
445 urb
->number_of_packets
= i
;
448 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
450 struct btusb_data
*data
= hdev
->driver_data
;
456 BT_DBG("%s", hdev
->name
);
458 if (!data
->isoc_rx_ep
)
461 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
465 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
466 BTUSB_MAX_ISOC_FRAMES
;
468 buf
= kmalloc(size
, mem_flags
);
474 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
476 urb
->dev
= data
->udev
;
479 urb
->complete
= btusb_isoc_complete
;
480 urb
->interval
= data
->isoc_rx_ep
->bInterval
;
482 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
483 urb
->transfer_buffer
= buf
;
484 urb
->transfer_buffer_length
= size
;
486 __fill_isoc_descriptor(urb
, size
,
487 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
489 usb_anchor_urb(urb
, &data
->isoc_anchor
);
491 err
= usb_submit_urb(urb
, mem_flags
);
493 BT_ERR("%s urb %p submission failed (%d)",
494 hdev
->name
, urb
, -err
);
495 usb_unanchor_urb(urb
);
503 static void btusb_tx_complete(struct urb
*urb
)
505 struct sk_buff
*skb
= urb
->context
;
506 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
507 struct btusb_data
*data
= hdev
->driver_data
;
509 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
510 urb
, urb
->status
, urb
->actual_length
);
512 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
516 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
521 spin_lock(&data
->txlock
);
522 data
->tx_in_flight
--;
523 spin_unlock(&data
->txlock
);
525 kfree(urb
->setup_packet
);
530 static void btusb_isoc_tx_complete(struct urb
*urb
)
532 struct sk_buff
*skb
= urb
->context
;
533 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
535 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
536 urb
, urb
->status
, urb
->actual_length
);
538 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
542 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
547 kfree(urb
->setup_packet
);
552 static int btusb_open(struct hci_dev
*hdev
)
554 struct btusb_data
*data
= hdev
->driver_data
;
557 BT_DBG("%s", hdev
->name
);
559 err
= usb_autopm_get_interface(data
->intf
);
563 data
->intf
->needs_remote_wakeup
= 1;
565 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
568 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
571 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
575 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
577 usb_kill_anchored_urbs(&data
->intr_anchor
);
581 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
582 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
585 usb_autopm_put_interface(data
->intf
);
589 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
590 clear_bit(HCI_RUNNING
, &hdev
->flags
);
591 usb_autopm_put_interface(data
->intf
);
595 static void btusb_stop_traffic(struct btusb_data
*data
)
597 usb_kill_anchored_urbs(&data
->intr_anchor
);
598 usb_kill_anchored_urbs(&data
->bulk_anchor
);
599 usb_kill_anchored_urbs(&data
->isoc_anchor
);
602 static int btusb_close(struct hci_dev
*hdev
)
604 struct btusb_data
*data
= hdev
->driver_data
;
607 BT_DBG("%s", hdev
->name
);
609 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
612 cancel_work_sync(&data
->work
);
613 cancel_work_sync(&data
->waker
);
615 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
616 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
617 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
619 btusb_stop_traffic(data
);
620 err
= usb_autopm_get_interface(data
->intf
);
624 data
->intf
->needs_remote_wakeup
= 0;
625 usb_autopm_put_interface(data
->intf
);
628 usb_scuttle_anchored_urbs(&data
->deferred
);
632 static int btusb_flush(struct hci_dev
*hdev
)
634 struct btusb_data
*data
= hdev
->driver_data
;
636 BT_DBG("%s", hdev
->name
);
638 usb_kill_anchored_urbs(&data
->tx_anchor
);
643 static int btusb_send_frame(struct sk_buff
*skb
)
645 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
646 struct btusb_data
*data
= hdev
->driver_data
;
647 struct usb_ctrlrequest
*dr
;
652 BT_DBG("%s", hdev
->name
);
654 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
657 switch (bt_cb(skb
)->pkt_type
) {
658 case HCI_COMMAND_PKT
:
659 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
663 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
669 dr
->bRequestType
= data
->cmdreq_type
;
673 dr
->wLength
= __cpu_to_le16(skb
->len
);
675 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
677 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
678 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
683 case HCI_ACLDATA_PKT
:
684 if (!data
->bulk_tx_ep
|| hdev
->conn_hash
.acl_num
< 1)
687 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
691 pipe
= usb_sndbulkpipe(data
->udev
,
692 data
->bulk_tx_ep
->bEndpointAddress
);
694 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
695 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
700 case HCI_SCODATA_PKT
:
701 if (!data
->isoc_tx_ep
|| hdev
->conn_hash
.sco_num
< 1)
704 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
708 pipe
= usb_sndisocpipe(data
->udev
,
709 data
->isoc_tx_ep
->bEndpointAddress
);
711 urb
->dev
= data
->udev
;
714 urb
->complete
= btusb_isoc_tx_complete
;
715 urb
->interval
= data
->isoc_tx_ep
->bInterval
;
717 urb
->transfer_flags
= URB_ISO_ASAP
;
718 urb
->transfer_buffer
= skb
->data
;
719 urb
->transfer_buffer_length
= skb
->len
;
721 __fill_isoc_descriptor(urb
, skb
->len
,
722 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
733 usb_anchor_urb(urb
, &data
->deferred
);
734 schedule_work(&data
->waker
);
740 usb_anchor_urb(urb
, &data
->tx_anchor
);
742 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
744 BT_ERR("%s urb %p submission failed", hdev
->name
, urb
);
745 kfree(urb
->setup_packet
);
746 usb_unanchor_urb(urb
);
748 usb_mark_last_busy(data
->udev
);
757 static void btusb_destruct(struct hci_dev
*hdev
)
759 struct btusb_data
*data
= hdev
->driver_data
;
761 BT_DBG("%s", hdev
->name
);
766 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
768 struct btusb_data
*data
= hdev
->driver_data
;
770 BT_DBG("%s evt %d", hdev
->name
, evt
);
772 if (hdev
->conn_hash
.sco_num
!= data
->sco_num
) {
773 data
->sco_num
= hdev
->conn_hash
.sco_num
;
774 schedule_work(&data
->work
);
778 static int inline __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
780 struct btusb_data
*data
= hdev
->driver_data
;
781 struct usb_interface
*intf
= data
->isoc
;
782 struct usb_endpoint_descriptor
*ep_desc
;
788 err
= usb_set_interface(data
->udev
, 1, altsetting
);
790 BT_ERR("%s setting interface failed (%d)", hdev
->name
, -err
);
794 data
->isoc_altsetting
= altsetting
;
796 data
->isoc_tx_ep
= NULL
;
797 data
->isoc_rx_ep
= NULL
;
799 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
800 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
802 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
803 data
->isoc_tx_ep
= ep_desc
;
807 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
808 data
->isoc_rx_ep
= ep_desc
;
813 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
814 BT_ERR("%s invalid SCO descriptors", hdev
->name
);
821 static void btusb_work(struct work_struct
*work
)
823 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
824 struct hci_dev
*hdev
= data
->hdev
;
827 if (hdev
->conn_hash
.sco_num
> 0) {
828 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
829 err
= usb_autopm_get_interface(data
->isoc
);
831 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
832 usb_kill_anchored_urbs(&data
->isoc_anchor
);
836 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
838 if (data
->isoc_altsetting
!= 2) {
839 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
840 usb_kill_anchored_urbs(&data
->isoc_anchor
);
842 if (__set_isoc_interface(hdev
, 2) < 0)
846 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
847 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
848 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
850 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
853 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
854 usb_kill_anchored_urbs(&data
->isoc_anchor
);
856 __set_isoc_interface(hdev
, 0);
857 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
858 usb_autopm_put_interface(data
->isoc
);
862 static void btusb_waker(struct work_struct
*work
)
864 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
867 err
= usb_autopm_get_interface(data
->intf
);
871 usb_autopm_put_interface(data
->intf
);
874 static int btusb_probe(struct usb_interface
*intf
,
875 const struct usb_device_id
*id
)
877 struct usb_endpoint_descriptor
*ep_desc
;
878 struct btusb_data
*data
;
879 struct hci_dev
*hdev
;
882 BT_DBG("intf %p id %p", intf
, id
);
884 /* interface numbers are hardcoded in the spec */
885 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
888 if (!id
->driver_info
) {
889 const struct usb_device_id
*match
;
890 match
= usb_match_id(intf
, blacklist_table
);
895 if (id
->driver_info
== BTUSB_IGNORE
)
898 if (ignore_dga
&& id
->driver_info
& BTUSB_DIGIANSWER
)
901 if (ignore_csr
&& id
->driver_info
& BTUSB_CSR
)
904 if (ignore_sniffer
&& id
->driver_info
& BTUSB_SNIFFER
)
907 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
911 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
912 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
914 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
915 data
->intr_ep
= ep_desc
;
919 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
920 data
->bulk_tx_ep
= ep_desc
;
924 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
925 data
->bulk_rx_ep
= ep_desc
;
930 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
) {
935 data
->cmdreq_type
= USB_TYPE_CLASS
;
937 data
->udev
= interface_to_usbdev(intf
);
940 spin_lock_init(&data
->lock
);
942 INIT_WORK(&data
->work
, btusb_work
);
943 INIT_WORK(&data
->waker
, btusb_waker
);
944 spin_lock_init(&data
->txlock
);
946 init_usb_anchor(&data
->tx_anchor
);
947 init_usb_anchor(&data
->intr_anchor
);
948 init_usb_anchor(&data
->bulk_anchor
);
949 init_usb_anchor(&data
->isoc_anchor
);
950 init_usb_anchor(&data
->deferred
);
952 hdev
= hci_alloc_dev();
959 hdev
->driver_data
= data
;
963 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
965 hdev
->open
= btusb_open
;
966 hdev
->close
= btusb_close
;
967 hdev
->flush
= btusb_flush
;
968 hdev
->send
= btusb_send_frame
;
969 hdev
->destruct
= btusb_destruct
;
970 hdev
->notify
= btusb_notify
;
972 hdev
->owner
= THIS_MODULE
;
974 /* Interface numbers are hardcoded in the specification */
975 data
->isoc
= usb_ifnum_to_if(data
->udev
, 1);
978 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
980 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
982 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
985 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
988 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
989 data
->cmdreq_type
= USB_TYPE_VENDOR
;
990 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
993 if (id
->driver_info
& BTUSB_CSR
) {
994 struct usb_device
*udev
= data
->udev
;
996 /* Old firmware would otherwise execute USB reset */
997 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) < 0x117)
998 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1001 if (id
->driver_info
& BTUSB_SNIFFER
) {
1002 struct usb_device
*udev
= data
->udev
;
1004 /* New sniffer firmware has crippled HCI interface */
1005 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
1006 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1011 if (id
->driver_info
& BTUSB_BCM92035
) {
1012 unsigned char cmd
[] = { 0x3b, 0xfc, 0x01, 0x00 };
1013 struct sk_buff
*skb
;
1015 skb
= bt_skb_alloc(sizeof(cmd
), GFP_KERNEL
);
1017 memcpy(skb_put(skb
, sizeof(cmd
)), cmd
, sizeof(cmd
));
1018 skb_queue_tail(&hdev
->driver_init
, skb
);
1023 err
= usb_driver_claim_interface(&btusb_driver
,
1032 err
= hci_register_dev(hdev
);
1039 usb_set_intfdata(intf
, data
);
1041 usb_enable_autosuspend(interface_to_usbdev(intf
));
1046 static void btusb_disconnect(struct usb_interface
*intf
)
1048 struct btusb_data
*data
= usb_get_intfdata(intf
);
1049 struct hci_dev
*hdev
;
1051 BT_DBG("intf %p", intf
);
1058 __hci_dev_hold(hdev
);
1060 usb_set_intfdata(data
->intf
, NULL
);
1063 usb_set_intfdata(data
->isoc
, NULL
);
1065 hci_unregister_dev(hdev
);
1067 if (intf
== data
->isoc
)
1068 usb_driver_release_interface(&btusb_driver
, data
->intf
);
1069 else if (data
->isoc
)
1070 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
1072 __hci_dev_put(hdev
);
1078 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1080 struct btusb_data
*data
= usb_get_intfdata(intf
);
1082 BT_DBG("intf %p", intf
);
1084 if (data
->suspend_count
++)
1087 spin_lock_irq(&data
->txlock
);
1088 if (!((message
.event
& PM_EVENT_AUTO
) && data
->tx_in_flight
)) {
1089 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
1090 spin_unlock_irq(&data
->txlock
);
1092 spin_unlock_irq(&data
->txlock
);
1093 data
->suspend_count
--;
1097 cancel_work_sync(&data
->work
);
1099 btusb_stop_traffic(data
);
1100 usb_kill_anchored_urbs(&data
->tx_anchor
);
1105 static void play_deferred(struct btusb_data
*data
)
1110 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
1111 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1115 data
->tx_in_flight
++;
1117 usb_scuttle_anchored_urbs(&data
->deferred
);
1120 static int btusb_resume(struct usb_interface
*intf
)
1122 struct btusb_data
*data
= usb_get_intfdata(intf
);
1123 struct hci_dev
*hdev
= data
->hdev
;
1126 BT_DBG("intf %p", intf
);
1128 if (--data
->suspend_count
)
1131 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1134 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
1135 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
1137 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1142 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
1143 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1145 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1149 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1152 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1153 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
1154 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1156 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
1159 spin_lock_irq(&data
->txlock
);
1160 play_deferred(data
);
1161 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1162 spin_unlock_irq(&data
->txlock
);
1163 schedule_work(&data
->work
);
1168 usb_scuttle_anchored_urbs(&data
->deferred
);
1170 spin_lock_irq(&data
->txlock
);
1171 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1172 spin_unlock_irq(&data
->txlock
);
1178 static struct usb_driver btusb_driver
= {
1180 .probe
= btusb_probe
,
1181 .disconnect
= btusb_disconnect
,
1183 .suspend
= btusb_suspend
,
1184 .resume
= btusb_resume
,
1186 .id_table
= btusb_table
,
1187 .supports_autosuspend
= 1,
1190 static int __init
btusb_init(void)
1192 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION
);
1194 return usb_register(&btusb_driver
);
1197 static void __exit
btusb_exit(void)
1199 usb_deregister(&btusb_driver
);
1202 module_init(btusb_init
);
1203 module_exit(btusb_exit
);
1205 module_param(ignore_dga
, bool, 0644);
1206 MODULE_PARM_DESC(ignore_dga
, "Ignore devices with id 08fd:0001");
1208 module_param(ignore_csr
, bool, 0644);
1209 MODULE_PARM_DESC(ignore_csr
, "Ignore devices with id 0a12:0001");
1211 module_param(ignore_sniffer
, bool, 0644);
1212 MODULE_PARM_DESC(ignore_sniffer
, "Ignore devices with id 0a12:0002");
1214 module_param(disable_scofix
, bool, 0644);
1215 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
1217 module_param(force_scofix
, bool, 0644);
1218 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
1220 module_param(reset
, bool, 0644);
1221 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
1223 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1224 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
1225 MODULE_VERSION(VERSION
);
1226 MODULE_LICENSE("GPL");