3 * AVM BlueFRITZ! USB driver
5 * Copyright (C) 2003-2006 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>
31 #include <linux/skbuff.h>
33 #include <linux/device.h>
34 #include <linux/firmware.h>
36 #include <linux/usb.h>
38 #include <net/bluetooth/bluetooth.h>
39 #include <net/bluetooth/hci_core.h>
43 static struct usb_driver bfusb_driver
;
45 static const struct usb_device_id bfusb_table
[] = {
46 /* AVM BlueFRITZ! USB */
47 { USB_DEVICE(0x057c, 0x2200) },
49 { } /* Terminating entry */
52 MODULE_DEVICE_TABLE(usb
, bfusb_table
);
54 #define BFUSB_MAX_BLOCK_SIZE 256
56 #define BFUSB_BLOCK_TIMEOUT 3000
58 #define BFUSB_TX_PROCESS 1
59 #define BFUSB_TX_WAKEUP 2
61 #define BFUSB_MAX_BULK_TX 2
62 #define BFUSB_MAX_BULK_RX 2
69 struct usb_device
*udev
;
71 unsigned int bulk_in_ep
;
72 unsigned int bulk_out_ep
;
73 unsigned int bulk_pkt_size
;
77 struct sk_buff_head transmit_q
;
79 struct sk_buff
*reassembly
;
82 struct sk_buff_head pending_q
;
83 struct sk_buff_head completed_q
;
86 struct bfusb_data_scb
{
90 static void bfusb_tx_complete(struct urb
*urb
);
91 static void bfusb_rx_complete(struct urb
*urb
);
93 static struct urb
*bfusb_get_completed(struct bfusb_data
*data
)
96 struct urb
*urb
= NULL
;
98 BT_DBG("bfusb %p", data
);
100 skb
= skb_dequeue(&data
->completed_q
);
102 urb
= ((struct bfusb_data_scb
*) skb
->cb
)->urb
;
109 static void bfusb_unlink_urbs(struct bfusb_data
*data
)
114 BT_DBG("bfusb %p", data
);
116 while ((skb
= skb_dequeue(&data
->pending_q
))) {
117 urb
= ((struct bfusb_data_scb
*) skb
->cb
)->urb
;
119 skb_queue_tail(&data
->completed_q
, skb
);
122 while ((urb
= bfusb_get_completed(data
)))
126 static int bfusb_send_bulk(struct bfusb_data
*data
, struct sk_buff
*skb
)
128 struct bfusb_data_scb
*scb
= (void *) skb
->cb
;
129 struct urb
*urb
= bfusb_get_completed(data
);
132 BT_DBG("bfusb %p skb %p len %d", data
, skb
, skb
->len
);
135 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
140 pipe
= usb_sndbulkpipe(data
->udev
, data
->bulk_out_ep
);
142 usb_fill_bulk_urb(urb
, data
->udev
, pipe
, skb
->data
, skb
->len
,
143 bfusb_tx_complete
, skb
);
147 skb_queue_tail(&data
->pending_q
, skb
);
149 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
151 BT_ERR("%s bulk tx submit failed urb %p err %d",
152 data
->hdev
->name
, urb
, err
);
153 skb_unlink(skb
, &data
->pending_q
);
156 atomic_inc(&data
->pending_tx
);
161 static void bfusb_tx_wakeup(struct bfusb_data
*data
)
165 BT_DBG("bfusb %p", data
);
167 if (test_and_set_bit(BFUSB_TX_PROCESS
, &data
->state
)) {
168 set_bit(BFUSB_TX_WAKEUP
, &data
->state
);
173 clear_bit(BFUSB_TX_WAKEUP
, &data
->state
);
175 while ((atomic_read(&data
->pending_tx
) < BFUSB_MAX_BULK_TX
) &&
176 (skb
= skb_dequeue(&data
->transmit_q
))) {
177 if (bfusb_send_bulk(data
, skb
) < 0) {
178 skb_queue_head(&data
->transmit_q
, skb
);
183 } while (test_bit(BFUSB_TX_WAKEUP
, &data
->state
));
185 clear_bit(BFUSB_TX_PROCESS
, &data
->state
);
188 static void bfusb_tx_complete(struct urb
*urb
)
190 struct sk_buff
*skb
= (struct sk_buff
*) urb
->context
;
191 struct bfusb_data
*data
= (struct bfusb_data
*) skb
->dev
;
193 BT_DBG("bfusb %p urb %p skb %p len %d", data
, urb
, skb
, skb
->len
);
195 atomic_dec(&data
->pending_tx
);
197 if (!test_bit(HCI_RUNNING
, &data
->hdev
->flags
))
201 data
->hdev
->stat
.byte_tx
+= skb
->len
;
203 data
->hdev
->stat
.err_tx
++;
205 read_lock(&data
->lock
);
207 skb_unlink(skb
, &data
->pending_q
);
208 skb_queue_tail(&data
->completed_q
, skb
);
210 bfusb_tx_wakeup(data
);
212 read_unlock(&data
->lock
);
216 static int bfusb_rx_submit(struct bfusb_data
*data
, struct urb
*urb
)
218 struct bfusb_data_scb
*scb
;
220 int err
, pipe
, size
= HCI_MAX_FRAME_SIZE
+ 32;
222 BT_DBG("bfusb %p urb %p", data
, urb
);
225 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
230 skb
= bt_skb_alloc(size
, GFP_ATOMIC
);
236 skb
->dev
= (void *) data
;
238 scb
= (struct bfusb_data_scb
*) skb
->cb
;
241 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_in_ep
);
243 usb_fill_bulk_urb(urb
, data
->udev
, pipe
, skb
->data
, size
,
244 bfusb_rx_complete
, skb
);
246 skb_queue_tail(&data
->pending_q
, skb
);
248 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
250 BT_ERR("%s bulk rx submit failed urb %p err %d",
251 data
->hdev
->name
, urb
, err
);
252 skb_unlink(skb
, &data
->pending_q
);
260 static inline int bfusb_recv_block(struct bfusb_data
*data
, int hdr
, unsigned char *buf
, int len
)
262 BT_DBG("bfusb %p hdr 0x%02x data %p len %d", data
, hdr
, buf
, len
);
265 BT_ERR("%s error in block", data
->hdev
->name
);
266 kfree_skb(data
->reassembly
);
267 data
->reassembly
= NULL
;
273 unsigned char pkt_type
;
276 if (data
->reassembly
) {
277 BT_ERR("%s unexpected start block", data
->hdev
->name
);
278 kfree_skb(data
->reassembly
);
279 data
->reassembly
= NULL
;
283 BT_ERR("%s no packet type found", data
->hdev
->name
);
287 pkt_type
= *buf
++; len
--;
291 if (len
>= HCI_EVENT_HDR_SIZE
) {
292 struct hci_event_hdr
*hdr
= (struct hci_event_hdr
*) buf
;
293 pkt_len
= HCI_EVENT_HDR_SIZE
+ hdr
->plen
;
295 BT_ERR("%s event block is too short", data
->hdev
->name
);
300 case HCI_ACLDATA_PKT
:
301 if (len
>= HCI_ACL_HDR_SIZE
) {
302 struct hci_acl_hdr
*hdr
= (struct hci_acl_hdr
*) buf
;
303 pkt_len
= HCI_ACL_HDR_SIZE
+ __le16_to_cpu(hdr
->dlen
);
305 BT_ERR("%s data block is too short", data
->hdev
->name
);
310 case HCI_SCODATA_PKT
:
311 if (len
>= HCI_SCO_HDR_SIZE
) {
312 struct hci_sco_hdr
*hdr
= (struct hci_sco_hdr
*) buf
;
313 pkt_len
= HCI_SCO_HDR_SIZE
+ hdr
->dlen
;
315 BT_ERR("%s audio block is too short", data
->hdev
->name
);
321 skb
= bt_skb_alloc(pkt_len
, GFP_ATOMIC
);
323 BT_ERR("%s no memory for the packet", data
->hdev
->name
);
327 bt_cb(skb
)->pkt_type
= pkt_type
;
329 data
->reassembly
= skb
;
331 if (!data
->reassembly
) {
332 BT_ERR("%s unexpected continuation block", data
->hdev
->name
);
338 memcpy(skb_put(data
->reassembly
, len
), buf
, len
);
341 hci_recv_frame(data
->hdev
, data
->reassembly
);
342 data
->reassembly
= NULL
;
348 static void bfusb_rx_complete(struct urb
*urb
)
350 struct sk_buff
*skb
= (struct sk_buff
*) urb
->context
;
351 struct bfusb_data
*data
= (struct bfusb_data
*) skb
->dev
;
352 unsigned char *buf
= urb
->transfer_buffer
;
353 int count
= urb
->actual_length
;
356 BT_DBG("bfusb %p urb %p skb %p len %d", data
, urb
, skb
, skb
->len
);
358 read_lock(&data
->lock
);
360 if (!test_bit(HCI_RUNNING
, &data
->hdev
->flags
))
363 if (urb
->status
|| !count
)
366 data
->hdev
->stat
.byte_rx
+= count
;
371 hdr
= buf
[0] | (buf
[1] << 8);
378 len
= (buf
[2] == 0) ? 256 : buf
[2];
384 BT_ERR("%s block extends over URB buffer ranges",
388 if ((hdr
& 0xe1) == 0xc1)
389 bfusb_recv_block(data
, hdr
, buf
, len
);
395 skb_unlink(skb
, &data
->pending_q
);
398 bfusb_rx_submit(data
, urb
);
400 read_unlock(&data
->lock
);
405 urb
->dev
= data
->udev
;
407 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
409 BT_ERR("%s bulk resubmit failed urb %p err %d",
410 data
->hdev
->name
, urb
, err
);
414 read_unlock(&data
->lock
);
417 static int bfusb_open(struct hci_dev
*hdev
)
419 struct bfusb_data
*data
= hci_get_drvdata(hdev
);
423 BT_DBG("hdev %p bfusb %p", hdev
, data
);
425 if (test_and_set_bit(HCI_RUNNING
, &hdev
->flags
))
428 write_lock_irqsave(&data
->lock
, flags
);
430 err
= bfusb_rx_submit(data
, NULL
);
432 for (i
= 1; i
< BFUSB_MAX_BULK_RX
; i
++)
433 bfusb_rx_submit(data
, NULL
);
435 clear_bit(HCI_RUNNING
, &hdev
->flags
);
438 write_unlock_irqrestore(&data
->lock
, flags
);
443 static int bfusb_flush(struct hci_dev
*hdev
)
445 struct bfusb_data
*data
= hci_get_drvdata(hdev
);
447 BT_DBG("hdev %p bfusb %p", hdev
, data
);
449 skb_queue_purge(&data
->transmit_q
);
454 static int bfusb_close(struct hci_dev
*hdev
)
456 struct bfusb_data
*data
= hci_get_drvdata(hdev
);
459 BT_DBG("hdev %p bfusb %p", hdev
, data
);
461 if (!test_and_clear_bit(HCI_RUNNING
, &hdev
->flags
))
464 write_lock_irqsave(&data
->lock
, flags
);
465 write_unlock_irqrestore(&data
->lock
, flags
);
467 bfusb_unlink_urbs(data
);
473 static int bfusb_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
475 struct bfusb_data
*data
= hci_get_drvdata(hdev
);
476 struct sk_buff
*nskb
;
477 unsigned char buf
[3];
478 int sent
= 0, size
, count
;
480 BT_DBG("hdev %p skb %p type %d len %d", hdev
, skb
, bt_cb(skb
)->pkt_type
, skb
->len
);
482 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
485 switch (bt_cb(skb
)->pkt_type
) {
486 case HCI_COMMAND_PKT
:
489 case HCI_ACLDATA_PKT
:
492 case HCI_SCODATA_PKT
:
497 /* Prepend skb with frame type */
498 memcpy(skb_push(skb
, 1), &bt_cb(skb
)->pkt_type
, 1);
502 /* Max HCI frame size seems to be 1511 + 1 */
503 nskb
= bt_skb_alloc(count
+ 32, GFP_ATOMIC
);
505 BT_ERR("Can't allocate memory for new packet");
509 nskb
->dev
= (void *) data
;
512 size
= min_t(uint
, count
, BFUSB_MAX_BLOCK_SIZE
);
514 buf
[0] = 0xc1 | ((sent
== 0) ? 0x04 : 0) | ((count
== size
) ? 0x08 : 0);
516 buf
[2] = (size
== BFUSB_MAX_BLOCK_SIZE
) ? 0 : size
;
518 memcpy(skb_put(nskb
, 3), buf
, 3);
519 skb_copy_from_linear_data_offset(skb
, sent
, skb_put(nskb
, size
), size
);
525 /* Don't send frame with multiple size of bulk max packet */
526 if ((nskb
->len
% data
->bulk_pkt_size
) == 0) {
529 memcpy(skb_put(nskb
, 2), buf
, 2);
532 read_lock(&data
->lock
);
534 skb_queue_tail(&data
->transmit_q
, nskb
);
535 bfusb_tx_wakeup(data
);
537 read_unlock(&data
->lock
);
544 static int bfusb_load_firmware(struct bfusb_data
*data
,
545 const unsigned char *firmware
, int count
)
548 int err
, pipe
, len
, size
, sent
= 0;
550 BT_DBG("bfusb %p udev %p", data
, data
->udev
);
552 BT_INFO("BlueFRITZ! USB loading firmware");
554 buf
= kmalloc(BFUSB_MAX_BLOCK_SIZE
+ 3, GFP_KERNEL
);
556 BT_ERR("Can't allocate memory chunk for firmware");
560 pipe
= usb_sndctrlpipe(data
->udev
, 0);
562 if (usb_control_msg(data
->udev
, pipe
, USB_REQ_SET_CONFIGURATION
,
563 0, 1, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
) < 0) {
564 BT_ERR("Can't change to loading configuration");
569 data
->udev
->toggle
[0] = data
->udev
->toggle
[1] = 0;
571 pipe
= usb_sndbulkpipe(data
->udev
, data
->bulk_out_ep
);
574 size
= min_t(uint
, count
, BFUSB_MAX_BLOCK_SIZE
+ 3);
576 memcpy(buf
, firmware
+ sent
, size
);
578 err
= usb_bulk_msg(data
->udev
, pipe
, buf
, size
,
579 &len
, BFUSB_BLOCK_TIMEOUT
);
581 if (err
|| (len
!= size
)) {
582 BT_ERR("Error in firmware loading");
590 err
= usb_bulk_msg(data
->udev
, pipe
, NULL
, 0,
591 &len
, BFUSB_BLOCK_TIMEOUT
);
593 BT_ERR("Error in null packet request");
597 pipe
= usb_sndctrlpipe(data
->udev
, 0);
599 err
= usb_control_msg(data
->udev
, pipe
, USB_REQ_SET_CONFIGURATION
,
600 0, 2, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
602 BT_ERR("Can't change to running configuration");
606 data
->udev
->toggle
[0] = data
->udev
->toggle
[1] = 0;
608 BT_INFO("BlueFRITZ! USB device ready");
616 pipe
= usb_sndctrlpipe(data
->udev
, 0);
618 usb_control_msg(data
->udev
, pipe
, USB_REQ_SET_CONFIGURATION
,
619 0, 0, 0, NULL
, 0, USB_CTRL_SET_TIMEOUT
);
624 static int bfusb_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
626 const struct firmware
*firmware
;
627 struct usb_device
*udev
= interface_to_usbdev(intf
);
628 struct usb_host_endpoint
*bulk_out_ep
;
629 struct usb_host_endpoint
*bulk_in_ep
;
630 struct hci_dev
*hdev
;
631 struct bfusb_data
*data
;
633 BT_DBG("intf %p id %p", intf
, id
);
635 /* Check number of endpoints */
636 if (intf
->cur_altsetting
->desc
.bNumEndpoints
< 2)
639 bulk_out_ep
= &intf
->cur_altsetting
->endpoint
[0];
640 bulk_in_ep
= &intf
->cur_altsetting
->endpoint
[1];
642 if (!bulk_out_ep
|| !bulk_in_ep
) {
643 BT_ERR("Bulk endpoints not found");
647 /* Initialize control structure and load firmware */
648 data
= devm_kzalloc(&intf
->dev
, sizeof(struct bfusb_data
), GFP_KERNEL
);
650 BT_ERR("Can't allocate memory for control structure");
655 data
->bulk_in_ep
= bulk_in_ep
->desc
.bEndpointAddress
;
656 data
->bulk_out_ep
= bulk_out_ep
->desc
.bEndpointAddress
;
657 data
->bulk_pkt_size
= le16_to_cpu(bulk_out_ep
->desc
.wMaxPacketSize
);
659 rwlock_init(&data
->lock
);
661 data
->reassembly
= NULL
;
663 skb_queue_head_init(&data
->transmit_q
);
664 skb_queue_head_init(&data
->pending_q
);
665 skb_queue_head_init(&data
->completed_q
);
667 if (request_firmware(&firmware
, "bfubase.frm", &udev
->dev
) < 0) {
668 BT_ERR("Firmware request failed");
672 BT_DBG("firmware data %p size %zu", firmware
->data
, firmware
->size
);
674 if (bfusb_load_firmware(data
, firmware
->data
, firmware
->size
) < 0) {
675 BT_ERR("Firmware loading failed");
679 release_firmware(firmware
);
681 /* Initialize and register HCI device */
682 hdev
= hci_alloc_dev();
684 BT_ERR("Can't allocate HCI device");
691 hci_set_drvdata(hdev
, data
);
692 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
694 hdev
->open
= bfusb_open
;
695 hdev
->close
= bfusb_close
;
696 hdev
->flush
= bfusb_flush
;
697 hdev
->send
= bfusb_send_frame
;
699 if (hci_register_dev(hdev
) < 0) {
700 BT_ERR("Can't register HCI device");
705 usb_set_intfdata(intf
, data
);
710 release_firmware(firmware
);
716 static void bfusb_disconnect(struct usb_interface
*intf
)
718 struct bfusb_data
*data
= usb_get_intfdata(intf
);
719 struct hci_dev
*hdev
= data
->hdev
;
721 BT_DBG("intf %p", intf
);
726 usb_set_intfdata(intf
, NULL
);
730 hci_unregister_dev(hdev
);
734 static struct usb_driver bfusb_driver
= {
736 .probe
= bfusb_probe
,
737 .disconnect
= bfusb_disconnect
,
738 .id_table
= bfusb_table
,
739 .disable_hub_initiated_lpm
= 1,
742 module_usb_driver(bfusb_driver
);
744 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
745 MODULE_DESCRIPTION("BlueFRITZ! USB driver ver " VERSION
);
746 MODULE_VERSION(VERSION
);
747 MODULE_LICENSE("GPL");
748 MODULE_FIRMWARE("bfubase.frm");