blob: d323c1a8ecbb55cd0da239b4129bd8b1c3a7894f [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
102 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100103 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
104 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
105 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200106
107 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100108 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
109 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200110
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200111 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100112 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
113 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200114
115 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100116 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200117
118 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100119 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200120
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100121 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100122 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100123 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200124
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100125 /* Belkin F8T012 and F8T013 devices */
126 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
127 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200128
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100129 /* Asus WL-BTD202 device */
130 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
131
132 /* Kensington Bluetooth USB adapter */
133 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
134
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200135 /* RTX Telecom based adapters with buggy SCO support */
136 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
137 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
138
139 /* CONWISE Technology based adapters with buggy SCO support */
140 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
141
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200142 /* Digianswer devices */
143 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
144 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
145
146 /* CSR BlueCore Bluetooth Sniffer */
147 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
148
149 /* Frontline ComProbe Bluetooth Sniffer */
150 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
151
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200152 { } /* Terminating entry */
153};
154
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200155#define BTUSB_MAX_ISOC_FRAMES 10
156
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200157#define BTUSB_INTR_RUNNING 0
158#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200159#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200160#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300161#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200162
163struct btusb_data {
164 struct hci_dev *hdev;
165 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200166 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200167 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200168
169 spinlock_t lock;
170
171 unsigned long flags;
172
173 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200174 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200175
176 struct usb_anchor tx_anchor;
177 struct usb_anchor intr_anchor;
178 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200179 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200180 struct usb_anchor deferred;
181 int tx_in_flight;
182 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200183
184 struct usb_endpoint_descriptor *intr_ep;
185 struct usb_endpoint_descriptor *bulk_tx_ep;
186 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200187 struct usb_endpoint_descriptor *isoc_tx_ep;
188 struct usb_endpoint_descriptor *isoc_rx_ep;
189
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100190 __u8 cmdreq_type;
191
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100192 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200193 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100194 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200195};
196
Oliver Neukum7bee5492009-08-24 23:44:59 +0200197static int inc_tx(struct btusb_data *data)
198{
199 unsigned long flags;
200 int rv;
201
202 spin_lock_irqsave(&data->txlock, flags);
203 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
204 if (!rv)
205 data->tx_in_flight++;
206 spin_unlock_irqrestore(&data->txlock, flags);
207
208 return rv;
209}
210
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200211static void btusb_intr_complete(struct urb *urb)
212{
213 struct hci_dev *hdev = urb->context;
214 struct btusb_data *data = hdev->driver_data;
215 int err;
216
217 BT_DBG("%s urb %p status %d count %d", hdev->name,
218 urb, urb->status, urb->actual_length);
219
220 if (!test_bit(HCI_RUNNING, &hdev->flags))
221 return;
222
223 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200224 hdev->stat.byte_rx += urb->actual_length;
225
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200226 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
227 urb->transfer_buffer,
228 urb->actual_length) < 0) {
229 BT_ERR("%s corrupted event packet", hdev->name);
230 hdev->stat.err_rx++;
231 }
232 }
233
234 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
235 return;
236
Oliver Neukum7bee5492009-08-24 23:44:59 +0200237 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200238 usb_anchor_urb(urb, &data->intr_anchor);
239
240 err = usb_submit_urb(urb, GFP_ATOMIC);
241 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100242 if (err != -EPERM)
243 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200244 hdev->name, urb, -err);
245 usb_unanchor_urb(urb);
246 }
247}
248
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100249static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200250{
251 struct btusb_data *data = hdev->driver_data;
252 struct urb *urb;
253 unsigned char *buf;
254 unsigned int pipe;
255 int err, size;
256
257 BT_DBG("%s", hdev->name);
258
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200259 if (!data->intr_ep)
260 return -ENODEV;
261
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100262 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200263 if (!urb)
264 return -ENOMEM;
265
266 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
267
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100268 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200269 if (!buf) {
270 usb_free_urb(urb);
271 return -ENOMEM;
272 }
273
274 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
275
276 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
277 btusb_intr_complete, hdev,
278 data->intr_ep->bInterval);
279
280 urb->transfer_flags |= URB_FREE_BUFFER;
281
282 usb_anchor_urb(urb, &data->intr_anchor);
283
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100284 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200285 if (err < 0) {
286 BT_ERR("%s urb %p submission failed (%d)",
287 hdev->name, urb, -err);
288 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200289 }
290
291 usb_free_urb(urb);
292
293 return err;
294}
295
296static void btusb_bulk_complete(struct urb *urb)
297{
298 struct hci_dev *hdev = urb->context;
299 struct btusb_data *data = hdev->driver_data;
300 int err;
301
302 BT_DBG("%s urb %p status %d count %d", hdev->name,
303 urb, urb->status, urb->actual_length);
304
305 if (!test_bit(HCI_RUNNING, &hdev->flags))
306 return;
307
308 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200309 hdev->stat.byte_rx += urb->actual_length;
310
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200311 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
312 urb->transfer_buffer,
313 urb->actual_length) < 0) {
314 BT_ERR("%s corrupted ACL packet", hdev->name);
315 hdev->stat.err_rx++;
316 }
317 }
318
319 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
320 return;
321
322 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100323 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200324
325 err = usb_submit_urb(urb, GFP_ATOMIC);
326 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100327 if (err != -EPERM)
328 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200329 hdev->name, urb, -err);
330 usb_unanchor_urb(urb);
331 }
332}
333
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100334static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200335{
336 struct btusb_data *data = hdev->driver_data;
337 struct urb *urb;
338 unsigned char *buf;
339 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530340 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200341
342 BT_DBG("%s", hdev->name);
343
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200344 if (!data->bulk_rx_ep)
345 return -ENODEV;
346
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100347 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348 if (!urb)
349 return -ENOMEM;
350
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100351 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200352 if (!buf) {
353 usb_free_urb(urb);
354 return -ENOMEM;
355 }
356
357 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
358
359 usb_fill_bulk_urb(urb, data->udev, pipe,
360 buf, size, btusb_bulk_complete, hdev);
361
362 urb->transfer_flags |= URB_FREE_BUFFER;
363
Oliver Neukum7bee5492009-08-24 23:44:59 +0200364 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200365 usb_anchor_urb(urb, &data->bulk_anchor);
366
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100367 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200368 if (err < 0) {
369 BT_ERR("%s urb %p submission failed (%d)",
370 hdev->name, urb, -err);
371 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372 }
373
374 usb_free_urb(urb);
375
376 return err;
377}
378
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200379static void btusb_isoc_complete(struct urb *urb)
380{
381 struct hci_dev *hdev = urb->context;
382 struct btusb_data *data = hdev->driver_data;
383 int i, err;
384
385 BT_DBG("%s urb %p status %d count %d", hdev->name,
386 urb, urb->status, urb->actual_length);
387
388 if (!test_bit(HCI_RUNNING, &hdev->flags))
389 return;
390
391 if (urb->status == 0) {
392 for (i = 0; i < urb->number_of_packets; i++) {
393 unsigned int offset = urb->iso_frame_desc[i].offset;
394 unsigned int length = urb->iso_frame_desc[i].actual_length;
395
396 if (urb->iso_frame_desc[i].status)
397 continue;
398
399 hdev->stat.byte_rx += length;
400
401 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
402 urb->transfer_buffer + offset,
403 length) < 0) {
404 BT_ERR("%s corrupted SCO packet", hdev->name);
405 hdev->stat.err_rx++;
406 }
407 }
408 }
409
410 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
411 return;
412
413 usb_anchor_urb(urb, &data->isoc_anchor);
414
415 err = usb_submit_urb(urb, GFP_ATOMIC);
416 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100417 if (err != -EPERM)
418 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200419 hdev->name, urb, -err);
420 usb_unanchor_urb(urb);
421 }
422}
423
424static void inline __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
425{
426 int i, offset = 0;
427
428 BT_DBG("len %d mtu %d", len, mtu);
429
430 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
431 i++, offset += mtu, len -= mtu) {
432 urb->iso_frame_desc[i].offset = offset;
433 urb->iso_frame_desc[i].length = mtu;
434 }
435
436 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
437 urb->iso_frame_desc[i].offset = offset;
438 urb->iso_frame_desc[i].length = len;
439 i++;
440 }
441
442 urb->number_of_packets = i;
443}
444
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100445static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200446{
447 struct btusb_data *data = hdev->driver_data;
448 struct urb *urb;
449 unsigned char *buf;
450 unsigned int pipe;
451 int err, size;
452
453 BT_DBG("%s", hdev->name);
454
455 if (!data->isoc_rx_ep)
456 return -ENODEV;
457
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100458 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200459 if (!urb)
460 return -ENOMEM;
461
462 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
463 BTUSB_MAX_ISOC_FRAMES;
464
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100465 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200466 if (!buf) {
467 usb_free_urb(urb);
468 return -ENOMEM;
469 }
470
471 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
472
473 urb->dev = data->udev;
474 urb->pipe = pipe;
475 urb->context = hdev;
476 urb->complete = btusb_isoc_complete;
477 urb->interval = data->isoc_rx_ep->bInterval;
478
479 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
480 urb->transfer_buffer = buf;
481 urb->transfer_buffer_length = size;
482
483 __fill_isoc_descriptor(urb, size,
484 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
485
486 usb_anchor_urb(urb, &data->isoc_anchor);
487
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100488 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200489 if (err < 0) {
490 BT_ERR("%s urb %p submission failed (%d)",
491 hdev->name, urb, -err);
492 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200493 }
494
495 usb_free_urb(urb);
496
497 return err;
498}
499
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200500static void btusb_tx_complete(struct urb *urb)
501{
502 struct sk_buff *skb = urb->context;
503 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200504 struct btusb_data *data = hdev->driver_data;
505
506 BT_DBG("%s urb %p status %d count %d", hdev->name,
507 urb, urb->status, urb->actual_length);
508
509 if (!test_bit(HCI_RUNNING, &hdev->flags))
510 goto done;
511
512 if (!urb->status)
513 hdev->stat.byte_tx += urb->transfer_buffer_length;
514 else
515 hdev->stat.err_tx++;
516
517done:
518 spin_lock(&data->txlock);
519 data->tx_in_flight--;
520 spin_unlock(&data->txlock);
521
522 kfree(urb->setup_packet);
523
524 kfree_skb(skb);
525}
526
527static void btusb_isoc_tx_complete(struct urb *urb)
528{
529 struct sk_buff *skb = urb->context;
530 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200531
532 BT_DBG("%s urb %p status %d count %d", hdev->name,
533 urb, urb->status, urb->actual_length);
534
535 if (!test_bit(HCI_RUNNING, &hdev->flags))
536 goto done;
537
538 if (!urb->status)
539 hdev->stat.byte_tx += urb->transfer_buffer_length;
540 else
541 hdev->stat.err_tx++;
542
543done:
544 kfree(urb->setup_packet);
545
546 kfree_skb(skb);
547}
548
549static int btusb_open(struct hci_dev *hdev)
550{
551 struct btusb_data *data = hdev->driver_data;
552 int err;
553
554 BT_DBG("%s", hdev->name);
555
Oliver Neukum7bee5492009-08-24 23:44:59 +0200556 err = usb_autopm_get_interface(data->intf);
557 if (err < 0)
558 return err;
559
560 data->intf->needs_remote_wakeup = 1;
561
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200562 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200563 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200564
565 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200566 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200567
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100568 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100569 if (err < 0)
570 goto failed;
571
572 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100574 usb_kill_anchored_urbs(&data->intr_anchor);
575 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200576 }
577
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100578 set_bit(BTUSB_BULK_RUNNING, &data->flags);
579 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
580
Oliver Neukum7bee5492009-08-24 23:44:59 +0200581done:
582 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100583 return 0;
584
585failed:
586 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
587 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200588 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200589 return err;
590}
591
Oliver Neukum7bee5492009-08-24 23:44:59 +0200592static void btusb_stop_traffic(struct btusb_data *data)
593{
594 usb_kill_anchored_urbs(&data->intr_anchor);
595 usb_kill_anchored_urbs(&data->bulk_anchor);
596 usb_kill_anchored_urbs(&data->isoc_anchor);
597}
598
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200599static int btusb_close(struct hci_dev *hdev)
600{
601 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200602 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200603
604 BT_DBG("%s", hdev->name);
605
606 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
607 return 0;
608
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200609 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800610 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200611
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200612 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200613 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200614 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200615
616 btusb_stop_traffic(data);
617 err = usb_autopm_get_interface(data->intf);
618 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100619 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200620
621 data->intf->needs_remote_wakeup = 0;
622 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100624failed:
625 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200626 return 0;
627}
628
629static int btusb_flush(struct hci_dev *hdev)
630{
631 struct btusb_data *data = hdev->driver_data;
632
633 BT_DBG("%s", hdev->name);
634
635 usb_kill_anchored_urbs(&data->tx_anchor);
636
637 return 0;
638}
639
640static int btusb_send_frame(struct sk_buff *skb)
641{
642 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
643 struct btusb_data *data = hdev->driver_data;
644 struct usb_ctrlrequest *dr;
645 struct urb *urb;
646 unsigned int pipe;
647 int err;
648
649 BT_DBG("%s", hdev->name);
650
651 if (!test_bit(HCI_RUNNING, &hdev->flags))
652 return -EBUSY;
653
654 switch (bt_cb(skb)->pkt_type) {
655 case HCI_COMMAND_PKT:
656 urb = usb_alloc_urb(0, GFP_ATOMIC);
657 if (!urb)
658 return -ENOMEM;
659
660 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
661 if (!dr) {
662 usb_free_urb(urb);
663 return -ENOMEM;
664 }
665
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100666 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200667 dr->bRequest = 0;
668 dr->wIndex = 0;
669 dr->wValue = 0;
670 dr->wLength = __cpu_to_le16(skb->len);
671
672 pipe = usb_sndctrlpipe(data->udev, 0x00);
673
674 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
675 skb->data, skb->len, btusb_tx_complete, skb);
676
677 hdev->stat.cmd_tx++;
678 break;
679
680 case HCI_ACLDATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200681 if (!data->bulk_tx_ep || hdev->conn_hash.acl_num < 1)
682 return -ENODEV;
683
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200684 urb = usb_alloc_urb(0, GFP_ATOMIC);
685 if (!urb)
686 return -ENOMEM;
687
688 pipe = usb_sndbulkpipe(data->udev,
689 data->bulk_tx_ep->bEndpointAddress);
690
691 usb_fill_bulk_urb(urb, data->udev, pipe,
692 skb->data, skb->len, btusb_tx_complete, skb);
693
694 hdev->stat.acl_tx++;
695 break;
696
697 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200698 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
699 return -ENODEV;
700
701 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
702 if (!urb)
703 return -ENOMEM;
704
705 pipe = usb_sndisocpipe(data->udev,
706 data->isoc_tx_ep->bEndpointAddress);
707
708 urb->dev = data->udev;
709 urb->pipe = pipe;
710 urb->context = skb;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200711 urb->complete = btusb_isoc_tx_complete;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200712 urb->interval = data->isoc_tx_ep->bInterval;
713
714 urb->transfer_flags = URB_ISO_ASAP;
715 urb->transfer_buffer = skb->data;
716 urb->transfer_buffer_length = skb->len;
717
718 __fill_isoc_descriptor(urb, skb->len,
719 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
720
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200721 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200722 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200723
724 default:
725 return -EILSEQ;
726 }
727
Oliver Neukum7bee5492009-08-24 23:44:59 +0200728 err = inc_tx(data);
729 if (err) {
730 usb_anchor_urb(urb, &data->deferred);
731 schedule_work(&data->waker);
732 err = 0;
733 goto done;
734 }
735
736skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200737 usb_anchor_urb(urb, &data->tx_anchor);
738
739 err = usb_submit_urb(urb, GFP_ATOMIC);
740 if (err < 0) {
741 BT_ERR("%s urb %p submission failed", hdev->name, urb);
742 kfree(urb->setup_packet);
743 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200744 } else {
745 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200746 }
747
748 usb_free_urb(urb);
749
Oliver Neukum7bee5492009-08-24 23:44:59 +0200750done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200751 return err;
752}
753
754static void btusb_destruct(struct hci_dev *hdev)
755{
756 struct btusb_data *data = hdev->driver_data;
757
758 BT_DBG("%s", hdev->name);
759
760 kfree(data);
761}
762
763static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
764{
765 struct btusb_data *data = hdev->driver_data;
766
767 BT_DBG("%s evt %d", hdev->name, evt);
768
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100769 if (hdev->conn_hash.sco_num != data->sco_num) {
770 data->sco_num = hdev->conn_hash.sco_num;
771 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100772 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200773}
774
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200775static int inline __set_isoc_interface(struct hci_dev *hdev, int altsetting)
776{
777 struct btusb_data *data = hdev->driver_data;
778 struct usb_interface *intf = data->isoc;
779 struct usb_endpoint_descriptor *ep_desc;
780 int i, err;
781
782 if (!data->isoc)
783 return -ENODEV;
784
785 err = usb_set_interface(data->udev, 1, altsetting);
786 if (err < 0) {
787 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
788 return err;
789 }
790
791 data->isoc_altsetting = altsetting;
792
793 data->isoc_tx_ep = NULL;
794 data->isoc_rx_ep = NULL;
795
796 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
797 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
798
799 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
800 data->isoc_tx_ep = ep_desc;
801 continue;
802 }
803
804 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
805 data->isoc_rx_ep = ep_desc;
806 continue;
807 }
808 }
809
810 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
811 BT_ERR("%s invalid SCO descriptors", hdev->name);
812 return -ENODEV;
813 }
814
815 return 0;
816}
817
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200818static void btusb_work(struct work_struct *work)
819{
820 struct btusb_data *data = container_of(work, struct btusb_data, work);
821 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200822 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200823
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200824 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300825 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +0200826 err = usb_autopm_get_interface(data->isoc);
827 if (err < 0) {
828 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
829 usb_kill_anchored_urbs(&data->isoc_anchor);
830 return;
831 }
832
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300833 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200834 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200835 if (data->isoc_altsetting != 2) {
836 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
837 usb_kill_anchored_urbs(&data->isoc_anchor);
838
839 if (__set_isoc_interface(hdev, 2) < 0)
840 return;
841 }
842
843 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100844 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200845 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
846 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100847 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200848 }
849 } else {
850 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
851 usb_kill_anchored_urbs(&data->isoc_anchor);
852
853 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300854 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200855 usb_autopm_put_interface(data->isoc);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200856 }
857}
858
Oliver Neukum7bee5492009-08-24 23:44:59 +0200859static void btusb_waker(struct work_struct *work)
860{
861 struct btusb_data *data = container_of(work, struct btusb_data, waker);
862 int err;
863
864 err = usb_autopm_get_interface(data->intf);
865 if (err < 0)
866 return;
867
868 usb_autopm_put_interface(data->intf);
869}
870
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200871static int btusb_probe(struct usb_interface *intf,
872 const struct usb_device_id *id)
873{
874 struct usb_endpoint_descriptor *ep_desc;
875 struct btusb_data *data;
876 struct hci_dev *hdev;
877 int i, err;
878
879 BT_DBG("intf %p id %p", intf, id);
880
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200881 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200882 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
883 return -ENODEV;
884
885 if (!id->driver_info) {
886 const struct usb_device_id *match;
887 match = usb_match_id(intf, blacklist_table);
888 if (match)
889 id = match;
890 }
891
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200892 if (id->driver_info == BTUSB_IGNORE)
893 return -ENODEV;
894
895 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
896 return -ENODEV;
897
898 if (ignore_csr && id->driver_info & BTUSB_CSR)
899 return -ENODEV;
900
901 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
902 return -ENODEV;
903
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200904 data = kzalloc(sizeof(*data), GFP_KERNEL);
905 if (!data)
906 return -ENOMEM;
907
908 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
909 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
910
911 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
912 data->intr_ep = ep_desc;
913 continue;
914 }
915
916 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
917 data->bulk_tx_ep = ep_desc;
918 continue;
919 }
920
921 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
922 data->bulk_rx_ep = ep_desc;
923 continue;
924 }
925 }
926
927 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
928 kfree(data);
929 return -ENODEV;
930 }
931
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100932 data->cmdreq_type = USB_TYPE_CLASS;
933
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200934 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200935 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200936
937 spin_lock_init(&data->lock);
938
939 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200940 INIT_WORK(&data->waker, btusb_waker);
941 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200942
943 init_usb_anchor(&data->tx_anchor);
944 init_usb_anchor(&data->intr_anchor);
945 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200946 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200947 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200948
949 hdev = hci_alloc_dev();
950 if (!hdev) {
951 kfree(data);
952 return -ENOMEM;
953 }
954
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100955 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200956 hdev->driver_data = data;
957
958 data->hdev = hdev;
959
960 SET_HCIDEV_DEV(hdev, &intf->dev);
961
962 hdev->open = btusb_open;
963 hdev->close = btusb_close;
964 hdev->flush = btusb_flush;
965 hdev->send = btusb_send_frame;
966 hdev->destruct = btusb_destruct;
967 hdev->notify = btusb_notify;
968
969 hdev->owner = THIS_MODULE;
970
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100971 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200972 data->isoc = usb_ifnum_to_if(data->udev, 1);
973
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100974 if (!reset)
975 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200976
977 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
978 if (!disable_scofix)
979 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
980 }
981
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200982 if (id->driver_info & BTUSB_BROKEN_ISOC)
983 data->isoc = NULL;
984
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100985 if (id->driver_info & BTUSB_DIGIANSWER) {
986 data->cmdreq_type = USB_TYPE_VENDOR;
987 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
988 }
989
990 if (id->driver_info & BTUSB_CSR) {
991 struct usb_device *udev = data->udev;
992
993 /* Old firmware would otherwise execute USB reset */
994 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
995 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
996 }
997
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200998 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200999 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001000
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001001 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001002 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1003 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001004
1005 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001006 }
1007
1008 if (id->driver_info & BTUSB_BCM92035) {
1009 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1010 struct sk_buff *skb;
1011
1012 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1013 if (skb) {
1014 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1015 skb_queue_tail(&hdev->driver_init, skb);
1016 }
1017 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001018
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001019 if (data->isoc) {
1020 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001021 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001022 if (err < 0) {
1023 hci_free_dev(hdev);
1024 kfree(data);
1025 return err;
1026 }
1027 }
1028
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001029 err = hci_register_dev(hdev);
1030 if (err < 0) {
1031 hci_free_dev(hdev);
1032 kfree(data);
1033 return err;
1034 }
1035
1036 usb_set_intfdata(intf, data);
1037
Matthew Garrett556ea922010-09-16 13:58:15 -04001038 usb_enable_autosuspend(interface_to_usbdev(intf));
1039
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001040 return 0;
1041}
1042
1043static void btusb_disconnect(struct usb_interface *intf)
1044{
1045 struct btusb_data *data = usb_get_intfdata(intf);
1046 struct hci_dev *hdev;
1047
1048 BT_DBG("intf %p", intf);
1049
1050 if (!data)
1051 return;
1052
1053 hdev = data->hdev;
1054
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001055 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001056
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001057 usb_set_intfdata(data->intf, NULL);
1058
1059 if (data->isoc)
1060 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001061
1062 hci_unregister_dev(hdev);
1063
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001064 if (intf == data->isoc)
1065 usb_driver_release_interface(&btusb_driver, data->intf);
1066 else if (data->isoc)
1067 usb_driver_release_interface(&btusb_driver, data->isoc);
1068
1069 __hci_dev_put(hdev);
1070
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001071 hci_free_dev(hdev);
1072}
1073
Oliver Neukum7bee5492009-08-24 23:44:59 +02001074#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001075static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1076{
1077 struct btusb_data *data = usb_get_intfdata(intf);
1078
1079 BT_DBG("intf %p", intf);
1080
1081 if (data->suspend_count++)
1082 return 0;
1083
Oliver Neukum7bee5492009-08-24 23:44:59 +02001084 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001085 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001086 set_bit(BTUSB_SUSPENDING, &data->flags);
1087 spin_unlock_irq(&data->txlock);
1088 } else {
1089 spin_unlock_irq(&data->txlock);
1090 data->suspend_count--;
1091 return -EBUSY;
1092 }
1093
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001094 cancel_work_sync(&data->work);
1095
Oliver Neukum7bee5492009-08-24 23:44:59 +02001096 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001097 usb_kill_anchored_urbs(&data->tx_anchor);
1098
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001099 return 0;
1100}
1101
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102static void play_deferred(struct btusb_data *data)
1103{
1104 struct urb *urb;
1105 int err;
1106
1107 while ((urb = usb_get_from_anchor(&data->deferred))) {
1108 err = usb_submit_urb(urb, GFP_ATOMIC);
1109 if (err < 0)
1110 break;
1111
1112 data->tx_in_flight++;
1113 }
1114 usb_scuttle_anchored_urbs(&data->deferred);
1115}
1116
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001117static int btusb_resume(struct usb_interface *intf)
1118{
1119 struct btusb_data *data = usb_get_intfdata(intf);
1120 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001121 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001122
1123 BT_DBG("intf %p", intf);
1124
1125 if (--data->suspend_count)
1126 return 0;
1127
1128 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001129 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001130
1131 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1132 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1133 if (err < 0) {
1134 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001135 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001136 }
1137 }
1138
1139 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001140 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1141 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001142 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001143 goto failed;
1144 }
1145
1146 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001147 }
1148
1149 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1150 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1151 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1152 else
1153 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1154 }
1155
Oliver Neukum7bee5492009-08-24 23:44:59 +02001156 spin_lock_irq(&data->txlock);
1157 play_deferred(data);
1158 clear_bit(BTUSB_SUSPENDING, &data->flags);
1159 spin_unlock_irq(&data->txlock);
1160 schedule_work(&data->work);
1161
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001162 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001163
1164failed:
1165 usb_scuttle_anchored_urbs(&data->deferred);
1166done:
1167 spin_lock_irq(&data->txlock);
1168 clear_bit(BTUSB_SUSPENDING, &data->flags);
1169 spin_unlock_irq(&data->txlock);
1170
1171 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001172}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001173#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001174
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001175static struct usb_driver btusb_driver = {
1176 .name = "btusb",
1177 .probe = btusb_probe,
1178 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001179#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001180 .suspend = btusb_suspend,
1181 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001182#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001183 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001185};
1186
1187static int __init btusb_init(void)
1188{
1189 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1190
1191 return usb_register(&btusb_driver);
1192}
1193
1194static void __exit btusb_exit(void)
1195{
1196 usb_deregister(&btusb_driver);
1197}
1198
1199module_init(btusb_init);
1200module_exit(btusb_exit);
1201
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001202module_param(ignore_dga, bool, 0644);
1203MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1204
1205module_param(ignore_csr, bool, 0644);
1206MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1207
1208module_param(ignore_sniffer, bool, 0644);
1209MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1210
1211module_param(disable_scofix, bool, 0644);
1212MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1213
1214module_param(force_scofix, bool, 0644);
1215MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1216
1217module_param(reset, bool, 0644);
1218MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1219
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1221MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1222MODULE_VERSION(VERSION);
1223MODULE_LICENSE("GPL");