blob: 31386998c9a7b4159f04194f2125ee10d73cc920 [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
Marcel Holtmann9712d592013-10-11 07:46:19 -070045static const struct usb_device_id bfusb_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 /* 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);
Wei Yongjunb1fb0682009-02-25 18:09:33 +0800260 kfree_skb(data->reassembly);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200261 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -EIO;
263 }
264
265 if (hdr & 0x04) {
266 struct sk_buff *skb;
267 unsigned char pkt_type;
268 int pkt_len = 0;
269
Marcel Holtmann9c724352006-07-06 15:45:23 +0200270 if (data->reassembly) {
271 BT_ERR("%s unexpected start block", data->hdev->name);
272 kfree_skb(data->reassembly);
273 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
275
276 if (len < 1) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200277 BT_ERR("%s no packet type found", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return -EPROTO;
279 }
280
Marcel Holtmann9c724352006-07-06 15:45:23 +0200281 pkt_type = *buf++; len--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 switch (pkt_type) {
284 case HCI_EVENT_PKT:
285 if (len >= HCI_EVENT_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200286 struct hci_event_hdr *hdr = (struct hci_event_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 pkt_len = HCI_EVENT_HDR_SIZE + hdr->plen;
288 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200289 BT_ERR("%s event block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return -EILSEQ;
291 }
292 break;
293
294 case HCI_ACLDATA_PKT:
295 if (len >= HCI_ACL_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200296 struct hci_acl_hdr *hdr = (struct hci_acl_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 pkt_len = HCI_ACL_HDR_SIZE + __le16_to_cpu(hdr->dlen);
298 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200299 BT_ERR("%s data block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return -EILSEQ;
301 }
302 break;
303
304 case HCI_SCODATA_PKT:
305 if (len >= HCI_SCO_HDR_SIZE) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200306 struct hci_sco_hdr *hdr = (struct hci_sco_hdr *) buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 pkt_len = HCI_SCO_HDR_SIZE + hdr->dlen;
308 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200309 BT_ERR("%s audio block is too short", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -EILSEQ;
311 }
312 break;
313 }
314
315 skb = bt_skb_alloc(pkt_len, GFP_ATOMIC);
316 if (!skb) {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200317 BT_ERR("%s no memory for the packet", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return -ENOMEM;
319 }
320
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700321 bt_cb(skb)->pkt_type = pkt_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Marcel Holtmann9c724352006-07-06 15:45:23 +0200323 data->reassembly = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 } else {
Marcel Holtmann9c724352006-07-06 15:45:23 +0200325 if (!data->reassembly) {
326 BT_ERR("%s unexpected continuation block", data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return -EIO;
328 }
329 }
330
331 if (len > 0)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200332 memcpy(skb_put(data->reassembly, len), buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 if (hdr & 0x08) {
Marcel Holtmanne1a26172013-10-10 16:52:43 -0700335 hci_recv_frame(data->hdev, data->reassembly);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200336 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338
339 return 0;
340}
341
David Howells7d12e782006-10-05 14:55:46 +0100342static void bfusb_rx_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct sk_buff *skb = (struct sk_buff *) urb->context;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200345 struct bfusb_data *data = (struct bfusb_data *) skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 unsigned char *buf = urb->transfer_buffer;
347 int count = urb->actual_length;
348 int err, hdr, len;
349
Marcel Holtmanna418b892008-11-30 12:17:28 +0100350 BT_DBG("bfusb %p urb %p skb %p len %d", data, urb, skb, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Marcel Holtmann9c724352006-07-06 15:45:23 +0200352 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Marcel Holtmann9c724352006-07-06 15:45:23 +0200354 if (!test_bit(HCI_RUNNING, &data->hdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto unlock;
356
357 if (urb->status || !count)
358 goto resubmit;
359
Marcel Holtmann9c724352006-07-06 15:45:23 +0200360 data->hdev->stat.byte_rx += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 skb_put(skb, count);
363
364 while (count) {
365 hdr = buf[0] | (buf[1] << 8);
366
367 if (hdr & 0x4000) {
368 len = 0;
369 count -= 2;
370 buf += 2;
371 } else {
372 len = (buf[2] == 0) ? 256 : buf[2];
373 count -= 3;
374 buf += 3;
375 }
376
377 if (count < len) {
378 BT_ERR("%s block extends over URB buffer ranges",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200379 data->hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 if ((hdr & 0xe1) == 0xc1)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200383 bfusb_recv_block(data, hdr, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 count -= len;
386 buf += len;
387 }
388
Marcel Holtmann9c724352006-07-06 15:45:23 +0200389 skb_unlink(skb, &data->pending_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 kfree_skb(skb);
391
Marcel Holtmann9c724352006-07-06 15:45:23 +0200392 bfusb_rx_submit(data, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Marcel Holtmann9c724352006-07-06 15:45:23 +0200394 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 return;
397
398resubmit:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200399 urb->dev = data->udev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 err = usb_submit_urb(urb, GFP_ATOMIC);
402 if (err) {
403 BT_ERR("%s bulk resubmit failed urb %p err %d",
Marcel Holtmann9c724352006-07-06 15:45:23 +0200404 data->hdev->name, urb, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
407unlock:
Marcel Holtmann9c724352006-07-06 15:45:23 +0200408 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411static int bfusb_open(struct hci_dev *hdev)
412{
David Herrmann155961e2012-02-09 21:58:32 +0100413 struct bfusb_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 unsigned long flags;
415 int i, err;
416
Marcel Holtmann9c724352006-07-06 15:45:23 +0200417 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
420 return 0;
421
Marcel Holtmann9c724352006-07-06 15:45:23 +0200422 write_lock_irqsave(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Marcel Holtmann9c724352006-07-06 15:45:23 +0200424 err = bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (!err) {
426 for (i = 1; i < BFUSB_MAX_BULK_RX; i++)
Marcel Holtmann9c724352006-07-06 15:45:23 +0200427 bfusb_rx_submit(data, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 } else {
429 clear_bit(HCI_RUNNING, &hdev->flags);
430 }
431
Marcel Holtmann9c724352006-07-06 15:45:23 +0200432 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 return err;
435}
436
437static int bfusb_flush(struct hci_dev *hdev)
438{
David Herrmann155961e2012-02-09 21:58:32 +0100439 struct bfusb_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Marcel Holtmann9c724352006-07-06 15:45:23 +0200441 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Marcel Holtmann9c724352006-07-06 15:45:23 +0200443 skb_queue_purge(&data->transmit_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 return 0;
446}
447
448static int bfusb_close(struct hci_dev *hdev)
449{
David Herrmann155961e2012-02-09 21:58:32 +0100450 struct bfusb_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 unsigned long flags;
452
Marcel Holtmann9c724352006-07-06 15:45:23 +0200453 BT_DBG("hdev %p bfusb %p", hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
456 return 0;
457
Marcel Holtmann9c724352006-07-06 15:45:23 +0200458 write_lock_irqsave(&data->lock, flags);
459 write_unlock_irqrestore(&data->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Marcel Holtmann9c724352006-07-06 15:45:23 +0200461 bfusb_unlink_urbs(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 bfusb_flush(hdev);
463
464 return 0;
465}
466
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700467static int bfusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Marcel Holtmannaae26272013-10-11 07:00:57 -0700469 struct bfusb_data *data = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct sk_buff *nskb;
471 unsigned char buf[3];
472 int sent = 0, size, count;
473
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700474 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 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (!test_bit(HCI_RUNNING, &hdev->flags))
477 return -EBUSY;
478
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700479 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 case HCI_COMMAND_PKT:
481 hdev->stat.cmd_tx++;
482 break;
483 case HCI_ACLDATA_PKT:
484 hdev->stat.acl_tx++;
485 break;
486 case HCI_SCODATA_PKT:
487 hdev->stat.sco_tx++;
488 break;
489 };
490
491 /* Prepend skb with frame type */
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700492 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 count = skb->len;
495
496 /* Max HCI frame size seems to be 1511 + 1 */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200497 nskb = bt_skb_alloc(count + 32, GFP_ATOMIC);
498 if (!nskb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 BT_ERR("Can't allocate memory for new packet");
500 return -ENOMEM;
501 }
502
Marcel Holtmann9c724352006-07-06 15:45:23 +0200503 nskb->dev = (void *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 while (count) {
506 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE);
507
508 buf[0] = 0xc1 | ((sent == 0) ? 0x04 : 0) | ((count == size) ? 0x08 : 0);
509 buf[1] = 0x00;
510 buf[2] = (size == BFUSB_MAX_BLOCK_SIZE) ? 0 : size;
511
512 memcpy(skb_put(nskb, 3), buf, 3);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300513 skb_copy_from_linear_data_offset(skb, sent, skb_put(nskb, size), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 sent += size;
516 count -= size;
517 }
518
519 /* Don't send frame with multiple size of bulk max packet */
Marcel Holtmann9c724352006-07-06 15:45:23 +0200520 if ((nskb->len % data->bulk_pkt_size) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 buf[0] = 0xdd;
522 buf[1] = 0x00;
523 memcpy(skb_put(nskb, 2), buf, 2);
524 }
525
Marcel Holtmann9c724352006-07-06 15:45:23 +0200526 read_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Marcel Holtmann9c724352006-07-06 15:45:23 +0200528 skb_queue_tail(&data->transmit_q, nskb);
529 bfusb_tx_wakeup(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Marcel Holtmann9c724352006-07-06 15:45:23 +0200531 read_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 kfree_skb(skb);
534
535 return 0;
536}
537
David Woodhouse8187b4f2008-05-23 23:56:51 +0100538static int bfusb_load_firmware(struct bfusb_data *data,
539 const unsigned char *firmware, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 unsigned char *buf;
542 int err, pipe, len, size, sent = 0;
543
Marcel Holtmann9c724352006-07-06 15:45:23 +0200544 BT_DBG("bfusb %p udev %p", data, data->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 BT_INFO("BlueFRITZ! USB loading firmware");
547
David Herrmann7f103a02011-10-26 11:22:46 +0200548 buf = kmalloc(BFUSB_MAX_BLOCK_SIZE + 3, GFP_KERNEL);
549 if (!buf) {
550 BT_ERR("Can't allocate memory chunk for firmware");
551 return -ENOMEM;
552 }
553
Marcel Holtmann9c724352006-07-06 15:45:23 +0200554 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Marcel Holtmann9c724352006-07-06 15:45:23 +0200556 if (usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 0, 1, 0, NULL, 0, USB_CTRL_SET_TIMEOUT) < 0) {
558 BT_ERR("Can't change to loading configuration");
David Herrmann7f103a02011-10-26 11:22:46 +0200559 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -EBUSY;
561 }
562
Marcel Holtmann9c724352006-07-06 15:45:23 +0200563 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Marcel Holtmann9c724352006-07-06 15:45:23 +0200565 pipe = usb_sndbulkpipe(data->udev, data->bulk_out_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 while (count) {
568 size = min_t(uint, count, BFUSB_MAX_BLOCK_SIZE + 3);
569
570 memcpy(buf, firmware + sent, size);
571
Marcel Holtmann9c724352006-07-06 15:45:23 +0200572 err = usb_bulk_msg(data->udev, pipe, buf, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 &len, BFUSB_BLOCK_TIMEOUT);
574
575 if (err || (len != size)) {
576 BT_ERR("Error in firmware loading");
577 goto error;
578 }
579
580 sent += size;
581 count -= size;
582 }
583
Marcel Holtmann9c724352006-07-06 15:45:23 +0200584 err = usb_bulk_msg(data->udev, pipe, NULL, 0,
585 &len, BFUSB_BLOCK_TIMEOUT);
586 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 BT_ERR("Error in null packet request");
588 goto error;
589 }
590
Marcel Holtmann9c724352006-07-06 15:45:23 +0200591 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Marcel Holtmann9c724352006-07-06 15:45:23 +0200593 err = usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
594 0, 2, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
595 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 BT_ERR("Can't change to running configuration");
597 goto error;
598 }
599
Marcel Holtmann9c724352006-07-06 15:45:23 +0200600 data->udev->toggle[0] = data->udev->toggle[1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 BT_INFO("BlueFRITZ! USB device ready");
603
604 kfree(buf);
605 return 0;
606
607error:
608 kfree(buf);
609
Marcel Holtmann9c724352006-07-06 15:45:23 +0200610 pipe = usb_sndctrlpipe(data->udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Marcel Holtmann9c724352006-07-06 15:45:23 +0200612 usb_control_msg(data->udev, pipe, USB_REQ_SET_CONFIGURATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 0, 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
614
615 return err;
616}
617
618static int bfusb_probe(struct usb_interface *intf, const struct usb_device_id *id)
619{
620 const struct firmware *firmware;
621 struct usb_device *udev = interface_to_usbdev(intf);
622 struct usb_host_endpoint *bulk_out_ep;
623 struct usb_host_endpoint *bulk_in_ep;
624 struct hci_dev *hdev;
Marcel Holtmann9c724352006-07-06 15:45:23 +0200625 struct bfusb_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 BT_DBG("intf %p id %p", intf, id);
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* Check number of endpoints */
630 if (intf->cur_altsetting->desc.bNumEndpoints < 2)
631 return -EIO;
632
633 bulk_out_ep = &intf->cur_altsetting->endpoint[0];
634 bulk_in_ep = &intf->cur_altsetting->endpoint[1];
635
636 if (!bulk_out_ep || !bulk_in_ep) {
637 BT_ERR("Bulk endpoints not found");
638 goto done;
639 }
640
641 /* Initialize control structure and load firmware */
Sachin Kamat0213cd82012-07-27 12:38:32 +0530642 data = devm_kzalloc(&intf->dev, sizeof(struct bfusb_data), GFP_KERNEL);
Marcel Holtmann9c724352006-07-06 15:45:23 +0200643 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 BT_ERR("Can't allocate memory for control structure");
645 goto done;
646 }
647
Marcel Holtmann9c724352006-07-06 15:45:23 +0200648 data->udev = udev;
649 data->bulk_in_ep = bulk_in_ep->desc.bEndpointAddress;
650 data->bulk_out_ep = bulk_out_ep->desc.bEndpointAddress;
651 data->bulk_pkt_size = le16_to_cpu(bulk_out_ep->desc.wMaxPacketSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Marcel Holtmann9c724352006-07-06 15:45:23 +0200653 rwlock_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Marcel Holtmann9c724352006-07-06 15:45:23 +0200655 data->reassembly = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Marcel Holtmann9c724352006-07-06 15:45:23 +0200657 skb_queue_head_init(&data->transmit_q);
658 skb_queue_head_init(&data->pending_q);
659 skb_queue_head_init(&data->completed_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 if (request_firmware(&firmware, "bfubase.frm", &udev->dev) < 0) {
662 BT_ERR("Firmware request failed");
Sachin Kamat0213cd82012-07-27 12:38:32 +0530663 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Marcel Holtmanna418b892008-11-30 12:17:28 +0100666 BT_DBG("firmware data %p size %zu", firmware->data, firmware->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Marcel Holtmann9c724352006-07-06 15:45:23 +0200668 if (bfusb_load_firmware(data, firmware->data, firmware->size) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 BT_ERR("Firmware loading failed");
670 goto release;
671 }
672
673 release_firmware(firmware);
674
675 /* Initialize and register HCI device */
676 hdev = hci_alloc_dev();
677 if (!hdev) {
678 BT_ERR("Can't allocate HCI device");
Sachin Kamat0213cd82012-07-27 12:38:32 +0530679 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
Marcel Holtmann9c724352006-07-06 15:45:23 +0200682 data->hdev = hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100684 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100685 hci_set_drvdata(hdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 SET_HCIDEV_DEV(hdev, &intf->dev);
687
Marcel Holtmann19cf55a2013-10-10 10:50:00 -0700688 hdev->open = bfusb_open;
689 hdev->close = bfusb_close;
690 hdev->flush = bfusb_flush;
691 hdev->send = bfusb_send_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (hci_register_dev(hdev) < 0) {
694 BT_ERR("Can't register HCI device");
695 hci_free_dev(hdev);
Sachin Kamat0213cd82012-07-27 12:38:32 +0530696 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Marcel Holtmann9c724352006-07-06 15:45:23 +0200699 usb_set_intfdata(intf, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 return 0;
702
703release:
704 release_firmware(firmware);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706done:
707 return -EIO;
708}
709
710static void bfusb_disconnect(struct usb_interface *intf)
711{
Marcel Holtmann9c724352006-07-06 15:45:23 +0200712 struct bfusb_data *data = usb_get_intfdata(intf);
713 struct hci_dev *hdev = data->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 BT_DBG("intf %p", intf);
716
717 if (!hdev)
718 return;
719
720 usb_set_intfdata(intf, NULL);
721
722 bfusb_close(hdev);
723
David Herrmann13ea4012011-10-26 10:43:18 +0200724 hci_unregister_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 hci_free_dev(hdev);
726}
727
728static struct usb_driver bfusb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 .name = "bfusb",
730 .probe = bfusb_probe,
731 .disconnect = bfusb_disconnect,
732 .id_table = bfusb_table,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -0700733 .disable_hub_initiated_lpm = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734};
735
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -0800736module_usb_driver(bfusb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
739MODULE_DESCRIPTION("BlueFRITZ! USB driver ver " VERSION);
740MODULE_VERSION(VERSION);
741MODULE_LICENSE("GPL");
Marcel Holtmann23121192007-02-17 23:59:02 +0100742MODULE_FIRMWARE("bfubase.frm");