3 * Digianswer Bluetooth USB driver
5 * Copyright (C) 2004-2007 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>
38 #define VERSION "0.10"
40 static const struct usb_device_id bpa10x_table
[] = {
41 /* Tektronix BPA 100/105 (Digianswer) */
42 { USB_DEVICE(0x08fd, 0x0002) },
44 { } /* Terminating entry */
47 MODULE_DEVICE_TABLE(usb
, bpa10x_table
);
51 struct usb_device
*udev
;
53 struct usb_anchor tx_anchor
;
54 struct usb_anchor rx_anchor
;
56 struct sk_buff
*rx_skb
[2];
59 #define HCI_VENDOR_HDR_SIZE 5
61 struct hci_vendor_hdr
{
67 static int bpa10x_recv(struct hci_dev
*hdev
, int queue
, void *buf
, int count
)
69 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
71 BT_DBG("%s queue %d buffer %p count %d", hdev
->name
,
74 if (queue
< 0 || queue
> 1)
77 hdev
->stat
.byte_rx
+= count
;
80 struct sk_buff
*skb
= data
->rx_skb
[queue
];
81 struct { __u8 type
; int expect
; } *scb
;
85 /* Start of the frame */
87 type
= *((__u8
*) buf
);
92 if (count
>= HCI_EVENT_HDR_SIZE
) {
93 struct hci_event_hdr
*h
= buf
;
94 len
= HCI_EVENT_HDR_SIZE
+ h
->plen
;
100 if (count
>= HCI_ACL_HDR_SIZE
) {
101 struct hci_acl_hdr
*h
= buf
;
102 len
= HCI_ACL_HDR_SIZE
+
103 __le16_to_cpu(h
->dlen
);
108 case HCI_SCODATA_PKT
:
109 if (count
>= HCI_SCO_HDR_SIZE
) {
110 struct hci_sco_hdr
*h
= buf
;
111 len
= HCI_SCO_HDR_SIZE
+ h
->dlen
;
117 if (count
>= HCI_VENDOR_HDR_SIZE
) {
118 struct hci_vendor_hdr
*h
= buf
;
119 len
= HCI_VENDOR_HDR_SIZE
+
120 __le16_to_cpu(h
->dlen
);
126 skb
= bt_skb_alloc(len
, GFP_ATOMIC
);
128 BT_ERR("%s no memory for packet", hdev
->name
);
132 data
->rx_skb
[queue
] = skb
;
134 scb
= (void *) skb
->cb
;
140 scb
= (void *) skb
->cb
;
144 len
= min(len
, count
);
146 memcpy(skb_put(skb
, len
), buf
, len
);
150 if (scb
->expect
== 0) {
153 data
->rx_skb
[queue
] = NULL
;
155 bt_cb(skb
)->pkt_type
= scb
->type
;
156 hci_recv_frame(hdev
, skb
);
159 count
-= len
; buf
+= len
;
165 static void bpa10x_tx_complete(struct urb
*urb
)
167 struct sk_buff
*skb
= urb
->context
;
168 struct hci_dev
*hdev
= (struct hci_dev
*) skb
->dev
;
170 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
171 urb
, urb
->status
, urb
->actual_length
);
173 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
177 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
182 kfree(urb
->setup_packet
);
187 static void bpa10x_rx_complete(struct urb
*urb
)
189 struct hci_dev
*hdev
= urb
->context
;
190 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
193 BT_DBG("%s urb %p status %d count %d", hdev
->name
,
194 urb
, urb
->status
, urb
->actual_length
);
196 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
199 if (urb
->status
== 0) {
200 if (bpa10x_recv(hdev
, usb_pipebulk(urb
->pipe
),
201 urb
->transfer_buffer
,
202 urb
->actual_length
) < 0) {
203 BT_ERR("%s corrupted event packet", hdev
->name
);
208 usb_anchor_urb(urb
, &data
->rx_anchor
);
210 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
212 BT_ERR("%s urb %p failed to resubmit (%d)",
213 hdev
->name
, urb
, -err
);
214 usb_unanchor_urb(urb
);
218 static inline int bpa10x_submit_intr_urb(struct hci_dev
*hdev
)
220 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
226 BT_DBG("%s", hdev
->name
);
228 urb
= usb_alloc_urb(0, GFP_KERNEL
);
232 buf
= kmalloc(size
, GFP_KERNEL
);
238 pipe
= usb_rcvintpipe(data
->udev
, 0x81);
240 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
241 bpa10x_rx_complete
, hdev
, 1);
243 urb
->transfer_flags
|= URB_FREE_BUFFER
;
245 usb_anchor_urb(urb
, &data
->rx_anchor
);
247 err
= usb_submit_urb(urb
, GFP_KERNEL
);
249 BT_ERR("%s urb %p submission failed (%d)",
250 hdev
->name
, urb
, -err
);
251 usb_unanchor_urb(urb
);
259 static inline int bpa10x_submit_bulk_urb(struct hci_dev
*hdev
)
261 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
267 BT_DBG("%s", hdev
->name
);
269 urb
= usb_alloc_urb(0, GFP_KERNEL
);
273 buf
= kmalloc(size
, GFP_KERNEL
);
279 pipe
= usb_rcvbulkpipe(data
->udev
, 0x82);
281 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
282 buf
, size
, bpa10x_rx_complete
, hdev
);
284 urb
->transfer_flags
|= URB_FREE_BUFFER
;
286 usb_anchor_urb(urb
, &data
->rx_anchor
);
288 err
= usb_submit_urb(urb
, GFP_KERNEL
);
290 BT_ERR("%s urb %p submission failed (%d)",
291 hdev
->name
, urb
, -err
);
292 usb_unanchor_urb(urb
);
300 static int bpa10x_open(struct hci_dev
*hdev
)
302 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
305 BT_DBG("%s", hdev
->name
);
307 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
310 err
= bpa10x_submit_intr_urb(hdev
);
314 err
= bpa10x_submit_bulk_urb(hdev
);
321 usb_kill_anchored_urbs(&data
->rx_anchor
);
323 clear_bit(HCI_RUNNING
, &hdev
->flags
);
328 static int bpa10x_close(struct hci_dev
*hdev
)
330 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
332 BT_DBG("%s", hdev
->name
);
334 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
337 usb_kill_anchored_urbs(&data
->rx_anchor
);
342 static int bpa10x_flush(struct hci_dev
*hdev
)
344 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
346 BT_DBG("%s", hdev
->name
);
348 usb_kill_anchored_urbs(&data
->tx_anchor
);
353 static int bpa10x_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
355 struct bpa10x_data
*data
= hci_get_drvdata(hdev
);
356 struct usb_ctrlrequest
*dr
;
361 BT_DBG("%s", hdev
->name
);
363 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
366 skb
->dev
= (void *) hdev
;
368 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
372 /* Prepend skb with frame type */
373 *skb_push(skb
, 1) = bt_cb(skb
)->pkt_type
;
375 switch (bt_cb(skb
)->pkt_type
) {
376 case HCI_COMMAND_PKT
:
377 dr
= kmalloc(sizeof(*dr
), GFP_ATOMIC
);
383 dr
->bRequestType
= USB_TYPE_VENDOR
;
387 dr
->wLength
= __cpu_to_le16(skb
->len
);
389 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
391 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *) dr
,
392 skb
->data
, skb
->len
, bpa10x_tx_complete
, skb
);
397 case HCI_ACLDATA_PKT
:
398 pipe
= usb_sndbulkpipe(data
->udev
, 0x02);
400 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
401 skb
->data
, skb
->len
, bpa10x_tx_complete
, skb
);
406 case HCI_SCODATA_PKT
:
407 pipe
= usb_sndbulkpipe(data
->udev
, 0x02);
409 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
410 skb
->data
, skb
->len
, bpa10x_tx_complete
, skb
);
420 usb_anchor_urb(urb
, &data
->tx_anchor
);
422 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
424 BT_ERR("%s urb %p submission failed", hdev
->name
, urb
);
425 kfree(urb
->setup_packet
);
426 usb_unanchor_urb(urb
);
434 static int bpa10x_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
436 struct bpa10x_data
*data
;
437 struct hci_dev
*hdev
;
440 BT_DBG("intf %p id %p", intf
, id
);
442 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0)
445 data
= devm_kzalloc(&intf
->dev
, sizeof(*data
), GFP_KERNEL
);
449 data
->udev
= interface_to_usbdev(intf
);
451 init_usb_anchor(&data
->tx_anchor
);
452 init_usb_anchor(&data
->rx_anchor
);
454 hdev
= hci_alloc_dev();
459 hci_set_drvdata(hdev
, data
);
463 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
465 hdev
->open
= bpa10x_open
;
466 hdev
->close
= bpa10x_close
;
467 hdev
->flush
= bpa10x_flush
;
468 hdev
->send
= bpa10x_send_frame
;
470 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
472 err
= hci_register_dev(hdev
);
478 usb_set_intfdata(intf
, data
);
483 static void bpa10x_disconnect(struct usb_interface
*intf
)
485 struct bpa10x_data
*data
= usb_get_intfdata(intf
);
487 BT_DBG("intf %p", intf
);
492 usb_set_intfdata(intf
, NULL
);
494 hci_unregister_dev(data
->hdev
);
496 hci_free_dev(data
->hdev
);
497 kfree_skb(data
->rx_skb
[0]);
498 kfree_skb(data
->rx_skb
[1]);
501 static struct usb_driver bpa10x_driver
= {
503 .probe
= bpa10x_probe
,
504 .disconnect
= bpa10x_disconnect
,
505 .id_table
= bpa10x_table
,
506 .disable_hub_initiated_lpm
= 1,
509 module_usb_driver(bpa10x_driver
);
511 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
512 MODULE_DESCRIPTION("Digianswer Bluetooth USB driver ver " VERSION
);
513 MODULE_VERSION(VERSION
);
514 MODULE_LICENSE("GPL");