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 MacBookPro8,2 */
76 { USB_DEVICE(0x05ac, 0x821a) },
78 /* AVM BlueFRITZ! USB v2.0 */
79 { USB_DEVICE(0x057c, 0x3800) },
81 /* Bluetooth Ultraport Module from IBM */
82 { USB_DEVICE(0x04bf, 0x030a) },
84 /* ALPS Modules with non-standard id */
85 { USB_DEVICE(0x044e, 0x3001) },
86 { USB_DEVICE(0x044e, 0x3002) },
88 /* Ericsson with non-standard id */
89 { USB_DEVICE(0x0bdb, 0x1002) },
91 /* Canyon CN-BTU1 with HID interfaces */
92 { USB_DEVICE(0x0c10, 0x0000) },
94 { } /* Terminating entry */
97 MODULE_DEVICE_TABLE(usb
, btusb_table
);
99 static struct usb_device_id blacklist_table
[] = {
100 /* CSR BlueCore devices */
101 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= BTUSB_CSR
},
103 /* Broadcom BCM2033 without firmware */
104 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= BTUSB_IGNORE
},
106 /* Atheros 3011 with sflash firmware */
107 { USB_DEVICE(0x0cf3, 0x3002), .driver_info
= BTUSB_IGNORE
},
108 { USB_DEVICE(0x13d3, 0x3304), .driver_info
= BTUSB_IGNORE
},
109 { USB_DEVICE(0x0930, 0x0215), .driver_info
= BTUSB_IGNORE
},
111 /* Atheros AR9285 Malbec with sflash firmware */
112 { USB_DEVICE(0x03f0, 0x311d), .driver_info
= BTUSB_IGNORE
},
114 /* Atheros 3012 with sflash firmware */
115 { USB_DEVICE(0x0cf3, 0x3004), .driver_info
= BTUSB_ATH3012
},
117 /* Atheros AR5BBU12 with sflash firmware */
118 { USB_DEVICE(0x0489, 0xe02c), .driver_info
= BTUSB_IGNORE
},
120 /* Broadcom BCM2035 */
121 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
122 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
123 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
125 /* Broadcom BCM2045 */
126 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
127 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
129 /* IBM/Lenovo ThinkPad with Broadcom chip */
130 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
131 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
133 /* HP laptop with Broadcom chip */
134 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
136 /* Dell laptop with Broadcom chip */
137 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
139 /* Dell Wireless 370 and 410 devices */
140 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
141 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
143 /* Belkin F8T012 and F8T013 devices */
144 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
145 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
147 /* Asus WL-BTD202 device */
148 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
150 /* Kensington Bluetooth USB adapter */
151 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
153 /* RTX Telecom based adapters with buggy SCO support */
154 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
155 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
157 /* CONWISE Technology based adapters with buggy SCO support */
158 { USB_DEVICE(0x0e5e, 0x6622), .driver_info
= BTUSB_BROKEN_ISOC
},
160 /* Digianswer devices */
161 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
162 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
164 /* CSR BlueCore Bluetooth Sniffer */
165 { USB_DEVICE(0x0a12, 0x0002), .driver_info
= BTUSB_SNIFFER
},
167 /* Frontline ComProbe Bluetooth Sniffer */
168 { USB_DEVICE(0x16d3, 0x0002), .driver_info
= BTUSB_SNIFFER
},
170 { } /* Terminating entry */
173 #define BTUSB_MAX_ISOC_FRAMES 10
175 #define BTUSB_INTR_RUNNING 0
176 #define BTUSB_BULK_RUNNING 1
177 #define BTUSB_ISOC_RUNNING 2
178 #define BTUSB_SUSPENDING 3
179 #define BTUSB_DID_ISO_RESUME 4
182 struct hci_dev
*hdev
;
183 struct usb_device
*udev
;
184 struct usb_interface
*intf
;
185 struct usb_interface
*isoc
;
191 struct work_struct work
;
192 struct work_struct waker
;
194 struct usb_anchor tx_anchor
;
195 struct usb_anchor intr_anchor
;
196 struct usb_anchor bulk_anchor
;
197 struct usb_anchor isoc_anchor
;
198 struct usb_anchor deferred
;
202 struct usb_endpoint_descriptor
*intr_ep
;
203 struct usb_endpoint_descriptor
*bulk_tx_ep
;
204 struct usb_endpoint_descriptor
*bulk_rx_ep
;
205 struct usb_endpoint_descriptor
*isoc_tx_ep
;
206 struct usb_endpoint_descriptor
*isoc_rx_ep
;
210 unsigned int sco_num
;
215 static int inc_tx(struct btusb_data
*data
)
220 spin_lock_irqsave(&data
->txlock
, flags
);
221 rv
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
223 data
->tx_in_flight
++;
224 spin_unlock_irqrestore(&data
->txlock
, flags
);
229 static void btusb_intr_complete(struct urb
*urb
)
231 struct hci_dev
*hdev
= urb
->context
;
232 struct btusb_data
*data
= hdev
->driver_data
;
235 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
236 urb
, urb
->status
, urb
->actual_length
);
238 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
241 if (urb
->status
== 0) {
242 hdev
->stat
.byte_rx
+= urb
->actual_length
;
244 if (hci_recv_fragment(hdev
, HCI_EVENT_PKT
,
245 urb
->transfer_buffer
,
246 urb
->actual_length
) < 0) {
247 BT_ERR("%s corrupted event packet", hdev
->name
);
252 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
255 usb_mark_last_busy(data
->udev
);
256 usb_anchor_urb(urb
, &data
->intr_anchor
);
258 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
260 /* -EPERM: urb is being killed;
261 * -ENODEV: device got disconnected */
262 if (err
!= -EPERM
&& err
!= -ENODEV
)
263 BT_ERR("%s urb %p failed to resubmit (%d)",
264 hdev
->name
, urb
, -err
);
265 usb_unanchor_urb(urb
);
269 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
271 struct btusb_data
*data
= hdev
->driver_data
;
277 BT_DBG("%s", hdev
->name
);
282 urb
= usb_alloc_urb(0, mem_flags
);
286 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
288 buf
= kmalloc(size
, mem_flags
);
294 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
296 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
297 btusb_intr_complete
, hdev
,
298 data
->intr_ep
->bInterval
);
300 urb
->transfer_flags
|= URB_FREE_BUFFER
;
302 usb_anchor_urb(urb
, &data
->intr_anchor
);
304 err
= usb_submit_urb(urb
, mem_flags
);
306 BT_ERR("%s urb %p submission failed (%d)",
307 hdev
->name
, urb
, -err
);
308 usb_unanchor_urb(urb
);
316 static void btusb_bulk_complete(struct urb
*urb
)
318 struct hci_dev
*hdev
= urb
->context
;
319 struct btusb_data
*data
= hdev
->driver_data
;
322 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
323 urb
, urb
->status
, urb
->actual_length
);
325 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
328 if (urb
->status
== 0) {
329 hdev
->stat
.byte_rx
+= urb
->actual_length
;
331 if (hci_recv_fragment(hdev
, HCI_ACLDATA_PKT
,
332 urb
->transfer_buffer
,
333 urb
->actual_length
) < 0) {
334 BT_ERR("%s corrupted ACL packet", hdev
->name
);
339 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
342 usb_anchor_urb(urb
, &data
->bulk_anchor
);
343 usb_mark_last_busy(data
->udev
);
345 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
347 /* -EPERM: urb is being killed;
348 * -ENODEV: device got disconnected */
349 if (err
!= -EPERM
&& err
!= -ENODEV
)
350 BT_ERR("%s urb %p failed to resubmit (%d)",
351 hdev
->name
, urb
, -err
);
352 usb_unanchor_urb(urb
);
356 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
358 struct btusb_data
*data
= hdev
->driver_data
;
362 int err
, size
= HCI_MAX_FRAME_SIZE
;
364 BT_DBG("%s", hdev
->name
);
366 if (!data
->bulk_rx_ep
)
369 urb
= usb_alloc_urb(0, mem_flags
);
373 buf
= kmalloc(size
, mem_flags
);
379 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
381 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
382 buf
, size
, btusb_bulk_complete
, hdev
);
384 urb
->transfer_flags
|= URB_FREE_BUFFER
;
386 usb_mark_last_busy(data
->udev
);
387 usb_anchor_urb(urb
, &data
->bulk_anchor
);
389 err
= usb_submit_urb(urb
, mem_flags
);
391 BT_ERR("%s urb %p submission failed (%d)",
392 hdev
->name
, urb
, -err
);
393 usb_unanchor_urb(urb
);
401 static void btusb_isoc_complete(struct urb
*urb
)
403 struct hci_dev
*hdev
= urb
->context
;
404 struct btusb_data
*data
= hdev
->driver_data
;
407 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
408 urb
, urb
->status
, urb
->actual_length
);
410 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
413 if (urb
->status
== 0) {
414 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
415 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
416 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
418 if (urb
->iso_frame_desc
[i
].status
)
421 hdev
->stat
.byte_rx
+= length
;
423 if (hci_recv_fragment(hdev
, HCI_SCODATA_PKT
,
424 urb
->transfer_buffer
+ offset
,
426 BT_ERR("%s corrupted SCO packet", hdev
->name
);
432 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
435 usb_anchor_urb(urb
, &data
->isoc_anchor
);
437 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
439 /* -EPERM: urb is being killed;
440 * -ENODEV: device got disconnected */
441 if (err
!= -EPERM
&& err
!= -ENODEV
)
442 BT_ERR("%s urb %p failed to resubmit (%d)",
443 hdev
->name
, urb
, -err
);
444 usb_unanchor_urb(urb
);
448 static inline void __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
452 BT_DBG("len %d mtu %d", len
, mtu
);
454 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
455 i
++, offset
+= mtu
, len
-= mtu
) {
456 urb
->iso_frame_desc
[i
].offset
= offset
;
457 urb
->iso_frame_desc
[i
].length
= mtu
;
460 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
461 urb
->iso_frame_desc
[i
].offset
= offset
;
462 urb
->iso_frame_desc
[i
].length
= len
;
466 urb
->number_of_packets
= i
;
469 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
471 struct btusb_data
*data
= hdev
->driver_data
;
477 BT_DBG("%s", hdev
->name
);
479 if (!data
->isoc_rx_ep
)
482 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
486 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
487 BTUSB_MAX_ISOC_FRAMES
;
489 buf
= kmalloc(size
, mem_flags
);
495 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
497 urb
->dev
= data
->udev
;
500 urb
->complete
= btusb_isoc_complete
;
501 urb
->interval
= data
->isoc_rx_ep
->bInterval
;
503 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
504 urb
->transfer_buffer
= buf
;
505 urb
->transfer_buffer_length
= size
;
507 __fill_isoc_descriptor(urb
, size
,
508 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
510 usb_anchor_urb(urb
, &data
->isoc_anchor
);
512 err
= usb_submit_urb(urb
, mem_flags
);
514 BT_ERR("%s urb %p submission failed (%d)",
515 hdev
->name
, urb
, -err
);
516 usb_unanchor_urb(urb
);
524 static void btusb_tx_complete(struct urb
*urb
)
526 struct sk_buff
*skb
= urb
->context
;
527 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
528 struct btusb_data
*data
= hdev
->driver_data
;
530 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
531 urb
, urb
->status
, urb
->actual_length
);
533 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
537 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
542 spin_lock(&data
->txlock
);
543 data
->tx_in_flight
--;
544 spin_unlock(&data
->txlock
);
546 kfree(urb
->setup_packet
);
551 static void btusb_isoc_tx_complete(struct urb
*urb
)
553 struct sk_buff
*skb
= urb
->context
;
554 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
556 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
557 urb
, urb
->status
, urb
->actual_length
);
559 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
563 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
568 kfree(urb
->setup_packet
);
573 static int btusb_open(struct hci_dev
*hdev
)
575 struct btusb_data
*data
= hdev
->driver_data
;
578 BT_DBG("%s", hdev
->name
);
580 err
= usb_autopm_get_interface(data
->intf
);
584 data
->intf
->needs_remote_wakeup
= 1;
586 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
589 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
592 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
596 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
598 usb_kill_anchored_urbs(&data
->intr_anchor
);
602 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
603 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
606 usb_autopm_put_interface(data
->intf
);
610 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
611 clear_bit(HCI_RUNNING
, &hdev
->flags
);
612 usb_autopm_put_interface(data
->intf
);
616 static void btusb_stop_traffic(struct btusb_data
*data
)
618 usb_kill_anchored_urbs(&data
->intr_anchor
);
619 usb_kill_anchored_urbs(&data
->bulk_anchor
);
620 usb_kill_anchored_urbs(&data
->isoc_anchor
);
623 static int btusb_close(struct hci_dev
*hdev
)
625 struct btusb_data
*data
= hdev
->driver_data
;
628 BT_DBG("%s", hdev
->name
);
630 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
633 cancel_work_sync(&data
->work
);
634 cancel_work_sync(&data
->waker
);
636 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
637 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
638 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
640 btusb_stop_traffic(data
);
641 err
= usb_autopm_get_interface(data
->intf
);
645 data
->intf
->needs_remote_wakeup
= 0;
646 usb_autopm_put_interface(data
->intf
);
649 usb_scuttle_anchored_urbs(&data
->deferred
);
653 static int btusb_flush(struct hci_dev
*hdev
)
655 struct btusb_data
*data
= hdev
->driver_data
;
657 BT_DBG("%s", hdev
->name
);
659 usb_kill_anchored_urbs(&data
->tx_anchor
);
664 static int btusb_send_frame(struct sk_buff
*skb
)
666 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
667 struct btusb_data
*data
= hdev
->driver_data
;
668 struct usb_ctrlrequest
*dr
;
673 BT_DBG("%s", hdev
->name
);
675 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
678 switch (bt_cb(skb
)->pkt_type
) {
679 case HCI_COMMAND_PKT
:
680 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
684 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
690 dr
->bRequestType
= data
->cmdreq_type
;
694 dr
->wLength
= __cpu_to_le16(skb
->len
);
696 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
698 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
699 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
704 case HCI_ACLDATA_PKT
:
705 if (!data
->bulk_tx_ep
|| (hdev
->conn_hash
.acl_num
< 1 &&
706 hdev
->conn_hash
.le_num
< 1))
709 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
713 pipe
= usb_sndbulkpipe(data
->udev
,
714 data
->bulk_tx_ep
->bEndpointAddress
);
716 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
717 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
722 case HCI_SCODATA_PKT
:
723 if (!data
->isoc_tx_ep
|| hdev
->conn_hash
.sco_num
< 1)
726 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
730 pipe
= usb_sndisocpipe(data
->udev
,
731 data
->isoc_tx_ep
->bEndpointAddress
);
733 usb_fill_int_urb(urb
, data
->udev
, pipe
,
734 skb
->data
, skb
->len
, btusb_isoc_tx_complete
,
735 skb
, data
->isoc_tx_ep
->bInterval
);
737 urb
->transfer_flags
= URB_ISO_ASAP
;
739 __fill_isoc_descriptor(urb
, skb
->len
,
740 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
751 usb_anchor_urb(urb
, &data
->deferred
);
752 schedule_work(&data
->waker
);
758 usb_anchor_urb(urb
, &data
->tx_anchor
);
760 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
762 BT_ERR("%s urb %p submission failed", hdev
->name
, urb
);
763 kfree(urb
->setup_packet
);
764 usb_unanchor_urb(urb
);
766 usb_mark_last_busy(data
->udev
);
775 static void btusb_destruct(struct hci_dev
*hdev
)
777 struct btusb_data
*data
= hdev
->driver_data
;
779 BT_DBG("%s", hdev
->name
);
784 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
786 struct btusb_data
*data
= hdev
->driver_data
;
788 BT_DBG("%s evt %d", hdev
->name
, evt
);
790 if (hdev
->conn_hash
.sco_num
!= data
->sco_num
) {
791 data
->sco_num
= hdev
->conn_hash
.sco_num
;
792 schedule_work(&data
->work
);
796 static inline int __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
798 struct btusb_data
*data
= hdev
->driver_data
;
799 struct usb_interface
*intf
= data
->isoc
;
800 struct usb_endpoint_descriptor
*ep_desc
;
806 err
= usb_set_interface(data
->udev
, 1, altsetting
);
808 BT_ERR("%s setting interface failed (%d)", hdev
->name
, -err
);
812 data
->isoc_altsetting
= altsetting
;
814 data
->isoc_tx_ep
= NULL
;
815 data
->isoc_rx_ep
= NULL
;
817 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
818 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
820 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
821 data
->isoc_tx_ep
= ep_desc
;
825 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
826 data
->isoc_rx_ep
= ep_desc
;
831 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
832 BT_ERR("%s invalid SCO descriptors", hdev
->name
);
839 static void btusb_work(struct work_struct
*work
)
841 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
842 struct hci_dev
*hdev
= data
->hdev
;
845 if (hdev
->conn_hash
.sco_num
> 0) {
846 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
847 err
= usb_autopm_get_interface(data
->isoc
? data
->isoc
: data
->intf
);
849 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
850 usb_kill_anchored_urbs(&data
->isoc_anchor
);
854 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
856 if (data
->isoc_altsetting
!= 2) {
857 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
858 usb_kill_anchored_urbs(&data
->isoc_anchor
);
860 if (__set_isoc_interface(hdev
, 2) < 0)
864 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
865 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
866 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
868 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
871 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
872 usb_kill_anchored_urbs(&data
->isoc_anchor
);
874 __set_isoc_interface(hdev
, 0);
875 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
876 usb_autopm_put_interface(data
->isoc
? data
->isoc
: data
->intf
);
880 static void btusb_waker(struct work_struct
*work
)
882 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
885 err
= usb_autopm_get_interface(data
->intf
);
889 usb_autopm_put_interface(data
->intf
);
892 static int btusb_probe(struct usb_interface
*intf
,
893 const struct usb_device_id
*id
)
895 struct usb_endpoint_descriptor
*ep_desc
;
896 struct btusb_data
*data
;
897 struct hci_dev
*hdev
;
900 BT_DBG("intf %p id %p", intf
, id
);
902 /* interface numbers are hardcoded in the spec */
903 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
906 if (!id
->driver_info
) {
907 const struct usb_device_id
*match
;
908 match
= usb_match_id(intf
, blacklist_table
);
913 if (id
->driver_info
== BTUSB_IGNORE
)
916 if (ignore_dga
&& id
->driver_info
& BTUSB_DIGIANSWER
)
919 if (ignore_csr
&& id
->driver_info
& BTUSB_CSR
)
922 if (ignore_sniffer
&& id
->driver_info
& BTUSB_SNIFFER
)
925 if (id
->driver_info
& BTUSB_ATH3012
) {
926 struct usb_device
*udev
= interface_to_usbdev(intf
);
928 /* Old firmware would otherwise let ath3k driver load
929 * patch and sysconfig files */
930 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) <= 0x0001)
934 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
938 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
939 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
941 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
942 data
->intr_ep
= ep_desc
;
946 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
947 data
->bulk_tx_ep
= ep_desc
;
951 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
952 data
->bulk_rx_ep
= ep_desc
;
957 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
) {
962 data
->cmdreq_type
= USB_TYPE_CLASS
;
964 data
->udev
= interface_to_usbdev(intf
);
967 spin_lock_init(&data
->lock
);
969 INIT_WORK(&data
->work
, btusb_work
);
970 INIT_WORK(&data
->waker
, btusb_waker
);
971 spin_lock_init(&data
->txlock
);
973 init_usb_anchor(&data
->tx_anchor
);
974 init_usb_anchor(&data
->intr_anchor
);
975 init_usb_anchor(&data
->bulk_anchor
);
976 init_usb_anchor(&data
->isoc_anchor
);
977 init_usb_anchor(&data
->deferred
);
979 hdev
= hci_alloc_dev();
986 hdev
->driver_data
= data
;
990 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
992 hdev
->open
= btusb_open
;
993 hdev
->close
= btusb_close
;
994 hdev
->flush
= btusb_flush
;
995 hdev
->send
= btusb_send_frame
;
996 hdev
->destruct
= btusb_destruct
;
997 hdev
->notify
= btusb_notify
;
999 hdev
->owner
= THIS_MODULE
;
1001 /* Interface numbers are hardcoded in the specification */
1002 data
->isoc
= usb_ifnum_to_if(data
->udev
, 1);
1005 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1007 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
1008 if (!disable_scofix
)
1009 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
1012 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
1015 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
1016 data
->cmdreq_type
= USB_TYPE_VENDOR
;
1017 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1020 if (id
->driver_info
& BTUSB_CSR
) {
1021 struct usb_device
*udev
= data
->udev
;
1023 /* Old firmware would otherwise execute USB reset */
1024 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) < 0x117)
1025 set_bit(HCI_QUIRK_NO_RESET
, &hdev
->quirks
);
1028 if (id
->driver_info
& BTUSB_SNIFFER
) {
1029 struct usb_device
*udev
= data
->udev
;
1031 /* New sniffer firmware has crippled HCI interface */
1032 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
1033 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
1038 if (id
->driver_info
& BTUSB_BCM92035
) {
1039 unsigned char cmd
[] = { 0x3b, 0xfc, 0x01, 0x00 };
1040 struct sk_buff
*skb
;
1042 skb
= bt_skb_alloc(sizeof(cmd
), GFP_KERNEL
);
1044 memcpy(skb_put(skb
, sizeof(cmd
)), cmd
, sizeof(cmd
));
1045 skb_queue_tail(&hdev
->driver_init
, skb
);
1050 err
= usb_driver_claim_interface(&btusb_driver
,
1059 err
= hci_register_dev(hdev
);
1066 usb_set_intfdata(intf
, data
);
1071 static void btusb_disconnect(struct usb_interface
*intf
)
1073 struct btusb_data
*data
= usb_get_intfdata(intf
);
1074 struct hci_dev
*hdev
;
1076 BT_DBG("intf %p", intf
);
1083 __hci_dev_hold(hdev
);
1085 usb_set_intfdata(data
->intf
, NULL
);
1088 usb_set_intfdata(data
->isoc
, NULL
);
1090 hci_unregister_dev(hdev
);
1092 if (intf
== data
->isoc
)
1093 usb_driver_release_interface(&btusb_driver
, data
->intf
);
1094 else if (data
->isoc
)
1095 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
1097 __hci_dev_put(hdev
);
1103 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1105 struct btusb_data
*data
= usb_get_intfdata(intf
);
1107 BT_DBG("intf %p", intf
);
1109 if (data
->suspend_count
++)
1112 spin_lock_irq(&data
->txlock
);
1113 if (!((message
.event
& PM_EVENT_AUTO
) && data
->tx_in_flight
)) {
1114 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
1115 spin_unlock_irq(&data
->txlock
);
1117 spin_unlock_irq(&data
->txlock
);
1118 data
->suspend_count
--;
1122 cancel_work_sync(&data
->work
);
1124 btusb_stop_traffic(data
);
1125 usb_kill_anchored_urbs(&data
->tx_anchor
);
1130 static void play_deferred(struct btusb_data
*data
)
1135 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
1136 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
1140 data
->tx_in_flight
++;
1142 usb_scuttle_anchored_urbs(&data
->deferred
);
1145 static int btusb_resume(struct usb_interface
*intf
)
1147 struct btusb_data
*data
= usb_get_intfdata(intf
);
1148 struct hci_dev
*hdev
= data
->hdev
;
1151 BT_DBG("intf %p", intf
);
1153 if (--data
->suspend_count
)
1156 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1159 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
1160 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
1162 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1167 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
1168 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1170 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1174 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
1177 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1178 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
1179 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1181 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
1184 spin_lock_irq(&data
->txlock
);
1185 play_deferred(data
);
1186 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1187 spin_unlock_irq(&data
->txlock
);
1188 schedule_work(&data
->work
);
1193 usb_scuttle_anchored_urbs(&data
->deferred
);
1195 spin_lock_irq(&data
->txlock
);
1196 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
1197 spin_unlock_irq(&data
->txlock
);
1203 static struct usb_driver btusb_driver
= {
1205 .probe
= btusb_probe
,
1206 .disconnect
= btusb_disconnect
,
1208 .suspend
= btusb_suspend
,
1209 .resume
= btusb_resume
,
1211 .id_table
= btusb_table
,
1212 .supports_autosuspend
= 1,
1215 static int __init
btusb_init(void)
1217 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION
);
1219 return usb_register(&btusb_driver
);
1222 static void __exit
btusb_exit(void)
1224 usb_deregister(&btusb_driver
);
1227 module_init(btusb_init
);
1228 module_exit(btusb_exit
);
1230 module_param(ignore_dga
, bool, 0644);
1231 MODULE_PARM_DESC(ignore_dga
, "Ignore devices with id 08fd:0001");
1233 module_param(ignore_csr
, bool, 0644);
1234 MODULE_PARM_DESC(ignore_csr
, "Ignore devices with id 0a12:0001");
1236 module_param(ignore_sniffer
, bool, 0644);
1237 MODULE_PARM_DESC(ignore_sniffer
, "Ignore devices with id 0a12:0002");
1239 module_param(disable_scofix
, bool, 0644);
1240 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
1242 module_param(force_scofix
, bool, 0644);
1243 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
1245 module_param(reset
, bool, 0644);
1246 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
1248 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1249 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
1250 MODULE_VERSION(VERSION
);
1251 MODULE_LICENSE("GPL");