blob: 89b9e51eec1fbdec7459cd6b3d8d39b7b21a7c9b [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
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020074 /* AVM BlueFRITZ! USB v2.0 */
75 { USB_DEVICE(0x057c, 0x3800) },
76
77 /* Bluetooth Ultraport Module from IBM */
78 { USB_DEVICE(0x04bf, 0x030a) },
79
80 /* ALPS Modules with non-standard id */
81 { USB_DEVICE(0x044e, 0x3001) },
82 { USB_DEVICE(0x044e, 0x3002) },
83
84 /* Ericsson with non-standard id */
85 { USB_DEVICE(0x0bdb, 0x1002) },
86
87 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010088 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020089
Marcel Holtmann5e23b922007-10-20 14:12:34 +020090 { } /* Terminating entry */
91};
92
93MODULE_DEVICE_TABLE(usb, btusb_table);
94
95static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020096 /* CSR BlueCore devices */
97 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
98
99 /* Broadcom BCM2033 without firmware */
100 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
101
Bala Shanmugambe931122010-11-26 17:35:46 +0530102 /* Atheros 3011 with sflash firmware */
103 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
104
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800105 /* Atheros AR9285 Malbec with sflash firmware */
106 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
107
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530108 /* Atheros 3012 with sflash firmware */
109 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_IGNORE },
110
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200111 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100112 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
113 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
114 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200115
116 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100117 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
118 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200119
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200120 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100121 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
122 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200123
124 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100125 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200126
127 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100128 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200129
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100130 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100131 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100132 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200133
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100134 /* Belkin F8T012 and F8T013 devices */
135 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
136 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200137
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100138 /* Asus WL-BTD202 device */
139 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
140
141 /* Kensington Bluetooth USB adapter */
142 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
143
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200144 /* RTX Telecom based adapters with buggy SCO support */
145 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
146 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
147
148 /* CONWISE Technology based adapters with buggy SCO support */
149 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
150
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200151 /* Digianswer devices */
152 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
153 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
154
155 /* CSR BlueCore Bluetooth Sniffer */
156 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
157
158 /* Frontline ComProbe Bluetooth Sniffer */
159 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
160
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200161 { } /* Terminating entry */
162};
163
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200164#define BTUSB_MAX_ISOC_FRAMES 10
165
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200166#define BTUSB_INTR_RUNNING 0
167#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200168#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200169#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300170#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200171
172struct btusb_data {
173 struct hci_dev *hdev;
174 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200175 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200176 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200177
178 spinlock_t lock;
179
180 unsigned long flags;
181
182 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200183 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200184
185 struct usb_anchor tx_anchor;
186 struct usb_anchor intr_anchor;
187 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200188 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200189 struct usb_anchor deferred;
190 int tx_in_flight;
191 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200192
193 struct usb_endpoint_descriptor *intr_ep;
194 struct usb_endpoint_descriptor *bulk_tx_ep;
195 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200196 struct usb_endpoint_descriptor *isoc_tx_ep;
197 struct usb_endpoint_descriptor *isoc_rx_ep;
198
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100199 __u8 cmdreq_type;
200
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100201 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200202 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100203 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200204};
205
Oliver Neukum7bee5492009-08-24 23:44:59 +0200206static int inc_tx(struct btusb_data *data)
207{
208 unsigned long flags;
209 int rv;
210
211 spin_lock_irqsave(&data->txlock, flags);
212 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
213 if (!rv)
214 data->tx_in_flight++;
215 spin_unlock_irqrestore(&data->txlock, flags);
216
217 return rv;
218}
219
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200220static void btusb_intr_complete(struct urb *urb)
221{
222 struct hci_dev *hdev = urb->context;
223 struct btusb_data *data = hdev->driver_data;
224 int err;
225
226 BT_DBG("%s urb %p status %d count %d", hdev->name,
227 urb, urb->status, urb->actual_length);
228
229 if (!test_bit(HCI_RUNNING, &hdev->flags))
230 return;
231
232 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200233 hdev->stat.byte_rx += urb->actual_length;
234
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200235 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
236 urb->transfer_buffer,
237 urb->actual_length) < 0) {
238 BT_ERR("%s corrupted event packet", hdev->name);
239 hdev->stat.err_rx++;
240 }
241 }
242
243 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
244 return;
245
Oliver Neukum7bee5492009-08-24 23:44:59 +0200246 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200247 usb_anchor_urb(urb, &data->intr_anchor);
248
249 err = usb_submit_urb(urb, GFP_ATOMIC);
250 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100251 if (err != -EPERM)
252 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200253 hdev->name, urb, -err);
254 usb_unanchor_urb(urb);
255 }
256}
257
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100258static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200259{
260 struct btusb_data *data = hdev->driver_data;
261 struct urb *urb;
262 unsigned char *buf;
263 unsigned int pipe;
264 int err, size;
265
266 BT_DBG("%s", hdev->name);
267
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200268 if (!data->intr_ep)
269 return -ENODEV;
270
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100271 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200272 if (!urb)
273 return -ENOMEM;
274
275 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
276
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100277 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200278 if (!buf) {
279 usb_free_urb(urb);
280 return -ENOMEM;
281 }
282
283 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
284
285 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
286 btusb_intr_complete, hdev,
287 data->intr_ep->bInterval);
288
289 urb->transfer_flags |= URB_FREE_BUFFER;
290
291 usb_anchor_urb(urb, &data->intr_anchor);
292
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100293 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200294 if (err < 0) {
295 BT_ERR("%s urb %p submission failed (%d)",
296 hdev->name, urb, -err);
297 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200298 }
299
300 usb_free_urb(urb);
301
302 return err;
303}
304
305static void btusb_bulk_complete(struct urb *urb)
306{
307 struct hci_dev *hdev = urb->context;
308 struct btusb_data *data = hdev->driver_data;
309 int err;
310
311 BT_DBG("%s urb %p status %d count %d", hdev->name,
312 urb, urb->status, urb->actual_length);
313
314 if (!test_bit(HCI_RUNNING, &hdev->flags))
315 return;
316
317 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200318 hdev->stat.byte_rx += urb->actual_length;
319
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200320 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
321 urb->transfer_buffer,
322 urb->actual_length) < 0) {
323 BT_ERR("%s corrupted ACL packet", hdev->name);
324 hdev->stat.err_rx++;
325 }
326 }
327
328 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
329 return;
330
331 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100332 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200333
334 err = usb_submit_urb(urb, GFP_ATOMIC);
335 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100336 if (err != -EPERM)
337 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200338 hdev->name, urb, -err);
339 usb_unanchor_urb(urb);
340 }
341}
342
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100343static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200344{
345 struct btusb_data *data = hdev->driver_data;
346 struct urb *urb;
347 unsigned char *buf;
348 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530349 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200350
351 BT_DBG("%s", hdev->name);
352
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200353 if (!data->bulk_rx_ep)
354 return -ENODEV;
355
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100356 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200357 if (!urb)
358 return -ENOMEM;
359
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100360 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200361 if (!buf) {
362 usb_free_urb(urb);
363 return -ENOMEM;
364 }
365
366 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
367
368 usb_fill_bulk_urb(urb, data->udev, pipe,
369 buf, size, btusb_bulk_complete, hdev);
370
371 urb->transfer_flags |= URB_FREE_BUFFER;
372
Oliver Neukum7bee5492009-08-24 23:44:59 +0200373 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200374 usb_anchor_urb(urb, &data->bulk_anchor);
375
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100376 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200377 if (err < 0) {
378 BT_ERR("%s urb %p submission failed (%d)",
379 hdev->name, urb, -err);
380 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200381 }
382
383 usb_free_urb(urb);
384
385 return err;
386}
387
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200388static void btusb_isoc_complete(struct urb *urb)
389{
390 struct hci_dev *hdev = urb->context;
391 struct btusb_data *data = hdev->driver_data;
392 int i, err;
393
394 BT_DBG("%s urb %p status %d count %d", hdev->name,
395 urb, urb->status, urb->actual_length);
396
397 if (!test_bit(HCI_RUNNING, &hdev->flags))
398 return;
399
400 if (urb->status == 0) {
401 for (i = 0; i < urb->number_of_packets; i++) {
402 unsigned int offset = urb->iso_frame_desc[i].offset;
403 unsigned int length = urb->iso_frame_desc[i].actual_length;
404
405 if (urb->iso_frame_desc[i].status)
406 continue;
407
408 hdev->stat.byte_rx += length;
409
410 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
411 urb->transfer_buffer + offset,
412 length) < 0) {
413 BT_ERR("%s corrupted SCO packet", hdev->name);
414 hdev->stat.err_rx++;
415 }
416 }
417 }
418
419 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
420 return;
421
422 usb_anchor_urb(urb, &data->isoc_anchor);
423
424 err = usb_submit_urb(urb, GFP_ATOMIC);
425 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100426 if (err != -EPERM)
427 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200428 hdev->name, urb, -err);
429 usb_unanchor_urb(urb);
430 }
431}
432
433static void inline __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
434{
435 int i, offset = 0;
436
437 BT_DBG("len %d mtu %d", len, mtu);
438
439 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
440 i++, offset += mtu, len -= mtu) {
441 urb->iso_frame_desc[i].offset = offset;
442 urb->iso_frame_desc[i].length = mtu;
443 }
444
445 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
446 urb->iso_frame_desc[i].offset = offset;
447 urb->iso_frame_desc[i].length = len;
448 i++;
449 }
450
451 urb->number_of_packets = i;
452}
453
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100454static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200455{
456 struct btusb_data *data = hdev->driver_data;
457 struct urb *urb;
458 unsigned char *buf;
459 unsigned int pipe;
460 int err, size;
461
462 BT_DBG("%s", hdev->name);
463
464 if (!data->isoc_rx_ep)
465 return -ENODEV;
466
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100467 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200468 if (!urb)
469 return -ENOMEM;
470
471 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
472 BTUSB_MAX_ISOC_FRAMES;
473
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100474 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200475 if (!buf) {
476 usb_free_urb(urb);
477 return -ENOMEM;
478 }
479
480 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
481
482 urb->dev = data->udev;
483 urb->pipe = pipe;
484 urb->context = hdev;
485 urb->complete = btusb_isoc_complete;
486 urb->interval = data->isoc_rx_ep->bInterval;
487
488 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
489 urb->transfer_buffer = buf;
490 urb->transfer_buffer_length = size;
491
492 __fill_isoc_descriptor(urb, size,
493 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
494
495 usb_anchor_urb(urb, &data->isoc_anchor);
496
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100497 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200498 if (err < 0) {
499 BT_ERR("%s urb %p submission failed (%d)",
500 hdev->name, urb, -err);
501 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200502 }
503
504 usb_free_urb(urb);
505
506 return err;
507}
508
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200509static void btusb_tx_complete(struct urb *urb)
510{
511 struct sk_buff *skb = urb->context;
512 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200513 struct btusb_data *data = hdev->driver_data;
514
515 BT_DBG("%s urb %p status %d count %d", hdev->name,
516 urb, urb->status, urb->actual_length);
517
518 if (!test_bit(HCI_RUNNING, &hdev->flags))
519 goto done;
520
521 if (!urb->status)
522 hdev->stat.byte_tx += urb->transfer_buffer_length;
523 else
524 hdev->stat.err_tx++;
525
526done:
527 spin_lock(&data->txlock);
528 data->tx_in_flight--;
529 spin_unlock(&data->txlock);
530
531 kfree(urb->setup_packet);
532
533 kfree_skb(skb);
534}
535
536static void btusb_isoc_tx_complete(struct urb *urb)
537{
538 struct sk_buff *skb = urb->context;
539 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200540
541 BT_DBG("%s urb %p status %d count %d", hdev->name,
542 urb, urb->status, urb->actual_length);
543
544 if (!test_bit(HCI_RUNNING, &hdev->flags))
545 goto done;
546
547 if (!urb->status)
548 hdev->stat.byte_tx += urb->transfer_buffer_length;
549 else
550 hdev->stat.err_tx++;
551
552done:
553 kfree(urb->setup_packet);
554
555 kfree_skb(skb);
556}
557
558static int btusb_open(struct hci_dev *hdev)
559{
560 struct btusb_data *data = hdev->driver_data;
561 int err;
562
563 BT_DBG("%s", hdev->name);
564
Oliver Neukum7bee5492009-08-24 23:44:59 +0200565 err = usb_autopm_get_interface(data->intf);
566 if (err < 0)
567 return err;
568
569 data->intf->needs_remote_wakeup = 1;
570
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200571 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200572 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573
574 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200575 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200576
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100577 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100578 if (err < 0)
579 goto failed;
580
581 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200582 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100583 usb_kill_anchored_urbs(&data->intr_anchor);
584 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200585 }
586
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100587 set_bit(BTUSB_BULK_RUNNING, &data->flags);
588 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
589
Oliver Neukum7bee5492009-08-24 23:44:59 +0200590done:
591 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100592 return 0;
593
594failed:
595 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
596 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200597 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200598 return err;
599}
600
Oliver Neukum7bee5492009-08-24 23:44:59 +0200601static void btusb_stop_traffic(struct btusb_data *data)
602{
603 usb_kill_anchored_urbs(&data->intr_anchor);
604 usb_kill_anchored_urbs(&data->bulk_anchor);
605 usb_kill_anchored_urbs(&data->isoc_anchor);
606}
607
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200608static int btusb_close(struct hci_dev *hdev)
609{
610 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200611 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612
613 BT_DBG("%s", hdev->name);
614
615 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
616 return 0;
617
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200618 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800619 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200620
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200621 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200622 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200624
625 btusb_stop_traffic(data);
626 err = usb_autopm_get_interface(data->intf);
627 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100628 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200629
630 data->intf->needs_remote_wakeup = 0;
631 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100633failed:
634 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200635 return 0;
636}
637
638static int btusb_flush(struct hci_dev *hdev)
639{
640 struct btusb_data *data = hdev->driver_data;
641
642 BT_DBG("%s", hdev->name);
643
644 usb_kill_anchored_urbs(&data->tx_anchor);
645
646 return 0;
647}
648
649static int btusb_send_frame(struct sk_buff *skb)
650{
651 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
652 struct btusb_data *data = hdev->driver_data;
653 struct usb_ctrlrequest *dr;
654 struct urb *urb;
655 unsigned int pipe;
656 int err;
657
658 BT_DBG("%s", hdev->name);
659
660 if (!test_bit(HCI_RUNNING, &hdev->flags))
661 return -EBUSY;
662
663 switch (bt_cb(skb)->pkt_type) {
664 case HCI_COMMAND_PKT:
665 urb = usb_alloc_urb(0, GFP_ATOMIC);
666 if (!urb)
667 return -ENOMEM;
668
669 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
670 if (!dr) {
671 usb_free_urb(urb);
672 return -ENOMEM;
673 }
674
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100675 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200676 dr->bRequest = 0;
677 dr->wIndex = 0;
678 dr->wValue = 0;
679 dr->wLength = __cpu_to_le16(skb->len);
680
681 pipe = usb_sndctrlpipe(data->udev, 0x00);
682
683 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
684 skb->data, skb->len, btusb_tx_complete, skb);
685
686 hdev->stat.cmd_tx++;
687 break;
688
689 case HCI_ACLDATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200690 if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1)
691 return -ENODEV;
692
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200693 urb = usb_alloc_urb(0, GFP_ATOMIC);
694 if (!urb)
695 return -ENOMEM;
696
697 pipe = usb_sndbulkpipe(data->udev,
698 data->bulk_tx_ep->bEndpointAddress);
699
700 usb_fill_bulk_urb(urb, data->udev, pipe,
701 skb->data, skb->len, btusb_tx_complete, skb);
702
703 hdev->stat.acl_tx++;
704 break;
705
706 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200707 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
708 return -ENODEV;
709
710 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
711 if (!urb)
712 return -ENOMEM;
713
714 pipe = usb_sndisocpipe(data->udev,
715 data->isoc_tx_ep->bEndpointAddress);
716
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300717 usb_fill_int_urb(urb, data->udev, pipe,
718 skb->data, skb->len, btusb_isoc_tx_complete,
719 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200720
721 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200722
723 __fill_isoc_descriptor(urb, skb->len,
724 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
725
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200726 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200727 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200728
729 default:
730 return -EILSEQ;
731 }
732
Oliver Neukum7bee5492009-08-24 23:44:59 +0200733 err = inc_tx(data);
734 if (err) {
735 usb_anchor_urb(urb, &data->deferred);
736 schedule_work(&data->waker);
737 err = 0;
738 goto done;
739 }
740
741skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200742 usb_anchor_urb(urb, &data->tx_anchor);
743
744 err = usb_submit_urb(urb, GFP_ATOMIC);
745 if (err < 0) {
746 BT_ERR("%s urb %p submission failed", hdev->name, urb);
747 kfree(urb->setup_packet);
748 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200749 } else {
750 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200751 }
752
753 usb_free_urb(urb);
754
Oliver Neukum7bee5492009-08-24 23:44:59 +0200755done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200756 return err;
757}
758
759static void btusb_destruct(struct hci_dev *hdev)
760{
761 struct btusb_data *data = hdev->driver_data;
762
763 BT_DBG("%s", hdev->name);
764
765 kfree(data);
766}
767
768static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
769{
770 struct btusb_data *data = hdev->driver_data;
771
772 BT_DBG("%s evt %d", hdev->name, evt);
773
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100774 if (hdev->conn_hash.sco_num != data->sco_num) {
775 data->sco_num = hdev->conn_hash.sco_num;
776 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100777 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200778}
779
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200780static int inline __set_isoc_interface(struct hci_dev *hdev, int altsetting)
781{
782 struct btusb_data *data = hdev->driver_data;
783 struct usb_interface *intf = data->isoc;
784 struct usb_endpoint_descriptor *ep_desc;
785 int i, err;
786
787 if (!data->isoc)
788 return -ENODEV;
789
790 err = usb_set_interface(data->udev, 1, altsetting);
791 if (err < 0) {
792 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
793 return err;
794 }
795
796 data->isoc_altsetting = altsetting;
797
798 data->isoc_tx_ep = NULL;
799 data->isoc_rx_ep = NULL;
800
801 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
802 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
803
804 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
805 data->isoc_tx_ep = ep_desc;
806 continue;
807 }
808
809 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
810 data->isoc_rx_ep = ep_desc;
811 continue;
812 }
813 }
814
815 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
816 BT_ERR("%s invalid SCO descriptors", hdev->name);
817 return -ENODEV;
818 }
819
820 return 0;
821}
822
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200823static void btusb_work(struct work_struct *work)
824{
825 struct btusb_data *data = container_of(work, struct btusb_data, work);
826 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200827 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200828
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200829 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300830 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +0200831 err = usb_autopm_get_interface(data->isoc);
832 if (err < 0) {
833 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
834 usb_kill_anchored_urbs(&data->isoc_anchor);
835 return;
836 }
837
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300838 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200839 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200840 if (data->isoc_altsetting != 2) {
841 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
842 usb_kill_anchored_urbs(&data->isoc_anchor);
843
844 if (__set_isoc_interface(hdev, 2) < 0)
845 return;
846 }
847
848 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100849 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200850 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
851 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100852 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200853 }
854 } else {
855 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
856 usb_kill_anchored_urbs(&data->isoc_anchor);
857
858 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300859 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200860 usb_autopm_put_interface(data->isoc);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200861 }
862}
863
Oliver Neukum7bee5492009-08-24 23:44:59 +0200864static void btusb_waker(struct work_struct *work)
865{
866 struct btusb_data *data = container_of(work, struct btusb_data, waker);
867 int err;
868
869 err = usb_autopm_get_interface(data->intf);
870 if (err < 0)
871 return;
872
873 usb_autopm_put_interface(data->intf);
874}
875
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200876static int btusb_probe(struct usb_interface *intf,
877 const struct usb_device_id *id)
878{
879 struct usb_endpoint_descriptor *ep_desc;
880 struct btusb_data *data;
881 struct hci_dev *hdev;
882 int i, err;
883
884 BT_DBG("intf %p id %p", intf, id);
885
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200886 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200887 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
888 return -ENODEV;
889
890 if (!id->driver_info) {
891 const struct usb_device_id *match;
892 match = usb_match_id(intf, blacklist_table);
893 if (match)
894 id = match;
895 }
896
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200897 if (id->driver_info == BTUSB_IGNORE)
898 return -ENODEV;
899
900 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
901 return -ENODEV;
902
903 if (ignore_csr && id->driver_info & BTUSB_CSR)
904 return -ENODEV;
905
906 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
907 return -ENODEV;
908
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200909 data = kzalloc(sizeof(*data), GFP_KERNEL);
910 if (!data)
911 return -ENOMEM;
912
913 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
914 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
915
916 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
917 data->intr_ep = ep_desc;
918 continue;
919 }
920
921 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
922 data->bulk_tx_ep = ep_desc;
923 continue;
924 }
925
926 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
927 data->bulk_rx_ep = ep_desc;
928 continue;
929 }
930 }
931
932 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
933 kfree(data);
934 return -ENODEV;
935 }
936
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100937 data->cmdreq_type = USB_TYPE_CLASS;
938
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200939 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200940 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200941
942 spin_lock_init(&data->lock);
943
944 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200945 INIT_WORK(&data->waker, btusb_waker);
946 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200947
948 init_usb_anchor(&data->tx_anchor);
949 init_usb_anchor(&data->intr_anchor);
950 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200951 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200952 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200953
954 hdev = hci_alloc_dev();
955 if (!hdev) {
956 kfree(data);
957 return -ENOMEM;
958 }
959
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100960 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200961 hdev->driver_data = data;
962
963 data->hdev = hdev;
964
965 SET_HCIDEV_DEV(hdev, &intf->dev);
966
967 hdev->open = btusb_open;
968 hdev->close = btusb_close;
969 hdev->flush = btusb_flush;
970 hdev->send = btusb_send_frame;
971 hdev->destruct = btusb_destruct;
972 hdev->notify = btusb_notify;
973
974 hdev->owner = THIS_MODULE;
975
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100976 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200977 data->isoc = usb_ifnum_to_if(data->udev, 1);
978
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100979 if (!reset)
980 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200981
982 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
983 if (!disable_scofix)
984 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
985 }
986
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200987 if (id->driver_info & BTUSB_BROKEN_ISOC)
988 data->isoc = NULL;
989
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100990 if (id->driver_info & BTUSB_DIGIANSWER) {
991 data->cmdreq_type = USB_TYPE_VENDOR;
992 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
993 }
994
995 if (id->driver_info & BTUSB_CSR) {
996 struct usb_device *udev = data->udev;
997
998 /* Old firmware would otherwise execute USB reset */
999 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1000 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1001 }
1002
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001003 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001004 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001005
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001006 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001007 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1008 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001009
1010 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001011 }
1012
1013 if (id->driver_info & BTUSB_BCM92035) {
1014 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1015 struct sk_buff *skb;
1016
1017 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1018 if (skb) {
1019 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1020 skb_queue_tail(&hdev->driver_init, skb);
1021 }
1022 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001023
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001024 if (data->isoc) {
1025 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001026 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001027 if (err < 0) {
1028 hci_free_dev(hdev);
1029 kfree(data);
1030 return err;
1031 }
1032 }
1033
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001034 err = hci_register_dev(hdev);
1035 if (err < 0) {
1036 hci_free_dev(hdev);
1037 kfree(data);
1038 return err;
1039 }
1040
1041 usb_set_intfdata(intf, data);
1042
Matthew Garrett556ea922010-09-16 13:58:15 -04001043 usb_enable_autosuspend(interface_to_usbdev(intf));
1044
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001045 return 0;
1046}
1047
1048static void btusb_disconnect(struct usb_interface *intf)
1049{
1050 struct btusb_data *data = usb_get_intfdata(intf);
1051 struct hci_dev *hdev;
1052
1053 BT_DBG("intf %p", intf);
1054
1055 if (!data)
1056 return;
1057
1058 hdev = data->hdev;
1059
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001060 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001061
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001062 usb_set_intfdata(data->intf, NULL);
1063
1064 if (data->isoc)
1065 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001066
1067 hci_unregister_dev(hdev);
1068
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001069 if (intf == data->isoc)
1070 usb_driver_release_interface(&btusb_driver, data->intf);
1071 else if (data->isoc)
1072 usb_driver_release_interface(&btusb_driver, data->isoc);
1073
1074 __hci_dev_put(hdev);
1075
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001076 hci_free_dev(hdev);
1077}
1078
Oliver Neukum7bee5492009-08-24 23:44:59 +02001079#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001080static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1081{
1082 struct btusb_data *data = usb_get_intfdata(intf);
1083
1084 BT_DBG("intf %p", intf);
1085
1086 if (data->suspend_count++)
1087 return 0;
1088
Oliver Neukum7bee5492009-08-24 23:44:59 +02001089 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001090 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001091 set_bit(BTUSB_SUSPENDING, &data->flags);
1092 spin_unlock_irq(&data->txlock);
1093 } else {
1094 spin_unlock_irq(&data->txlock);
1095 data->suspend_count--;
1096 return -EBUSY;
1097 }
1098
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001099 cancel_work_sync(&data->work);
1100
Oliver Neukum7bee5492009-08-24 23:44:59 +02001101 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001102 usb_kill_anchored_urbs(&data->tx_anchor);
1103
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001104 return 0;
1105}
1106
Oliver Neukum7bee5492009-08-24 23:44:59 +02001107static void play_deferred(struct btusb_data *data)
1108{
1109 struct urb *urb;
1110 int err;
1111
1112 while ((urb = usb_get_from_anchor(&data->deferred))) {
1113 err = usb_submit_urb(urb, GFP_ATOMIC);
1114 if (err < 0)
1115 break;
1116
1117 data->tx_in_flight++;
1118 }
1119 usb_scuttle_anchored_urbs(&data->deferred);
1120}
1121
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001122static int btusb_resume(struct usb_interface *intf)
1123{
1124 struct btusb_data *data = usb_get_intfdata(intf);
1125 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001126 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001127
1128 BT_DBG("intf %p", intf);
1129
1130 if (--data->suspend_count)
1131 return 0;
1132
1133 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001134 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001135
1136 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1137 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1138 if (err < 0) {
1139 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001140 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001141 }
1142 }
1143
1144 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001145 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1146 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001147 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001148 goto failed;
1149 }
1150
1151 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001152 }
1153
1154 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1155 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1156 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1157 else
1158 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1159 }
1160
Oliver Neukum7bee5492009-08-24 23:44:59 +02001161 spin_lock_irq(&data->txlock);
1162 play_deferred(data);
1163 clear_bit(BTUSB_SUSPENDING, &data->flags);
1164 spin_unlock_irq(&data->txlock);
1165 schedule_work(&data->work);
1166
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001167 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001168
1169failed:
1170 usb_scuttle_anchored_urbs(&data->deferred);
1171done:
1172 spin_lock_irq(&data->txlock);
1173 clear_bit(BTUSB_SUSPENDING, &data->flags);
1174 spin_unlock_irq(&data->txlock);
1175
1176 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001177}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001178#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001179
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001180static struct usb_driver btusb_driver = {
1181 .name = "btusb",
1182 .probe = btusb_probe,
1183 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001185 .suspend = btusb_suspend,
1186 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001187#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001188 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001189 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001190};
1191
1192static int __init btusb_init(void)
1193{
1194 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1195
1196 return usb_register(&btusb_driver);
1197}
1198
1199static void __exit btusb_exit(void)
1200{
1201 usb_deregister(&btusb_driver);
1202}
1203
1204module_init(btusb_init);
1205module_exit(btusb_exit);
1206
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001207module_param(ignore_dga, bool, 0644);
1208MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1209
1210module_param(ignore_csr, bool, 0644);
1211MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1212
1213module_param(ignore_sniffer, bool, 0644);
1214MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1215
1216module_param(disable_scofix, bool, 0644);
1217MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1218
1219module_param(force_scofix, bool, 0644);
1220MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1221
1222module_param(reset, bool, 0644);
1223MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1224
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001225MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1226MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1227MODULE_VERSION(VERSION);
1228MODULE_LICENSE("GPL");