3 * Digianswer Bluetooth USB driver
5 * Copyright (C) 2004-2005 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/module.h>
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/types.h>
30 #include <linux/errno.h>
32 #include <linux/usb.h>
34 #include <net/bluetooth/bluetooth.h>
35 #include <net/bluetooth/hci_core.h>
37 #ifndef CONFIG_BT_HCIBPA10X_DEBUG
44 static int ignore = 0;
46 static struct usb_device_id bpa10x_table[] = {
47 /* Tektronix BPA 100/105 (Digianswer) */
48 { USB_DEVICE(0x08fd, 0x0002) },
50 { } /* Terminating entry */
53 MODULE_DEVICE_TABLE(usb, bpa10x_table);
55 #define BPA10X_CMD_EP 0x00
56 #define BPA10X_EVT_EP 0x81
57 #define BPA10X_TX_EP 0x02
58 #define BPA10X_RX_EP 0x82
60 #define BPA10X_CMD_BUF_SIZE 252
61 #define BPA10X_EVT_BUF_SIZE 16
62 #define BPA10X_TX_BUF_SIZE 384
63 #define BPA10X_RX_BUF_SIZE 384
67 struct usb_device *udev;
71 struct sk_buff_head cmd_queue;
74 struct sk_buff *evt_skb;
77 struct sk_buff_head tx_queue;
82 #define HCI_VENDOR_HDR_SIZE 5
84 struct hci_vendor_hdr {
88 } __attribute__ ((packed));
90 static void bpa10x_recv_bulk(struct bpa10x_data *data, unsigned char *buf, int count)
92 struct hci_acl_hdr *ah;
93 struct hci_sco_hdr *sh;
94 struct hci_vendor_hdr *vh;
100 case HCI_ACLDATA_PKT:
101 ah = (struct hci_acl_hdr *) buf;
102 len = HCI_ACL_HDR_SIZE + __le16_to_cpu(ah->dlen);
103 skb = bt_skb_alloc(len, GFP_ATOMIC);
105 memcpy(skb_put(skb, len), buf, len);
106 skb->dev = (void *) data->hdev;
107 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
112 case HCI_SCODATA_PKT:
113 sh = (struct hci_sco_hdr *) buf;
114 len = HCI_SCO_HDR_SIZE + sh->dlen;
115 skb = bt_skb_alloc(len, GFP_ATOMIC);
117 memcpy(skb_put(skb, len), buf, len);
118 skb->dev = (void *) data->hdev;
119 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
125 vh = (struct hci_vendor_hdr *) buf;
126 len = HCI_VENDOR_HDR_SIZE + __le16_to_cpu(vh->dlen);
127 skb = bt_skb_alloc(len, GFP_ATOMIC);
129 memcpy(skb_put(skb, len), buf, len);
130 skb->dev = (void *) data->hdev;
131 bt_cb(skb)->pkt_type = HCI_VENDOR_PKT;
146 static int bpa10x_recv_event(struct bpa10x_data *data, unsigned char *buf, int size)
148 BT_DBG("data %p buf %p size %d", data, buf, size);
151 struct sk_buff *skb = data->evt_skb;
153 memcpy(skb_put(skb, size), buf, size);
155 if (skb->len == data->evt_len) {
156 data->evt_skb = NULL;
162 struct hci_event_hdr *hdr;
163 unsigned char pkt_type;
166 if (size < HCI_EVENT_HDR_SIZE + 1) {
167 BT_ERR("%s event packet block with size %d is too short",
168 data->hdev->name, size);
175 if (pkt_type != HCI_EVENT_PKT) {
176 BT_ERR("%s unexpected event packet start byte 0x%02x",
177 data->hdev->name, pkt_type);
181 hdr = (struct hci_event_hdr *) buf;
182 pkt_len = HCI_EVENT_HDR_SIZE + hdr->plen;
184 skb = bt_skb_alloc(pkt_len, GFP_ATOMIC);
186 BT_ERR("%s no memory for new event packet",
191 skb->dev = (void *) data->hdev;
192 bt_cb(skb)->pkt_type = pkt_type;
194 memcpy(skb_put(skb, size), buf, size);
196 if (pkt_len == size) {
200 data->evt_len = pkt_len;
207 static void bpa10x_wakeup(struct bpa10x_data *data)
213 BT_DBG("data %p", data);
216 if (urb->status == -EINPROGRESS)
219 skb = skb_dequeue(&data->cmd_queue);
222 struct usb_ctrlrequest *cr;
224 if (skb->len > BPA10X_CMD_BUF_SIZE) {
225 BT_ERR("%s command packet with size %d is too big",
226 data->hdev->name, skb->len);
231 cr = (struct usb_ctrlrequest *) urb->setup_packet;
232 cr->wLength = __cpu_to_le16(skb->len);
234 skb_copy_from_linear_data(skb, urb->transfer_buffer, skb->len);
235 urb->transfer_buffer_length = skb->len;
237 err = usb_submit_urb(urb, GFP_ATOMIC);
238 if (err < 0 && err != -ENODEV) {
239 BT_ERR("%s submit failed for command urb %p with error %d",
240 data->hdev->name, urb, err);
241 skb_queue_head(&data->cmd_queue, skb);
247 if (urb->status == -EINPROGRESS)
250 skb = skb_dequeue(&data->tx_queue);
253 skb_copy_from_linear_data(skb, urb->transfer_buffer, skb->len);
254 urb->transfer_buffer_length = skb->len;
256 err = usb_submit_urb(urb, GFP_ATOMIC);
257 if (err < 0 && err != -ENODEV) {
258 BT_ERR("%s submit failed for command urb %p with error %d",
259 data->hdev->name, urb, err);
260 skb_queue_head(&data->tx_queue, skb);
266 static void bpa10x_complete(struct urb *urb)
268 struct bpa10x_data *data = urb->context;
269 unsigned char *buf = urb->transfer_buffer;
270 int err, count = urb->actual_length;
272 BT_DBG("data %p urb %p buf %p count %d", data, urb, buf, count);
274 read_lock(&data->lock);
276 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
279 if (urb->status < 0 || !count)
282 if (usb_pipein(urb->pipe)) {
283 data->hdev->stat.byte_rx += count;
285 if (usb_pipetype(urb->pipe) == PIPE_INTERRUPT)
286 bpa10x_recv_event(data, buf, count);
288 if (usb_pipetype(urb->pipe) == PIPE_BULK)
289 bpa10x_recv_bulk(data, buf, count);
291 data->hdev->stat.byte_tx += count;
297 if (usb_pipein(urb->pipe)) {
298 err = usb_submit_urb(urb, GFP_ATOMIC);
299 if (err < 0 && err != -ENODEV) {
300 BT_ERR("%s urb %p type %d resubmit status %d",
301 data->hdev->name, urb, usb_pipetype(urb->pipe), err);
306 read_unlock(&data->lock);
309 static inline struct urb *bpa10x_alloc_urb(struct usb_device *udev, unsigned int pipe,
310 size_t size, gfp_t flags, void *data)
313 struct usb_ctrlrequest *cr;
316 BT_DBG("udev %p data %p", udev, data);
318 urb = usb_alloc_urb(0, flags);
322 buf = kmalloc(size, flags);
328 switch (usb_pipetype(pipe)) {
330 cr = kmalloc(sizeof(*cr), flags);
337 cr->bRequestType = USB_TYPE_VENDOR;
341 cr->wLength = __cpu_to_le16(0);
343 usb_fill_control_urb(urb, udev, pipe, (void *) cr, buf, 0, bpa10x_complete, data);
347 usb_fill_int_urb(urb, udev, pipe, buf, size, bpa10x_complete, data, 1);
351 usb_fill_bulk_urb(urb, udev, pipe, buf, size, bpa10x_complete, data);
363 static inline void bpa10x_free_urb(struct urb *urb)
365 BT_DBG("urb %p", urb);
370 kfree(urb->setup_packet);
371 kfree(urb->transfer_buffer);
376 static int bpa10x_open(struct hci_dev *hdev)
378 struct bpa10x_data *data = hdev->driver_data;
379 struct usb_device *udev = data->udev;
383 BT_DBG("hdev %p data %p", hdev, data);
385 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
388 data->cmd_urb = bpa10x_alloc_urb(udev, usb_sndctrlpipe(udev, BPA10X_CMD_EP),
389 BPA10X_CMD_BUF_SIZE, GFP_KERNEL, data);
390 if (!data->cmd_urb) {
395 data->evt_urb = bpa10x_alloc_urb(udev, usb_rcvintpipe(udev, BPA10X_EVT_EP),
396 BPA10X_EVT_BUF_SIZE, GFP_KERNEL, data);
397 if (!data->evt_urb) {
398 bpa10x_free_urb(data->cmd_urb);
403 data->rx_urb = bpa10x_alloc_urb(udev, usb_rcvbulkpipe(udev, BPA10X_RX_EP),
404 BPA10X_RX_BUF_SIZE, GFP_KERNEL, data);
406 bpa10x_free_urb(data->evt_urb);
407 bpa10x_free_urb(data->cmd_urb);
412 data->tx_urb = bpa10x_alloc_urb(udev, usb_sndbulkpipe(udev, BPA10X_TX_EP),
413 BPA10X_TX_BUF_SIZE, GFP_KERNEL, data);
415 bpa10x_free_urb(data->rx_urb);
416 bpa10x_free_urb(data->evt_urb);
417 bpa10x_free_urb(data->cmd_urb);
422 write_lock_irqsave(&data->lock, flags);
424 err = usb_submit_urb(data->evt_urb, GFP_ATOMIC);
426 BT_ERR("%s submit failed for event urb %p with error %d",
427 data->hdev->name, data->evt_urb, err);
429 err = usb_submit_urb(data->rx_urb, GFP_ATOMIC);
431 BT_ERR("%s submit failed for rx urb %p with error %d",
432 data->hdev->name, data->evt_urb, err);
433 usb_kill_urb(data->evt_urb);
437 write_unlock_irqrestore(&data->lock, flags);
441 clear_bit(HCI_RUNNING, &hdev->flags);
446 static int bpa10x_close(struct hci_dev *hdev)
448 struct bpa10x_data *data = hdev->driver_data;
451 BT_DBG("hdev %p data %p", hdev, data);
453 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
456 write_lock_irqsave(&data->lock, flags);
458 skb_queue_purge(&data->cmd_queue);
459 usb_kill_urb(data->cmd_urb);
460 usb_kill_urb(data->evt_urb);
461 usb_kill_urb(data->rx_urb);
462 usb_kill_urb(data->tx_urb);
464 write_unlock_irqrestore(&data->lock, flags);
466 bpa10x_free_urb(data->cmd_urb);
467 bpa10x_free_urb(data->evt_urb);
468 bpa10x_free_urb(data->rx_urb);
469 bpa10x_free_urb(data->tx_urb);
474 static int bpa10x_flush(struct hci_dev *hdev)
476 struct bpa10x_data *data = hdev->driver_data;
478 BT_DBG("hdev %p data %p", hdev, data);
480 skb_queue_purge(&data->cmd_queue);
485 static int bpa10x_send_frame(struct sk_buff *skb)
487 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
488 struct bpa10x_data *data;
490 BT_DBG("hdev %p skb %p type %d len %d", hdev, skb, bt_cb(skb)->pkt_type, skb->len);
493 BT_ERR("Frame for unknown HCI device");
497 if (!test_bit(HCI_RUNNING, &hdev->flags))
500 data = hdev->driver_data;
502 /* Prepend skb with frame type */
503 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
505 switch (bt_cb(skb)->pkt_type) {
506 case HCI_COMMAND_PKT:
508 skb_queue_tail(&data->cmd_queue, skb);
511 case HCI_ACLDATA_PKT:
513 skb_queue_tail(&data->tx_queue, skb);
516 case HCI_SCODATA_PKT:
518 skb_queue_tail(&data->tx_queue, skb);
522 read_lock(&data->lock);
526 read_unlock(&data->lock);
531 static void bpa10x_destruct(struct hci_dev *hdev)
533 struct bpa10x_data *data = hdev->driver_data;
535 BT_DBG("hdev %p data %p", hdev, data);
540 static int bpa10x_probe(struct usb_interface *intf, const struct usb_device_id *id)
542 struct usb_device *udev = interface_to_usbdev(intf);
543 struct hci_dev *hdev;
544 struct bpa10x_data *data;
547 BT_DBG("intf %p id %p", intf, id);
552 if (intf->cur_altsetting->desc.bInterfaceNumber > 0)
555 data = kzalloc(sizeof(*data), GFP_KERNEL);
557 BT_ERR("Can't allocate data structure");
563 rwlock_init(&data->lock);
565 skb_queue_head_init(&data->cmd_queue);
566 skb_queue_head_init(&data->tx_queue);
568 hdev = hci_alloc_dev();
570 BT_ERR("Can't allocate HCI device");
577 hdev->type = HCI_USB;
578 hdev->driver_data = data;
579 SET_HCIDEV_DEV(hdev, &intf->dev);
581 hdev->open = bpa10x_open;
582 hdev->close = bpa10x_close;
583 hdev->flush = bpa10x_flush;
584 hdev->send = bpa10x_send_frame;
585 hdev->destruct = bpa10x_destruct;
587 hdev->owner = THIS_MODULE;
589 err = hci_register_dev(hdev);
591 BT_ERR("Can't register HCI device");
597 usb_set_intfdata(intf, data);
602 static void bpa10x_disconnect(struct usb_interface *intf)
604 struct bpa10x_data *data = usb_get_intfdata(intf);
605 struct hci_dev *hdev = data->hdev;
607 BT_DBG("intf %p", intf);
612 usb_set_intfdata(intf, NULL);
614 if (hci_unregister_dev(hdev) < 0)
615 BT_ERR("Can't unregister HCI device %s", hdev->name);
620 static struct usb_driver bpa10x_driver = {
622 .probe = bpa10x_probe,
623 .disconnect = bpa10x_disconnect,
624 .id_table = bpa10x_table,
627 static int __init bpa10x_init(void)
631 BT_INFO("Digianswer Bluetooth USB driver ver %s", VERSION);
633 err = usb_register(&bpa10x_driver);
635 BT_ERR("Failed to register USB driver");
640 static void __exit bpa10x_exit(void)
642 usb_deregister(&bpa10x_driver);
645 module_init(bpa10x_init);
646 module_exit(bpa10x_exit);
648 module_param(ignore, bool, 0644);
649 MODULE_PARM_DESC(ignore, "Ignore devices from the matching table");
651 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
652 MODULE_DESCRIPTION("Digianswer Bluetooth USB driver ver " VERSION);
653 MODULE_VERSION(VERSION);
654 MODULE_LICENSE("GPL");