blob: d3f14bee0f1939fcb1ff0261e6018b0f99e1689e [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
Marcel Holtmann943d56b2008-08-07 22:26:55 +020041#define VERSION "1.2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43static struct usb_driver bfusb_driver;
44
45static struct usb_device_id bfusb_table[] = {
46 /* AVM BlueFRITZ! USB */
47 { USB_DEVICE(0x057c, 0x2200) },
48
49 { } /* Terminating entry */
50};
51
52MODULE_DEVICE_TABLE(usb, bfusb_table);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define BFUSB_MAX_BLOCK_SIZE 256
55
56#define BFUSB_BLOCK_TIMEOUT 3000
57
58#define BFUSB_TX_PROCESS 1
59#define BFUSB_TX_WAKEUP 2
60
61#define BFUSB_MAX_BULK_TX 2
62#define BFUSB_MAX_BULK_RX 2
63
Marcel Holtmann9c724352006-07-06 15:45:23 +020064struct bfusb_data {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct hci_dev *hdev;
66
67 unsigned long state;
68
69 struct usb_device *udev;
70
71 unsigned int bulk_in_ep;
72 unsigned int bulk_out_ep;
73 unsigned int bulk_pkt_size;
74
75 rwlock_t lock;
76
77 struct sk_buff_head transmit_q;
78
79 struct sk_buff *reassembly;
80
81 atomic_t pending_tx;
82 struct sk_buff_head pending_q;
83 struct sk_buff_head completed_q;
84};
85
Marcel Holtmann9c724352006-07-06 15:45:23 +020086struct bfusb_data_scb {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct urb *urb;
88};
89
David Howells7d12e782006-10-05 14:55:46 +010090static void bfusb_tx_complete(struct urb *urb);
91static void bfusb_rx_complete(struct urb *urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Marcel Holtmann9c724352006-07-06 15:45:23 +020093static struct urb *bfusb_get_completed(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct sk_buff *skb;
96 struct urb *urb = NULL;
97
Marcel Holtmann9c724352006-07-06 15:45:23 +020098 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Marcel Holtmann9c724352006-07-06 15:45:23 +0200100 skb = skb_dequeue(&data->completed_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (skb) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200102 urb = ((struct bfusb_data_scb *) skb->cb)->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 kfree_skb(skb);
104 }
105
106 return urb;
107}
108
Marcel Holtmann9c724352006-07-06 15:45:23 +0200109static void bfusb_unlink_urbs(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct sk_buff *skb;
112 struct urb *urb;
113
Marcel Holtmann9c724352006-07-06 15:45:23 +0200114 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Marcel Holtmann9c724352006-07-06 15:45:23 +0200116 while ((skb = skb_dequeue(&data->pending_q))) {
117 urb = ((struct bfusb_data_scb *) skb->cb)->urb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 usb_kill_urb(urb);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200119 skb_queue_tail(&data->completed_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
Marcel Holtmann9c724352006-07-06 15:45:23 +0200122 while ((urb = bfusb_get_completed(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 usb_free_urb(urb);
124}
125
Marcel Holtmann9c724352006-07-06 15:45:23 +0200126static int bfusb_send_bulk(struct bfusb_data *data, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200128 struct bfusb_data_scb *scb = (void *) skb->cb;
129 struct urb *urb = bfusb_get_completed(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int err, pipe;
131
Marcel Holtmann9c724352006-07-06 15:45:23 +0200132 BT_DBG("bfusb %p skb %p len %d", data, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC)))
135 return -ENOMEM;
136
Marcel Holtmann9c724352006-07-06 15:45:23 +0200137 pipe = usb_sndbulkpipe(data->udev, data->bulk_out_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Marcel Holtmann9c724352006-07-06 15:45:23 +0200139 usb_fill_bulk_urb(urb, data->udev, pipe, skb->data, skb->len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 bfusb_tx_complete, skb);
141
142 scb->urb = urb;
143
Marcel Holtmann9c724352006-07-06 15:45:23 +0200144 skb_queue_tail(&data->pending_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 err = usb_submit_urb(urb, GFP_ATOMIC);
147 if (err) {
148 BT_ERR("%s bulk tx submit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200149 data->hdev->name, urb, err);
150 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 usb_free_urb(urb);
152 } else
Marcel Holtmann9c724352006-07-06 15:45:23 +0200153 atomic_inc(&data->pending_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return err;
156}
157
Marcel Holtmann9c724352006-07-06 15:45:23 +0200158static void bfusb_tx_wakeup(struct bfusb_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct sk_buff *skb;
161
Marcel Holtmann9c724352006-07-06 15:45:23 +0200162 BT_DBG("bfusb %p", data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Marcel Holtmann9c724352006-07-06 15:45:23 +0200164 if (test_and_set_bit(BFUSB_TX_PROCESS, &data->state)) {
165 set_bit(BFUSB_TX_WAKEUP, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return;
167 }
168
169 do {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200170 clear_bit(BFUSB_TX_WAKEUP, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Marcel Holtmann9c724352006-07-06 15:45:23 +0200172 while ((atomic_read(&data->pending_tx) < BFUSB_MAX_BULK_TX) &&
173 (skb = skb_dequeue(&data->transmit_q))) {
174 if (bfusb_send_bulk(data, skb) < 0) {
175 skb_queue_head(&data->transmit_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 break;
177 }
178 }
179
Marcel Holtmann9c724352006-07-06 15:45:23 +0200180 } while (test_bit(BFUSB_TX_WAKEUP, &data->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Marcel Holtmann9c724352006-07-06 15:45:23 +0200182 clear_bit(BFUSB_TX_PROCESS, &data->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
David Howells7d12e782006-10-05 14:55:46 +0100185static void bfusb_tx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct sk_buff *skb = (struct sk_buff *) urb->context;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200188 struct bfusb_data *data = (struct bfusb_data *) skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Marcel Holtmann9c724352006-07-06 15:45:23 +0200190 BT_DBG("bfusb %p urb %p skb %p len %d", data, urb, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Marcel Holtmann9c724352006-07-06 15:45:23 +0200192 atomic_dec(&data->pending_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Marcel Holtmann9c724352006-07-06 15:45:23 +0200194 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return;
196
197 if (!urb->status)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200198 data->hdev->stat.byte_tx += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 else
Marcel Holtmann9c724352006-07-06 15:45:23 +0200200 data->hdev->stat.err_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Marcel Holtmann9c724352006-07-06 15:45:23 +0200202 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Marcel Holtmann9c724352006-07-06 15:45:23 +0200204 skb_unlink(skb, &data->pending_q);
205 skb_queue_tail(&data->completed_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Marcel Holtmann9c724352006-07-06 15:45:23 +0200207 bfusb_tx_wakeup(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marcel Holtmann9c724352006-07-06 15:45:23 +0200209 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212
Marcel Holtmann9c724352006-07-06 15:45:23 +0200213static int bfusb_rx_submit(struct bfusb_data *data, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200215 struct bfusb_data_scb *scb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 struct sk_buff *skb;
217 int err, pipe, size = HCI_MAX_FRAME_SIZE + 32;
218
Marcel Holtmanna418b892008-11-30 12:17:28 +0100219 BT_DBG("bfusb %p urb %p", data, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 if (!urb && !(urb = usb_alloc_urb(0, GFP_ATOMIC)))
222 return -ENOMEM;
223
Marcel Holtmann9c724352006-07-06 15:45:23 +0200224 skb = bt_skb_alloc(size, GFP_ATOMIC);
225 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 usb_free_urb(urb);
227 return -ENOMEM;
228 }
229
Marcel Holtmann9c724352006-07-06 15:45:23 +0200230 skb->dev = (void *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Marcel Holtmann9c724352006-07-06 15:45:23 +0200232 scb = (struct bfusb_data_scb *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 scb->urb = urb;
234
Marcel Holtmann9c724352006-07-06 15:45:23 +0200235 pipe = usb_rcvbulkpipe(data->udev, data->bulk_in_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Marcel Holtmann9c724352006-07-06 15:45:23 +0200237 usb_fill_bulk_urb(urb, data->udev, pipe, skb->data, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 bfusb_rx_complete, skb);
239
Marcel Holtmann9c724352006-07-06 15:45:23 +0200240 skb_queue_tail(&data->pending_q, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 err = usb_submit_urb(urb, GFP_ATOMIC);
243 if (err) {
244 BT_ERR("%s bulk rx submit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200245 data->hdev->name, urb, err);
246 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 kfree_skb(skb);
248 usb_free_urb(urb);
249 }
250
251 return err;
252}
253
Marcel Holtmann9c724352006-07-06 15:45:23 +0200254static inline int bfusb_recv_block(struct bfusb_data *data, int hdr, unsigned char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200256 BT_DBG("bfusb %p hdr 0x%02x data %p len %d", data, hdr, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (hdr & 0x10) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200259 BT_ERR("%s error in block", data->hdev->name);
260 if (data->reassembly)
261 kfree_skb(data->reassembly);
262 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return -EIO;
264 }
265
266 if (hdr & 0x04) {
267 struct sk_buff *skb;
268 unsigned char pkt_type;
269 int pkt_len = 0;
270
Marcel Holtmann9c724352006-07-06 15:45:23 +0200271 if (data->reassembly) {
272 BT_ERR("%s unexpected start block", data->hdev->name);
273 kfree_skb(data->reassembly);
274 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276
277 if (len < 1) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200278 BT_ERR("%s no packet type found", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return -EPROTO;
280 }
281
Marcel Holtmann9c724352006-07-06 15:45:23 +0200282 pkt_type = *buf++; len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 switch (pkt_type) {
285 case HCI_EVENT_PKT:
286 if (len >= HCI_EVENT_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200287 struct hci_event_hdr *hdr = (struct hci_event_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 pkt_len = HCI_EVENT_HDR_SIZE + hdr->plen;
289 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200290 BT_ERR("%s event block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return -EILSEQ;
292 }
293 break;
294
295 case HCI_ACLDATA_PKT:
296 if (len >= HCI_ACL_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200297 struct hci_acl_hdr *hdr = (struct hci_acl_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 pkt_len = HCI_ACL_HDR_SIZE + __le16_to_cpu(hdr->dlen);
299 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200300 BT_ERR("%s data block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return -EILSEQ;
302 }
303 break;
304
305 case HCI_SCODATA_PKT:
306 if (len >= HCI_SCO_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200307 struct hci_sco_hdr *hdr = (struct hci_sco_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 pkt_len = HCI_SCO_HDR_SIZE + hdr->dlen;
309 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200310 BT_ERR("%s audio block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return -EILSEQ;
312 }
313 break;
314 }
315
316 skb = bt_skb_alloc(pkt_len, GFP_ATOMIC);
317 if (!skb) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200318 BT_ERR("%s no memory for the packet", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return -ENOMEM;
320 }
321
Marcel Holtmann9c724352006-07-06 15:45:23 +0200322 skb->dev = (void *) data->hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700323 bt_cb(skb)->pkt_type = pkt_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Marcel Holtmann9c724352006-07-06 15:45:23 +0200325 data->reassembly = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200327 if (!data->reassembly) {
328 BT_ERR("%s unexpected continuation block", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return -EIO;
330 }
331 }
332
333 if (len > 0)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200334 memcpy(skb_put(data->reassembly, len), buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 if (hdr & 0x08) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200337 hci_recv_frame(data->reassembly);
338 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
340
341 return 0;
342}
343
David Howells7d12e782006-10-05 14:55:46 +0100344static void bfusb_rx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct sk_buff *skb = (struct sk_buff *) urb->context;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200347 struct bfusb_data *data = (struct bfusb_data *) skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned char *buf = urb->transfer_buffer;
349 int count = urb->actual_length;
350 int err, hdr, len;
351
Marcel Holtmanna418b892008-11-30 12:17:28 +0100352 BT_DBG("bfusb %p urb %p skb %p len %d", data, urb, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Marcel Holtmann9c724352006-07-06 15:45:23 +0200354 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Marcel Holtmann9c724352006-07-06 15:45:23 +0200356 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto unlock;
358
359 if (urb->status || !count)
360 goto resubmit;
361
Marcel Holtmann9c724352006-07-06 15:45:23 +0200362 data->hdev->stat.byte_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 skb_put(skb, count);
365
366 while (count) {
367 hdr = buf[0] | (buf[1] << 8);
368
369 if (hdr & 0x4000) {
370 len = 0;
371 count -= 2;
372 buf += 2;
373 } else {
374 len = (buf[2] == 0) ? 256 : buf[2];
375 count -= 3;
376 buf += 3;
377 }
378
379 if (count < len) {
380 BT_ERR("%s block extends over URB buffer ranges",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200381 data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 if ((hdr & 0xe1) == 0xc1)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200385 bfusb_recv_block(data, hdr, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 count -= len;
388 buf += len;
389 }
390
Marcel Holtmann9c724352006-07-06 15:45:23 +0200391 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 kfree_skb(skb);
393
Marcel Holtmann9c724352006-07-06 15:45:23 +0200394 bfusb_rx_submit(data, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Marcel Holtmann9c724352006-07-06 15:45:23 +0200396 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 return;
399
400resubmit:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200401 urb->dev = data->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 err = usb_submit_urb(urb, GFP_ATOMIC);
404 if (err) {
405 BT_ERR("%s bulk resubmit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200406 data->hdev->name, urb, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409unlock:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200410 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static int bfusb_open(struct hci_dev *hdev)
414{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200415 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 unsigned long flags;
417 int i, err;
418
Marcel Holtmann9c724352006-07-06 15:45:23 +0200419 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
422 return 0;
423
Marcel Holtmann9c724352006-07-06 15:45:23 +0200424 write_lock_irqsave(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Marcel Holtmann9c724352006-07-06 15:45:23 +0200426 err = bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (!err) {
428 for (i = 1; i < BFUSB_MAX_BULK_RX; i++)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200429 bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 } else {
431 clear_bit(HCI_RUNNING, &hdev->flags);
432 }
433
Marcel Holtmann9c724352006-07-06 15:45:23 +0200434 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 return err;
437}
438
439static int bfusb_flush(struct hci_dev *hdev)
440{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200441 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Marcel Holtmann9c724352006-07-06 15:45:23 +0200443 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Marcel Holtmann9c724352006-07-06 15:45:23 +0200445 skb_queue_purge(&data->transmit_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 return 0;
448}
449
450static int bfusb_close(struct hci_dev *hdev)
451{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200452 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned long flags;
454
Marcel Holtmann9c724352006-07-06 15:45:23 +0200455 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
458 return 0;
459
Marcel Holtmann9c724352006-07-06 15:45:23 +0200460 write_lock_irqsave(&data->lock, flags);
461 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Marcel Holtmann9c724352006-07-06 15:45:23 +0200463 bfusb_unlink_urbs(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 bfusb_flush(hdev);
465
466 return 0;
467}
468
469static int bfusb_send_frame(struct sk_buff *skb)
470{
471 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200472 struct bfusb_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct sk_buff *nskb;
474 unsigned char buf[3];
475 int sent = 0, size, count;
476
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700477 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 -0700478
479 if (!hdev) {
480 BT_ERR("Frame for unknown HCI device (hdev=NULL)");
481 return -ENODEV;
482 }
483
484 if (!test_bit(HCI_RUNNING, &hdev->flags))
485 return -EBUSY;
486
Marcel Holtmann9c724352006-07-06 15:45:23 +0200487 data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700489 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 case HCI_COMMAND_PKT:
491 hdev->stat.cmd_tx++;
492 break;
493 case HCI_ACLDATA_PKT:
494 hdev->stat.acl_tx++;
495 break;
496 case HCI_SCODATA_PKT:
497 hdev->stat.sco_tx++;
498 break;
499 };
500
501 /* Prepend skb with frame type */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700502 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 count = skb->len;
505
506 /* Max HCI frame size seems to be 1511 + 1 */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200507 nskb = bt_skb_alloc(count + 32, GFP_ATOMIC);
508 if (!nskb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 BT_ERR("Can't allocate memory for new packet");
510 return -ENOMEM;
511 }
512
Marcel Holtmann9c724352006-07-06 15:45:23 +0200513 nskb->dev = (void *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 while (count) {
516 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE);
517
518 buf[0] = 0xc1 | ((sent == 0) ? 0x04 : 0) | ((count == size) ? 0x08 : 0);
519 buf[1] = 0x00;
520 buf[2] = (size == BFUSB_MAX_BLOCK_SIZE) ? 0 : size;
521
522 memcpy(skb_put(nskb, 3), buf, 3);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300523 skb_copy_from_linear_data_offset(skb, sent, skb_put(nskb, size), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 sent += size;
526 count -= size;
527 }
528
529 /* Don't send frame with multiple size of bulk max packet */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200530 if ((nskb->len % data->bulk_pkt_size) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 buf[0] = 0xdd;
532 buf[1] = 0x00;
533 memcpy(skb_put(nskb, 2), buf, 2);
534 }
535
Marcel Holtmann9c724352006-07-06 15:45:23 +0200536 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Marcel Holtmann9c724352006-07-06 15:45:23 +0200538 skb_queue_tail(&data->transmit_q, nskb);
539 bfusb_tx_wakeup(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Marcel Holtmann9c724352006-07-06 15:45:23 +0200541 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 kfree_skb(skb);
544
545 return 0;
546}
547
548static void bfusb_destruct(struct hci_dev *hdev)
549{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200550 struct bfusb_data *data = hdev->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Marcel Holtmann9c724352006-07-06 15:45:23 +0200552 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Marcel Holtmann9c724352006-07-06 15:45:23 +0200554 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557static int bfusb_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
558{
559 return -ENOIOCTLCMD;
560}
561
David Woodhouse8187b4f2008-05-23 23:56:51 +0100562static int bfusb_load_firmware(struct bfusb_data *data,
563 const unsigned char *firmware, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 unsigned char *buf;
566 int err, pipe, len, size, sent = 0;
567
Marcel Holtmann9c724352006-07-06 15:45:23 +0200568 BT_DBG("bfusb %p udev %p", data, data->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 BT_INFO("BlueFRITZ! USB loading firmware");
571
Marcel Holtmann9c724352006-07-06 15:45:23 +0200572 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Marcel Holtmann9c724352006-07-06 15:45:23 +0200574 if (usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 0, 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT) < 0) {
576 BT_ERR("Can't change to loading configuration");
577 return -EBUSY;
578 }
579
Marcel Holtmann9c724352006-07-06 15:45:23 +0200580 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 buf = kmalloc(BFUSB_MAX_BLOCK_SIZE + 3, GFP_ATOMIC);
583 if (!buf) {
584 BT_ERR("Can't allocate memory chunk for firmware");
585 return -ENOMEM;
586 }
587
Marcel Holtmann9c724352006-07-06 15:45:23 +0200588 pipe = usb_sndbulkpipe(data->udev, data->bulk_out_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 while (count) {
591 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE + 3);
592
593 memcpy(buf, firmware + sent, size);
594
Marcel Holtmann9c724352006-07-06 15:45:23 +0200595 err = usb_bulk_msg(data->udev, pipe, buf, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 &len, BFUSB_BLOCK_TIMEOUT);
597
598 if (err || (len != size)) {
599 BT_ERR("Error in firmware loading");
600 goto error;
601 }
602
603 sent += size;
604 count -= size;
605 }
606
Marcel Holtmann9c724352006-07-06 15:45:23 +0200607 err = usb_bulk_msg(data->udev, pipe, NULL, 0,
608 &len, BFUSB_BLOCK_TIMEOUT);
609 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 BT_ERR("Error in null packet request");
611 goto error;
612 }
613
Marcel Holtmann9c724352006-07-06 15:45:23 +0200614 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Marcel Holtmann9c724352006-07-06 15:45:23 +0200616 err = usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
617 0, 2, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
618 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 BT_ERR("Can't change to running configuration");
620 goto error;
621 }
622
Marcel Holtmann9c724352006-07-06 15:45:23 +0200623 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 BT_INFO("BlueFRITZ! USB device ready");
626
627 kfree(buf);
628 return 0;
629
630error:
631 kfree(buf);
632
Marcel Holtmann9c724352006-07-06 15:45:23 +0200633 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Marcel Holtmann9c724352006-07-06 15:45:23 +0200635 usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 0, 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
637
638 return err;
639}
640
641static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *id)
642{
643 const struct firmware *firmware;
644 struct usb_device *udev = interface_to_usbdev(intf);
645 struct usb_host_endpoint *bulk_out_ep;
646 struct usb_host_endpoint *bulk_in_ep;
647 struct hci_dev *hdev;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200648 struct bfusb_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 BT_DBG("intf %p id %p", intf, id);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /* Check number of endpoints */
653 if (intf->cur_altsetting->desc.bNumEndpoints < 2)
654 return -EIO;
655
656 bulk_out_ep = &intf->cur_altsetting->endpoint[0];
657 bulk_in_ep = &intf->cur_altsetting->endpoint[1];
658
659 if (!bulk_out_ep || !bulk_in_ep) {
660 BT_ERR("Bulk endpoints not found");
661 goto done;
662 }
663
664 /* Initialize control structure and load firmware */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200665 data = kzalloc(sizeof(struct bfusb_data), GFP_KERNEL);
666 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 BT_ERR("Can't allocate memory for control structure");
668 goto done;
669 }
670
Marcel Holtmann9c724352006-07-06 15:45:23 +0200671 data->udev = udev;
672 data->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress;
673 data->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress;
674 data->bulk_pkt_size = le16_to_cpu(bulk_out_ep->desc.wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Marcel Holtmann9c724352006-07-06 15:45:23 +0200676 rwlock_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Marcel Holtmann9c724352006-07-06 15:45:23 +0200678 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Marcel Holtmann9c724352006-07-06 15:45:23 +0200680 skb_queue_head_init(&data->transmit_q);
681 skb_queue_head_init(&data->pending_q);
682 skb_queue_head_init(&data->completed_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (request_firmware(&firmware, "bfubase.frm", &udev->dev) < 0) {
685 BT_ERR("Firmware request failed");
686 goto error;
687 }
688
Marcel Holtmanna418b892008-11-30 12:17:28 +0100689 BT_DBG("firmware data %p size %zu", firmware->data, firmware->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Marcel Holtmann9c724352006-07-06 15:45:23 +0200691 if (bfusb_load_firmware(data, firmware->data, firmware->size) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 BT_ERR("Firmware loading failed");
693 goto release;
694 }
695
696 release_firmware(firmware);
697
698 /* Initialize and register HCI device */
699 hdev = hci_alloc_dev();
700 if (!hdev) {
701 BT_ERR("Can't allocate HCI device");
702 goto error;
703 }
704
Marcel Holtmann9c724352006-07-06 15:45:23 +0200705 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 hdev->type = HCI_USB;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200708 hdev->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 SET_HCIDEV_DEV(hdev, &intf->dev);
710
711 hdev->open = bfusb_open;
712 hdev->close = bfusb_close;
713 hdev->flush = bfusb_flush;
714 hdev->send = bfusb_send_frame;
715 hdev->destruct = bfusb_destruct;
716 hdev->ioctl = bfusb_ioctl;
717
718 hdev->owner = THIS_MODULE;
719
720 if (hci_register_dev(hdev) < 0) {
721 BT_ERR("Can't register HCI device");
722 hci_free_dev(hdev);
723 goto error;
724 }
725
Marcel Holtmann9c724352006-07-06 15:45:23 +0200726 usb_set_intfdata(intf, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 return 0;
729
730release:
731 release_firmware(firmware);
732
733error:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200734 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736done:
737 return -EIO;
738}
739
740static void bfusb_disconnect(struct usb_interface *intf)
741{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200742 struct bfusb_data *data = usb_get_intfdata(intf);
743 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 BT_DBG("intf %p", intf);
746
747 if (!hdev)
748 return;
749
750 usb_set_intfdata(intf, NULL);
751
752 bfusb_close(hdev);
753
754 if (hci_unregister_dev(hdev) < 0)
755 BT_ERR("Can't unregister HCI device %s", hdev->name);
756
757 hci_free_dev(hdev);
758}
759
760static struct usb_driver bfusb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 .name = "bfusb",
762 .probe = bfusb_probe,
763 .disconnect = bfusb_disconnect,
764 .id_table = bfusb_table,
765};
766
767static int __init bfusb_init(void)
768{
769 int err;
770
771 BT_INFO("BlueFRITZ! USB driver ver %s", VERSION);
772
Marcel Holtmann9c724352006-07-06 15:45:23 +0200773 err = usb_register(&bfusb_driver);
774 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 BT_ERR("Failed to register BlueFRITZ! USB driver");
776
777 return err;
778}
779
780static void __exit bfusb_exit(void)
781{
782 usb_deregister(&bfusb_driver);
783}
784
785module_init(bfusb_init);
786module_exit(bfusb_exit);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
789MODULE_DESCRIPTION("BlueFRITZ! USB driver ver " VERSION);
790MODULE_VERSION(VERSION);
791MODULE_LICENSE("GPL");
Marcel Holtmann23121192007-02-17 23:59:02 +0100792MODULE_FIRMWARE("bfubase.frm");