blob: 4cefa91e6c34782bf57ef4769c747f94a23e8696 [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
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200108 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100109 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
110 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
111 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200112
113 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100114 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
115 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200116
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200117 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100118 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
119 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200120
121 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100122 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200123
124 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100125 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200126
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100127 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100128 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100129 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200130
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100131 /* Belkin F8T012 and F8T013 devices */
132 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
133 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200134
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100135 /* Asus WL-BTD202 device */
136 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
137
138 /* Kensington Bluetooth USB adapter */
139 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
140
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200141 /* RTX Telecom based adapters with buggy SCO support */
142 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
143 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
144
145 /* CONWISE Technology based adapters with buggy SCO support */
146 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
147
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200148 /* Digianswer devices */
149 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
150 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
151
152 /* CSR BlueCore Bluetooth Sniffer */
153 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
154
155 /* Frontline ComProbe Bluetooth Sniffer */
156 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
157
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200158 { } /* Terminating entry */
159};
160
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200161#define BTUSB_MAX_ISOC_FRAMES 10
162
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200163#define BTUSB_INTR_RUNNING 0
164#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200165#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200166#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300167#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200168
169struct btusb_data {
170 struct hci_dev *hdev;
171 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200172 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200173 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200174
175 spinlock_t lock;
176
177 unsigned long flags;
178
179 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200180 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200181
182 struct usb_anchor tx_anchor;
183 struct usb_anchor intr_anchor;
184 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200185 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200186 struct usb_anchor deferred;
187 int tx_in_flight;
188 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200189
190 struct usb_endpoint_descriptor *intr_ep;
191 struct usb_endpoint_descriptor *bulk_tx_ep;
192 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200193 struct usb_endpoint_descriptor *isoc_tx_ep;
194 struct usb_endpoint_descriptor *isoc_rx_ep;
195
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100196 __u8 cmdreq_type;
197
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100198 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200199 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100200 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200201};
202
Oliver Neukum7bee5492009-08-24 23:44:59 +0200203static int inc_tx(struct btusb_data *data)
204{
205 unsigned long flags;
206 int rv;
207
208 spin_lock_irqsave(&data->txlock, flags);
209 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
210 if (!rv)
211 data->tx_in_flight++;
212 spin_unlock_irqrestore(&data->txlock, flags);
213
214 return rv;
215}
216
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200217static void btusb_intr_complete(struct urb *urb)
218{
219 struct hci_dev *hdev = urb->context;
220 struct btusb_data *data = hdev->driver_data;
221 int err;
222
223 BT_DBG("%s urb %p status %d count %d", hdev->name,
224 urb, urb->status, urb->actual_length);
225
226 if (!test_bit(HCI_RUNNING, &hdev->flags))
227 return;
228
229 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200230 hdev->stat.byte_rx += urb->actual_length;
231
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200232 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
233 urb->transfer_buffer,
234 urb->actual_length) < 0) {
235 BT_ERR("%s corrupted event packet", hdev->name);
236 hdev->stat.err_rx++;
237 }
238 }
239
240 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
241 return;
242
Oliver Neukum7bee5492009-08-24 23:44:59 +0200243 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200244 usb_anchor_urb(urb, &data->intr_anchor);
245
246 err = usb_submit_urb(urb, GFP_ATOMIC);
247 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100248 if (err != -EPERM)
249 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200250 hdev->name, urb, -err);
251 usb_unanchor_urb(urb);
252 }
253}
254
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100255static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200256{
257 struct btusb_data *data = hdev->driver_data;
258 struct urb *urb;
259 unsigned char *buf;
260 unsigned int pipe;
261 int err, size;
262
263 BT_DBG("%s", hdev->name);
264
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200265 if (!data->intr_ep)
266 return -ENODEV;
267
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100268 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200269 if (!urb)
270 return -ENOMEM;
271
272 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
273
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100274 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200275 if (!buf) {
276 usb_free_urb(urb);
277 return -ENOMEM;
278 }
279
280 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
281
282 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
283 btusb_intr_complete, hdev,
284 data->intr_ep->bInterval);
285
286 urb->transfer_flags |= URB_FREE_BUFFER;
287
288 usb_anchor_urb(urb, &data->intr_anchor);
289
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100290 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200291 if (err < 0) {
292 BT_ERR("%s urb %p submission failed (%d)",
293 hdev->name, urb, -err);
294 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200295 }
296
297 usb_free_urb(urb);
298
299 return err;
300}
301
302static void btusb_bulk_complete(struct urb *urb)
303{
304 struct hci_dev *hdev = urb->context;
305 struct btusb_data *data = hdev->driver_data;
306 int err;
307
308 BT_DBG("%s urb %p status %d count %d", hdev->name,
309 urb, urb->status, urb->actual_length);
310
311 if (!test_bit(HCI_RUNNING, &hdev->flags))
312 return;
313
314 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200315 hdev->stat.byte_rx += urb->actual_length;
316
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200317 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
318 urb->transfer_buffer,
319 urb->actual_length) < 0) {
320 BT_ERR("%s corrupted ACL packet", hdev->name);
321 hdev->stat.err_rx++;
322 }
323 }
324
325 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
326 return;
327
328 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100329 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200330
331 err = usb_submit_urb(urb, GFP_ATOMIC);
332 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100333 if (err != -EPERM)
334 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200335 hdev->name, urb, -err);
336 usb_unanchor_urb(urb);
337 }
338}
339
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100340static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200341{
342 struct btusb_data *data = hdev->driver_data;
343 struct urb *urb;
344 unsigned char *buf;
345 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530346 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200347
348 BT_DBG("%s", hdev->name);
349
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200350 if (!data->bulk_rx_ep)
351 return -ENODEV;
352
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100353 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200354 if (!urb)
355 return -ENOMEM;
356
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100357 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200358 if (!buf) {
359 usb_free_urb(urb);
360 return -ENOMEM;
361 }
362
363 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
364
365 usb_fill_bulk_urb(urb, data->udev, pipe,
366 buf, size, btusb_bulk_complete, hdev);
367
368 urb->transfer_flags |= URB_FREE_BUFFER;
369
Oliver Neukum7bee5492009-08-24 23:44:59 +0200370 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200371 usb_anchor_urb(urb, &data->bulk_anchor);
372
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100373 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200374 if (err < 0) {
375 BT_ERR("%s urb %p submission failed (%d)",
376 hdev->name, urb, -err);
377 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200378 }
379
380 usb_free_urb(urb);
381
382 return err;
383}
384
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200385static void btusb_isoc_complete(struct urb *urb)
386{
387 struct hci_dev *hdev = urb->context;
388 struct btusb_data *data = hdev->driver_data;
389 int i, err;
390
391 BT_DBG("%s urb %p status %d count %d", hdev->name,
392 urb, urb->status, urb->actual_length);
393
394 if (!test_bit(HCI_RUNNING, &hdev->flags))
395 return;
396
397 if (urb->status == 0) {
398 for (i = 0; i < urb->number_of_packets; i++) {
399 unsigned int offset = urb->iso_frame_desc[i].offset;
400 unsigned int length = urb->iso_frame_desc[i].actual_length;
401
402 if (urb->iso_frame_desc[i].status)
403 continue;
404
405 hdev->stat.byte_rx += length;
406
407 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
408 urb->transfer_buffer + offset,
409 length) < 0) {
410 BT_ERR("%s corrupted SCO packet", hdev->name);
411 hdev->stat.err_rx++;
412 }
413 }
414 }
415
416 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
417 return;
418
419 usb_anchor_urb(urb, &data->isoc_anchor);
420
421 err = usb_submit_urb(urb, GFP_ATOMIC);
422 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100423 if (err != -EPERM)
424 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200425 hdev->name, urb, -err);
426 usb_unanchor_urb(urb);
427 }
428}
429
430static void inline __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
431{
432 int i, offset = 0;
433
434 BT_DBG("len %d mtu %d", len, mtu);
435
436 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
437 i++, offset += mtu, len -= mtu) {
438 urb->iso_frame_desc[i].offset = offset;
439 urb->iso_frame_desc[i].length = mtu;
440 }
441
442 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
443 urb->iso_frame_desc[i].offset = offset;
444 urb->iso_frame_desc[i].length = len;
445 i++;
446 }
447
448 urb->number_of_packets = i;
449}
450
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100451static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200452{
453 struct btusb_data *data = hdev->driver_data;
454 struct urb *urb;
455 unsigned char *buf;
456 unsigned int pipe;
457 int err, size;
458
459 BT_DBG("%s", hdev->name);
460
461 if (!data->isoc_rx_ep)
462 return -ENODEV;
463
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100464 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200465 if (!urb)
466 return -ENOMEM;
467
468 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
469 BTUSB_MAX_ISOC_FRAMES;
470
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100471 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200472 if (!buf) {
473 usb_free_urb(urb);
474 return -ENOMEM;
475 }
476
477 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
478
479 urb->dev = data->udev;
480 urb->pipe = pipe;
481 urb->context = hdev;
482 urb->complete = btusb_isoc_complete;
483 urb->interval = data->isoc_rx_ep->bInterval;
484
485 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
486 urb->transfer_buffer = buf;
487 urb->transfer_buffer_length = size;
488
489 __fill_isoc_descriptor(urb, size,
490 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
491
492 usb_anchor_urb(urb, &data->isoc_anchor);
493
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100494 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200495 if (err < 0) {
496 BT_ERR("%s urb %p submission failed (%d)",
497 hdev->name, urb, -err);
498 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200499 }
500
501 usb_free_urb(urb);
502
503 return err;
504}
505
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200506static void btusb_tx_complete(struct urb *urb)
507{
508 struct sk_buff *skb = urb->context;
509 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200510 struct btusb_data *data = hdev->driver_data;
511
512 BT_DBG("%s urb %p status %d count %d", hdev->name,
513 urb, urb->status, urb->actual_length);
514
515 if (!test_bit(HCI_RUNNING, &hdev->flags))
516 goto done;
517
518 if (!urb->status)
519 hdev->stat.byte_tx += urb->transfer_buffer_length;
520 else
521 hdev->stat.err_tx++;
522
523done:
524 spin_lock(&data->txlock);
525 data->tx_in_flight--;
526 spin_unlock(&data->txlock);
527
528 kfree(urb->setup_packet);
529
530 kfree_skb(skb);
531}
532
533static void btusb_isoc_tx_complete(struct urb *urb)
534{
535 struct sk_buff *skb = urb->context;
536 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200537
538 BT_DBG("%s urb %p status %d count %d", hdev->name,
539 urb, urb->status, urb->actual_length);
540
541 if (!test_bit(HCI_RUNNING, &hdev->flags))
542 goto done;
543
544 if (!urb->status)
545 hdev->stat.byte_tx += urb->transfer_buffer_length;
546 else
547 hdev->stat.err_tx++;
548
549done:
550 kfree(urb->setup_packet);
551
552 kfree_skb(skb);
553}
554
555static int btusb_open(struct hci_dev *hdev)
556{
557 struct btusb_data *data = hdev->driver_data;
558 int err;
559
560 BT_DBG("%s", hdev->name);
561
Oliver Neukum7bee5492009-08-24 23:44:59 +0200562 err = usb_autopm_get_interface(data->intf);
563 if (err < 0)
564 return err;
565
566 data->intf->needs_remote_wakeup = 1;
567
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200568 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200569 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200570
571 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200572 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100574 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100575 if (err < 0)
576 goto failed;
577
578 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200579 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100580 usb_kill_anchored_urbs(&data->intr_anchor);
581 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200582 }
583
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100584 set_bit(BTUSB_BULK_RUNNING, &data->flags);
585 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
586
Oliver Neukum7bee5492009-08-24 23:44:59 +0200587done:
588 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100589 return 0;
590
591failed:
592 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
593 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200594 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200595 return err;
596}
597
Oliver Neukum7bee5492009-08-24 23:44:59 +0200598static void btusb_stop_traffic(struct btusb_data *data)
599{
600 usb_kill_anchored_urbs(&data->intr_anchor);
601 usb_kill_anchored_urbs(&data->bulk_anchor);
602 usb_kill_anchored_urbs(&data->isoc_anchor);
603}
604
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605static int btusb_close(struct hci_dev *hdev)
606{
607 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200608 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200609
610 BT_DBG("%s", hdev->name);
611
612 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
613 return 0;
614
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200615 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800616 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200617
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200618 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200619 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200620 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200621
622 btusb_stop_traffic(data);
623 err = usb_autopm_get_interface(data->intf);
624 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100625 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200626
627 data->intf->needs_remote_wakeup = 0;
628 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100630failed:
631 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632 return 0;
633}
634
635static int btusb_flush(struct hci_dev *hdev)
636{
637 struct btusb_data *data = hdev->driver_data;
638
639 BT_DBG("%s", hdev->name);
640
641 usb_kill_anchored_urbs(&data->tx_anchor);
642
643 return 0;
644}
645
646static int btusb_send_frame(struct sk_buff *skb)
647{
648 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
649 struct btusb_data *data = hdev->driver_data;
650 struct usb_ctrlrequest *dr;
651 struct urb *urb;
652 unsigned int pipe;
653 int err;
654
655 BT_DBG("%s", hdev->name);
656
657 if (!test_bit(HCI_RUNNING, &hdev->flags))
658 return -EBUSY;
659
660 switch (bt_cb(skb)->pkt_type) {
661 case HCI_COMMAND_PKT:
662 urb = usb_alloc_urb(0, GFP_ATOMIC);
663 if (!urb)
664 return -ENOMEM;
665
666 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
667 if (!dr) {
668 usb_free_urb(urb);
669 return -ENOMEM;
670 }
671
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100672 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200673 dr->bRequest = 0;
674 dr->wIndex = 0;
675 dr->wValue = 0;
676 dr->wLength = __cpu_to_le16(skb->len);
677
678 pipe = usb_sndctrlpipe(data->udev, 0x00);
679
680 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
681 skb->data, skb->len, btusb_tx_complete, skb);
682
683 hdev->stat.cmd_tx++;
684 break;
685
686 case HCI_ACLDATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200687 if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1)
688 return -ENODEV;
689
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200690 urb = usb_alloc_urb(0, GFP_ATOMIC);
691 if (!urb)
692 return -ENOMEM;
693
694 pipe = usb_sndbulkpipe(data->udev,
695 data->bulk_tx_ep->bEndpointAddress);
696
697 usb_fill_bulk_urb(urb, data->udev, pipe,
698 skb->data, skb->len, btusb_tx_complete, skb);
699
700 hdev->stat.acl_tx++;
701 break;
702
703 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200704 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
705 return -ENODEV;
706
707 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
708 if (!urb)
709 return -ENOMEM;
710
711 pipe = usb_sndisocpipe(data->udev,
712 data->isoc_tx_ep->bEndpointAddress);
713
714 urb->dev = data->udev;
715 urb->pipe = pipe;
716 urb->context = skb;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200717 urb->complete = btusb_isoc_tx_complete;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200718 urb->interval = data->isoc_tx_ep->bInterval;
719
720 urb->transfer_flags = URB_ISO_ASAP;
721 urb->transfer_buffer = skb->data;
722 urb->transfer_buffer_length = skb->len;
723
724 __fill_isoc_descriptor(urb, skb->len,
725 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
726
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200727 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200728 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200729
730 default:
731 return -EILSEQ;
732 }
733
Oliver Neukum7bee5492009-08-24 23:44:59 +0200734 err = inc_tx(data);
735 if (err) {
736 usb_anchor_urb(urb, &data->deferred);
737 schedule_work(&data->waker);
738 err = 0;
739 goto done;
740 }
741
742skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200743 usb_anchor_urb(urb, &data->tx_anchor);
744
745 err = usb_submit_urb(urb, GFP_ATOMIC);
746 if (err < 0) {
747 BT_ERR("%s urb %p submission failed", hdev->name, urb);
748 kfree(urb->setup_packet);
749 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200750 } else {
751 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200752 }
753
754 usb_free_urb(urb);
755
Oliver Neukum7bee5492009-08-24 23:44:59 +0200756done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200757 return err;
758}
759
760static void btusb_destruct(struct hci_dev *hdev)
761{
762 struct btusb_data *data = hdev->driver_data;
763
764 BT_DBG("%s", hdev->name);
765
766 kfree(data);
767}
768
769static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
770{
771 struct btusb_data *data = hdev->driver_data;
772
773 BT_DBG("%s evt %d", hdev->name, evt);
774
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100775 if (hdev->conn_hash.sco_num != data->sco_num) {
776 data->sco_num = hdev->conn_hash.sco_num;
777 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100778 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200779}
780
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200781static int inline __set_isoc_interface(struct hci_dev *hdev, int altsetting)
782{
783 struct btusb_data *data = hdev->driver_data;
784 struct usb_interface *intf = data->isoc;
785 struct usb_endpoint_descriptor *ep_desc;
786 int i, err;
787
788 if (!data->isoc)
789 return -ENODEV;
790
791 err = usb_set_interface(data->udev, 1, altsetting);
792 if (err < 0) {
793 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
794 return err;
795 }
796
797 data->isoc_altsetting = altsetting;
798
799 data->isoc_tx_ep = NULL;
800 data->isoc_rx_ep = NULL;
801
802 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
803 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
804
805 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
806 data->isoc_tx_ep = ep_desc;
807 continue;
808 }
809
810 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
811 data->isoc_rx_ep = ep_desc;
812 continue;
813 }
814 }
815
816 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
817 BT_ERR("%s invalid SCO descriptors", hdev->name);
818 return -ENODEV;
819 }
820
821 return 0;
822}
823
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200824static void btusb_work(struct work_struct *work)
825{
826 struct btusb_data *data = container_of(work, struct btusb_data, work);
827 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200828 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200829
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200830 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300831 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +0200832 err = usb_autopm_get_interface(data->isoc);
833 if (err < 0) {
834 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
835 usb_kill_anchored_urbs(&data->isoc_anchor);
836 return;
837 }
838
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300839 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200840 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200841 if (data->isoc_altsetting != 2) {
842 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
843 usb_kill_anchored_urbs(&data->isoc_anchor);
844
845 if (__set_isoc_interface(hdev, 2) < 0)
846 return;
847 }
848
849 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100850 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200851 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
852 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100853 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200854 }
855 } else {
856 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
857 usb_kill_anchored_urbs(&data->isoc_anchor);
858
859 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300860 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200861 usb_autopm_put_interface(data->isoc);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200862 }
863}
864
Oliver Neukum7bee5492009-08-24 23:44:59 +0200865static void btusb_waker(struct work_struct *work)
866{
867 struct btusb_data *data = container_of(work, struct btusb_data, waker);
868 int err;
869
870 err = usb_autopm_get_interface(data->intf);
871 if (err < 0)
872 return;
873
874 usb_autopm_put_interface(data->intf);
875}
876
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200877static int btusb_probe(struct usb_interface *intf,
878 const struct usb_device_id *id)
879{
880 struct usb_endpoint_descriptor *ep_desc;
881 struct btusb_data *data;
882 struct hci_dev *hdev;
883 int i, err;
884
885 BT_DBG("intf %p id %p", intf, id);
886
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200887 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200888 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
889 return -ENODEV;
890
891 if (!id->driver_info) {
892 const struct usb_device_id *match;
893 match = usb_match_id(intf, blacklist_table);
894 if (match)
895 id = match;
896 }
897
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200898 if (id->driver_info == BTUSB_IGNORE)
899 return -ENODEV;
900
901 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
902 return -ENODEV;
903
904 if (ignore_csr && id->driver_info & BTUSB_CSR)
905 return -ENODEV;
906
907 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
908 return -ENODEV;
909
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200910 data = kzalloc(sizeof(*data), GFP_KERNEL);
911 if (!data)
912 return -ENOMEM;
913
914 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
915 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
916
917 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
918 data->intr_ep = ep_desc;
919 continue;
920 }
921
922 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
923 data->bulk_tx_ep = ep_desc;
924 continue;
925 }
926
927 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
928 data->bulk_rx_ep = ep_desc;
929 continue;
930 }
931 }
932
933 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
934 kfree(data);
935 return -ENODEV;
936 }
937
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100938 data->cmdreq_type = USB_TYPE_CLASS;
939
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200940 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200941 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200942
943 spin_lock_init(&data->lock);
944
945 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200946 INIT_WORK(&data->waker, btusb_waker);
947 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200948
949 init_usb_anchor(&data->tx_anchor);
950 init_usb_anchor(&data->intr_anchor);
951 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200952 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200953 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200954
955 hdev = hci_alloc_dev();
956 if (!hdev) {
957 kfree(data);
958 return -ENOMEM;
959 }
960
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100961 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200962 hdev->driver_data = data;
963
964 data->hdev = hdev;
965
966 SET_HCIDEV_DEV(hdev, &intf->dev);
967
968 hdev->open = btusb_open;
969 hdev->close = btusb_close;
970 hdev->flush = btusb_flush;
971 hdev->send = btusb_send_frame;
972 hdev->destruct = btusb_destruct;
973 hdev->notify = btusb_notify;
974
975 hdev->owner = THIS_MODULE;
976
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100977 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200978 data->isoc = usb_ifnum_to_if(data->udev, 1);
979
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100980 if (!reset)
981 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200982
983 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
984 if (!disable_scofix)
985 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
986 }
987
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200988 if (id->driver_info & BTUSB_BROKEN_ISOC)
989 data->isoc = NULL;
990
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100991 if (id->driver_info & BTUSB_DIGIANSWER) {
992 data->cmdreq_type = USB_TYPE_VENDOR;
993 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
994 }
995
996 if (id->driver_info & BTUSB_CSR) {
997 struct usb_device *udev = data->udev;
998
999 /* Old firmware would otherwise execute USB reset */
1000 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1001 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1002 }
1003
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001004 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001005 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001006
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001007 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001008 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1009 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001010
1011 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001012 }
1013
1014 if (id->driver_info & BTUSB_BCM92035) {
1015 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1016 struct sk_buff *skb;
1017
1018 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1019 if (skb) {
1020 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1021 skb_queue_tail(&hdev->driver_init, skb);
1022 }
1023 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001024
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001025 if (data->isoc) {
1026 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001027 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001028 if (err < 0) {
1029 hci_free_dev(hdev);
1030 kfree(data);
1031 return err;
1032 }
1033 }
1034
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001035 err = hci_register_dev(hdev);
1036 if (err < 0) {
1037 hci_free_dev(hdev);
1038 kfree(data);
1039 return err;
1040 }
1041
1042 usb_set_intfdata(intf, data);
1043
Matthew Garrett556ea922010-09-16 13:58:15 -04001044 usb_enable_autosuspend(interface_to_usbdev(intf));
1045
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001046 return 0;
1047}
1048
1049static void btusb_disconnect(struct usb_interface *intf)
1050{
1051 struct btusb_data *data = usb_get_intfdata(intf);
1052 struct hci_dev *hdev;
1053
1054 BT_DBG("intf %p", intf);
1055
1056 if (!data)
1057 return;
1058
1059 hdev = data->hdev;
1060
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001061 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001062
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001063 usb_set_intfdata(data->intf, NULL);
1064
1065 if (data->isoc)
1066 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001067
1068 hci_unregister_dev(hdev);
1069
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001070 if (intf == data->isoc)
1071 usb_driver_release_interface(&btusb_driver, data->intf);
1072 else if (data->isoc)
1073 usb_driver_release_interface(&btusb_driver, data->isoc);
1074
1075 __hci_dev_put(hdev);
1076
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001077 hci_free_dev(hdev);
1078}
1079
Oliver Neukum7bee5492009-08-24 23:44:59 +02001080#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001081static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1082{
1083 struct btusb_data *data = usb_get_intfdata(intf);
1084
1085 BT_DBG("intf %p", intf);
1086
1087 if (data->suspend_count++)
1088 return 0;
1089
Oliver Neukum7bee5492009-08-24 23:44:59 +02001090 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001091 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001092 set_bit(BTUSB_SUSPENDING, &data->flags);
1093 spin_unlock_irq(&data->txlock);
1094 } else {
1095 spin_unlock_irq(&data->txlock);
1096 data->suspend_count--;
1097 return -EBUSY;
1098 }
1099
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001100 cancel_work_sync(&data->work);
1101
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001103 usb_kill_anchored_urbs(&data->tx_anchor);
1104
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001105 return 0;
1106}
1107
Oliver Neukum7bee5492009-08-24 23:44:59 +02001108static void play_deferred(struct btusb_data *data)
1109{
1110 struct urb *urb;
1111 int err;
1112
1113 while ((urb = usb_get_from_anchor(&data->deferred))) {
1114 err = usb_submit_urb(urb, GFP_ATOMIC);
1115 if (err < 0)
1116 break;
1117
1118 data->tx_in_flight++;
1119 }
1120 usb_scuttle_anchored_urbs(&data->deferred);
1121}
1122
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001123static int btusb_resume(struct usb_interface *intf)
1124{
1125 struct btusb_data *data = usb_get_intfdata(intf);
1126 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001127 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001128
1129 BT_DBG("intf %p", intf);
1130
1131 if (--data->suspend_count)
1132 return 0;
1133
1134 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001135 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001136
1137 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1138 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1139 if (err < 0) {
1140 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001141 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001142 }
1143 }
1144
1145 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001146 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1147 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001148 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001149 goto failed;
1150 }
1151
1152 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001153 }
1154
1155 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1156 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1157 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1158 else
1159 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1160 }
1161
Oliver Neukum7bee5492009-08-24 23:44:59 +02001162 spin_lock_irq(&data->txlock);
1163 play_deferred(data);
1164 clear_bit(BTUSB_SUSPENDING, &data->flags);
1165 spin_unlock_irq(&data->txlock);
1166 schedule_work(&data->work);
1167
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001168 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001169
1170failed:
1171 usb_scuttle_anchored_urbs(&data->deferred);
1172done:
1173 spin_lock_irq(&data->txlock);
1174 clear_bit(BTUSB_SUSPENDING, &data->flags);
1175 spin_unlock_irq(&data->txlock);
1176
1177 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001178}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001179#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001180
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001181static struct usb_driver btusb_driver = {
1182 .name = "btusb",
1183 .probe = btusb_probe,
1184 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001185#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001186 .suspend = btusb_suspend,
1187 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001188#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001189 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001190 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191};
1192
1193static int __init btusb_init(void)
1194{
1195 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1196
1197 return usb_register(&btusb_driver);
1198}
1199
1200static void __exit btusb_exit(void)
1201{
1202 usb_deregister(&btusb_driver);
1203}
1204
1205module_init(btusb_init);
1206module_exit(btusb_exit);
1207
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001208module_param(ignore_dga, bool, 0644);
1209MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1210
1211module_param(ignore_csr, bool, 0644);
1212MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1213
1214module_param(ignore_sniffer, bool, 0644);
1215MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1216
1217module_param(disable_scofix, bool, 0644);
1218MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1219
1220module_param(force_scofix, bool, 0644);
1221MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1222
1223module_param(reset, bool, 0644);
1224MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1225
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001226MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1227MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1228MODULE_VERSION(VERSION);
1229MODULE_LICENSE("GPL");