blob: 90a0946346303c4d654afd215bfbcda2c9e66f1b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * AVM BlueFRITZ! USB driver
4 *
Marcel Holtmann9c724352006-07-06 15:45:23 +02005 * Copyright (C) 2003-2006 Marcel Holtmann <marcel@holtmann.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 *
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.
12 *
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.
17 *
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
21 *
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/slab.h>
29#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/errno.h>
31#include <linux/skbuff.h>
32
33#include <linux/device.h>
34#include <linux/firmware.h>
35
36#include <linux/usb.h>
37
38#include <net/bluetooth/bluetooth.h>
39#include <net/bluetooth/hci_core.h>
40
41#ifndef CONFIG_BT_HCIBFUSB_DEBUG
42#undef BT_DBG
43#define BT_DBG(D...)
44#endif
45
Marcel Holtmann943d56b2008-08-07 22:26:55 +020046#define VERSION "1.2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48static struct usb_driver bfusb_driver;
49
50static struct usb_device_id bfusb_table[] = {
51 /* AVM BlueFRITZ! USB */
52 { USB_DEVICE(0x057c, 0x2200) },
53
54 { } /* Terminating entry */
55};
56
57MODULE_DEVICE_TABLE(usb, bfusb_table);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define BFUSB_MAX_BLOCK_SIZE 256
60
61#define BFUSB_BLOCK_TIMEOUT 3000
62
63#define BFUSB_TX_PROCESS 1
64#define BFUSB_TX_WAKEUP 2
65
66#define BFUSB_MAX_BULK_TX 2
67#define BFUSB_MAX_BULK_RX 2
68
Marcel Holtmann9c724352006-07-06 15:45:23 +020069struct bfusb_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct hci_dev *hdev;
71
72 unsigned long state;
73
74 struct usb_device *udev;
75
76 unsigned int bulk_in_ep;
77 unsigned int bulk_out_ep;
78 unsigned int bulk_pkt_size;
79
80 rwlock_t lock;
81
82 struct sk_buff_head transmit_q;
83
84 struct sk_buff *reassembly;
85
86 atomic_t pending_tx;
87 struct sk_buff_head pending_q;
88 struct sk_buff_head completed_q;
89};
90
Marcel Holtmann9c724352006-07-06 15:45:23 +020091struct bfusb_data_scb {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct urb *urb;
93};
94
David Howells7d12e782006-10-05 14:55:46 +010095static void bfusb_tx_complete(struct urb *urb);
96static void bfusb_rx_complete(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Marcel Holtmann9c724352006-07-06 15:45:23 +020098static struct urb *bfusb_get_completed(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct sk_buff *skb;
101 struct urb *urb = NULL;
102
Marcel Holtmann9c724352006-07-06 15:45:23 +0200103 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Marcel Holtmann9c724352006-07-06 15:45:23 +0200105 skb = skb_dequeue(&data->completed_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (skb) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200107 urb = ((struct bfusb_data_scb *) skb->cb)->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 kfree_skb(skb);
109 }
110
111 return urb;
112}
113
Marcel Holtmann9c724352006-07-06 15:45:23 +0200114static void bfusb_unlink_urbs(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct sk_buff *skb;
117 struct urb *urb;
118
Marcel Holtmann9c724352006-07-06 15:45:23 +0200119 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Marcel Holtmann9c724352006-07-06 15:45:23 +0200121 while ((skb = skb_dequeue(&data->pending_q))) {
122 urb = ((struct bfusb_data_scb *) skb->cb)->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 usb_kill_urb(urb);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200124 skb_queue_tail(&data->completed_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Marcel Holtmann9c724352006-07-06 15:45:23 +0200127 while ((urb = bfusb_get_completed(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 usb_free_urb(urb);
129}
130
Marcel Holtmann9c724352006-07-06 15:45:23 +0200131static int bfusb_send_bulk(struct bfusb_data *data, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200133 struct bfusb_data_scb *scb = (void *) skb->cb;
134 struct urb *urb = bfusb_get_completed(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int err, pipe;
136
Marcel Holtmann9c724352006-07-06 15:45:23 +0200137 BT_DBG("bfusb %p skb %p len %d", data, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC)))
140 return -ENOMEM;
141
Marcel Holtmann9c724352006-07-06 15:45:23 +0200142 pipe = usb_sndbulkpipe(data->udev, data->bulk_out_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Marcel Holtmann9c724352006-07-06 15:45:23 +0200144 usb_fill_bulk_urb(urb, data->udev, pipe, skb->data, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 bfusb_tx_complete, skb);
146
147 scb->urb = urb;
148
Marcel Holtmann9c724352006-07-06 15:45:23 +0200149 skb_queue_tail(&data->pending_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 err = usb_submit_urb(urb, GFP_ATOMIC);
152 if (err) {
153 BT_ERR("%s bulk tx submit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200154 data->hdev->name, urb, err);
155 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 usb_free_urb(urb);
157 } else
Marcel Holtmann9c724352006-07-06 15:45:23 +0200158 atomic_inc(&data->pending_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 return err;
161}
162
Marcel Holtmann9c724352006-07-06 15:45:23 +0200163static void bfusb_tx_wakeup(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct sk_buff *skb;
166
Marcel Holtmann9c724352006-07-06 15:45:23 +0200167 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Marcel Holtmann9c724352006-07-06 15:45:23 +0200169 if (test_and_set_bit(BFUSB_TX_PROCESS, &data->state)) {
170 set_bit(BFUSB_TX_WAKEUP, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return;
172 }
173
174 do {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200175 clear_bit(BFUSB_TX_WAKEUP, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Marcel Holtmann9c724352006-07-06 15:45:23 +0200177 while ((atomic_read(&data->pending_tx) < BFUSB_MAX_BULK_TX) &&
178 (skb = skb_dequeue(&data->transmit_q))) {
179 if (bfusb_send_bulk(data, skb) < 0) {
180 skb_queue_head(&data->transmit_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 }
183 }
184
Marcel Holtmann9c724352006-07-06 15:45:23 +0200185 } while (test_bit(BFUSB_TX_WAKEUP, &data->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Marcel Holtmann9c724352006-07-06 15:45:23 +0200187 clear_bit(BFUSB_TX_PROCESS, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
David Howells7d12e782006-10-05 14:55:46 +0100190static void bfusb_tx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct sk_buff *skb = (struct sk_buff *) urb->context;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200193 struct bfusb_data *data = (struct bfusb_data *) skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Marcel Holtmann9c724352006-07-06 15:45:23 +0200195 BT_DBG("bfusb %p urb %p skb %p len %d", data, urb, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Marcel Holtmann9c724352006-07-06 15:45:23 +0200197 atomic_dec(&data->pending_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Marcel Holtmann9c724352006-07-06 15:45:23 +0200199 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return;
201
202 if (!urb->status)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200203 data->hdev->stat.byte_tx += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 else
Marcel Holtmann9c724352006-07-06 15:45:23 +0200205 data->hdev->stat.err_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Marcel Holtmann9c724352006-07-06 15:45:23 +0200207 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marcel Holtmann9c724352006-07-06 15:45:23 +0200209 skb_unlink(skb, &data->pending_q);
210 skb_queue_tail(&data->completed_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Marcel Holtmann9c724352006-07-06 15:45:23 +0200212 bfusb_tx_wakeup(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Marcel Holtmann9c724352006-07-06 15:45:23 +0200214 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217
Marcel Holtmann9c724352006-07-06 15:45:23 +0200218static int bfusb_rx_submit(struct bfusb_data *data, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200220 struct bfusb_data_scb *scb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct sk_buff *skb;
222 int err, pipe, size = HCI_MAX_FRAME_SIZE + 32;
223
224 BT_DBG("bfusb %p urb %p", bfusb, urb);
225
226 if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC)))
227 return -ENOMEM;
228
Marcel Holtmann9c724352006-07-06 15:45:23 +0200229 skb = bt_skb_alloc(size, GFP_ATOMIC);
230 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 usb_free_urb(urb);
232 return -ENOMEM;
233 }
234
Marcel Holtmann9c724352006-07-06 15:45:23 +0200235 skb->dev = (void *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Marcel Holtmann9c724352006-07-06 15:45:23 +0200237 scb = (struct bfusb_data_scb *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 scb->urb = urb;
239
Marcel Holtmann9c724352006-07-06 15:45:23 +0200240 pipe = usb_rcvbulkpipe(data->udev, data->bulk_in_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Marcel Holtmann9c724352006-07-06 15:45:23 +0200242 usb_fill_bulk_urb(urb, data->udev, pipe, skb->data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 bfusb_rx_complete, skb);
244
Marcel Holtmann9c724352006-07-06 15:45:23 +0200245 skb_queue_tail(&data->pending_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 err = usb_submit_urb(urb, GFP_ATOMIC);
248 if (err) {
249 BT_ERR("%s bulk rx submit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200250 data->hdev->name, urb, err);
251 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 kfree_skb(skb);
253 usb_free_urb(urb);
254 }
255
256 return err;
257}
258
Marcel Holtmann9c724352006-07-06 15:45:23 +0200259static inline int bfusb_recv_block(struct bfusb_data *data, int hdr, unsigned char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200261 BT_DBG("bfusb %p hdr 0x%02x data %p len %d", data, hdr, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 if (hdr & 0x10) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200264 BT_ERR("%s error in block", data->hdev->name);
265 if (data->reassembly)
266 kfree_skb(data->reassembly);
267 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return -EIO;
269 }
270
271 if (hdr & 0x04) {
272 struct sk_buff *skb;
273 unsigned char pkt_type;
274 int pkt_len = 0;
275
Marcel Holtmann9c724352006-07-06 15:45:23 +0200276 if (data->reassembly) {
277 BT_ERR("%s unexpected start block", data->hdev->name);
278 kfree_skb(data->reassembly);
279 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 if (len < 1) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200283 BT_ERR("%s no packet type found", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return -EPROTO;
285 }
286
Marcel Holtmann9c724352006-07-06 15:45:23 +0200287 pkt_type = *buf++; len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 switch (pkt_type) {
290 case HCI_EVENT_PKT:
291 if (len >= HCI_EVENT_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200292 struct hci_event_hdr *hdr = (struct hci_event_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 pkt_len = HCI_EVENT_HDR_SIZE + hdr->plen;
294 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200295 BT_ERR("%s event block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return -EILSEQ;
297 }
298 break;
299
300 case HCI_ACLDATA_PKT:
301 if (len >= HCI_ACL_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200302 struct hci_acl_hdr *hdr = (struct hci_acl_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 pkt_len = HCI_ACL_HDR_SIZE + __le16_to_cpu(hdr->dlen);
304 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200305 BT_ERR("%s data block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return -EILSEQ;
307 }
308 break;
309
310 case HCI_SCODATA_PKT:
311 if (len >= HCI_SCO_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200312 struct hci_sco_hdr *hdr = (struct hci_sco_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 pkt_len = HCI_SCO_HDR_SIZE + hdr->dlen;
314 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200315 BT_ERR("%s audio block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -EILSEQ;
317 }
318 break;
319 }
320
321 skb = bt_skb_alloc(pkt_len, GFP_ATOMIC);
322 if (!skb) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200323 BT_ERR("%s no memory for the packet", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return -ENOMEM;
325 }
326
Marcel Holtmann9c724352006-07-06 15:45:23 +0200327 skb->dev = (void *) data->hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700328 bt_cb(skb)->pkt_type = pkt_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Marcel Holtmann9c724352006-07-06 15:45:23 +0200330 data->reassembly = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200332 if (!data->reassembly) {
333 BT_ERR("%s unexpected continuation block", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return -EIO;
335 }
336 }
337
338 if (len > 0)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200339 memcpy(skb_put(data->reassembly, len), buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (hdr & 0x08) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200342 hci_recv_frame(data->reassembly);
343 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 return 0;
347}
348
David Howells7d12e782006-10-05 14:55:46 +0100349static void bfusb_rx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct sk_buff *skb = (struct sk_buff *) urb->context;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200352 struct bfusb_data *data = (struct bfusb_data *) skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 unsigned char *buf = urb->transfer_buffer;
354 int count = urb->actual_length;
355 int err, hdr, len;
356
357 BT_DBG("bfusb %p urb %p skb %p len %d", bfusb, urb, skb, skb->len);
358
Marcel Holtmann9c724352006-07-06 15:45:23 +0200359 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Marcel Holtmann9c724352006-07-06 15:45:23 +0200361 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 goto unlock;
363
364 if (urb->status || !count)
365 goto resubmit;
366
Marcel Holtmann9c724352006-07-06 15:45:23 +0200367 data->hdev->stat.byte_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 skb_put(skb, count);
370
371 while (count) {
372 hdr = buf[0] | (buf[1] << 8);
373
374 if (hdr & 0x4000) {
375 len = 0;
376 count -= 2;
377 buf += 2;
378 } else {
379 len = (buf[2] == 0) ? 256 : buf[2];
380 count -= 3;
381 buf += 3;
382 }
383
384 if (count < len) {
385 BT_ERR("%s block extends over URB buffer ranges",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200386 data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 if ((hdr & 0xe1) == 0xc1)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200390 bfusb_recv_block(data, hdr, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 count -= len;
393 buf += len;
394 }
395
Marcel Holtmann9c724352006-07-06 15:45:23 +0200396 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 kfree_skb(skb);
398
Marcel Holtmann9c724352006-07-06 15:45:23 +0200399 bfusb_rx_submit(data, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Marcel Holtmann9c724352006-07-06 15:45:23 +0200401 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return;
404
405resubmit:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200406 urb->dev = data->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 err = usb_submit_urb(urb, GFP_ATOMIC);
409 if (err) {
410 BT_ERR("%s bulk resubmit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200411 data->hdev->name, urb, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
414unlock:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200415 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static int bfusb_open(struct hci_dev *hdev)
419{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200420 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 unsigned long flags;
422 int i, err;
423
Marcel Holtmann9c724352006-07-06 15:45:23 +0200424 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
427 return 0;
428
Marcel Holtmann9c724352006-07-06 15:45:23 +0200429 write_lock_irqsave(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Marcel Holtmann9c724352006-07-06 15:45:23 +0200431 err = bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (!err) {
433 for (i = 1; i < BFUSB_MAX_BULK_RX; i++)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200434 bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 } else {
436 clear_bit(HCI_RUNNING, &hdev->flags);
437 }
438
Marcel Holtmann9c724352006-07-06 15:45:23 +0200439 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 return err;
442}
443
444static int bfusb_flush(struct hci_dev *hdev)
445{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200446 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Marcel Holtmann9c724352006-07-06 15:45:23 +0200448 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Marcel Holtmann9c724352006-07-06 15:45:23 +0200450 skb_queue_purge(&data->transmit_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 return 0;
453}
454
455static int bfusb_close(struct hci_dev *hdev)
456{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200457 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 unsigned long flags;
459
Marcel Holtmann9c724352006-07-06 15:45:23 +0200460 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
463 return 0;
464
Marcel Holtmann9c724352006-07-06 15:45:23 +0200465 write_lock_irqsave(&data->lock, flags);
466 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Marcel Holtmann9c724352006-07-06 15:45:23 +0200468 bfusb_unlink_urbs(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 bfusb_flush(hdev);
470
471 return 0;
472}
473
474static int bfusb_send_frame(struct sk_buff *skb)
475{
476 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200477 struct bfusb_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct sk_buff *nskb;
479 unsigned char buf[3];
480 int sent = 0, size, count;
481
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700482 BT_DBG("hdev %p skb %p type %d len %d", hdev, skb, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (!hdev) {
485 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
486 return -ENODEV;
487 }
488
489 if (!test_bit(HCI_RUNNING, &hdev->flags))
490 return -EBUSY;
491
Marcel Holtmann9c724352006-07-06 15:45:23 +0200492 data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700494 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 case HCI_COMMAND_PKT:
496 hdev->stat.cmd_tx++;
497 break;
498 case HCI_ACLDATA_PKT:
499 hdev->stat.acl_tx++;
500 break;
501 case HCI_SCODATA_PKT:
502 hdev->stat.sco_tx++;
503 break;
504 };
505
506 /* Prepend skb with frame type */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700507 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 count = skb->len;
510
511 /* Max HCI frame size seems to be 1511 + 1 */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200512 nskb = bt_skb_alloc(count + 32, GFP_ATOMIC);
513 if (!nskb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 BT_ERR("Can't allocate memory for new packet");
515 return -ENOMEM;
516 }
517
Marcel Holtmann9c724352006-07-06 15:45:23 +0200518 nskb->dev = (void *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 while (count) {
521 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE);
522
523 buf[0] = 0xc1 | ((sent == 0) ? 0x04 : 0) | ((count == size) ? 0x08 : 0);
524 buf[1] = 0x00;
525 buf[2] = (size == BFUSB_MAX_BLOCK_SIZE) ? 0 : size;
526
527 memcpy(skb_put(nskb, 3), buf, 3);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300528 skb_copy_from_linear_data_offset(skb, sent, skb_put(nskb, size), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 sent += size;
531 count -= size;
532 }
533
534 /* Don't send frame with multiple size of bulk max packet */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200535 if ((nskb->len % data->bulk_pkt_size) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 buf[0] = 0xdd;
537 buf[1] = 0x00;
538 memcpy(skb_put(nskb, 2), buf, 2);
539 }
540
Marcel Holtmann9c724352006-07-06 15:45:23 +0200541 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Marcel Holtmann9c724352006-07-06 15:45:23 +0200543 skb_queue_tail(&data->transmit_q, nskb);
544 bfusb_tx_wakeup(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Marcel Holtmann9c724352006-07-06 15:45:23 +0200546 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 kfree_skb(skb);
549
550 return 0;
551}
552
553static void bfusb_destruct(struct hci_dev *hdev)
554{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200555 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Marcel Holtmann9c724352006-07-06 15:45:23 +0200557 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Marcel Holtmann9c724352006-07-06 15:45:23 +0200559 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static int bfusb_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
563{
564 return -ENOIOCTLCMD;
565}
566
David Woodhouse8187b4f2008-05-23 23:56:51 +0100567static int bfusb_load_firmware(struct bfusb_data *data,
568 const unsigned char *firmware, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 unsigned char *buf;
571 int err, pipe, len, size, sent = 0;
572
Marcel Holtmann9c724352006-07-06 15:45:23 +0200573 BT_DBG("bfusb %p udev %p", data, data->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 BT_INFO("BlueFRITZ! USB loading firmware");
576
Marcel Holtmann9c724352006-07-06 15:45:23 +0200577 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Marcel Holtmann9c724352006-07-06 15:45:23 +0200579 if (usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 0, 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT) < 0) {
581 BT_ERR("Can't change to loading configuration");
582 return -EBUSY;
583 }
584
Marcel Holtmann9c724352006-07-06 15:45:23 +0200585 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 buf = kmalloc(BFUSB_MAX_BLOCK_SIZE + 3, GFP_ATOMIC);
588 if (!buf) {
589 BT_ERR("Can't allocate memory chunk for firmware");
590 return -ENOMEM;
591 }
592
Marcel Holtmann9c724352006-07-06 15:45:23 +0200593 pipe = usb_sndbulkpipe(data->udev, data->bulk_out_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 while (count) {
596 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE + 3);
597
598 memcpy(buf, firmware + sent, size);
599
Marcel Holtmann9c724352006-07-06 15:45:23 +0200600 err = usb_bulk_msg(data->udev, pipe, buf, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 &len, BFUSB_BLOCK_TIMEOUT);
602
603 if (err || (len != size)) {
604 BT_ERR("Error in firmware loading");
605 goto error;
606 }
607
608 sent += size;
609 count -= size;
610 }
611
Marcel Holtmann9c724352006-07-06 15:45:23 +0200612 err = usb_bulk_msg(data->udev, pipe, NULL, 0,
613 &len, BFUSB_BLOCK_TIMEOUT);
614 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 BT_ERR("Error in null packet request");
616 goto error;
617 }
618
Marcel Holtmann9c724352006-07-06 15:45:23 +0200619 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Marcel Holtmann9c724352006-07-06 15:45:23 +0200621 err = usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
622 0, 2, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
623 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 BT_ERR("Can't change to running configuration");
625 goto error;
626 }
627
Marcel Holtmann9c724352006-07-06 15:45:23 +0200628 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 BT_INFO("BlueFRITZ! USB device ready");
631
632 kfree(buf);
633 return 0;
634
635error:
636 kfree(buf);
637
Marcel Holtmann9c724352006-07-06 15:45:23 +0200638 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Marcel Holtmann9c724352006-07-06 15:45:23 +0200640 usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 0, 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
642
643 return err;
644}
645
646static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *id)
647{
648 const struct firmware *firmware;
649 struct usb_device *udev = interface_to_usbdev(intf);
650 struct usb_host_endpoint *bulk_out_ep;
651 struct usb_host_endpoint *bulk_in_ep;
652 struct hci_dev *hdev;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200653 struct bfusb_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 BT_DBG("intf %p id %p", intf, id);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* Check number of endpoints */
658 if (intf->cur_altsetting->desc.bNumEndpoints < 2)
659 return -EIO;
660
661 bulk_out_ep = &intf->cur_altsetting->endpoint[0];
662 bulk_in_ep = &intf->cur_altsetting->endpoint[1];
663
664 if (!bulk_out_ep || !bulk_in_ep) {
665 BT_ERR("Bulk endpoints not found");
666 goto done;
667 }
668
669 /* Initialize control structure and load firmware */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200670 data = kzalloc(sizeof(struct bfusb_data), GFP_KERNEL);
671 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 BT_ERR("Can't allocate memory for control structure");
673 goto done;
674 }
675
Marcel Holtmann9c724352006-07-06 15:45:23 +0200676 data->udev = udev;
677 data->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress;
678 data->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress;
679 data->bulk_pkt_size = le16_to_cpu(bulk_out_ep->desc.wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Marcel Holtmann9c724352006-07-06 15:45:23 +0200681 rwlock_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Marcel Holtmann9c724352006-07-06 15:45:23 +0200683 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Marcel Holtmann9c724352006-07-06 15:45:23 +0200685 skb_queue_head_init(&data->transmit_q);
686 skb_queue_head_init(&data->pending_q);
687 skb_queue_head_init(&data->completed_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (request_firmware(&firmware, "bfubase.frm", &udev->dev) < 0) {
690 BT_ERR("Firmware request failed");
691 goto error;
692 }
693
694 BT_DBG("firmware data %p size %d", firmware->data, firmware->size);
695
Marcel Holtmann9c724352006-07-06 15:45:23 +0200696 if (bfusb_load_firmware(data, firmware->data, firmware->size) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 BT_ERR("Firmware loading failed");
698 goto release;
699 }
700
701 release_firmware(firmware);
702
703 /* Initialize and register HCI device */
704 hdev = hci_alloc_dev();
705 if (!hdev) {
706 BT_ERR("Can't allocate HCI device");
707 goto error;
708 }
709
Marcel Holtmann9c724352006-07-06 15:45:23 +0200710 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 hdev->type = HCI_USB;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200713 hdev->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 SET_HCIDEV_DEV(hdev, &intf->dev);
715
716 hdev->open = bfusb_open;
717 hdev->close = bfusb_close;
718 hdev->flush = bfusb_flush;
719 hdev->send = bfusb_send_frame;
720 hdev->destruct = bfusb_destruct;
721 hdev->ioctl = bfusb_ioctl;
722
723 hdev->owner = THIS_MODULE;
724
725 if (hci_register_dev(hdev) < 0) {
726 BT_ERR("Can't register HCI device");
727 hci_free_dev(hdev);
728 goto error;
729 }
730
Marcel Holtmann9c724352006-07-06 15:45:23 +0200731 usb_set_intfdata(intf, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 return 0;
734
735release:
736 release_firmware(firmware);
737
738error:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200739 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741done:
742 return -EIO;
743}
744
745static void bfusb_disconnect(struct usb_interface *intf)
746{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200747 struct bfusb_data *data = usb_get_intfdata(intf);
748 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 BT_DBG("intf %p", intf);
751
752 if (!hdev)
753 return;
754
755 usb_set_intfdata(intf, NULL);
756
757 bfusb_close(hdev);
758
759 if (hci_unregister_dev(hdev) < 0)
760 BT_ERR("Can't unregister HCI device %s", hdev->name);
761
762 hci_free_dev(hdev);
763}
764
765static struct usb_driver bfusb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .name = "bfusb",
767 .probe = bfusb_probe,
768 .disconnect = bfusb_disconnect,
769 .id_table = bfusb_table,
770};
771
772static int __init bfusb_init(void)
773{
774 int err;
775
776 BT_INFO("BlueFRITZ! USB driver ver %s", VERSION);
777
Marcel Holtmann9c724352006-07-06 15:45:23 +0200778 err = usb_register(&bfusb_driver);
779 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 BT_ERR("Failed to register BlueFRITZ! USB driver");
781
782 return err;
783}
784
785static void __exit bfusb_exit(void)
786{
787 usb_deregister(&bfusb_driver);
788}
789
790module_init(bfusb_init);
791module_exit(bfusb_exit);
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
794MODULE_DESCRIPTION("BlueFRITZ! USB driver ver " VERSION);
795MODULE_VERSION(VERSION);
796MODULE_LICENSE("GPL");
Marcel Holtmann23121192007-02-17 23:59:02 +0100797MODULE_FIRMWARE("bfubase.frm");