blob: ffda6c82a541e3324e49cbee9075cd749ec4868b [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
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
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
29#include <linux/sched.h>
30#include <linux/errno.h>
31#include <linux/skbuff.h>
32
33#include <linux/usb.h>
34
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Oliver Neukum7bee5492009-08-24 23:44:59 +020038#define VERSION "0.6"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020039
40static int ignore_dga;
41static int ignore_csr;
42static int ignore_sniffer;
43static int disable_scofix;
44static int force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010045
46static int reset = 1;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020047
48static struct usb_driver btusb_driver;
49
50#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010051#define BTUSB_DIGIANSWER 0x02
52#define BTUSB_CSR 0x04
53#define BTUSB_SNIFFER 0x08
54#define BTUSB_BCM92035 0x10
55#define BTUSB_BROKEN_ISOC 0x20
56#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li4770ac22011-07-01 14:02:36 +080057#define BTUSB_ATH3012 0x80
Marcel Holtmann5e23b922007-10-20 14:12:34 +020058
59static struct usb_device_id btusb_table[] = {
60 /* Generic Bluetooth USB device */
61 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
62
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090063 /* Apple MacBookPro 7,1 */
64 { USB_DEVICE(0x05ac, 0x8213) },
65
Cyril Lacoux0a79f672010-07-14 10:29:27 +040066 /* Apple iMac11,1 */
67 { USB_DEVICE(0x05ac, 0x8215) },
68
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090069 /* Apple MacBookPro6,2 */
70 { USB_DEVICE(0x05ac, 0x8218) },
71
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010072 /* Apple MacBookAir3,1, MacBookAir3,2 */
73 { USB_DEVICE(0x05ac, 0x821b) },
74
Pieter-Augustijn Van Malleghemefb14972011-09-07 02:28:10 -040075 /* Apple MacBookAir4,1 */
76 { USB_DEVICE(0x05ac, 0x821f) },
77
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030078 /* Apple MacBookPro8,2 */
79 { USB_DEVICE(0x05ac, 0x821a) },
80
Jurgen Kramer661a0d92011-09-04 18:01:42 +020081 /* Apple MacMini5,1 */
82 { USB_DEVICE(0x05ac, 0x8281) },
83
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020084 /* AVM BlueFRITZ! USB v2.0 */
85 { USB_DEVICE(0x057c, 0x3800) },
86
87 /* Bluetooth Ultraport Module from IBM */
88 { USB_DEVICE(0x04bf, 0x030a) },
89
90 /* ALPS Modules with non-standard id */
91 { USB_DEVICE(0x044e, 0x3001) },
92 { USB_DEVICE(0x044e, 0x3002) },
93
94 /* Ericsson with non-standard id */
95 { USB_DEVICE(0x0bdb, 0x1002) },
96
97 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010098 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020099
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200100 { } /* Terminating entry */
101};
102
103MODULE_DEVICE_TABLE(usb, btusb_table);
104
105static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200106 /* CSR BlueCore devices */
107 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
108
109 /* Broadcom BCM2033 without firmware */
110 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
111
Bala Shanmugambe931122010-11-26 17:35:46 +0530112 /* Atheros 3011 with sflash firmware */
113 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700114 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza39361fc2011-07-13 16:04:29 +0100115 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530116
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800117 /* Atheros AR9285 Malbec with sflash firmware */
118 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
119
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530120 /* Atheros 3012 with sflash firmware */
Steven.Li4770ac22011-07-01 14:02:36 +0800121 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530122
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800123 /* Atheros AR5BBU12 with sflash firmware */
124 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
125
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200126 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100127 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
128 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
129 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200130
131 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100132 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
133 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200134
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200135 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100136 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
137 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200138
139 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100140 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200141
142 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100143 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200144
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100145 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100146 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100147 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200148
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100149 /* Belkin F8T012 and F8T013 devices */
150 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
151 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200152
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100153 /* Asus WL-BTD202 device */
154 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
155
156 /* Kensington Bluetooth USB adapter */
157 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
158
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200159 /* RTX Telecom based adapters with buggy SCO support */
160 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
161 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
162
163 /* CONWISE Technology based adapters with buggy SCO support */
164 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
165
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200166 /* Digianswer devices */
167 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
168 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
169
170 /* CSR BlueCore Bluetooth Sniffer */
171 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
172
173 /* Frontline ComProbe Bluetooth Sniffer */
174 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
175
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200176 { } /* Terminating entry */
177};
178
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200179#define BTUSB_MAX_ISOC_FRAMES 10
180
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200181#define BTUSB_INTR_RUNNING 0
182#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200183#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200184#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300185#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200186
187struct btusb_data {
188 struct hci_dev *hdev;
189 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200190 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200191 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200192
193 spinlock_t lock;
194
195 unsigned long flags;
196
197 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200198 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200199
200 struct usb_anchor tx_anchor;
201 struct usb_anchor intr_anchor;
202 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200203 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200204 struct usb_anchor deferred;
205 int tx_in_flight;
206 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200207
208 struct usb_endpoint_descriptor *intr_ep;
209 struct usb_endpoint_descriptor *bulk_tx_ep;
210 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200211 struct usb_endpoint_descriptor *isoc_tx_ep;
212 struct usb_endpoint_descriptor *isoc_rx_ep;
213
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100214 __u8 cmdreq_type;
215
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100216 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200217 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100218 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200219};
220
Oliver Neukum7bee5492009-08-24 23:44:59 +0200221static int inc_tx(struct btusb_data *data)
222{
223 unsigned long flags;
224 int rv;
225
226 spin_lock_irqsave(&data->txlock, flags);
227 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
228 if (!rv)
229 data->tx_in_flight++;
230 spin_unlock_irqrestore(&data->txlock, flags);
231
232 return rv;
233}
234
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200235static void btusb_intr_complete(struct urb *urb)
236{
237 struct hci_dev *hdev = urb->context;
238 struct btusb_data *data = hdev->driver_data;
239 int err;
240
241 BT_DBG("%s urb %p status %d count %d", hdev->name,
242 urb, urb->status, urb->actual_length);
243
244 if (!test_bit(HCI_RUNNING, &hdev->flags))
245 return;
246
247 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200248 hdev->stat.byte_rx += urb->actual_length;
249
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200250 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
251 urb->transfer_buffer,
252 urb->actual_length) < 0) {
253 BT_ERR("%s corrupted event packet", hdev->name);
254 hdev->stat.err_rx++;
255 }
256 }
257
258 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
259 return;
260
Oliver Neukum7bee5492009-08-24 23:44:59 +0200261 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200262 usb_anchor_urb(urb, &data->intr_anchor);
263
264 err = usb_submit_urb(urb, GFP_ATOMIC);
265 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100266 if (err != -EPERM)
267 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200268 hdev->name, urb, -err);
269 usb_unanchor_urb(urb);
270 }
271}
272
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100273static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200274{
275 struct btusb_data *data = hdev->driver_data;
276 struct urb *urb;
277 unsigned char *buf;
278 unsigned int pipe;
279 int err, size;
280
281 BT_DBG("%s", hdev->name);
282
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200283 if (!data->intr_ep)
284 return -ENODEV;
285
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100286 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200287 if (!urb)
288 return -ENOMEM;
289
290 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
291
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100292 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200293 if (!buf) {
294 usb_free_urb(urb);
295 return -ENOMEM;
296 }
297
298 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
299
300 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
301 btusb_intr_complete, hdev,
302 data->intr_ep->bInterval);
303
304 urb->transfer_flags |= URB_FREE_BUFFER;
305
306 usb_anchor_urb(urb, &data->intr_anchor);
307
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100308 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200309 if (err < 0) {
310 BT_ERR("%s urb %p submission failed (%d)",
311 hdev->name, urb, -err);
312 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200313 }
314
315 usb_free_urb(urb);
316
317 return err;
318}
319
320static void btusb_bulk_complete(struct urb *urb)
321{
322 struct hci_dev *hdev = urb->context;
323 struct btusb_data *data = hdev->driver_data;
324 int err;
325
326 BT_DBG("%s urb %p status %d count %d", hdev->name,
327 urb, urb->status, urb->actual_length);
328
329 if (!test_bit(HCI_RUNNING, &hdev->flags))
330 return;
331
332 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200333 hdev->stat.byte_rx += urb->actual_length;
334
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200335 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
336 urb->transfer_buffer,
337 urb->actual_length) < 0) {
338 BT_ERR("%s corrupted ACL packet", hdev->name);
339 hdev->stat.err_rx++;
340 }
341 }
342
343 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
344 return;
345
346 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100347 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348
349 err = usb_submit_urb(urb, GFP_ATOMIC);
350 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100351 if (err != -EPERM)
352 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200353 hdev->name, urb, -err);
354 usb_unanchor_urb(urb);
355 }
356}
357
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100358static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200359{
360 struct btusb_data *data = hdev->driver_data;
361 struct urb *urb;
362 unsigned char *buf;
363 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530364 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200365
366 BT_DBG("%s", hdev->name);
367
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200368 if (!data->bulk_rx_ep)
369 return -ENODEV;
370
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100371 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372 if (!urb)
373 return -ENOMEM;
374
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100375 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200376 if (!buf) {
377 usb_free_urb(urb);
378 return -ENOMEM;
379 }
380
381 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
382
383 usb_fill_bulk_urb(urb, data->udev, pipe,
384 buf, size, btusb_bulk_complete, hdev);
385
386 urb->transfer_flags |= URB_FREE_BUFFER;
387
Oliver Neukum7bee5492009-08-24 23:44:59 +0200388 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200389 usb_anchor_urb(urb, &data->bulk_anchor);
390
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100391 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200392 if (err < 0) {
393 BT_ERR("%s urb %p submission failed (%d)",
394 hdev->name, urb, -err);
395 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200396 }
397
398 usb_free_urb(urb);
399
400 return err;
401}
402
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200403static void btusb_isoc_complete(struct urb *urb)
404{
405 struct hci_dev *hdev = urb->context;
406 struct btusb_data *data = hdev->driver_data;
407 int i, err;
408
409 BT_DBG("%s urb %p status %d count %d", hdev->name,
410 urb, urb->status, urb->actual_length);
411
412 if (!test_bit(HCI_RUNNING, &hdev->flags))
413 return;
414
415 if (urb->status == 0) {
416 for (i = 0; i < urb->number_of_packets; i++) {
417 unsigned int offset = urb->iso_frame_desc[i].offset;
418 unsigned int length = urb->iso_frame_desc[i].actual_length;
419
420 if (urb->iso_frame_desc[i].status)
421 continue;
422
423 hdev->stat.byte_rx += length;
424
425 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
426 urb->transfer_buffer + offset,
427 length) < 0) {
428 BT_ERR("%s corrupted SCO packet", hdev->name);
429 hdev->stat.err_rx++;
430 }
431 }
432 }
433
434 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
435 return;
436
437 usb_anchor_urb(urb, &data->isoc_anchor);
438
439 err = usb_submit_urb(urb, GFP_ATOMIC);
440 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100441 if (err != -EPERM)
442 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200443 hdev->name, urb, -err);
444 usb_unanchor_urb(urb);
445 }
446}
447
Jesper Juhl42b16b32011-01-17 00:09:38 +0100448static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200449{
450 int i, offset = 0;
451
452 BT_DBG("len %d mtu %d", len, mtu);
453
454 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
455 i++, offset += mtu, len -= mtu) {
456 urb->iso_frame_desc[i].offset = offset;
457 urb->iso_frame_desc[i].length = mtu;
458 }
459
460 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
461 urb->iso_frame_desc[i].offset = offset;
462 urb->iso_frame_desc[i].length = len;
463 i++;
464 }
465
466 urb->number_of_packets = i;
467}
468
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100469static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200470{
471 struct btusb_data *data = hdev->driver_data;
472 struct urb *urb;
473 unsigned char *buf;
474 unsigned int pipe;
475 int err, size;
476
477 BT_DBG("%s", hdev->name);
478
479 if (!data->isoc_rx_ep)
480 return -ENODEV;
481
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100482 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200483 if (!urb)
484 return -ENOMEM;
485
486 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
487 BTUSB_MAX_ISOC_FRAMES;
488
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100489 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200490 if (!buf) {
491 usb_free_urb(urb);
492 return -ENOMEM;
493 }
494
495 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
496
497 urb->dev = data->udev;
498 urb->pipe = pipe;
499 urb->context = hdev;
500 urb->complete = btusb_isoc_complete;
501 urb->interval = data->isoc_rx_ep->bInterval;
502
503 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
504 urb->transfer_buffer = buf;
505 urb->transfer_buffer_length = size;
506
507 __fill_isoc_descriptor(urb, size,
508 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
509
510 usb_anchor_urb(urb, &data->isoc_anchor);
511
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100512 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200513 if (err < 0) {
514 BT_ERR("%s urb %p submission failed (%d)",
515 hdev->name, urb, -err);
516 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200517 }
518
519 usb_free_urb(urb);
520
521 return err;
522}
523
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200524static void btusb_tx_complete(struct urb *urb)
525{
526 struct sk_buff *skb = urb->context;
527 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200528 struct btusb_data *data = hdev->driver_data;
529
530 BT_DBG("%s urb %p status %d count %d", hdev->name,
531 urb, urb->status, urb->actual_length);
532
533 if (!test_bit(HCI_RUNNING, &hdev->flags))
534 goto done;
535
536 if (!urb->status)
537 hdev->stat.byte_tx += urb->transfer_buffer_length;
538 else
539 hdev->stat.err_tx++;
540
541done:
542 spin_lock(&data->txlock);
543 data->tx_in_flight--;
544 spin_unlock(&data->txlock);
545
546 kfree(urb->setup_packet);
547
548 kfree_skb(skb);
549}
550
551static void btusb_isoc_tx_complete(struct urb *urb)
552{
553 struct sk_buff *skb = urb->context;
554 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200555
556 BT_DBG("%s urb %p status %d count %d", hdev->name,
557 urb, urb->status, urb->actual_length);
558
559 if (!test_bit(HCI_RUNNING, &hdev->flags))
560 goto done;
561
562 if (!urb->status)
563 hdev->stat.byte_tx += urb->transfer_buffer_length;
564 else
565 hdev->stat.err_tx++;
566
567done:
568 kfree(urb->setup_packet);
569
570 kfree_skb(skb);
571}
572
573static int btusb_open(struct hci_dev *hdev)
574{
575 struct btusb_data *data = hdev->driver_data;
576 int err;
577
578 BT_DBG("%s", hdev->name);
579
Oliver Neukum7bee5492009-08-24 23:44:59 +0200580 err = usb_autopm_get_interface(data->intf);
581 if (err < 0)
582 return err;
583
584 data->intf->needs_remote_wakeup = 1;
585
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200586 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200587 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200588
589 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200590 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200591
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100592 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100593 if (err < 0)
594 goto failed;
595
596 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200597 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100598 usb_kill_anchored_urbs(&data->intr_anchor);
599 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200600 }
601
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100602 set_bit(BTUSB_BULK_RUNNING, &data->flags);
603 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
604
Oliver Neukum7bee5492009-08-24 23:44:59 +0200605done:
606 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100607 return 0;
608
609failed:
610 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
611 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200612 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200613 return err;
614}
615
Oliver Neukum7bee5492009-08-24 23:44:59 +0200616static void btusb_stop_traffic(struct btusb_data *data)
617{
618 usb_kill_anchored_urbs(&data->intr_anchor);
619 usb_kill_anchored_urbs(&data->bulk_anchor);
620 usb_kill_anchored_urbs(&data->isoc_anchor);
621}
622
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623static int btusb_close(struct hci_dev *hdev)
624{
625 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200626 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200627
628 BT_DBG("%s", hdev->name);
629
630 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
631 return 0;
632
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200633 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800634 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200635
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200636 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200638 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200639
640 btusb_stop_traffic(data);
641 err = usb_autopm_get_interface(data->intf);
642 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100643 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200644
645 data->intf->needs_remote_wakeup = 0;
646 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100648failed:
649 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200650 return 0;
651}
652
653static int btusb_flush(struct hci_dev *hdev)
654{
655 struct btusb_data *data = hdev->driver_data;
656
657 BT_DBG("%s", hdev->name);
658
659 usb_kill_anchored_urbs(&data->tx_anchor);
660
661 return 0;
662}
663
664static int btusb_send_frame(struct sk_buff *skb)
665{
666 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
667 struct btusb_data *data = hdev->driver_data;
668 struct usb_ctrlrequest *dr;
669 struct urb *urb;
670 unsigned int pipe;
671 int err;
672
673 BT_DBG("%s", hdev->name);
674
675 if (!test_bit(HCI_RUNNING, &hdev->flags))
676 return -EBUSY;
677
678 switch (bt_cb(skb)->pkt_type) {
679 case HCI_COMMAND_PKT:
680 urb = usb_alloc_urb(0, GFP_ATOMIC);
681 if (!urb)
682 return -ENOMEM;
683
684 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
685 if (!dr) {
686 usb_free_urb(urb);
687 return -ENOMEM;
688 }
689
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100690 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200691 dr->bRequest = 0;
692 dr->wIndex = 0;
693 dr->wValue = 0;
694 dr->wLength = __cpu_to_le16(skb->len);
695
696 pipe = usb_sndctrlpipe(data->udev, 0x00);
697
698 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
699 skb->data, skb->len, btusb_tx_complete, skb);
700
701 hdev->stat.cmd_tx++;
702 break;
703
704 case HCI_ACLDATA_PKT:
Vinicius Costa Gomes8693ac92011-03-14 18:20:33 -0300705 if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 &&
706 hdev->conn_hash.le_num < 1))
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200707 return -ENODEV;
708
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200709 urb = usb_alloc_urb(0, GFP_ATOMIC);
710 if (!urb)
711 return -ENOMEM;
712
713 pipe = usb_sndbulkpipe(data->udev,
714 data->bulk_tx_ep->bEndpointAddress);
715
716 usb_fill_bulk_urb(urb, data->udev, pipe,
717 skb->data, skb->len, btusb_tx_complete, skb);
718
719 hdev->stat.acl_tx++;
720 break;
721
722 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200723 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
724 return -ENODEV;
725
726 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
727 if (!urb)
728 return -ENOMEM;
729
730 pipe = usb_sndisocpipe(data->udev,
731 data->isoc_tx_ep->bEndpointAddress);
732
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300733 usb_fill_int_urb(urb, data->udev, pipe,
734 skb->data, skb->len, btusb_isoc_tx_complete,
735 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200736
737 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200738
739 __fill_isoc_descriptor(urb, skb->len,
740 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
741
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200742 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200743 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200744
745 default:
746 return -EILSEQ;
747 }
748
Oliver Neukum7bee5492009-08-24 23:44:59 +0200749 err = inc_tx(data);
750 if (err) {
751 usb_anchor_urb(urb, &data->deferred);
752 schedule_work(&data->waker);
753 err = 0;
754 goto done;
755 }
756
757skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200758 usb_anchor_urb(urb, &data->tx_anchor);
759
760 err = usb_submit_urb(urb, GFP_ATOMIC);
761 if (err < 0) {
762 BT_ERR("%s urb %p submission failed", hdev->name, urb);
763 kfree(urb->setup_packet);
764 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200765 } else {
766 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200767 }
768
769 usb_free_urb(urb);
770
Oliver Neukum7bee5492009-08-24 23:44:59 +0200771done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200772 return err;
773}
774
775static void btusb_destruct(struct hci_dev *hdev)
776{
777 struct btusb_data *data = hdev->driver_data;
778
779 BT_DBG("%s", hdev->name);
780
781 kfree(data);
782}
783
784static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
785{
786 struct btusb_data *data = hdev->driver_data;
787
788 BT_DBG("%s evt %d", hdev->name, evt);
789
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100790 if (hdev->conn_hash.sco_num != data->sco_num) {
791 data->sco_num = hdev->conn_hash.sco_num;
792 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100793 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200794}
795
Jesper Juhl42b16b32011-01-17 00:09:38 +0100796static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200797{
798 struct btusb_data *data = hdev->driver_data;
799 struct usb_interface *intf = data->isoc;
800 struct usb_endpoint_descriptor *ep_desc;
801 int i, err;
802
803 if (!data->isoc)
804 return -ENODEV;
805
806 err = usb_set_interface(data->udev, 1, altsetting);
807 if (err < 0) {
808 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
809 return err;
810 }
811
812 data->isoc_altsetting = altsetting;
813
814 data->isoc_tx_ep = NULL;
815 data->isoc_rx_ep = NULL;
816
817 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
818 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
819
820 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
821 data->isoc_tx_ep = ep_desc;
822 continue;
823 }
824
825 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
826 data->isoc_rx_ep = ep_desc;
827 continue;
828 }
829 }
830
831 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
832 BT_ERR("%s invalid SCO descriptors", hdev->name);
833 return -ENODEV;
834 }
835
836 return 0;
837}
838
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200839static void btusb_work(struct work_struct *work)
840{
841 struct btusb_data *data = container_of(work, struct btusb_data, work);
842 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200843 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200844
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200845 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300846 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100847 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200848 if (err < 0) {
849 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
850 usb_kill_anchored_urbs(&data->isoc_anchor);
851 return;
852 }
853
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300854 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200855 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200856 if (data->isoc_altsetting != 2) {
857 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
858 usb_kill_anchored_urbs(&data->isoc_anchor);
859
860 if (__set_isoc_interface(hdev, 2) < 0)
861 return;
862 }
863
864 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100865 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200866 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
867 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100868 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200869 }
870 } else {
871 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
872 usb_kill_anchored_urbs(&data->isoc_anchor);
873
874 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300875 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100876 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200877 }
878}
879
Oliver Neukum7bee5492009-08-24 23:44:59 +0200880static void btusb_waker(struct work_struct *work)
881{
882 struct btusb_data *data = container_of(work, struct btusb_data, waker);
883 int err;
884
885 err = usb_autopm_get_interface(data->intf);
886 if (err < 0)
887 return;
888
889 usb_autopm_put_interface(data->intf);
890}
891
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200892static int btusb_probe(struct usb_interface *intf,
893 const struct usb_device_id *id)
894{
895 struct usb_endpoint_descriptor *ep_desc;
896 struct btusb_data *data;
897 struct hci_dev *hdev;
898 int i, err;
899
900 BT_DBG("intf %p id %p", intf, id);
901
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200902 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200903 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
904 return -ENODEV;
905
906 if (!id->driver_info) {
907 const struct usb_device_id *match;
908 match = usb_match_id(intf, blacklist_table);
909 if (match)
910 id = match;
911 }
912
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200913 if (id->driver_info == BTUSB_IGNORE)
914 return -ENODEV;
915
916 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
917 return -ENODEV;
918
919 if (ignore_csr && id->driver_info & BTUSB_CSR)
920 return -ENODEV;
921
922 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
923 return -ENODEV;
924
Steven.Li4770ac22011-07-01 14:02:36 +0800925 if (id->driver_info & BTUSB_ATH3012) {
926 struct usb_device *udev = interface_to_usbdev(intf);
927
928 /* Old firmware would otherwise let ath3k driver load
929 * patch and sysconfig files */
930 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
931 return -ENODEV;
932 }
933
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200934 data = kzalloc(sizeof(*data), GFP_KERNEL);
935 if (!data)
936 return -ENOMEM;
937
938 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
939 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
940
941 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
942 data->intr_ep = ep_desc;
943 continue;
944 }
945
946 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
947 data->bulk_tx_ep = ep_desc;
948 continue;
949 }
950
951 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
952 data->bulk_rx_ep = ep_desc;
953 continue;
954 }
955 }
956
957 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
958 kfree(data);
959 return -ENODEV;
960 }
961
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100962 data->cmdreq_type = USB_TYPE_CLASS;
963
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200964 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200965 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200966
967 spin_lock_init(&data->lock);
968
969 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200970 INIT_WORK(&data->waker, btusb_waker);
971 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200972
973 init_usb_anchor(&data->tx_anchor);
974 init_usb_anchor(&data->intr_anchor);
975 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200976 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200977 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200978
979 hdev = hci_alloc_dev();
980 if (!hdev) {
981 kfree(data);
982 return -ENOMEM;
983 }
984
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100985 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200986 hdev->driver_data = data;
987
988 data->hdev = hdev;
989
990 SET_HCIDEV_DEV(hdev, &intf->dev);
991
992 hdev->open = btusb_open;
993 hdev->close = btusb_close;
994 hdev->flush = btusb_flush;
995 hdev->send = btusb_send_frame;
996 hdev->destruct = btusb_destruct;
997 hdev->notify = btusb_notify;
998
999 hdev->owner = THIS_MODULE;
1000
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001001 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001002 data->isoc = usb_ifnum_to_if(data->udev, 1);
1003
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001004 if (!reset)
1005 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001006
1007 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1008 if (!disable_scofix)
1009 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1010 }
1011
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001012 if (id->driver_info & BTUSB_BROKEN_ISOC)
1013 data->isoc = NULL;
1014
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001015 if (id->driver_info & BTUSB_DIGIANSWER) {
1016 data->cmdreq_type = USB_TYPE_VENDOR;
1017 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1018 }
1019
1020 if (id->driver_info & BTUSB_CSR) {
1021 struct usb_device *udev = data->udev;
1022
1023 /* Old firmware would otherwise execute USB reset */
1024 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1025 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1026 }
1027
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001028 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001029 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001030
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001031 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001032 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1033 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001034
1035 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001036 }
1037
1038 if (id->driver_info & BTUSB_BCM92035) {
1039 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1040 struct sk_buff *skb;
1041
1042 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1043 if (skb) {
1044 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1045 skb_queue_tail(&hdev->driver_init, skb);
1046 }
1047 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001048
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001049 if (data->isoc) {
1050 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001051 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001052 if (err < 0) {
1053 hci_free_dev(hdev);
1054 kfree(data);
1055 return err;
1056 }
1057 }
1058
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001059 err = hci_register_dev(hdev);
1060 if (err < 0) {
1061 hci_free_dev(hdev);
1062 kfree(data);
1063 return err;
1064 }
1065
1066 usb_set_intfdata(intf, data);
1067
1068 return 0;
1069}
1070
1071static void btusb_disconnect(struct usb_interface *intf)
1072{
1073 struct btusb_data *data = usb_get_intfdata(intf);
1074 struct hci_dev *hdev;
1075
1076 BT_DBG("intf %p", intf);
1077
1078 if (!data)
1079 return;
1080
1081 hdev = data->hdev;
1082
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001083 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001084
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001085 usb_set_intfdata(data->intf, NULL);
1086
1087 if (data->isoc)
1088 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001089
1090 hci_unregister_dev(hdev);
1091
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001092 if (intf == data->isoc)
1093 usb_driver_release_interface(&btusb_driver, data->intf);
1094 else if (data->isoc)
1095 usb_driver_release_interface(&btusb_driver, data->isoc);
1096
1097 __hci_dev_put(hdev);
1098
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001099 hci_free_dev(hdev);
1100}
1101
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001103static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1104{
1105 struct btusb_data *data = usb_get_intfdata(intf);
1106
1107 BT_DBG("intf %p", intf);
1108
1109 if (data->suspend_count++)
1110 return 0;
1111
Oliver Neukum7bee5492009-08-24 23:44:59 +02001112 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001113 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001114 set_bit(BTUSB_SUSPENDING, &data->flags);
1115 spin_unlock_irq(&data->txlock);
1116 } else {
1117 spin_unlock_irq(&data->txlock);
1118 data->suspend_count--;
1119 return -EBUSY;
1120 }
1121
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001122 cancel_work_sync(&data->work);
1123
Oliver Neukum7bee5492009-08-24 23:44:59 +02001124 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001125 usb_kill_anchored_urbs(&data->tx_anchor);
1126
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001127 return 0;
1128}
1129
Oliver Neukum7bee5492009-08-24 23:44:59 +02001130static void play_deferred(struct btusb_data *data)
1131{
1132 struct urb *urb;
1133 int err;
1134
1135 while ((urb = usb_get_from_anchor(&data->deferred))) {
1136 err = usb_submit_urb(urb, GFP_ATOMIC);
1137 if (err < 0)
1138 break;
1139
1140 data->tx_in_flight++;
1141 }
1142 usb_scuttle_anchored_urbs(&data->deferred);
1143}
1144
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001145static int btusb_resume(struct usb_interface *intf)
1146{
1147 struct btusb_data *data = usb_get_intfdata(intf);
1148 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001149 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001150
1151 BT_DBG("intf %p", intf);
1152
1153 if (--data->suspend_count)
1154 return 0;
1155
1156 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001157 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001158
1159 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1160 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1161 if (err < 0) {
1162 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001163 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001164 }
1165 }
1166
1167 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001168 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1169 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001170 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001171 goto failed;
1172 }
1173
1174 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001175 }
1176
1177 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1178 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1179 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1180 else
1181 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1182 }
1183
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184 spin_lock_irq(&data->txlock);
1185 play_deferred(data);
1186 clear_bit(BTUSB_SUSPENDING, &data->flags);
1187 spin_unlock_irq(&data->txlock);
1188 schedule_work(&data->work);
1189
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001190 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001191
1192failed:
1193 usb_scuttle_anchored_urbs(&data->deferred);
1194done:
1195 spin_lock_irq(&data->txlock);
1196 clear_bit(BTUSB_SUSPENDING, &data->flags);
1197 spin_unlock_irq(&data->txlock);
1198
1199 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001200}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001201#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001202
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001203static struct usb_driver btusb_driver = {
1204 .name = "btusb",
1205 .probe = btusb_probe,
1206 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001207#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001208 .suspend = btusb_suspend,
1209 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001210#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001211 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001212 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001213};
1214
1215static int __init btusb_init(void)
1216{
1217 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1218
1219 return usb_register(&btusb_driver);
1220}
1221
1222static void __exit btusb_exit(void)
1223{
1224 usb_deregister(&btusb_driver);
1225}
1226
1227module_init(btusb_init);
1228module_exit(btusb_exit);
1229
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001230module_param(ignore_dga, bool, 0644);
1231MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1232
1233module_param(ignore_csr, bool, 0644);
1234MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1235
1236module_param(ignore_sniffer, bool, 0644);
1237MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1238
1239module_param(disable_scofix, bool, 0644);
1240MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1241
1242module_param(force_scofix, bool, 0644);
1243MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1244
1245module_param(reset, bool, 0644);
1246MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1247
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001248MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1249MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1250MODULE_VERSION(VERSION);
1251MODULE_LICENSE("GPL");