blob: c2de8951e3fbe11ab876df9c12705548c0fead42 [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
Marcel Holtmann5e23b922007-10-20 14:12:34 +020057
58static struct usb_device_id btusb_table[] = {
59 /* Generic Bluetooth USB device */
60 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
61
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090062 /* Apple MacBookPro 7,1 */
63 { USB_DEVICE(0x05ac, 0x8213) },
64
Cyril Lacoux0a79f672010-07-14 10:29:27 +040065 /* Apple iMac11,1 */
66 { USB_DEVICE(0x05ac, 0x8215) },
67
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090068 /* Apple MacBookPro6,2 */
69 { USB_DEVICE(0x05ac, 0x8218) },
70
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010071 /* Apple MacBookAir3,1, MacBookAir3,2 */
72 { USB_DEVICE(0x05ac, 0x821b) },
73
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030074 /* Apple MacBookPro8,2 */
75 { USB_DEVICE(0x05ac, 0x821a) },
76
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020077 /* AVM BlueFRITZ! USB v2.0 */
78 { USB_DEVICE(0x057c, 0x3800) },
79
80 /* Bluetooth Ultraport Module from IBM */
81 { USB_DEVICE(0x04bf, 0x030a) },
82
83 /* ALPS Modules with non-standard id */
84 { USB_DEVICE(0x044e, 0x3001) },
85 { USB_DEVICE(0x044e, 0x3002) },
86
87 /* Ericsson with non-standard id */
88 { USB_DEVICE(0x0bdb, 0x1002) },
89
90 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010091 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020092
Marcel Holtmann5e23b922007-10-20 14:12:34 +020093 { } /* Terminating entry */
94};
95
96MODULE_DEVICE_TABLE(usb, btusb_table);
97
98static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020099 /* CSR BlueCore devices */
100 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
101
102 /* Broadcom BCM2033 without firmware */
103 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
104
Bala Shanmugambe931122010-11-26 17:35:46 +0530105 /* Atheros 3011 with sflash firmware */
106 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700107 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530108
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800109 /* Atheros AR9285 Malbec with sflash firmware */
110 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
111
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530112 /* Atheros 3012 with sflash firmware */
113 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_IGNORE },
114
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800115 /* Atheros AR5BBU12 with sflash firmware */
116 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
117
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200118 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100119 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
120 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
121 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200122
123 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100124 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
125 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200126
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200127 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100128 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
129 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200130
131 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100132 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200133
134 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100135 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200136
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100137 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100138 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100139 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200140
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100141 /* Belkin F8T012 and F8T013 devices */
142 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
143 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200144
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100145 /* Asus WL-BTD202 device */
146 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
147
148 /* Kensington Bluetooth USB adapter */
149 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
150
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200151 /* RTX Telecom based adapters with buggy SCO support */
152 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
153 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
154
155 /* CONWISE Technology based adapters with buggy SCO support */
156 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
157
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200158 /* Digianswer devices */
159 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
160 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
161
162 /* CSR BlueCore Bluetooth Sniffer */
163 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
164
165 /* Frontline ComProbe Bluetooth Sniffer */
166 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
167
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200168 { } /* Terminating entry */
169};
170
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200171#define BTUSB_MAX_ISOC_FRAMES 10
172
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200173#define BTUSB_INTR_RUNNING 0
174#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200175#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200176#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300177#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200178
179struct btusb_data {
180 struct hci_dev *hdev;
181 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200182 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200183 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200184
185 spinlock_t lock;
186
187 unsigned long flags;
188
189 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200190 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200191
192 struct usb_anchor tx_anchor;
193 struct usb_anchor intr_anchor;
194 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200195 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200196 struct usb_anchor deferred;
197 int tx_in_flight;
198 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200199
200 struct usb_endpoint_descriptor *intr_ep;
201 struct usb_endpoint_descriptor *bulk_tx_ep;
202 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200203 struct usb_endpoint_descriptor *isoc_tx_ep;
204 struct usb_endpoint_descriptor *isoc_rx_ep;
205
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100206 __u8 cmdreq_type;
207
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100208 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200209 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100210 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200211};
212
Oliver Neukum7bee5492009-08-24 23:44:59 +0200213static int inc_tx(struct btusb_data *data)
214{
215 unsigned long flags;
216 int rv;
217
218 spin_lock_irqsave(&data->txlock, flags);
219 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
220 if (!rv)
221 data->tx_in_flight++;
222 spin_unlock_irqrestore(&data->txlock, flags);
223
224 return rv;
225}
226
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200227static void btusb_intr_complete(struct urb *urb)
228{
229 struct hci_dev *hdev = urb->context;
230 struct btusb_data *data = hdev->driver_data;
231 int err;
232
233 BT_DBG("%s urb %p status %d count %d", hdev->name,
234 urb, urb->status, urb->actual_length);
235
236 if (!test_bit(HCI_RUNNING, &hdev->flags))
237 return;
238
239 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200240 hdev->stat.byte_rx += urb->actual_length;
241
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200242 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
243 urb->transfer_buffer,
244 urb->actual_length) < 0) {
245 BT_ERR("%s corrupted event packet", hdev->name);
246 hdev->stat.err_rx++;
247 }
248 }
249
250 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
251 return;
252
Oliver Neukum7bee5492009-08-24 23:44:59 +0200253 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200254 usb_anchor_urb(urb, &data->intr_anchor);
255
256 err = usb_submit_urb(urb, GFP_ATOMIC);
257 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100258 if (err != -EPERM)
259 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200260 hdev->name, urb, -err);
261 usb_unanchor_urb(urb);
262 }
263}
264
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100265static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200266{
267 struct btusb_data *data = hdev->driver_data;
268 struct urb *urb;
269 unsigned char *buf;
270 unsigned int pipe;
271 int err, size;
272
273 BT_DBG("%s", hdev->name);
274
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200275 if (!data->intr_ep)
276 return -ENODEV;
277
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100278 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200279 if (!urb)
280 return -ENOMEM;
281
282 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
283
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100284 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200285 if (!buf) {
286 usb_free_urb(urb);
287 return -ENOMEM;
288 }
289
290 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
291
292 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
293 btusb_intr_complete, hdev,
294 data->intr_ep->bInterval);
295
296 urb->transfer_flags |= URB_FREE_BUFFER;
297
298 usb_anchor_urb(urb, &data->intr_anchor);
299
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100300 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200301 if (err < 0) {
302 BT_ERR("%s urb %p submission failed (%d)",
303 hdev->name, urb, -err);
304 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200305 }
306
307 usb_free_urb(urb);
308
309 return err;
310}
311
312static void btusb_bulk_complete(struct urb *urb)
313{
314 struct hci_dev *hdev = urb->context;
315 struct btusb_data *data = hdev->driver_data;
316 int err;
317
318 BT_DBG("%s urb %p status %d count %d", hdev->name,
319 urb, urb->status, urb->actual_length);
320
321 if (!test_bit(HCI_RUNNING, &hdev->flags))
322 return;
323
324 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200325 hdev->stat.byte_rx += urb->actual_length;
326
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200327 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
328 urb->transfer_buffer,
329 urb->actual_length) < 0) {
330 BT_ERR("%s corrupted ACL packet", hdev->name);
331 hdev->stat.err_rx++;
332 }
333 }
334
335 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
336 return;
337
338 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100339 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200340
341 err = usb_submit_urb(urb, GFP_ATOMIC);
342 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100343 if (err != -EPERM)
344 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200345 hdev->name, urb, -err);
346 usb_unanchor_urb(urb);
347 }
348}
349
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100350static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200351{
352 struct btusb_data *data = hdev->driver_data;
353 struct urb *urb;
354 unsigned char *buf;
355 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530356 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200357
358 BT_DBG("%s", hdev->name);
359
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200360 if (!data->bulk_rx_ep)
361 return -ENODEV;
362
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100363 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200364 if (!urb)
365 return -ENOMEM;
366
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100367 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200368 if (!buf) {
369 usb_free_urb(urb);
370 return -ENOMEM;
371 }
372
373 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
374
375 usb_fill_bulk_urb(urb, data->udev, pipe,
376 buf, size, btusb_bulk_complete, hdev);
377
378 urb->transfer_flags |= URB_FREE_BUFFER;
379
Oliver Neukum7bee5492009-08-24 23:44:59 +0200380 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200381 usb_anchor_urb(urb, &data->bulk_anchor);
382
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100383 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200384 if (err < 0) {
385 BT_ERR("%s urb %p submission failed (%d)",
386 hdev->name, urb, -err);
387 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200388 }
389
390 usb_free_urb(urb);
391
392 return err;
393}
394
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200395static void btusb_isoc_complete(struct urb *urb)
396{
397 struct hci_dev *hdev = urb->context;
398 struct btusb_data *data = hdev->driver_data;
399 int i, err;
400
401 BT_DBG("%s urb %p status %d count %d", hdev->name,
402 urb, urb->status, urb->actual_length);
403
404 if (!test_bit(HCI_RUNNING, &hdev->flags))
405 return;
406
407 if (urb->status == 0) {
408 for (i = 0; i < urb->number_of_packets; i++) {
409 unsigned int offset = urb->iso_frame_desc[i].offset;
410 unsigned int length = urb->iso_frame_desc[i].actual_length;
411
412 if (urb->iso_frame_desc[i].status)
413 continue;
414
415 hdev->stat.byte_rx += length;
416
417 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
418 urb->transfer_buffer + offset,
419 length) < 0) {
420 BT_ERR("%s corrupted SCO packet", hdev->name);
421 hdev->stat.err_rx++;
422 }
423 }
424 }
425
426 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
427 return;
428
429 usb_anchor_urb(urb, &data->isoc_anchor);
430
431 err = usb_submit_urb(urb, GFP_ATOMIC);
432 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100433 if (err != -EPERM)
434 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200435 hdev->name, urb, -err);
436 usb_unanchor_urb(urb);
437 }
438}
439
Jesper Juhl42b16b32011-01-17 00:09:38 +0100440static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200441{
442 int i, offset = 0;
443
444 BT_DBG("len %d mtu %d", len, mtu);
445
446 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
447 i++, offset += mtu, len -= mtu) {
448 urb->iso_frame_desc[i].offset = offset;
449 urb->iso_frame_desc[i].length = mtu;
450 }
451
452 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
453 urb->iso_frame_desc[i].offset = offset;
454 urb->iso_frame_desc[i].length = len;
455 i++;
456 }
457
458 urb->number_of_packets = i;
459}
460
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100461static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200462{
463 struct btusb_data *data = hdev->driver_data;
464 struct urb *urb;
465 unsigned char *buf;
466 unsigned int pipe;
467 int err, size;
468
469 BT_DBG("%s", hdev->name);
470
471 if (!data->isoc_rx_ep)
472 return -ENODEV;
473
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100474 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200475 if (!urb)
476 return -ENOMEM;
477
478 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
479 BTUSB_MAX_ISOC_FRAMES;
480
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100481 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200482 if (!buf) {
483 usb_free_urb(urb);
484 return -ENOMEM;
485 }
486
487 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
488
489 urb->dev = data->udev;
490 urb->pipe = pipe;
491 urb->context = hdev;
492 urb->complete = btusb_isoc_complete;
493 urb->interval = data->isoc_rx_ep->bInterval;
494
495 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
496 urb->transfer_buffer = buf;
497 urb->transfer_buffer_length = size;
498
499 __fill_isoc_descriptor(urb, size,
500 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
501
502 usb_anchor_urb(urb, &data->isoc_anchor);
503
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100504 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200505 if (err < 0) {
506 BT_ERR("%s urb %p submission failed (%d)",
507 hdev->name, urb, -err);
508 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200509 }
510
511 usb_free_urb(urb);
512
513 return err;
514}
515
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200516static void btusb_tx_complete(struct urb *urb)
517{
518 struct sk_buff *skb = urb->context;
519 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200520 struct btusb_data *data = hdev->driver_data;
521
522 BT_DBG("%s urb %p status %d count %d", hdev->name,
523 urb, urb->status, urb->actual_length);
524
525 if (!test_bit(HCI_RUNNING, &hdev->flags))
526 goto done;
527
528 if (!urb->status)
529 hdev->stat.byte_tx += urb->transfer_buffer_length;
530 else
531 hdev->stat.err_tx++;
532
533done:
534 spin_lock(&data->txlock);
535 data->tx_in_flight--;
536 spin_unlock(&data->txlock);
537
538 kfree(urb->setup_packet);
539
540 kfree_skb(skb);
541}
542
543static void btusb_isoc_tx_complete(struct urb *urb)
544{
545 struct sk_buff *skb = urb->context;
546 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200547
548 BT_DBG("%s urb %p status %d count %d", hdev->name,
549 urb, urb->status, urb->actual_length);
550
551 if (!test_bit(HCI_RUNNING, &hdev->flags))
552 goto done;
553
554 if (!urb->status)
555 hdev->stat.byte_tx += urb->transfer_buffer_length;
556 else
557 hdev->stat.err_tx++;
558
559done:
560 kfree(urb->setup_packet);
561
562 kfree_skb(skb);
563}
564
565static int btusb_open(struct hci_dev *hdev)
566{
567 struct btusb_data *data = hdev->driver_data;
568 int err;
569
570 BT_DBG("%s", hdev->name);
571
Oliver Neukum7bee5492009-08-24 23:44:59 +0200572 err = usb_autopm_get_interface(data->intf);
573 if (err < 0)
574 return err;
575
576 data->intf->needs_remote_wakeup = 1;
577
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200578 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200579 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200580
581 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200582 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200583
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100584 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100585 if (err < 0)
586 goto failed;
587
588 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200589 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100590 usb_kill_anchored_urbs(&data->intr_anchor);
591 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200592 }
593
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100594 set_bit(BTUSB_BULK_RUNNING, &data->flags);
595 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
596
Oliver Neukum7bee5492009-08-24 23:44:59 +0200597done:
598 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100599 return 0;
600
601failed:
602 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
603 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200604 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605 return err;
606}
607
Oliver Neukum7bee5492009-08-24 23:44:59 +0200608static void btusb_stop_traffic(struct btusb_data *data)
609{
610 usb_kill_anchored_urbs(&data->intr_anchor);
611 usb_kill_anchored_urbs(&data->bulk_anchor);
612 usb_kill_anchored_urbs(&data->isoc_anchor);
613}
614
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200615static int btusb_close(struct hci_dev *hdev)
616{
617 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200618 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200619
620 BT_DBG("%s", hdev->name);
621
622 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
623 return 0;
624
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200625 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800626 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200627
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200628 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200630 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200631
632 btusb_stop_traffic(data);
633 err = usb_autopm_get_interface(data->intf);
634 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100635 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200636
637 data->intf->needs_remote_wakeup = 0;
638 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100640failed:
641 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200642 return 0;
643}
644
645static int btusb_flush(struct hci_dev *hdev)
646{
647 struct btusb_data *data = hdev->driver_data;
648
649 BT_DBG("%s", hdev->name);
650
651 usb_kill_anchored_urbs(&data->tx_anchor);
652
653 return 0;
654}
655
656static int btusb_send_frame(struct sk_buff *skb)
657{
658 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
659 struct btusb_data *data = hdev->driver_data;
660 struct usb_ctrlrequest *dr;
661 struct urb *urb;
662 unsigned int pipe;
663 int err;
664
665 BT_DBG("%s", hdev->name);
666
667 if (!test_bit(HCI_RUNNING, &hdev->flags))
668 return -EBUSY;
669
670 switch (bt_cb(skb)->pkt_type) {
671 case HCI_COMMAND_PKT:
672 urb = usb_alloc_urb(0, GFP_ATOMIC);
673 if (!urb)
674 return -ENOMEM;
675
676 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
677 if (!dr) {
678 usb_free_urb(urb);
679 return -ENOMEM;
680 }
681
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100682 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200683 dr->bRequest = 0;
684 dr->wIndex = 0;
685 dr->wValue = 0;
686 dr->wLength = __cpu_to_le16(skb->len);
687
688 pipe = usb_sndctrlpipe(data->udev, 0x00);
689
690 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
691 skb->data, skb->len, btusb_tx_complete, skb);
692
693 hdev->stat.cmd_tx++;
694 break;
695
696 case HCI_ACLDATA_PKT:
Vinicius Costa Gomes8693ac92011-03-14 18:20:33 -0300697 if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 &&
698 hdev->conn_hash.le_num < 1))
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200699 return -ENODEV;
700
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200701 urb = usb_alloc_urb(0, GFP_ATOMIC);
702 if (!urb)
703 return -ENOMEM;
704
705 pipe = usb_sndbulkpipe(data->udev,
706 data->bulk_tx_ep->bEndpointAddress);
707
708 usb_fill_bulk_urb(urb, data->udev, pipe,
709 skb->data, skb->len, btusb_tx_complete, skb);
710
711 hdev->stat.acl_tx++;
712 break;
713
714 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200715 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
716 return -ENODEV;
717
718 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
719 if (!urb)
720 return -ENOMEM;
721
722 pipe = usb_sndisocpipe(data->udev,
723 data->isoc_tx_ep->bEndpointAddress);
724
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300725 usb_fill_int_urb(urb, data->udev, pipe,
726 skb->data, skb->len, btusb_isoc_tx_complete,
727 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200728
729 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200730
731 __fill_isoc_descriptor(urb, skb->len,
732 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
733
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200734 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200735 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200736
737 default:
738 return -EILSEQ;
739 }
740
Oliver Neukum7bee5492009-08-24 23:44:59 +0200741 err = inc_tx(data);
742 if (err) {
743 usb_anchor_urb(urb, &data->deferred);
744 schedule_work(&data->waker);
745 err = 0;
746 goto done;
747 }
748
749skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200750 usb_anchor_urb(urb, &data->tx_anchor);
751
752 err = usb_submit_urb(urb, GFP_ATOMIC);
753 if (err < 0) {
754 BT_ERR("%s urb %p submission failed", hdev->name, urb);
755 kfree(urb->setup_packet);
756 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200757 } else {
758 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200759 }
760
761 usb_free_urb(urb);
762
Oliver Neukum7bee5492009-08-24 23:44:59 +0200763done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200764 return err;
765}
766
767static void btusb_destruct(struct hci_dev *hdev)
768{
769 struct btusb_data *data = hdev->driver_data;
770
771 BT_DBG("%s", hdev->name);
772
773 kfree(data);
774}
775
776static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
777{
778 struct btusb_data *data = hdev->driver_data;
779
780 BT_DBG("%s evt %d", hdev->name, evt);
781
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100782 if (hdev->conn_hash.sco_num != data->sco_num) {
783 data->sco_num = hdev->conn_hash.sco_num;
784 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100785 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200786}
787
Jesper Juhl42b16b32011-01-17 00:09:38 +0100788static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200789{
790 struct btusb_data *data = hdev->driver_data;
791 struct usb_interface *intf = data->isoc;
792 struct usb_endpoint_descriptor *ep_desc;
793 int i, err;
794
795 if (!data->isoc)
796 return -ENODEV;
797
798 err = usb_set_interface(data->udev, 1, altsetting);
799 if (err < 0) {
800 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
801 return err;
802 }
803
804 data->isoc_altsetting = altsetting;
805
806 data->isoc_tx_ep = NULL;
807 data->isoc_rx_ep = NULL;
808
809 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
810 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
811
812 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
813 data->isoc_tx_ep = ep_desc;
814 continue;
815 }
816
817 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
818 data->isoc_rx_ep = ep_desc;
819 continue;
820 }
821 }
822
823 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
824 BT_ERR("%s invalid SCO descriptors", hdev->name);
825 return -ENODEV;
826 }
827
828 return 0;
829}
830
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200831static void btusb_work(struct work_struct *work)
832{
833 struct btusb_data *data = container_of(work, struct btusb_data, work);
834 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200835 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200836
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200837 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300838 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100839 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200840 if (err < 0) {
841 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
842 usb_kill_anchored_urbs(&data->isoc_anchor);
843 return;
844 }
845
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300846 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200847 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200848 if (data->isoc_altsetting != 2) {
849 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
850 usb_kill_anchored_urbs(&data->isoc_anchor);
851
852 if (__set_isoc_interface(hdev, 2) < 0)
853 return;
854 }
855
856 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100857 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
859 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100860 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200861 }
862 } else {
863 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
864 usb_kill_anchored_urbs(&data->isoc_anchor);
865
866 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300867 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100868 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200869 }
870}
871
Oliver Neukum7bee5492009-08-24 23:44:59 +0200872static void btusb_waker(struct work_struct *work)
873{
874 struct btusb_data *data = container_of(work, struct btusb_data, waker);
875 int err;
876
877 err = usb_autopm_get_interface(data->intf);
878 if (err < 0)
879 return;
880
881 usb_autopm_put_interface(data->intf);
882}
883
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200884static int btusb_probe(struct usb_interface *intf,
885 const struct usb_device_id *id)
886{
887 struct usb_endpoint_descriptor *ep_desc;
888 struct btusb_data *data;
889 struct hci_dev *hdev;
890 int i, err;
891
892 BT_DBG("intf %p id %p", intf, id);
893
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200894 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200895 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
896 return -ENODEV;
897
898 if (!id->driver_info) {
899 const struct usb_device_id *match;
900 match = usb_match_id(intf, blacklist_table);
901 if (match)
902 id = match;
903 }
904
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200905 if (id->driver_info == BTUSB_IGNORE)
906 return -ENODEV;
907
908 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
909 return -ENODEV;
910
911 if (ignore_csr && id->driver_info & BTUSB_CSR)
912 return -ENODEV;
913
914 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
915 return -ENODEV;
916
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200917 data = kzalloc(sizeof(*data), GFP_KERNEL);
918 if (!data)
919 return -ENOMEM;
920
921 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
922 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
923
924 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
925 data->intr_ep = ep_desc;
926 continue;
927 }
928
929 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
930 data->bulk_tx_ep = ep_desc;
931 continue;
932 }
933
934 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
935 data->bulk_rx_ep = ep_desc;
936 continue;
937 }
938 }
939
940 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
941 kfree(data);
942 return -ENODEV;
943 }
944
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100945 data->cmdreq_type = USB_TYPE_CLASS;
946
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200947 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200948 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200949
950 spin_lock_init(&data->lock);
951
952 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200953 INIT_WORK(&data->waker, btusb_waker);
954 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200955
956 init_usb_anchor(&data->tx_anchor);
957 init_usb_anchor(&data->intr_anchor);
958 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200959 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200960 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200961
962 hdev = hci_alloc_dev();
963 if (!hdev) {
964 kfree(data);
965 return -ENOMEM;
966 }
967
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100968 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200969 hdev->driver_data = data;
970
971 data->hdev = hdev;
972
973 SET_HCIDEV_DEV(hdev, &intf->dev);
974
975 hdev->open = btusb_open;
976 hdev->close = btusb_close;
977 hdev->flush = btusb_flush;
978 hdev->send = btusb_send_frame;
979 hdev->destruct = btusb_destruct;
980 hdev->notify = btusb_notify;
981
982 hdev->owner = THIS_MODULE;
983
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100984 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200985 data->isoc = usb_ifnum_to_if(data->udev, 1);
986
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100987 if (!reset)
988 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200989
990 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
991 if (!disable_scofix)
992 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
993 }
994
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200995 if (id->driver_info & BTUSB_BROKEN_ISOC)
996 data->isoc = NULL;
997
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100998 if (id->driver_info & BTUSB_DIGIANSWER) {
999 data->cmdreq_type = USB_TYPE_VENDOR;
1000 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1001 }
1002
1003 if (id->driver_info & BTUSB_CSR) {
1004 struct usb_device *udev = data->udev;
1005
1006 /* Old firmware would otherwise execute USB reset */
1007 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1008 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1009 }
1010
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001011 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001012 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001013
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001014 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001015 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1016 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001017
1018 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001019 }
1020
1021 if (id->driver_info & BTUSB_BCM92035) {
1022 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1023 struct sk_buff *skb;
1024
1025 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1026 if (skb) {
1027 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1028 skb_queue_tail(&hdev->driver_init, skb);
1029 }
1030 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001031
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001032 if (data->isoc) {
1033 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001034 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001035 if (err < 0) {
1036 hci_free_dev(hdev);
1037 kfree(data);
1038 return err;
1039 }
1040 }
1041
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001042 err = hci_register_dev(hdev);
1043 if (err < 0) {
1044 hci_free_dev(hdev);
1045 kfree(data);
1046 return err;
1047 }
1048
1049 usb_set_intfdata(intf, data);
1050
1051 return 0;
1052}
1053
1054static void btusb_disconnect(struct usb_interface *intf)
1055{
1056 struct btusb_data *data = usb_get_intfdata(intf);
1057 struct hci_dev *hdev;
1058
1059 BT_DBG("intf %p", intf);
1060
1061 if (!data)
1062 return;
1063
1064 hdev = data->hdev;
1065
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001066 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001067
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001068 usb_set_intfdata(data->intf, NULL);
1069
1070 if (data->isoc)
1071 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001072
1073 hci_unregister_dev(hdev);
1074
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001075 if (intf == data->isoc)
1076 usb_driver_release_interface(&btusb_driver, data->intf);
1077 else if (data->isoc)
1078 usb_driver_release_interface(&btusb_driver, data->isoc);
1079
1080 __hci_dev_put(hdev);
1081
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001082 hci_free_dev(hdev);
1083}
1084
Oliver Neukum7bee5492009-08-24 23:44:59 +02001085#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001086static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1087{
1088 struct btusb_data *data = usb_get_intfdata(intf);
1089
1090 BT_DBG("intf %p", intf);
1091
1092 if (data->suspend_count++)
1093 return 0;
1094
Oliver Neukum7bee5492009-08-24 23:44:59 +02001095 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001096 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001097 set_bit(BTUSB_SUSPENDING, &data->flags);
1098 spin_unlock_irq(&data->txlock);
1099 } else {
1100 spin_unlock_irq(&data->txlock);
1101 data->suspend_count--;
1102 return -EBUSY;
1103 }
1104
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001105 cancel_work_sync(&data->work);
1106
Oliver Neukum7bee5492009-08-24 23:44:59 +02001107 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001108 usb_kill_anchored_urbs(&data->tx_anchor);
1109
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001110 return 0;
1111}
1112
Oliver Neukum7bee5492009-08-24 23:44:59 +02001113static void play_deferred(struct btusb_data *data)
1114{
1115 struct urb *urb;
1116 int err;
1117
1118 while ((urb = usb_get_from_anchor(&data->deferred))) {
1119 err = usb_submit_urb(urb, GFP_ATOMIC);
1120 if (err < 0)
1121 break;
1122
1123 data->tx_in_flight++;
1124 }
1125 usb_scuttle_anchored_urbs(&data->deferred);
1126}
1127
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001128static int btusb_resume(struct usb_interface *intf)
1129{
1130 struct btusb_data *data = usb_get_intfdata(intf);
1131 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001132 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001133
1134 BT_DBG("intf %p", intf);
1135
1136 if (--data->suspend_count)
1137 return 0;
1138
1139 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001140 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001141
1142 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1143 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1144 if (err < 0) {
1145 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001146 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001147 }
1148 }
1149
1150 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001151 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1152 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001153 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001154 goto failed;
1155 }
1156
1157 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001158 }
1159
1160 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1161 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1162 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1163 else
1164 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1165 }
1166
Oliver Neukum7bee5492009-08-24 23:44:59 +02001167 spin_lock_irq(&data->txlock);
1168 play_deferred(data);
1169 clear_bit(BTUSB_SUSPENDING, &data->flags);
1170 spin_unlock_irq(&data->txlock);
1171 schedule_work(&data->work);
1172
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001173 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001174
1175failed:
1176 usb_scuttle_anchored_urbs(&data->deferred);
1177done:
1178 spin_lock_irq(&data->txlock);
1179 clear_bit(BTUSB_SUSPENDING, &data->flags);
1180 spin_unlock_irq(&data->txlock);
1181
1182 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001183}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001185
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001186static struct usb_driver btusb_driver = {
1187 .name = "btusb",
1188 .probe = btusb_probe,
1189 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001190#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001191 .suspend = btusb_suspend,
1192 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001193#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001194 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001195 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001196};
1197
1198static int __init btusb_init(void)
1199{
1200 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1201
1202 return usb_register(&btusb_driver);
1203}
1204
1205static void __exit btusb_exit(void)
1206{
1207 usb_deregister(&btusb_driver);
1208}
1209
1210module_init(btusb_init);
1211module_exit(btusb_exit);
1212
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001213module_param(ignore_dga, bool, 0644);
1214MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1215
1216module_param(ignore_csr, bool, 0644);
1217MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1218
1219module_param(ignore_sniffer, bool, 0644);
1220MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1221
1222module_param(disable_scofix, bool, 0644);
1223MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1224
1225module_param(force_scofix, bool, 0644);
1226MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1227
1228module_param(reset, bool, 0644);
1229MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1230
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001231MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1232MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1233MODULE_VERSION(VERSION);
1234MODULE_LICENSE("GPL");