2 HCI USB driver for Linux Bluetooth protocol stack (BlueZ)
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6 Copyright (C) 2003 Maxim Krasnyansky <maxk@qualcomm.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2 as
10 published by the Free Software Foundation;
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
15 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
16 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
17 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
22 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
23 SOFTWARE IS DISCLAIMED.
27 * Bluetooth HCI USB driver.
28 * Based on original USB Bluetooth driver for Linux kernel
29 * Copyright (c) 2000 Greg Kroah-Hartman <greg@kroah.com>
30 * Copyright (c) 2000 Mark Douglas Corner <mcorner@umich.edu>
34 #include <linux/module.h>
36 #include <linux/kernel.h>
37 #include <linux/init.h>
38 #include <linux/unistd.h>
39 #include <linux/types.h>
40 #include <linux/interrupt.h>
41 #include <linux/moduleparam.h>
43 #include <linux/slab.h>
44 #include <linux/errno.h>
45 #include <linux/string.h>
46 #include <linux/skbuff.h>
48 #include <linux/usb.h>
50 #include <net/bluetooth/bluetooth.h>
51 #include <net/bluetooth/hci_core.h>
55 #ifndef CONFIG_BT_HCIUSB_DEBUG
60 #ifndef CONFIG_BT_HCIUSB_ZERO_PACKET
61 #undef URB_ZERO_PACKET
62 #define URB_ZERO_PACKET 0
65 static int ignore
= 0;
66 static int ignore_dga
= 0;
67 static int ignore_csr
= 0;
68 static int ignore_sniffer
= 0;
69 static int disable_scofix
= 0;
70 static int force_scofix
= 0;
73 #ifdef CONFIG_BT_HCIUSB_SCO
79 static struct usb_driver hci_usb_driver
;
81 static struct usb_device_id bluetooth_ids
[] = {
82 /* Generic Bluetooth USB device */
83 { USB_DEVICE_INFO(HCI_DEV_CLASS
, HCI_DEV_SUBCLASS
, HCI_DEV_PROTOCOL
) },
85 /* AVM BlueFRITZ! USB v2.0 */
86 { USB_DEVICE(0x057c, 0x3800) },
88 /* Bluetooth Ultraport Module from IBM */
89 { USB_DEVICE(0x04bf, 0x030a) },
91 /* ALPS Modules with non-standard id */
92 { USB_DEVICE(0x044e, 0x3001) },
93 { USB_DEVICE(0x044e, 0x3002) },
95 /* Ericsson with non-standard id */
96 { USB_DEVICE(0x0bdb, 0x1002) },
98 /* Canyon CN-BTU1 with HID interfaces */
99 { USB_DEVICE(0x0c10, 0x0000), .driver_info
= HCI_RESET
},
101 { } /* Terminating entry */
104 MODULE_DEVICE_TABLE (usb
, bluetooth_ids
);
106 static struct usb_device_id blacklist_ids
[] = {
107 /* CSR BlueCore devices */
108 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= HCI_CSR
},
110 /* Broadcom BCM2033 without firmware */
111 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= HCI_IGNORE
},
113 /* Broadcom BCM2035 */
114 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
115 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= HCI_BCM92035
},
117 /* Broadcom BCM2045 */
118 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
120 /* IBM/Lenovo ThinkPad with Broadcom chip */
121 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
122 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
125 { USB_DEVICE(0x0a5c, 0x2100), .driver_info
= HCI_RESET
},
127 /* ANYCOM Bluetooth USB-200 and USB-250 */
128 { USB_DEVICE(0x0a5c, 0x2111), .driver_info
= HCI_RESET
},
130 /* HP laptop with Broadcom chip */
131 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
133 /* Dell laptop with Broadcom chip */
134 { USB_DEVICE(0x413c, 0x8126), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
136 /* Microsoft Wireless Transceiver for Bluetooth 2.0 */
137 { USB_DEVICE(0x045e, 0x009c), .driver_info
= HCI_RESET
},
139 /* Kensington Bluetooth USB adapter */
140 { USB_DEVICE(0x047d, 0x105d), .driver_info
= HCI_RESET
},
141 { USB_DEVICE(0x047d, 0x105e), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
143 /* ISSC Bluetooth Adapter v3.1 */
144 { USB_DEVICE(0x1131, 0x1001), .driver_info
= HCI_RESET
},
146 /* RTX Telecom based adapters with buggy SCO support */
147 { USB_DEVICE(0x0400, 0x0807), .driver_info
= HCI_BROKEN_ISOC
},
148 { USB_DEVICE(0x0400, 0x080a), .driver_info
= HCI_BROKEN_ISOC
},
150 /* Belkin F8T012 and F8T013 devices */
151 { USB_DEVICE(0x050d, 0x0012), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
152 { USB_DEVICE(0x050d, 0x0013), .driver_info
= HCI_RESET
| HCI_WRONG_SCO_MTU
},
154 /* Digianswer devices */
155 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= HCI_DIGIANSWER
},
156 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= HCI_IGNORE
},
158 /* CSR BlueCore Bluetooth Sniffer */
159 { USB_DEVICE(0x0a12, 0x0002), .driver_info
= HCI_SNIFFER
},
161 /* Frontline ComProbe Bluetooth Sniffer */
162 { USB_DEVICE(0x16d3, 0x0002), .driver_info
= HCI_SNIFFER
},
164 { } /* Terminating entry */
167 static struct _urb
*_urb_alloc(int isoc
, gfp_t gfp
)
169 struct _urb
*_urb
= kmalloc(sizeof(struct _urb
) +
170 sizeof(struct usb_iso_packet_descriptor
) * isoc
, gfp
);
172 memset(_urb
, 0, sizeof(*_urb
));
173 usb_init_urb(&_urb
->urb
);
178 static struct _urb
*_urb_dequeue(struct _urb_queue
*q
)
180 struct _urb
*_urb
= NULL
;
182 spin_lock_irqsave(&q
->lock
, flags
);
184 struct list_head
*head
= &q
->head
;
185 struct list_head
*next
= head
->next
;
187 _urb
= list_entry(next
, struct _urb
, list
);
188 list_del(next
); _urb
->queue
= NULL
;
191 spin_unlock_irqrestore(&q
->lock
, flags
);
195 static void hci_usb_rx_complete(struct urb
*urb
);
196 static void hci_usb_tx_complete(struct urb
*urb
);
198 #define __pending_tx(husb, type) (&husb->pending_tx[type-1])
199 #define __pending_q(husb, type) (&husb->pending_q[type-1])
200 #define __completed_q(husb, type) (&husb->completed_q[type-1])
201 #define __transmit_q(husb, type) (&husb->transmit_q[type-1])
203 static inline struct _urb
*__get_completed(struct hci_usb
*husb
, int type
)
205 return _urb_dequeue(__completed_q(husb
, type
));
208 #ifdef CONFIG_BT_HCIUSB_SCO
209 static void __fill_isoc_desc(struct urb
*urb
, int len
, int mtu
)
213 BT_DBG("len %d mtu %d", len
, mtu
);
215 for (i
=0; i
< HCI_MAX_ISOC_FRAMES
&& len
>= mtu
; i
++, offset
+= mtu
, len
-= mtu
) {
216 urb
->iso_frame_desc
[i
].offset
= offset
;
217 urb
->iso_frame_desc
[i
].length
= mtu
;
218 BT_DBG("desc %d offset %d len %d", i
, offset
, mtu
);
220 if (len
&& i
< HCI_MAX_ISOC_FRAMES
) {
221 urb
->iso_frame_desc
[i
].offset
= offset
;
222 urb
->iso_frame_desc
[i
].length
= len
;
223 BT_DBG("desc %d offset %d len %d", i
, offset
, len
);
226 urb
->number_of_packets
= i
;
230 static int hci_usb_intr_rx_submit(struct hci_usb
*husb
)
234 int err
, pipe
, interval
, size
;
237 BT_DBG("%s", husb
->hdev
->name
);
239 size
= le16_to_cpu(husb
->intr_in_ep
->desc
.wMaxPacketSize
);
241 buf
= kmalloc(size
, GFP_ATOMIC
);
245 _urb
= _urb_alloc(0, GFP_ATOMIC
);
250 _urb
->type
= HCI_EVENT_PKT
;
251 _urb_queue_tail(__pending_q(husb
, _urb
->type
), _urb
);
254 pipe
= usb_rcvintpipe(husb
->udev
, husb
->intr_in_ep
->desc
.bEndpointAddress
);
255 interval
= husb
->intr_in_ep
->desc
.bInterval
;
256 usb_fill_int_urb(urb
, husb
->udev
, pipe
, buf
, size
, hci_usb_rx_complete
, husb
, interval
);
258 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
260 BT_ERR("%s intr rx submit failed urb %p err %d",
261 husb
->hdev
->name
, urb
, err
);
269 static int hci_usb_bulk_rx_submit(struct hci_usb
*husb
)
273 int err
, pipe
, size
= HCI_MAX_FRAME_SIZE
;
276 buf
= kmalloc(size
, GFP_ATOMIC
);
280 _urb
= _urb_alloc(0, GFP_ATOMIC
);
285 _urb
->type
= HCI_ACLDATA_PKT
;
286 _urb_queue_tail(__pending_q(husb
, _urb
->type
), _urb
);
289 pipe
= usb_rcvbulkpipe(husb
->udev
, husb
->bulk_in_ep
->desc
.bEndpointAddress
);
290 usb_fill_bulk_urb(urb
, husb
->udev
, pipe
, buf
, size
, hci_usb_rx_complete
, husb
);
291 urb
->transfer_flags
= 0;
293 BT_DBG("%s urb %p", husb
->hdev
->name
, urb
);
295 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
297 BT_ERR("%s bulk rx submit failed urb %p err %d",
298 husb
->hdev
->name
, urb
, err
);
306 #ifdef CONFIG_BT_HCIUSB_SCO
307 static int hci_usb_isoc_rx_submit(struct hci_usb
*husb
)
314 mtu
= le16_to_cpu(husb
->isoc_in_ep
->desc
.wMaxPacketSize
);
315 size
= mtu
* HCI_MAX_ISOC_FRAMES
;
317 buf
= kmalloc(size
, GFP_ATOMIC
);
321 _urb
= _urb_alloc(HCI_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
326 _urb
->type
= HCI_SCODATA_PKT
;
327 _urb_queue_tail(__pending_q(husb
, _urb
->type
), _urb
);
332 urb
->dev
= husb
->udev
;
333 urb
->pipe
= usb_rcvisocpipe(husb
->udev
, husb
->isoc_in_ep
->desc
.bEndpointAddress
);
334 urb
->complete
= hci_usb_rx_complete
;
336 urb
->interval
= husb
->isoc_in_ep
->desc
.bInterval
;
338 urb
->transfer_buffer_length
= size
;
339 urb
->transfer_buffer
= buf
;
340 urb
->transfer_flags
= URB_ISO_ASAP
;
342 __fill_isoc_desc(urb
, size
, mtu
);
344 BT_DBG("%s urb %p", husb
->hdev
->name
, urb
);
346 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
348 BT_ERR("%s isoc rx submit failed urb %p err %d",
349 husb
->hdev
->name
, urb
, err
);
358 /* Initialize device */
359 static int hci_usb_open(struct hci_dev
*hdev
)
361 struct hci_usb
*husb
= (struct hci_usb
*) hdev
->driver_data
;
365 BT_DBG("%s", hdev
->name
);
367 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
370 write_lock_irqsave(&husb
->completion_lock
, flags
);
372 err
= hci_usb_intr_rx_submit(husb
);
374 for (i
= 0; i
< HCI_MAX_BULK_RX
; i
++)
375 hci_usb_bulk_rx_submit(husb
);
377 #ifdef CONFIG_BT_HCIUSB_SCO
378 if (husb
->isoc_iface
)
379 for (i
= 0; i
< HCI_MAX_ISOC_RX
; i
++)
380 hci_usb_isoc_rx_submit(husb
);
383 clear_bit(HCI_RUNNING
, &hdev
->flags
);
386 write_unlock_irqrestore(&husb
->completion_lock
, flags
);
391 static int hci_usb_flush(struct hci_dev
*hdev
)
393 struct hci_usb
*husb
= (struct hci_usb
*) hdev
->driver_data
;
396 BT_DBG("%s", hdev
->name
);
398 for (i
= 0; i
< 4; i
++)
399 skb_queue_purge(&husb
->transmit_q
[i
]);
403 static void hci_usb_unlink_urbs(struct hci_usb
*husb
)
407 BT_DBG("%s", husb
->hdev
->name
);
409 for (i
= 0; i
< 4; i
++) {
413 /* Kill pending requests */
414 while ((_urb
= _urb_dequeue(&husb
->pending_q
[i
]))) {
416 BT_DBG("%s unlinking _urb %p type %d urb %p",
417 husb
->hdev
->name
, _urb
, _urb
->type
, urb
);
419 _urb_queue_tail(__completed_q(husb
, _urb
->type
), _urb
);
422 /* Release completed requests */
423 while ((_urb
= _urb_dequeue(&husb
->completed_q
[i
]))) {
425 BT_DBG("%s freeing _urb %p type %d urb %p",
426 husb
->hdev
->name
, _urb
, _urb
->type
, urb
);
427 kfree(urb
->setup_packet
);
428 kfree(urb
->transfer_buffer
);
435 static int hci_usb_close(struct hci_dev
*hdev
)
437 struct hci_usb
*husb
= (struct hci_usb
*) hdev
->driver_data
;
440 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
443 BT_DBG("%s", hdev
->name
);
445 /* Synchronize with completion handlers */
446 write_lock_irqsave(&husb
->completion_lock
, flags
);
447 write_unlock_irqrestore(&husb
->completion_lock
, flags
);
449 hci_usb_unlink_urbs(husb
);
454 static int __tx_submit(struct hci_usb
*husb
, struct _urb
*_urb
)
456 struct urb
*urb
= &_urb
->urb
;
459 BT_DBG("%s urb %p type %d", husb
->hdev
->name
, urb
, _urb
->type
);
461 _urb_queue_tail(__pending_q(husb
, _urb
->type
), _urb
);
462 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
464 BT_ERR("%s tx submit failed urb %p type %d err %d",
465 husb
->hdev
->name
, urb
, _urb
->type
, err
);
467 _urb_queue_tail(__completed_q(husb
, _urb
->type
), _urb
);
469 atomic_inc(__pending_tx(husb
, _urb
->type
));
474 static inline int hci_usb_send_ctrl(struct hci_usb
*husb
, struct sk_buff
*skb
)
476 struct _urb
*_urb
= __get_completed(husb
, bt_cb(skb
)->pkt_type
);
477 struct usb_ctrlrequest
*dr
;
481 _urb
= _urb_alloc(0, GFP_ATOMIC
);
484 _urb
->type
= bt_cb(skb
)->pkt_type
;
486 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
492 dr
= (void *) _urb
->urb
.setup_packet
;
494 dr
->bRequestType
= husb
->ctrl_req
;
498 dr
->wLength
= __cpu_to_le16(skb
->len
);
501 usb_fill_control_urb(urb
, husb
->udev
, usb_sndctrlpipe(husb
->udev
, 0),
502 (void *) dr
, skb
->data
, skb
->len
, hci_usb_tx_complete
, husb
);
504 BT_DBG("%s skb %p len %d", husb
->hdev
->name
, skb
, skb
->len
);
507 return __tx_submit(husb
, _urb
);
510 static inline int hci_usb_send_bulk(struct hci_usb
*husb
, struct sk_buff
*skb
)
512 struct _urb
*_urb
= __get_completed(husb
, bt_cb(skb
)->pkt_type
);
517 _urb
= _urb_alloc(0, GFP_ATOMIC
);
520 _urb
->type
= bt_cb(skb
)->pkt_type
;
524 pipe
= usb_sndbulkpipe(husb
->udev
, husb
->bulk_out_ep
->desc
.bEndpointAddress
);
525 usb_fill_bulk_urb(urb
, husb
->udev
, pipe
, skb
->data
, skb
->len
,
526 hci_usb_tx_complete
, husb
);
527 urb
->transfer_flags
= URB_ZERO_PACKET
;
529 BT_DBG("%s skb %p len %d", husb
->hdev
->name
, skb
, skb
->len
);
532 return __tx_submit(husb
, _urb
);
535 #ifdef CONFIG_BT_HCIUSB_SCO
536 static inline int hci_usb_send_isoc(struct hci_usb
*husb
, struct sk_buff
*skb
)
538 struct _urb
*_urb
= __get_completed(husb
, bt_cb(skb
)->pkt_type
);
542 _urb
= _urb_alloc(HCI_MAX_ISOC_FRAMES
, GFP_ATOMIC
);
545 _urb
->type
= bt_cb(skb
)->pkt_type
;
548 BT_DBG("%s skb %p len %d", husb
->hdev
->name
, skb
, skb
->len
);
553 urb
->dev
= husb
->udev
;
554 urb
->pipe
= usb_sndisocpipe(husb
->udev
, husb
->isoc_out_ep
->desc
.bEndpointAddress
);
555 urb
->complete
= hci_usb_tx_complete
;
556 urb
->transfer_flags
= URB_ISO_ASAP
;
558 urb
->interval
= husb
->isoc_out_ep
->desc
.bInterval
;
560 urb
->transfer_buffer
= skb
->data
;
561 urb
->transfer_buffer_length
= skb
->len
;
563 __fill_isoc_desc(urb
, skb
->len
, le16_to_cpu(husb
->isoc_out_ep
->desc
.wMaxPacketSize
));
566 return __tx_submit(husb
, _urb
);
570 static void hci_usb_tx_process(struct hci_usb
*husb
)
572 struct sk_buff_head
*q
;
575 BT_DBG("%s", husb
->hdev
->name
);
578 clear_bit(HCI_USB_TX_WAKEUP
, &husb
->state
);
580 /* Process command queue */
581 q
= __transmit_q(husb
, HCI_COMMAND_PKT
);
582 if (!atomic_read(__pending_tx(husb
, HCI_COMMAND_PKT
)) &&
583 (skb
= skb_dequeue(q
))) {
584 if (hci_usb_send_ctrl(husb
, skb
) < 0)
585 skb_queue_head(q
, skb
);
588 #ifdef CONFIG_BT_HCIUSB_SCO
589 /* Process SCO queue */
590 q
= __transmit_q(husb
, HCI_SCODATA_PKT
);
591 if (atomic_read(__pending_tx(husb
, HCI_SCODATA_PKT
)) < HCI_MAX_ISOC_TX
&&
592 (skb
= skb_dequeue(q
))) {
593 if (hci_usb_send_isoc(husb
, skb
) < 0)
594 skb_queue_head(q
, skb
);
598 /* Process ACL queue */
599 q
= __transmit_q(husb
, HCI_ACLDATA_PKT
);
600 while (atomic_read(__pending_tx(husb
, HCI_ACLDATA_PKT
)) < HCI_MAX_BULK_TX
&&
601 (skb
= skb_dequeue(q
))) {
602 if (hci_usb_send_bulk(husb
, skb
) < 0) {
603 skb_queue_head(q
, skb
);
607 } while(test_bit(HCI_USB_TX_WAKEUP
, &husb
->state
));
610 static inline void hci_usb_tx_wakeup(struct hci_usb
*husb
)
612 /* Serialize TX queue processing to avoid data reordering */
613 if (!test_and_set_bit(HCI_USB_TX_PROCESS
, &husb
->state
)) {
614 hci_usb_tx_process(husb
);
615 clear_bit(HCI_USB_TX_PROCESS
, &husb
->state
);
617 set_bit(HCI_USB_TX_WAKEUP
, &husb
->state
);
620 /* Send frames from HCI layer */
621 static int hci_usb_send_frame(struct sk_buff
*skb
)
623 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
624 struct hci_usb
*husb
;
627 BT_ERR("frame for uknown device (hdev=NULL)");
631 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
634 BT_DBG("%s type %d len %d", hdev
->name
, bt_cb(skb
)->pkt_type
, skb
->len
);
636 husb
= (struct hci_usb
*) hdev
->driver_data
;
638 switch (bt_cb(skb
)->pkt_type
) {
639 case HCI_COMMAND_PKT
:
643 case HCI_ACLDATA_PKT
:
647 #ifdef CONFIG_BT_HCIUSB_SCO
648 case HCI_SCODATA_PKT
:
658 read_lock(&husb
->completion_lock
);
660 skb_queue_tail(__transmit_q(husb
, bt_cb(skb
)->pkt_type
), skb
);
661 hci_usb_tx_wakeup(husb
);
663 read_unlock(&husb
->completion_lock
);
667 static void hci_usb_rx_complete(struct urb
*urb
)
669 struct _urb
*_urb
= container_of(urb
, struct _urb
, urb
);
670 struct hci_usb
*husb
= (void *) urb
->context
;
671 struct hci_dev
*hdev
= husb
->hdev
;
672 int err
, count
= urb
->actual_length
;
674 BT_DBG("%s urb %p type %d status %d count %d flags %x", hdev
->name
, urb
,
675 _urb
->type
, urb
->status
, count
, urb
->transfer_flags
);
677 read_lock(&husb
->completion_lock
);
679 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
682 if (urb
->status
|| !count
)
685 if (_urb
->type
== HCI_SCODATA_PKT
) {
686 #ifdef CONFIG_BT_HCIUSB_SCO
688 for (i
=0; i
< urb
->number_of_packets
; i
++) {
689 BT_DBG("desc %d status %d offset %d len %d", i
,
690 urb
->iso_frame_desc
[i
].status
,
691 urb
->iso_frame_desc
[i
].offset
,
692 urb
->iso_frame_desc
[i
].actual_length
);
694 if (!urb
->iso_frame_desc
[i
].status
) {
695 husb
->hdev
->stat
.byte_rx
+= urb
->iso_frame_desc
[i
].actual_length
;
696 hci_recv_fragment(husb
->hdev
, _urb
->type
,
697 urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
,
698 urb
->iso_frame_desc
[i
].actual_length
);
705 husb
->hdev
->stat
.byte_rx
+= count
;
706 err
= hci_recv_fragment(husb
->hdev
, _urb
->type
, urb
->transfer_buffer
, count
);
708 BT_ERR("%s corrupted packet: type %d count %d",
709 husb
->hdev
->name
, _urb
->type
, count
);
715 urb
->dev
= husb
->udev
;
716 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
717 BT_DBG("%s urb %p type %d resubmit status %d", hdev
->name
, urb
,
721 read_unlock(&husb
->completion_lock
);
724 static void hci_usb_tx_complete(struct urb
*urb
)
726 struct _urb
*_urb
= container_of(urb
, struct _urb
, urb
);
727 struct hci_usb
*husb
= (void *) urb
->context
;
728 struct hci_dev
*hdev
= husb
->hdev
;
730 BT_DBG("%s urb %p status %d flags %x", hdev
->name
, urb
,
731 urb
->status
, urb
->transfer_flags
);
733 atomic_dec(__pending_tx(husb
, _urb
->type
));
735 urb
->transfer_buffer
= NULL
;
736 kfree_skb((struct sk_buff
*) _urb
->priv
);
738 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
742 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
746 read_lock(&husb
->completion_lock
);
749 _urb_queue_tail(__completed_q(husb
, _urb
->type
), _urb
);
751 hci_usb_tx_wakeup(husb
);
753 read_unlock(&husb
->completion_lock
);
756 static void hci_usb_destruct(struct hci_dev
*hdev
)
758 struct hci_usb
*husb
= (struct hci_usb
*) hdev
->driver_data
;
760 BT_DBG("%s", hdev
->name
);
765 static void hci_usb_notify(struct hci_dev
*hdev
, unsigned int evt
)
767 BT_DBG("%s evt %d", hdev
->name
, evt
);
770 static int hci_usb_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
772 struct usb_device
*udev
= interface_to_usbdev(intf
);
773 struct usb_host_endpoint
*bulk_out_ep
= NULL
;
774 struct usb_host_endpoint
*bulk_in_ep
= NULL
;
775 struct usb_host_endpoint
*intr_in_ep
= NULL
;
776 struct usb_host_endpoint
*ep
;
777 struct usb_host_interface
*uif
;
778 struct usb_interface
*isoc_iface
;
779 struct hci_usb
*husb
;
780 struct hci_dev
*hdev
;
781 int i
, e
, size
, isoc_ifnum
, isoc_alts
;
783 BT_DBG("udev %p intf %p", udev
, intf
);
785 if (!id
->driver_info
) {
786 const struct usb_device_id
*match
;
787 match
= usb_match_id(intf
, blacklist_ids
);
792 if (ignore
|| id
->driver_info
& HCI_IGNORE
)
795 if (ignore_dga
&& id
->driver_info
& HCI_DIGIANSWER
)
798 if (ignore_csr
&& id
->driver_info
& HCI_CSR
)
801 if (ignore_sniffer
&& id
->driver_info
& HCI_SNIFFER
)
804 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
> 0)
807 /* Find endpoints that we need */
808 uif
= intf
->cur_altsetting
;
809 for (e
= 0; e
< uif
->desc
.bNumEndpoints
; e
++) {
810 ep
= &uif
->endpoint
[e
];
812 switch (ep
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) {
813 case USB_ENDPOINT_XFER_INT
:
814 if (ep
->desc
.bEndpointAddress
& USB_DIR_IN
)
818 case USB_ENDPOINT_XFER_BULK
:
819 if (ep
->desc
.bEndpointAddress
& USB_DIR_IN
)
827 if (!bulk_in_ep
|| !bulk_out_ep
|| !intr_in_ep
) {
828 BT_DBG("Bulk endpoints not found");
832 if (!(husb
= kzalloc(sizeof(struct hci_usb
), GFP_KERNEL
))) {
833 BT_ERR("Can't allocate: control structure");
838 husb
->bulk_out_ep
= bulk_out_ep
;
839 husb
->bulk_in_ep
= bulk_in_ep
;
840 husb
->intr_in_ep
= intr_in_ep
;
842 if (id
->driver_info
& HCI_DIGIANSWER
)
843 husb
->ctrl_req
= USB_TYPE_VENDOR
;
845 husb
->ctrl_req
= USB_TYPE_CLASS
;
847 /* Find isochronous endpoints that we can use */
853 #ifdef CONFIG_BT_HCIUSB_SCO
854 if (isoc
&& !(id
->driver_info
& (HCI_BROKEN_ISOC
| HCI_SNIFFER
)))
855 isoc_iface
= usb_ifnum_to_if(udev
, isoc_ifnum
);
859 struct usb_host_endpoint
*isoc_out_ep
= NULL
;
860 struct usb_host_endpoint
*isoc_in_ep
= NULL
;
862 for (a
= 0; a
< isoc_iface
->num_altsetting
; a
++) {
863 uif
= &isoc_iface
->altsetting
[a
];
864 for (e
= 0; e
< uif
->desc
.bNumEndpoints
; e
++) {
865 ep
= &uif
->endpoint
[e
];
867 switch (ep
->desc
.bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) {
868 case USB_ENDPOINT_XFER_ISOC
:
869 if (le16_to_cpu(ep
->desc
.wMaxPacketSize
) < size
||
870 uif
->desc
.bAlternateSetting
!= isoc
)
872 size
= le16_to_cpu(ep
->desc
.wMaxPacketSize
);
874 isoc_alts
= uif
->desc
.bAlternateSetting
;
876 if (ep
->desc
.bEndpointAddress
& USB_DIR_IN
)
885 if (!isoc_in_ep
|| !isoc_out_ep
)
886 BT_DBG("Isoc endpoints not found");
888 BT_DBG("isoc ifnum %d alts %d", isoc_ifnum
, isoc_alts
);
889 if (usb_driver_claim_interface(&hci_usb_driver
, isoc_iface
, husb
) != 0)
890 BT_ERR("Can't claim isoc interface");
891 else if (usb_set_interface(udev
, isoc_ifnum
, isoc_alts
)) {
892 BT_ERR("Can't set isoc interface settings");
893 husb
->isoc_iface
= isoc_iface
;
894 usb_driver_release_interface(&hci_usb_driver
, isoc_iface
);
895 husb
->isoc_iface
= NULL
;
897 husb
->isoc_iface
= isoc_iface
;
898 husb
->isoc_in_ep
= isoc_in_ep
;
899 husb
->isoc_out_ep
= isoc_out_ep
;
905 rwlock_init(&husb
->completion_lock
);
907 for (i
= 0; i
< 4; i
++) {
908 skb_queue_head_init(&husb
->transmit_q
[i
]);
909 _urb_queue_init(&husb
->pending_q
[i
]);
910 _urb_queue_init(&husb
->completed_q
[i
]);
913 /* Initialize and register HCI device */
914 hdev
= hci_alloc_dev();
916 BT_ERR("Can't allocate HCI device");
922 hdev
->type
= HCI_USB
;
923 hdev
->driver_data
= husb
;
924 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
926 hdev
->open
= hci_usb_open
;
927 hdev
->close
= hci_usb_close
;
928 hdev
->flush
= hci_usb_flush
;
929 hdev
->send
= hci_usb_send_frame
;
930 hdev
->destruct
= hci_usb_destruct
;
931 hdev
->notify
= hci_usb_notify
;
933 hdev
->owner
= THIS_MODULE
;
935 if (reset
|| id
->driver_info
& HCI_RESET
)
936 set_bit(HCI_QUIRK_RESET_ON_INIT
, &hdev
->quirks
);
938 if (force_scofix
|| id
->driver_info
& HCI_WRONG_SCO_MTU
) {
940 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
943 if (id
->driver_info
& HCI_SNIFFER
) {
944 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
945 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
948 if (id
->driver_info
& HCI_BCM92035
) {
949 unsigned char cmd
[] = { 0x3b, 0xfc, 0x01, 0x00 };
952 skb
= bt_skb_alloc(sizeof(cmd
), GFP_KERNEL
);
954 memcpy(skb_put(skb
, sizeof(cmd
)), cmd
, sizeof(cmd
));
955 skb_queue_tail(&hdev
->driver_init
, skb
);
959 if (hci_register_dev(hdev
) < 0) {
960 BT_ERR("Can't register HCI device");
965 usb_set_intfdata(intf
, husb
);
969 if (husb
->isoc_iface
)
970 usb_driver_release_interface(&hci_usb_driver
, husb
->isoc_iface
);
977 static void hci_usb_disconnect(struct usb_interface
*intf
)
979 struct hci_usb
*husb
= usb_get_intfdata(intf
);
980 struct hci_dev
*hdev
;
982 if (!husb
|| intf
== husb
->isoc_iface
)
985 usb_set_intfdata(intf
, NULL
);
988 BT_DBG("%s", hdev
->name
);
992 if (husb
->isoc_iface
)
993 usb_driver_release_interface(&hci_usb_driver
, husb
->isoc_iface
);
995 if (hci_unregister_dev(hdev
) < 0)
996 BT_ERR("Can't unregister HCI device %s", hdev
->name
);
1001 static int hci_usb_suspend(struct usb_interface
*intf
, pm_message_t message
)
1003 struct hci_usb
*husb
= usb_get_intfdata(intf
);
1004 struct list_head killed
;
1005 unsigned long flags
;
1008 if (!husb
|| intf
== husb
->isoc_iface
)
1011 hci_suspend_dev(husb
->hdev
);
1013 INIT_LIST_HEAD(&killed
);
1015 for (i
= 0; i
< 4; i
++) {
1016 struct _urb_queue
*q
= &husb
->pending_q
[i
];
1017 struct _urb
*_urb
, *_tmp
;
1019 while ((_urb
= _urb_dequeue(q
))) {
1020 /* reset queue since _urb_dequeue sets it to NULL */
1022 usb_kill_urb(&_urb
->urb
);
1023 list_add(&_urb
->list
, &killed
);
1026 spin_lock_irqsave(&q
->lock
, flags
);
1028 list_for_each_entry_safe(_urb
, _tmp
, &killed
, list
) {
1029 list_move_tail(&_urb
->list
, &q
->head
);
1032 spin_unlock_irqrestore(&q
->lock
, flags
);
1038 static int hci_usb_resume(struct usb_interface
*intf
)
1040 struct hci_usb
*husb
= usb_get_intfdata(intf
);
1041 unsigned long flags
;
1044 if (!husb
|| intf
== husb
->isoc_iface
)
1047 for (i
= 0; i
< 4; i
++) {
1048 struct _urb_queue
*q
= &husb
->pending_q
[i
];
1051 spin_lock_irqsave(&q
->lock
, flags
);
1053 list_for_each_entry(_urb
, &q
->head
, list
) {
1054 err
= usb_submit_urb(&_urb
->urb
, GFP_ATOMIC
);
1059 spin_unlock_irqrestore(&q
->lock
, flags
);
1065 hci_resume_dev(husb
->hdev
);
1070 static struct usb_driver hci_usb_driver
= {
1072 .probe
= hci_usb_probe
,
1073 .disconnect
= hci_usb_disconnect
,
1074 .suspend
= hci_usb_suspend
,
1075 .resume
= hci_usb_resume
,
1076 .id_table
= bluetooth_ids
,
1079 static int __init
hci_usb_init(void)
1083 BT_INFO("HCI USB driver ver %s", VERSION
);
1085 if ((err
= usb_register(&hci_usb_driver
)) < 0)
1086 BT_ERR("Failed to register HCI USB driver");
1091 static void __exit
hci_usb_exit(void)
1093 usb_deregister(&hci_usb_driver
);
1096 module_init(hci_usb_init
);
1097 module_exit(hci_usb_exit
);
1099 module_param(ignore
, bool, 0644);
1100 MODULE_PARM_DESC(ignore
, "Ignore devices from the matching table");
1102 module_param(ignore_dga
, bool, 0644);
1103 MODULE_PARM_DESC(ignore_dga
, "Ignore devices with id 08fd:0001");
1105 module_param(ignore_csr
, bool, 0644);
1106 MODULE_PARM_DESC(ignore_csr
, "Ignore devices with id 0a12:0001");
1108 module_param(ignore_sniffer
, bool, 0644);
1109 MODULE_PARM_DESC(ignore_sniffer
, "Ignore devices with id 0a12:0002");
1111 module_param(disable_scofix
, bool, 0644);
1112 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
1114 module_param(force_scofix
, bool, 0644);
1115 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
1117 module_param(reset
, bool, 0644);
1118 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
1120 #ifdef CONFIG_BT_HCIUSB_SCO
1121 module_param(isoc
, int, 0644);
1122 MODULE_PARM_DESC(isoc
, "Set isochronous transfers for SCO over HCI support");
1125 MODULE_AUTHOR("Maxim Krasnyansky <maxk@qualcomm.com>, Marcel Holtmann <marcel@holtmann.org>");
1126 MODULE_DESCRIPTION("Bluetooth HCI USB driver ver " VERSION
);
1127 MODULE_VERSION(VERSION
);
1128 MODULE_LICENSE("GPL");