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 #ifndef CONFIG_BT_HCIBPA10X_DEBUG
43 #define VERSION "0.10"
45 static struct usb_device_id bpa10x_table[] = {
46 /* Tektronix BPA 100/105 (Digianswer) */
47 { USB_DEVICE(0x08fd, 0x0002) },
49 { } /* Terminating entry */
52 MODULE_DEVICE_TABLE(usb, bpa10x_table);
56 struct usb_device *udev;
58 struct usb_anchor tx_anchor;
59 struct usb_anchor rx_anchor;
61 struct sk_buff *rx_skb[2];
64 #define HCI_VENDOR_HDR_SIZE 5
66 struct hci_vendor_hdr {
70 } __attribute__ ((packed));
72 static int bpa10x_recv(struct hci_dev *hdev, int queue, void *buf, int count)
74 struct bpa10x_data *data = hdev->driver_data;
76 BT_DBG("%s queue %d buffer %p count %d", hdev->name,
79 if (queue < 0 || queue > 1)
82 hdev->stat.byte_rx += count;
85 struct sk_buff *skb = data->rx_skb[queue];
86 struct { __u8 type; int expect; } *scb;
90 /* Start of the frame */
92 type = *((__u8 *) buf);
97 if (count >= HCI_EVENT_HDR_SIZE) {
98 struct hci_event_hdr *h = buf;
99 len = HCI_EVENT_HDR_SIZE + h->plen;
104 case HCI_ACLDATA_PKT:
105 if (count >= HCI_ACL_HDR_SIZE) {
106 struct hci_acl_hdr *h = buf;
107 len = HCI_ACL_HDR_SIZE +
108 __le16_to_cpu(h->dlen);
113 case HCI_SCODATA_PKT:
114 if (count >= HCI_SCO_HDR_SIZE) {
115 struct hci_sco_hdr *h = buf;
116 len = HCI_SCO_HDR_SIZE + h->dlen;
122 if (count >= HCI_VENDOR_HDR_SIZE) {
123 struct hci_vendor_hdr *h = buf;
124 len = HCI_VENDOR_HDR_SIZE +
125 __le16_to_cpu(h->dlen);
131 skb = bt_skb_alloc(len, GFP_ATOMIC);
133 BT_ERR("%s no memory for packet", hdev->name);
137 skb->dev = (void *) hdev;
139 data->rx_skb[queue] = skb;
141 scb = (void *) skb->cb;
147 scb = (void *) skb->cb;
151 len = min(len, count);
153 memcpy(skb_put(skb, len), buf, len);
157 if (scb->expect == 0) {
160 data->rx_skb[queue] = NULL;
162 bt_cb(skb)->pkt_type = scb->type;
166 count -= len; buf += len;
172 static void bpa10x_tx_complete(struct urb *urb)
174 struct sk_buff *skb = urb->context;
175 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
177 BT_DBG("%s urb %p status %d count %d", hdev->name,
178 urb, urb->status, urb->actual_length);
180 if (!test_bit(HCI_RUNNING, &hdev->flags))
184 hdev->stat.byte_tx += urb->transfer_buffer_length;
189 kfree(urb->setup_packet);
194 static void bpa10x_rx_complete(struct urb *urb)
196 struct hci_dev *hdev = urb->context;
197 struct bpa10x_data *data = hdev->driver_data;
200 BT_DBG("%s urb %p status %d count %d", hdev->name,
201 urb, urb->status, urb->actual_length);
203 if (!test_bit(HCI_RUNNING, &hdev->flags))
206 if (urb->status == 0) {
207 if (bpa10x_recv(hdev, usb_pipebulk(urb->pipe),
208 urb->transfer_buffer,
209 urb->actual_length) < 0) {
210 BT_ERR("%s corrupted event packet", hdev->name);
215 usb_anchor_urb(urb, &data->rx_anchor);
217 err = usb_submit_urb(urb, GFP_ATOMIC);
219 BT_ERR("%s urb %p failed to resubmit (%d)",
220 hdev->name, urb, -err);
221 usb_unanchor_urb(urb);
225 static inline int bpa10x_submit_intr_urb(struct hci_dev *hdev)
227 struct bpa10x_data *data = hdev->driver_data;
233 BT_DBG("%s", hdev->name);
235 urb = usb_alloc_urb(0, GFP_KERNEL);
239 buf = kmalloc(size, GFP_KERNEL);
245 pipe = usb_rcvintpipe(data->udev, 0x81);
247 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
248 bpa10x_rx_complete, hdev, 1);
250 urb->transfer_flags |= URB_FREE_BUFFER;
252 usb_anchor_urb(urb, &data->rx_anchor);
254 err = usb_submit_urb(urb, GFP_KERNEL);
256 BT_ERR("%s urb %p submission failed (%d)",
257 hdev->name, urb, -err);
258 usb_unanchor_urb(urb);
267 static inline int bpa10x_submit_bulk_urb(struct hci_dev *hdev)
269 struct bpa10x_data *data = hdev->driver_data;
275 BT_DBG("%s", hdev->name);
277 urb = usb_alloc_urb(0, GFP_KERNEL);
281 buf = kmalloc(size, GFP_KERNEL);
287 pipe = usb_rcvbulkpipe(data->udev, 0x82);
289 usb_fill_bulk_urb(urb, data->udev, pipe,
290 buf, size, bpa10x_rx_complete, hdev);
292 urb->transfer_flags |= URB_FREE_BUFFER;
294 usb_anchor_urb(urb, &data->rx_anchor);
296 err = usb_submit_urb(urb, GFP_KERNEL);
298 BT_ERR("%s urb %p submission failed (%d)",
299 hdev->name, urb, -err);
300 usb_unanchor_urb(urb);
309 static int bpa10x_open(struct hci_dev *hdev)
311 struct bpa10x_data *data = hdev->driver_data;
314 BT_DBG("%s", hdev->name);
316 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
319 err = bpa10x_submit_intr_urb(hdev);
323 err = bpa10x_submit_bulk_urb(hdev);
330 usb_kill_anchored_urbs(&data->rx_anchor);
332 clear_bit(HCI_RUNNING, &hdev->flags);
337 static int bpa10x_close(struct hci_dev *hdev)
339 struct bpa10x_data *data = hdev->driver_data;
341 BT_DBG("%s", hdev->name);
343 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
346 usb_kill_anchored_urbs(&data->rx_anchor);
351 static int bpa10x_flush(struct hci_dev *hdev)
353 struct bpa10x_data *data = hdev->driver_data;
355 BT_DBG("%s", hdev->name);
357 usb_kill_anchored_urbs(&data->tx_anchor);
362 static int bpa10x_send_frame(struct sk_buff *skb)
364 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
365 struct bpa10x_data *data = hdev->driver_data;
366 struct usb_ctrlrequest *dr;
371 BT_DBG("%s", hdev->name);
373 if (!test_bit(HCI_RUNNING, &hdev->flags))
376 urb = usb_alloc_urb(0, GFP_ATOMIC);
380 /* Prepend skb with frame type */
381 *skb_push(skb, 1) = bt_cb(skb)->pkt_type;
383 switch (bt_cb(skb)->pkt_type) {
384 case HCI_COMMAND_PKT:
385 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
391 dr->bRequestType = USB_TYPE_VENDOR;
395 dr->wLength = __cpu_to_le16(skb->len);
397 pipe = usb_sndctrlpipe(data->udev, 0x00);
399 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
400 skb->data, skb->len, bpa10x_tx_complete, skb);
405 case HCI_ACLDATA_PKT:
406 pipe = usb_sndbulkpipe(data->udev, 0x02);
408 usb_fill_bulk_urb(urb, data->udev, pipe,
409 skb->data, skb->len, bpa10x_tx_complete, skb);
414 case HCI_SCODATA_PKT:
415 pipe = usb_sndbulkpipe(data->udev, 0x02);
417 usb_fill_bulk_urb(urb, data->udev, pipe,
418 skb->data, skb->len, bpa10x_tx_complete, skb);
428 usb_anchor_urb(urb, &data->tx_anchor);
430 err = usb_submit_urb(urb, GFP_ATOMIC);
432 BT_ERR("%s urb %p submission failed", hdev->name, urb);
433 kfree(urb->setup_packet);
434 usb_unanchor_urb(urb);
442 static void bpa10x_destruct(struct hci_dev *hdev)
444 struct bpa10x_data *data = hdev->driver_data;
446 BT_DBG("%s", hdev->name);
448 kfree(data->rx_skb[0]);
449 kfree(data->rx_skb[1]);
453 static int bpa10x_probe(struct usb_interface *intf, const struct usb_device_id *id)
455 struct bpa10x_data *data;
456 struct hci_dev *hdev;
459 BT_DBG("intf %p id %p", intf, id);
461 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
464 data = kzalloc(sizeof(*data), GFP_KERNEL);
468 data->udev = interface_to_usbdev(intf);
470 init_usb_anchor(&data->tx_anchor);
471 init_usb_anchor(&data->rx_anchor);
473 hdev = hci_alloc_dev();
479 hdev->type = HCI_USB;
480 hdev->driver_data = data;
484 SET_HCIDEV_DEV(hdev, &intf->dev);
486 hdev->open = bpa10x_open;
487 hdev->close = bpa10x_close;
488 hdev->flush = bpa10x_flush;
489 hdev->send = bpa10x_send_frame;
490 hdev->destruct = bpa10x_destruct;
492 hdev->owner = THIS_MODULE;
494 err = hci_register_dev(hdev);
501 usb_set_intfdata(intf, data);
506 static void bpa10x_disconnect(struct usb_interface *intf)
508 struct bpa10x_data *data = usb_get_intfdata(intf);
510 BT_DBG("intf %p", intf);
515 usb_set_intfdata(intf, NULL);
517 hci_unregister_dev(data->hdev);
519 hci_free_dev(data->hdev);
522 static struct usb_driver bpa10x_driver = {
524 .probe = bpa10x_probe,
525 .disconnect = bpa10x_disconnect,
526 .id_table = bpa10x_table,
529 static int __init bpa10x_init(void)
531 BT_INFO("Digianswer Bluetooth USB driver ver %s", VERSION);
533 return usb_register(&bpa10x_driver);
536 static void __exit bpa10x_exit(void)
538 usb_deregister(&bpa10x_driver);
541 module_init(bpa10x_init);
542 module_exit(bpa10x_exit);
544 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
545 MODULE_DESCRIPTION("Digianswer Bluetooth USB driver ver " VERSION);
546 MODULE_VERSION(VERSION);
547 MODULE_LICENSE("GPL");