blob: a67c6db733541437df6c4d466efb523dec43483d [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
29#include <linux/sched.h>
30#include <linux/errno.h>
31#include <linux/skbuff.h>
32
33#include <linux/usb.h>
34
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Oliver Neukum7bee5492009-08-24 23:44:59 +020038#define VERSION "0.6"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020039
40static int ignore_dga;
41static int ignore_csr;
42static int ignore_sniffer;
43static int disable_scofix;
44static int force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010045
46static int reset = 1;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020047
48static struct usb_driver btusb_driver;
49
50#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010051#define BTUSB_DIGIANSWER 0x02
52#define BTUSB_CSR 0x04
53#define BTUSB_SNIFFER 0x08
54#define BTUSB_BCM92035 0x10
55#define BTUSB_BROKEN_ISOC 0x20
56#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080057#define BTUSB_ATH3012 0x80
Marcel Holtmann5e23b922007-10-20 14:12:34 +020058
59static struct usb_device_id btusb_table[] = {
60 /* Generic Bluetooth USB device */
61 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
62
Oliver Neukumc510eae2011-09-21 11:41:45 +020063 /* Broadcom SoftSailing reporting vendor specific */
64 { USB_DEVICE(0x05ac, 0x21e1) },
65
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090066 /* Apple MacBookPro 7,1 */
67 { USB_DEVICE(0x05ac, 0x8213) },
68
Cyril Lacoux0a79f672010-07-14 10:29:27 +040069 /* Apple iMac11,1 */
70 { USB_DEVICE(0x05ac, 0x8215) },
71
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090072 /* Apple MacBookPro6,2 */
73 { USB_DEVICE(0x05ac, 0x8218) },
74
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010075 /* Apple MacBookAir3,1, MacBookAir3,2 */
76 { USB_DEVICE(0x05ac, 0x821b) },
77
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040078 /* Apple MacBookAir4,1 */
79 { USB_DEVICE(0x05ac, 0x821f) },
80
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030081 /* Apple MacBookPro8,2 */
82 { USB_DEVICE(0x05ac, 0x821a) },
83
Jurgen Kramerf78b68262011-09-04 18:01:42 +020084 /* Apple MacMini5,1 */
85 { USB_DEVICE(0x05ac, 0x8281) },
86
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020087 /* AVM BlueFRITZ! USB v2.0 */
88 { USB_DEVICE(0x057c, 0x3800) },
89
90 /* Bluetooth Ultraport Module from IBM */
91 { USB_DEVICE(0x04bf, 0x030a) },
92
93 /* ALPS Modules with non-standard id */
94 { USB_DEVICE(0x044e, 0x3001) },
95 { USB_DEVICE(0x044e, 0x3002) },
96
97 /* Ericsson with non-standard id */
98 { USB_DEVICE(0x0bdb, 0x1002) },
99
100 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100101 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200102
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800103 /* Broadcom BCM20702A0 */
104 { USB_DEVICE(0x413c, 0x8197) },
105
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200106 { } /* Terminating entry */
107};
108
109MODULE_DEVICE_TABLE(usb, btusb_table);
110
111static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200112 /* CSR BlueCore devices */
113 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
114
115 /* Broadcom BCM2033 without firmware */
116 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
117
Bala Shanmugambe931122010-11-26 17:35:46 +0530118 /* Atheros 3011 with sflash firmware */
119 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700120 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +0100121 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530122
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800123 /* Atheros AR9285 Malbec with sflash firmware */
124 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
125
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530126 /* Atheros 3012 with sflash firmware */
Steven.Li2d25f8b2011-07-01 14:02:36 +0800127 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530128
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800129 /* Atheros AR5BBU12 with sflash firmware */
130 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
131
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200132 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100133 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
134 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
135 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200136
137 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100138 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
139 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200140
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200141 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100142 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
143 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200144
145 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100146 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200147
148 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100149 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200150
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100151 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100152 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100153 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200154
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100155 /* Belkin F8T012 and F8T013 devices */
156 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
157 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200158
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100159 /* Asus WL-BTD202 device */
160 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
161
162 /* Kensington Bluetooth USB adapter */
163 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
164
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200165 /* RTX Telecom based adapters with buggy SCO support */
166 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
167 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
168
169 /* CONWISE Technology based adapters with buggy SCO support */
170 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
171
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200172 /* Digianswer devices */
173 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
174 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
175
176 /* CSR BlueCore Bluetooth Sniffer */
177 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
178
179 /* Frontline ComProbe Bluetooth Sniffer */
180 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
181
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200182 { } /* Terminating entry */
183};
184
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200185#define BTUSB_MAX_ISOC_FRAMES 10
186
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200187#define BTUSB_INTR_RUNNING 0
188#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200189#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200190#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300191#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200192
193struct btusb_data {
194 struct hci_dev *hdev;
195 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200196 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200197 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200198
199 spinlock_t lock;
200
201 unsigned long flags;
202
203 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200204 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200205
206 struct usb_anchor tx_anchor;
207 struct usb_anchor intr_anchor;
208 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200209 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200210 struct usb_anchor deferred;
211 int tx_in_flight;
212 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200213
214 struct usb_endpoint_descriptor *intr_ep;
215 struct usb_endpoint_descriptor *bulk_tx_ep;
216 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200217 struct usb_endpoint_descriptor *isoc_tx_ep;
218 struct usb_endpoint_descriptor *isoc_rx_ep;
219
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100220 __u8 cmdreq_type;
221
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100222 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200223 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100224 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200225};
226
Oliver Neukum7bee5492009-08-24 23:44:59 +0200227static int inc_tx(struct btusb_data *data)
228{
229 unsigned long flags;
230 int rv;
231
232 spin_lock_irqsave(&data->txlock, flags);
233 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
234 if (!rv)
235 data->tx_in_flight++;
236 spin_unlock_irqrestore(&data->txlock, flags);
237
238 return rv;
239}
240
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200241static void btusb_intr_complete(struct urb *urb)
242{
243 struct hci_dev *hdev = urb->context;
244 struct btusb_data *data = hdev->driver_data;
245 int err;
246
247 BT_DBG("%s urb %p status %d count %d", hdev->name,
248 urb, urb->status, urb->actual_length);
249
250 if (!test_bit(HCI_RUNNING, &hdev->flags))
251 return;
252
253 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200254 hdev->stat.byte_rx += urb->actual_length;
255
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200256 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
257 urb->transfer_buffer,
258 urb->actual_length) < 0) {
259 BT_ERR("%s corrupted event packet", hdev->name);
260 hdev->stat.err_rx++;
261 }
262 }
263
264 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
265 return;
266
Oliver Neukum7bee5492009-08-24 23:44:59 +0200267 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200268 usb_anchor_urb(urb, &data->intr_anchor);
269
270 err = usb_submit_urb(urb, GFP_ATOMIC);
271 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200272 /* -EPERM: urb is being killed;
273 * -ENODEV: device got disconnected */
274 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100275 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200276 hdev->name, urb, -err);
277 usb_unanchor_urb(urb);
278 }
279}
280
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100281static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200282{
283 struct btusb_data *data = hdev->driver_data;
284 struct urb *urb;
285 unsigned char *buf;
286 unsigned int pipe;
287 int err, size;
288
289 BT_DBG("%s", hdev->name);
290
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200291 if (!data->intr_ep)
292 return -ENODEV;
293
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100294 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200295 if (!urb)
296 return -ENOMEM;
297
298 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
299
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100300 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200301 if (!buf) {
302 usb_free_urb(urb);
303 return -ENOMEM;
304 }
305
306 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
307
308 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
309 btusb_intr_complete, hdev,
310 data->intr_ep->bInterval);
311
312 urb->transfer_flags |= URB_FREE_BUFFER;
313
314 usb_anchor_urb(urb, &data->intr_anchor);
315
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100316 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200317 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200318 if (err != -EPERM && err != -ENODEV)
319 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200320 hdev->name, urb, -err);
321 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200322 }
323
324 usb_free_urb(urb);
325
326 return err;
327}
328
329static void btusb_bulk_complete(struct urb *urb)
330{
331 struct hci_dev *hdev = urb->context;
332 struct btusb_data *data = hdev->driver_data;
333 int err;
334
335 BT_DBG("%s urb %p status %d count %d", hdev->name,
336 urb, urb->status, urb->actual_length);
337
338 if (!test_bit(HCI_RUNNING, &hdev->flags))
339 return;
340
341 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200342 hdev->stat.byte_rx += urb->actual_length;
343
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200344 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
345 urb->transfer_buffer,
346 urb->actual_length) < 0) {
347 BT_ERR("%s corrupted ACL packet", hdev->name);
348 hdev->stat.err_rx++;
349 }
350 }
351
352 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
353 return;
354
355 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100356 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200357
358 err = usb_submit_urb(urb, GFP_ATOMIC);
359 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200360 /* -EPERM: urb is being killed;
361 * -ENODEV: device got disconnected */
362 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100363 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200364 hdev->name, urb, -err);
365 usb_unanchor_urb(urb);
366 }
367}
368
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100369static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200370{
371 struct btusb_data *data = hdev->driver_data;
372 struct urb *urb;
373 unsigned char *buf;
374 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530375 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200376
377 BT_DBG("%s", hdev->name);
378
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200379 if (!data->bulk_rx_ep)
380 return -ENODEV;
381
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100382 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200383 if (!urb)
384 return -ENOMEM;
385
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100386 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200387 if (!buf) {
388 usb_free_urb(urb);
389 return -ENOMEM;
390 }
391
392 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
393
394 usb_fill_bulk_urb(urb, data->udev, pipe,
395 buf, size, btusb_bulk_complete, hdev);
396
397 urb->transfer_flags |= URB_FREE_BUFFER;
398
Oliver Neukum7bee5492009-08-24 23:44:59 +0200399 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200400 usb_anchor_urb(urb, &data->bulk_anchor);
401
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100402 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200403 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200404 if (err != -EPERM && err != -ENODEV)
405 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200406 hdev->name, urb, -err);
407 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200408 }
409
410 usb_free_urb(urb);
411
412 return err;
413}
414
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200415static void btusb_isoc_complete(struct urb *urb)
416{
417 struct hci_dev *hdev = urb->context;
418 struct btusb_data *data = hdev->driver_data;
419 int i, err;
420
421 BT_DBG("%s urb %p status %d count %d", hdev->name,
422 urb, urb->status, urb->actual_length);
423
424 if (!test_bit(HCI_RUNNING, &hdev->flags))
425 return;
426
427 if (urb->status == 0) {
428 for (i = 0; i < urb->number_of_packets; i++) {
429 unsigned int offset = urb->iso_frame_desc[i].offset;
430 unsigned int length = urb->iso_frame_desc[i].actual_length;
431
432 if (urb->iso_frame_desc[i].status)
433 continue;
434
435 hdev->stat.byte_rx += length;
436
437 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
438 urb->transfer_buffer + offset,
439 length) < 0) {
440 BT_ERR("%s corrupted SCO packet", hdev->name);
441 hdev->stat.err_rx++;
442 }
443 }
444 }
445
446 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
447 return;
448
449 usb_anchor_urb(urb, &data->isoc_anchor);
450
451 err = usb_submit_urb(urb, GFP_ATOMIC);
452 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200453 /* -EPERM: urb is being killed;
454 * -ENODEV: device got disconnected */
455 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100456 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200457 hdev->name, urb, -err);
458 usb_unanchor_urb(urb);
459 }
460}
461
Jesper Juhl42b16b32011-01-17 00:09:38 +0100462static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200463{
464 int i, offset = 0;
465
466 BT_DBG("len %d mtu %d", len, mtu);
467
468 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
469 i++, offset += mtu, len -= mtu) {
470 urb->iso_frame_desc[i].offset = offset;
471 urb->iso_frame_desc[i].length = mtu;
472 }
473
474 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
475 urb->iso_frame_desc[i].offset = offset;
476 urb->iso_frame_desc[i].length = len;
477 i++;
478 }
479
480 urb->number_of_packets = i;
481}
482
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100483static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200484{
485 struct btusb_data *data = hdev->driver_data;
486 struct urb *urb;
487 unsigned char *buf;
488 unsigned int pipe;
489 int err, size;
490
491 BT_DBG("%s", hdev->name);
492
493 if (!data->isoc_rx_ep)
494 return -ENODEV;
495
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100496 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200497 if (!urb)
498 return -ENOMEM;
499
500 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
501 BTUSB_MAX_ISOC_FRAMES;
502
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100503 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200504 if (!buf) {
505 usb_free_urb(urb);
506 return -ENOMEM;
507 }
508
509 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
510
Bing Zhaofa0fb932011-12-20 18:19:00 -0800511 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
512 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200513
514 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200515
516 __fill_isoc_descriptor(urb, size,
517 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
518
519 usb_anchor_urb(urb, &data->isoc_anchor);
520
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100521 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200522 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200523 if (err != -EPERM && err != -ENODEV)
524 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200525 hdev->name, urb, -err);
526 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200527 }
528
529 usb_free_urb(urb);
530
531 return err;
532}
533
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200534static void btusb_tx_complete(struct urb *urb)
535{
536 struct sk_buff *skb = urb->context;
537 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200538 struct btusb_data *data = hdev->driver_data;
539
540 BT_DBG("%s urb %p status %d count %d", hdev->name,
541 urb, urb->status, urb->actual_length);
542
543 if (!test_bit(HCI_RUNNING, &hdev->flags))
544 goto done;
545
546 if (!urb->status)
547 hdev->stat.byte_tx += urb->transfer_buffer_length;
548 else
549 hdev->stat.err_tx++;
550
551done:
552 spin_lock(&data->txlock);
553 data->tx_in_flight--;
554 spin_unlock(&data->txlock);
555
556 kfree(urb->setup_packet);
557
558 kfree_skb(skb);
559}
560
561static void btusb_isoc_tx_complete(struct urb *urb)
562{
563 struct sk_buff *skb = urb->context;
564 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200565
566 BT_DBG("%s urb %p status %d count %d", hdev->name,
567 urb, urb->status, urb->actual_length);
568
569 if (!test_bit(HCI_RUNNING, &hdev->flags))
570 goto done;
571
572 if (!urb->status)
573 hdev->stat.byte_tx += urb->transfer_buffer_length;
574 else
575 hdev->stat.err_tx++;
576
577done:
578 kfree(urb->setup_packet);
579
580 kfree_skb(skb);
581}
582
583static int btusb_open(struct hci_dev *hdev)
584{
585 struct btusb_data *data = hdev->driver_data;
586 int err;
587
588 BT_DBG("%s", hdev->name);
589
Oliver Neukum7bee5492009-08-24 23:44:59 +0200590 err = usb_autopm_get_interface(data->intf);
591 if (err < 0)
592 return err;
593
594 data->intf->needs_remote_wakeup = 1;
595
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200596 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200597 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200598
599 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200600 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200601
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100602 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100603 if (err < 0)
604 goto failed;
605
606 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200607 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100608 usb_kill_anchored_urbs(&data->intr_anchor);
609 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610 }
611
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100612 set_bit(BTUSB_BULK_RUNNING, &data->flags);
613 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
614
Oliver Neukum7bee5492009-08-24 23:44:59 +0200615done:
616 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100617 return 0;
618
619failed:
620 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
621 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200622 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 return err;
624}
625
Oliver Neukum7bee5492009-08-24 23:44:59 +0200626static void btusb_stop_traffic(struct btusb_data *data)
627{
628 usb_kill_anchored_urbs(&data->intr_anchor);
629 usb_kill_anchored_urbs(&data->bulk_anchor);
630 usb_kill_anchored_urbs(&data->isoc_anchor);
631}
632
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200633static int btusb_close(struct hci_dev *hdev)
634{
635 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200636 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637
638 BT_DBG("%s", hdev->name);
639
640 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
641 return 0;
642
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200643 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800644 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200645
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200646 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200648 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200649
650 btusb_stop_traffic(data);
651 err = usb_autopm_get_interface(data->intf);
652 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100653 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200654
655 data->intf->needs_remote_wakeup = 0;
656 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200657
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100658failed:
659 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200660 return 0;
661}
662
663static int btusb_flush(struct hci_dev *hdev)
664{
665 struct btusb_data *data = hdev->driver_data;
666
667 BT_DBG("%s", hdev->name);
668
669 usb_kill_anchored_urbs(&data->tx_anchor);
670
671 return 0;
672}
673
674static int btusb_send_frame(struct sk_buff *skb)
675{
676 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
677 struct btusb_data *data = hdev->driver_data;
678 struct usb_ctrlrequest *dr;
679 struct urb *urb;
680 unsigned int pipe;
681 int err;
682
683 BT_DBG("%s", hdev->name);
684
685 if (!test_bit(HCI_RUNNING, &hdev->flags))
686 return -EBUSY;
687
688 switch (bt_cb(skb)->pkt_type) {
689 case HCI_COMMAND_PKT:
690 urb = usb_alloc_urb(0, GFP_ATOMIC);
691 if (!urb)
692 return -ENOMEM;
693
694 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
695 if (!dr) {
696 usb_free_urb(urb);
697 return -ENOMEM;
698 }
699
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100700 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200701 dr->bRequest = 0;
702 dr->wIndex = 0;
703 dr->wValue = 0;
704 dr->wLength = __cpu_to_le16(skb->len);
705
706 pipe = usb_sndctrlpipe(data->udev, 0x00);
707
708 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
709 skb->data, skb->len, btusb_tx_complete, skb);
710
711 hdev->stat.cmd_tx++;
712 break;
713
714 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400715 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200716 return -ENODEV;
717
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200718 urb = usb_alloc_urb(0, GFP_ATOMIC);
719 if (!urb)
720 return -ENOMEM;
721
722 pipe = usb_sndbulkpipe(data->udev,
723 data->bulk_tx_ep->bEndpointAddress);
724
725 usb_fill_bulk_urb(urb, data->udev, pipe,
726 skb->data, skb->len, btusb_tx_complete, skb);
727
Luiz Augusto von Dentzb8aabfc2011-11-02 15:52:04 +0200728 if (skb->priority >= HCI_PRIO_MAX - 1)
729 urb->transfer_flags = URB_ISO_ASAP;
730
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200731 hdev->stat.acl_tx++;
732 break;
733
734 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200735 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
736 return -ENODEV;
737
738 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
739 if (!urb)
740 return -ENOMEM;
741
742 pipe = usb_sndisocpipe(data->udev,
743 data->isoc_tx_ep->bEndpointAddress);
744
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300745 usb_fill_int_urb(urb, data->udev, pipe,
746 skb->data, skb->len, btusb_isoc_tx_complete,
747 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200748
749 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200750
751 __fill_isoc_descriptor(urb, skb->len,
752 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
753
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200754 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200755 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200756
757 default:
758 return -EILSEQ;
759 }
760
Oliver Neukum7bee5492009-08-24 23:44:59 +0200761 err = inc_tx(data);
762 if (err) {
763 usb_anchor_urb(urb, &data->deferred);
764 schedule_work(&data->waker);
765 err = 0;
766 goto done;
767 }
768
769skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200770 usb_anchor_urb(urb, &data->tx_anchor);
771
772 err = usb_submit_urb(urb, GFP_ATOMIC);
773 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200774 if (err != -EPERM && err != -ENODEV)
775 BT_ERR("%s urb %p submission failed (%d)",
776 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200777 kfree(urb->setup_packet);
778 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200779 } else {
780 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200781 }
782
Oliver Neukum7bee5492009-08-24 23:44:59 +0200783done:
Cong Wang54a8a792011-11-22 09:32:57 +0800784 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200785 return err;
786}
787
788static void btusb_destruct(struct hci_dev *hdev)
789{
790 struct btusb_data *data = hdev->driver_data;
791
792 BT_DBG("%s", hdev->name);
793
794 kfree(data);
795}
796
797static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
798{
799 struct btusb_data *data = hdev->driver_data;
800
801 BT_DBG("%s evt %d", hdev->name, evt);
802
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100803 if (hdev->conn_hash.sco_num != data->sco_num) {
804 data->sco_num = hdev->conn_hash.sco_num;
805 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100806 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200807}
808
Jesper Juhl42b16b32011-01-17 00:09:38 +0100809static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200810{
811 struct btusb_data *data = hdev->driver_data;
812 struct usb_interface *intf = data->isoc;
813 struct usb_endpoint_descriptor *ep_desc;
814 int i, err;
815
816 if (!data->isoc)
817 return -ENODEV;
818
819 err = usb_set_interface(data->udev, 1, altsetting);
820 if (err < 0) {
821 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
822 return err;
823 }
824
825 data->isoc_altsetting = altsetting;
826
827 data->isoc_tx_ep = NULL;
828 data->isoc_rx_ep = NULL;
829
830 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
831 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
832
833 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
834 data->isoc_tx_ep = ep_desc;
835 continue;
836 }
837
838 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
839 data->isoc_rx_ep = ep_desc;
840 continue;
841 }
842 }
843
844 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
845 BT_ERR("%s invalid SCO descriptors", hdev->name);
846 return -ENODEV;
847 }
848
849 return 0;
850}
851
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200852static void btusb_work(struct work_struct *work)
853{
854 struct btusb_data *data = container_of(work, struct btusb_data, work);
855 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200856 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200857
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300859 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100860 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200861 if (err < 0) {
862 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
863 usb_kill_anchored_urbs(&data->isoc_anchor);
864 return;
865 }
866
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300867 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200868 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200869 if (data->isoc_altsetting != 2) {
870 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
871 usb_kill_anchored_urbs(&data->isoc_anchor);
872
873 if (__set_isoc_interface(hdev, 2) < 0)
874 return;
875 }
876
877 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100878 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200879 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
880 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100881 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200882 }
883 } else {
884 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
885 usb_kill_anchored_urbs(&data->isoc_anchor);
886
887 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300888 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100889 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200890 }
891}
892
Oliver Neukum7bee5492009-08-24 23:44:59 +0200893static void btusb_waker(struct work_struct *work)
894{
895 struct btusb_data *data = container_of(work, struct btusb_data, waker);
896 int err;
897
898 err = usb_autopm_get_interface(data->intf);
899 if (err < 0)
900 return;
901
902 usb_autopm_put_interface(data->intf);
903}
904
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200905static int btusb_probe(struct usb_interface *intf,
906 const struct usb_device_id *id)
907{
908 struct usb_endpoint_descriptor *ep_desc;
909 struct btusb_data *data;
910 struct hci_dev *hdev;
911 int i, err;
912
913 BT_DBG("intf %p id %p", intf, id);
914
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200915 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200916 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
917 return -ENODEV;
918
919 if (!id->driver_info) {
920 const struct usb_device_id *match;
921 match = usb_match_id(intf, blacklist_table);
922 if (match)
923 id = match;
924 }
925
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200926 if (id->driver_info == BTUSB_IGNORE)
927 return -ENODEV;
928
929 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
930 return -ENODEV;
931
932 if (ignore_csr && id->driver_info & BTUSB_CSR)
933 return -ENODEV;
934
935 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
936 return -ENODEV;
937
Steven.Li2d25f8b2011-07-01 14:02:36 +0800938 if (id->driver_info & BTUSB_ATH3012) {
939 struct usb_device *udev = interface_to_usbdev(intf);
940
941 /* Old firmware would otherwise let ath3k driver load
942 * patch and sysconfig files */
943 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
944 return -ENODEV;
945 }
946
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200947 data = kzalloc(sizeof(*data), GFP_KERNEL);
948 if (!data)
949 return -ENOMEM;
950
951 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
952 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
953
954 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
955 data->intr_ep = ep_desc;
956 continue;
957 }
958
959 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
960 data->bulk_tx_ep = ep_desc;
961 continue;
962 }
963
964 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
965 data->bulk_rx_ep = ep_desc;
966 continue;
967 }
968 }
969
970 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
971 kfree(data);
972 return -ENODEV;
973 }
974
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100975 data->cmdreq_type = USB_TYPE_CLASS;
976
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200977 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200978 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200979
980 spin_lock_init(&data->lock);
981
982 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200983 INIT_WORK(&data->waker, btusb_waker);
984 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200985
986 init_usb_anchor(&data->tx_anchor);
987 init_usb_anchor(&data->intr_anchor);
988 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200989 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200990 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200991
992 hdev = hci_alloc_dev();
993 if (!hdev) {
994 kfree(data);
995 return -ENOMEM;
996 }
997
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100998 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200999 hdev->driver_data = data;
1000
1001 data->hdev = hdev;
1002
1003 SET_HCIDEV_DEV(hdev, &intf->dev);
1004
1005 hdev->open = btusb_open;
1006 hdev->close = btusb_close;
1007 hdev->flush = btusb_flush;
1008 hdev->send = btusb_send_frame;
1009 hdev->destruct = btusb_destruct;
1010 hdev->notify = btusb_notify;
1011
1012 hdev->owner = THIS_MODULE;
1013
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001014 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001015 data->isoc = usb_ifnum_to_if(data->udev, 1);
1016
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001017 if (!reset)
1018 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001019
1020 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1021 if (!disable_scofix)
1022 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1023 }
1024
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001025 if (id->driver_info & BTUSB_BROKEN_ISOC)
1026 data->isoc = NULL;
1027
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001028 if (id->driver_info & BTUSB_DIGIANSWER) {
1029 data->cmdreq_type = USB_TYPE_VENDOR;
1030 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1031 }
1032
1033 if (id->driver_info & BTUSB_CSR) {
1034 struct usb_device *udev = data->udev;
1035
1036 /* Old firmware would otherwise execute USB reset */
1037 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1038 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1039 }
1040
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001041 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001042 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001043
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001044 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001045 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1046 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001047
1048 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001049 }
1050
1051 if (id->driver_info & BTUSB_BCM92035) {
1052 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1053 struct sk_buff *skb;
1054
1055 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1056 if (skb) {
1057 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1058 skb_queue_tail(&hdev->driver_init, skb);
1059 }
1060 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001061
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001062 if (data->isoc) {
1063 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001064 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001065 if (err < 0) {
1066 hci_free_dev(hdev);
1067 kfree(data);
1068 return err;
1069 }
1070 }
1071
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001072 err = hci_register_dev(hdev);
1073 if (err < 0) {
1074 hci_free_dev(hdev);
1075 kfree(data);
1076 return err;
1077 }
1078
1079 usb_set_intfdata(intf, data);
1080
1081 return 0;
1082}
1083
1084static void btusb_disconnect(struct usb_interface *intf)
1085{
1086 struct btusb_data *data = usb_get_intfdata(intf);
1087 struct hci_dev *hdev;
1088
1089 BT_DBG("intf %p", intf);
1090
1091 if (!data)
1092 return;
1093
1094 hdev = data->hdev;
1095
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001096 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001097
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001098 usb_set_intfdata(data->intf, NULL);
1099
1100 if (data->isoc)
1101 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001102
1103 hci_unregister_dev(hdev);
1104
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001105 if (intf == data->isoc)
1106 usb_driver_release_interface(&btusb_driver, data->intf);
1107 else if (data->isoc)
1108 usb_driver_release_interface(&btusb_driver, data->isoc);
1109
1110 __hci_dev_put(hdev);
1111
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001112 hci_free_dev(hdev);
1113}
1114
Oliver Neukum7bee5492009-08-24 23:44:59 +02001115#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001116static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1117{
1118 struct btusb_data *data = usb_get_intfdata(intf);
1119
1120 BT_DBG("intf %p", intf);
1121
1122 if (data->suspend_count++)
1123 return 0;
1124
Oliver Neukum7bee5492009-08-24 23:44:59 +02001125 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001126 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001127 set_bit(BTUSB_SUSPENDING, &data->flags);
1128 spin_unlock_irq(&data->txlock);
1129 } else {
1130 spin_unlock_irq(&data->txlock);
1131 data->suspend_count--;
1132 return -EBUSY;
1133 }
1134
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001135 cancel_work_sync(&data->work);
1136
Oliver Neukum7bee5492009-08-24 23:44:59 +02001137 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001138 usb_kill_anchored_urbs(&data->tx_anchor);
1139
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001140 return 0;
1141}
1142
Oliver Neukum7bee5492009-08-24 23:44:59 +02001143static void play_deferred(struct btusb_data *data)
1144{
1145 struct urb *urb;
1146 int err;
1147
1148 while ((urb = usb_get_from_anchor(&data->deferred))) {
1149 err = usb_submit_urb(urb, GFP_ATOMIC);
1150 if (err < 0)
1151 break;
1152
1153 data->tx_in_flight++;
1154 }
1155 usb_scuttle_anchored_urbs(&data->deferred);
1156}
1157
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001158static int btusb_resume(struct usb_interface *intf)
1159{
1160 struct btusb_data *data = usb_get_intfdata(intf);
1161 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001162 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001163
1164 BT_DBG("intf %p", intf);
1165
1166 if (--data->suspend_count)
1167 return 0;
1168
1169 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001170 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001171
1172 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1173 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1174 if (err < 0) {
1175 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001176 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001177 }
1178 }
1179
1180 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001181 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1182 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001183 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184 goto failed;
1185 }
1186
1187 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001188 }
1189
1190 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1191 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1192 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1193 else
1194 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1195 }
1196
Oliver Neukum7bee5492009-08-24 23:44:59 +02001197 spin_lock_irq(&data->txlock);
1198 play_deferred(data);
1199 clear_bit(BTUSB_SUSPENDING, &data->flags);
1200 spin_unlock_irq(&data->txlock);
1201 schedule_work(&data->work);
1202
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001203 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001204
1205failed:
1206 usb_scuttle_anchored_urbs(&data->deferred);
1207done:
1208 spin_lock_irq(&data->txlock);
1209 clear_bit(BTUSB_SUSPENDING, &data->flags);
1210 spin_unlock_irq(&data->txlock);
1211
1212 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001213}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001214#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001215
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216static struct usb_driver btusb_driver = {
1217 .name = "btusb",
1218 .probe = btusb_probe,
1219 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001220#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001221 .suspend = btusb_suspend,
1222 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001223#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001224 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001225 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001226};
1227
1228static int __init btusb_init(void)
1229{
1230 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1231
1232 return usb_register(&btusb_driver);
1233}
1234
1235static void __exit btusb_exit(void)
1236{
1237 usb_deregister(&btusb_driver);
1238}
1239
1240module_init(btusb_init);
1241module_exit(btusb_exit);
1242
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001243module_param(ignore_dga, bool, 0644);
1244MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1245
1246module_param(ignore_csr, bool, 0644);
1247MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1248
1249module_param(ignore_sniffer, bool, 0644);
1250MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1251
1252module_param(disable_scofix, bool, 0644);
1253MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1254
1255module_param(force_scofix, bool, 0644);
1256MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1257
1258module_param(reset, bool, 0644);
1259MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1260
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001261MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1262MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1263MODULE_VERSION(VERSION);
1264MODULE_LICENSE("GPL");