blob: 3b5e94f85145dc0151e54efde956c4ed19f02c2b [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.Li4770ac22011-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 Neukumb7103652011-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 Malleghemefb14972011-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 Kramer661a0d92011-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
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200103 { } /* Terminating entry */
104};
105
106MODULE_DEVICE_TABLE(usb, btusb_table);
107
108static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200109 /* CSR BlueCore devices */
110 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
111
112 /* Broadcom BCM2033 without firmware */
113 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
114
Bala Shanmugambe931122010-11-26 17:35:46 +0530115 /* Atheros 3011 with sflash firmware */
116 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
117
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800118 /* Atheros AR9285 Malbec with sflash firmware */
119 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
120
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530121 /* Atheros 3012 with sflash firmware */
Steven.Li4770ac22011-07-01 14:02:36 +0800122 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530123
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800124 /* Atheros AR5BBU12 with sflash firmware */
125 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
126
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200127 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100128 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
129 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
130 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200131
132 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100133 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
134 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200135
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200136 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100137 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
138 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200139
140 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100141 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200142
143 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100144 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200145
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100146 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100147 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100148 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200149
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100150 /* Belkin F8T012 and F8T013 devices */
151 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
152 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200153
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100154 /* Asus WL-BTD202 device */
155 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
156
157 /* Kensington Bluetooth USB adapter */
158 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
159
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200160 /* RTX Telecom based adapters with buggy SCO support */
161 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
162 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
163
164 /* CONWISE Technology based adapters with buggy SCO support */
165 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
166
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200167 /* Digianswer devices */
168 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
169 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
170
171 /* CSR BlueCore Bluetooth Sniffer */
172 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
173
174 /* Frontline ComProbe Bluetooth Sniffer */
175 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
176
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200177 { } /* Terminating entry */
178};
179
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200180#define BTUSB_MAX_ISOC_FRAMES 10
181
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200182#define BTUSB_INTR_RUNNING 0
183#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200184#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200185#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300186#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200187
188struct btusb_data {
189 struct hci_dev *hdev;
190 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200191 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200192 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200193
194 spinlock_t lock;
195
196 unsigned long flags;
197
198 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200199 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200200
201 struct usb_anchor tx_anchor;
202 struct usb_anchor intr_anchor;
203 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200204 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200205 struct usb_anchor deferred;
206 int tx_in_flight;
207 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200208
209 struct usb_endpoint_descriptor *intr_ep;
210 struct usb_endpoint_descriptor *bulk_tx_ep;
211 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200212 struct usb_endpoint_descriptor *isoc_tx_ep;
213 struct usb_endpoint_descriptor *isoc_rx_ep;
214
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100215 __u8 cmdreq_type;
216
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100217 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200218 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100219 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200220};
221
Oliver Neukum7bee5492009-08-24 23:44:59 +0200222static int inc_tx(struct btusb_data *data)
223{
224 unsigned long flags;
225 int rv;
226
227 spin_lock_irqsave(&data->txlock, flags);
228 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
229 if (!rv)
230 data->tx_in_flight++;
231 spin_unlock_irqrestore(&data->txlock, flags);
232
233 return rv;
234}
235
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200236static void btusb_intr_complete(struct urb *urb)
237{
238 struct hci_dev *hdev = urb->context;
239 struct btusb_data *data = hdev->driver_data;
240 int err;
241
242 BT_DBG("%s urb %p status %d count %d", hdev->name,
243 urb, urb->status, urb->actual_length);
244
245 if (!test_bit(HCI_RUNNING, &hdev->flags))
246 return;
247
248 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200249 hdev->stat.byte_rx += urb->actual_length;
250
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200251 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
252 urb->transfer_buffer,
253 urb->actual_length) < 0) {
254 BT_ERR("%s corrupted event packet", hdev->name);
255 hdev->stat.err_rx++;
256 }
Champion Chenee51b5f2014-09-06 14:06:08 -0500257 } else if (urb->status == -ENOENT) {
258 /* Avoid suspend failed when usb_kill_urb */
259 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200260 }
261
262 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
263 return;
264
Oliver Neukum7bee5492009-08-24 23:44:59 +0200265 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200266 usb_anchor_urb(urb, &data->intr_anchor);
267
268 err = usb_submit_urb(urb, GFP_ATOMIC);
269 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100270 if (err != -EPERM)
271 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200272 hdev->name, urb, -err);
273 usb_unanchor_urb(urb);
274 }
275}
276
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100277static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200278{
279 struct btusb_data *data = hdev->driver_data;
280 struct urb *urb;
281 unsigned char *buf;
282 unsigned int pipe;
283 int err, size;
284
285 BT_DBG("%s", hdev->name);
286
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200287 if (!data->intr_ep)
288 return -ENODEV;
289
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100290 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200291 if (!urb)
292 return -ENOMEM;
293
294 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
295
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100296 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200297 if (!buf) {
298 usb_free_urb(urb);
299 return -ENOMEM;
300 }
301
302 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
303
304 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
305 btusb_intr_complete, hdev,
306 data->intr_ep->bInterval);
307
308 urb->transfer_flags |= URB_FREE_BUFFER;
309
310 usb_anchor_urb(urb, &data->intr_anchor);
311
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100312 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200313 if (err < 0) {
314 BT_ERR("%s urb %p submission failed (%d)",
315 hdev->name, urb, -err);
316 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200317 }
318
319 usb_free_urb(urb);
320
321 return err;
322}
323
324static void btusb_bulk_complete(struct urb *urb)
325{
326 struct hci_dev *hdev = urb->context;
327 struct btusb_data *data = hdev->driver_data;
328 int err;
329
330 BT_DBG("%s urb %p status %d count %d", hdev->name,
331 urb, urb->status, urb->actual_length);
332
333 if (!test_bit(HCI_RUNNING, &hdev->flags))
334 return;
335
336 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200337 hdev->stat.byte_rx += urb->actual_length;
338
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200339 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
340 urb->transfer_buffer,
341 urb->actual_length) < 0) {
342 BT_ERR("%s corrupted ACL packet", hdev->name);
343 hdev->stat.err_rx++;
344 }
Champion Chenee51b5f2014-09-06 14:06:08 -0500345 } else if (urb->status == -ENOENT) {
346 /* Avoid suspend failed when usb_kill_urb */
347 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348 }
349
350 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
351 return;
352
353 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100354 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200355
356 err = usb_submit_urb(urb, GFP_ATOMIC);
357 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100358 if (err != -EPERM)
359 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200360 hdev->name, urb, -err);
361 usb_unanchor_urb(urb);
362 }
363}
364
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100365static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200366{
367 struct btusb_data *data = hdev->driver_data;
368 struct urb *urb;
369 unsigned char *buf;
370 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530371 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372
373 BT_DBG("%s", hdev->name);
374
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200375 if (!data->bulk_rx_ep)
376 return -ENODEV;
377
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100378 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200379 if (!urb)
380 return -ENOMEM;
381
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100382 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200383 if (!buf) {
384 usb_free_urb(urb);
385 return -ENOMEM;
386 }
387
388 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
389
390 usb_fill_bulk_urb(urb, data->udev, pipe,
391 buf, size, btusb_bulk_complete, hdev);
392
393 urb->transfer_flags |= URB_FREE_BUFFER;
394
Oliver Neukum7bee5492009-08-24 23:44:59 +0200395 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200396 usb_anchor_urb(urb, &data->bulk_anchor);
397
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100398 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200399 if (err < 0) {
400 BT_ERR("%s urb %p submission failed (%d)",
401 hdev->name, urb, -err);
402 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200403 }
404
405 usb_free_urb(urb);
406
407 return err;
408}
409
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200410static void btusb_isoc_complete(struct urb *urb)
411{
412 struct hci_dev *hdev = urb->context;
413 struct btusb_data *data = hdev->driver_data;
414 int i, err;
415
416 BT_DBG("%s urb %p status %d count %d", hdev->name,
417 urb, urb->status, urb->actual_length);
418
419 if (!test_bit(HCI_RUNNING, &hdev->flags))
420 return;
421
422 if (urb->status == 0) {
423 for (i = 0; i < urb->number_of_packets; i++) {
424 unsigned int offset = urb->iso_frame_desc[i].offset;
425 unsigned int length = urb->iso_frame_desc[i].actual_length;
426
427 if (urb->iso_frame_desc[i].status)
428 continue;
429
430 hdev->stat.byte_rx += length;
431
432 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
433 urb->transfer_buffer + offset,
434 length) < 0) {
435 BT_ERR("%s corrupted SCO packet", hdev->name);
436 hdev->stat.err_rx++;
437 }
438 }
Champion Chenee51b5f2014-09-06 14:06:08 -0500439 } else if (urb->status == -ENOENT) {
440 /* Avoid suspend failed when usb_kill_urb */
441 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200442 }
443
444 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
445 return;
446
447 usb_anchor_urb(urb, &data->isoc_anchor);
448
449 err = usb_submit_urb(urb, GFP_ATOMIC);
450 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100451 if (err != -EPERM)
452 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200453 hdev->name, urb, -err);
454 usb_unanchor_urb(urb);
455 }
456}
457
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700458static void inline __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200459{
460 int i, offset = 0;
461
462 BT_DBG("len %d mtu %d", len, mtu);
463
464 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
465 i++, offset += mtu, len -= mtu) {
466 urb->iso_frame_desc[i].offset = offset;
467 urb->iso_frame_desc[i].length = mtu;
468 }
469
470 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
471 urb->iso_frame_desc[i].offset = offset;
472 urb->iso_frame_desc[i].length = len;
473 i++;
474 }
475
476 urb->number_of_packets = i;
477}
478
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100479static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200480{
481 struct btusb_data *data = hdev->driver_data;
482 struct urb *urb;
483 unsigned char *buf;
484 unsigned int pipe;
485 int err, size;
486
487 BT_DBG("%s", hdev->name);
488
489 if (!data->isoc_rx_ep)
490 return -ENODEV;
491
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100492 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200493 if (!urb)
494 return -ENOMEM;
495
496 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
497 BTUSB_MAX_ISOC_FRAMES;
498
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100499 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200500 if (!buf) {
501 usb_free_urb(urb);
502 return -ENOMEM;
503 }
504
505 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
506
507 urb->dev = data->udev;
508 urb->pipe = pipe;
509 urb->context = hdev;
510 urb->complete = btusb_isoc_complete;
511 urb->interval = data->isoc_rx_ep->bInterval;
512
513 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
514 urb->transfer_buffer = buf;
515 urb->transfer_buffer_length = size;
516
517 __fill_isoc_descriptor(urb, size,
518 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
519
520 usb_anchor_urb(urb, &data->isoc_anchor);
521
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100522 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200523 if (err < 0) {
524 BT_ERR("%s urb %p submission failed (%d)",
525 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:
Stephen Boyd6f5722a2013-03-08 18:13:15 -0800715 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
728 hdev->stat.acl_tx++;
729 break;
730
731 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200732 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
733 return -ENODEV;
734
735 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
736 if (!urb)
737 return -ENOMEM;
738
739 pipe = usb_sndisocpipe(data->udev,
740 data->isoc_tx_ep->bEndpointAddress);
741
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300742 usb_fill_int_urb(urb, data->udev, pipe,
743 skb->data, skb->len, btusb_isoc_tx_complete,
744 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200745
746 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200747
748 __fill_isoc_descriptor(urb, skb->len,
749 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
750
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200751 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200752 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200753
754 default:
755 return -EILSEQ;
756 }
757
Oliver Neukum7bee5492009-08-24 23:44:59 +0200758 err = inc_tx(data);
759 if (err) {
760 usb_anchor_urb(urb, &data->deferred);
761 schedule_work(&data->waker);
762 err = 0;
763 goto done;
764 }
765
766skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200767 usb_anchor_urb(urb, &data->tx_anchor);
768
769 err = usb_submit_urb(urb, GFP_ATOMIC);
770 if (err < 0) {
771 BT_ERR("%s urb %p submission failed", hdev->name, urb);
772 kfree(urb->setup_packet);
773 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200774 } else {
775 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200776 }
777
778 usb_free_urb(urb);
779
Oliver Neukum7bee5492009-08-24 23:44:59 +0200780done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200781 return err;
782}
783
784static void btusb_destruct(struct hci_dev *hdev)
785{
786 struct btusb_data *data = hdev->driver_data;
787
788 BT_DBG("%s", hdev->name);
789
790 kfree(data);
791}
792
793static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
794{
795 struct btusb_data *data = hdev->driver_data;
796
797 BT_DBG("%s evt %d", hdev->name, evt);
798
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100799 if (hdev->conn_hash.sco_num != data->sco_num) {
800 data->sco_num = hdev->conn_hash.sco_num;
801 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100802 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200803}
804
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700805static int inline __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200806{
807 struct btusb_data *data = hdev->driver_data;
808 struct usb_interface *intf = data->isoc;
809 struct usb_endpoint_descriptor *ep_desc;
810 int i, err;
811
812 if (!data->isoc)
813 return -ENODEV;
814
815 err = usb_set_interface(data->udev, 1, altsetting);
816 if (err < 0) {
817 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
818 return err;
819 }
820
821 data->isoc_altsetting = altsetting;
822
823 data->isoc_tx_ep = NULL;
824 data->isoc_rx_ep = NULL;
825
826 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
827 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
828
829 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
830 data->isoc_tx_ep = ep_desc;
831 continue;
832 }
833
834 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
835 data->isoc_rx_ep = ep_desc;
836 continue;
837 }
838 }
839
840 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
841 BT_ERR("%s invalid SCO descriptors", hdev->name);
842 return -ENODEV;
843 }
844
845 return 0;
846}
847
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200848static void btusb_work(struct work_struct *work)
849{
850 struct btusb_data *data = container_of(work, struct btusb_data, work);
851 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200852 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200853
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200854 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300855 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100856 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200857 if (err < 0) {
858 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
859 usb_kill_anchored_urbs(&data->isoc_anchor);
860 return;
861 }
862
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300863 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200864 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200865 if (data->isoc_altsetting != 2) {
866 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
867 usb_kill_anchored_urbs(&data->isoc_anchor);
868
869 if (__set_isoc_interface(hdev, 2) < 0)
870 return;
871 }
872
873 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100874 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200875 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
876 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100877 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200878 }
879 } else {
880 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
881 usb_kill_anchored_urbs(&data->isoc_anchor);
882
883 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300884 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100885 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200886 }
887}
888
Oliver Neukum7bee5492009-08-24 23:44:59 +0200889static void btusb_waker(struct work_struct *work)
890{
891 struct btusb_data *data = container_of(work, struct btusb_data, waker);
892 int err;
893
894 err = usb_autopm_get_interface(data->intf);
895 if (err < 0)
896 return;
897
898 usb_autopm_put_interface(data->intf);
899}
900
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200901static int btusb_probe(struct usb_interface *intf,
902 const struct usb_device_id *id)
903{
904 struct usb_endpoint_descriptor *ep_desc;
905 struct btusb_data *data;
906 struct hci_dev *hdev;
907 int i, err;
908
909 BT_DBG("intf %p id %p", intf, id);
910
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200911 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200912 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
913 return -ENODEV;
914
915 if (!id->driver_info) {
916 const struct usb_device_id *match;
917 match = usb_match_id(intf, blacklist_table);
918 if (match)
919 id = match;
920 }
921
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200922 if (id->driver_info == BTUSB_IGNORE)
923 return -ENODEV;
924
925 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
926 return -ENODEV;
927
928 if (ignore_csr && id->driver_info & BTUSB_CSR)
929 return -ENODEV;
930
931 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
932 return -ENODEV;
933
Steven.Li4770ac22011-07-01 14:02:36 +0800934 if (id->driver_info & BTUSB_ATH3012) {
935 struct usb_device *udev = interface_to_usbdev(intf);
936
937 /* Old firmware would otherwise let ath3k driver load
938 * patch and sysconfig files */
939 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
940 return -ENODEV;
941 }
942
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200943 data = kzalloc(sizeof(*data), GFP_KERNEL);
944 if (!data)
945 return -ENOMEM;
946
947 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
948 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
949
950 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
951 data->intr_ep = ep_desc;
952 continue;
953 }
954
955 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
956 data->bulk_tx_ep = ep_desc;
957 continue;
958 }
959
960 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
961 data->bulk_rx_ep = ep_desc;
962 continue;
963 }
964 }
965
966 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
967 kfree(data);
968 return -ENODEV;
969 }
970
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100971 data->cmdreq_type = USB_TYPE_CLASS;
972
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200973 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200974 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200975
976 spin_lock_init(&data->lock);
977
978 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200979 INIT_WORK(&data->waker, btusb_waker);
980 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200981
982 init_usb_anchor(&data->tx_anchor);
983 init_usb_anchor(&data->intr_anchor);
984 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200985 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200986 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200987
988 hdev = hci_alloc_dev();
989 if (!hdev) {
990 kfree(data);
991 return -ENOMEM;
992 }
993
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100994 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200995 hdev->driver_data = data;
996
997 data->hdev = hdev;
998
999 SET_HCIDEV_DEV(hdev, &intf->dev);
1000
1001 hdev->open = btusb_open;
1002 hdev->close = btusb_close;
1003 hdev->flush = btusb_flush;
1004 hdev->send = btusb_send_frame;
1005 hdev->destruct = btusb_destruct;
1006 hdev->notify = btusb_notify;
1007
1008 hdev->owner = THIS_MODULE;
1009
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001010 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001011 data->isoc = usb_ifnum_to_if(data->udev, 1);
1012
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001013 if (!reset)
1014 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001015
1016 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1017 if (!disable_scofix)
1018 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1019 }
1020
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001021 if (id->driver_info & BTUSB_BROKEN_ISOC)
1022 data->isoc = NULL;
1023
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001024 if (id->driver_info & BTUSB_DIGIANSWER) {
1025 data->cmdreq_type = USB_TYPE_VENDOR;
1026 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1027 }
1028
1029 if (id->driver_info & BTUSB_CSR) {
1030 struct usb_device *udev = data->udev;
1031
1032 /* Old firmware would otherwise execute USB reset */
1033 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1034 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1035 }
1036
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001037 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001038 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001039
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001040 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001041 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1042 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001043
1044 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001045 }
1046
1047 if (id->driver_info & BTUSB_BCM92035) {
1048 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1049 struct sk_buff *skb;
1050
1051 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1052 if (skb) {
1053 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1054 skb_queue_tail(&hdev->driver_init, skb);
1055 }
1056 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001057
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001058 if (data->isoc) {
1059 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001060 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001061 if (err < 0) {
1062 hci_free_dev(hdev);
1063 kfree(data);
1064 return err;
1065 }
1066 }
1067
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001068 err = hci_register_dev(hdev);
1069 if (err < 0) {
1070 hci_free_dev(hdev);
1071 kfree(data);
1072 return err;
1073 }
1074
1075 usb_set_intfdata(intf, data);
1076
1077 return 0;
1078}
1079
1080static void btusb_disconnect(struct usb_interface *intf)
1081{
1082 struct btusb_data *data = usb_get_intfdata(intf);
1083 struct hci_dev *hdev;
1084
1085 BT_DBG("intf %p", intf);
1086
1087 if (!data)
1088 return;
1089
1090 hdev = data->hdev;
1091
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001092 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001093
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001094 usb_set_intfdata(data->intf, NULL);
1095
1096 if (data->isoc)
1097 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001098
1099 hci_unregister_dev(hdev);
1100
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001101 if (intf == data->isoc)
1102 usb_driver_release_interface(&btusb_driver, data->intf);
1103 else if (data->isoc)
1104 usb_driver_release_interface(&btusb_driver, data->isoc);
1105
1106 __hci_dev_put(hdev);
1107
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001108 hci_free_dev(hdev);
1109}
1110
Oliver Neukum7bee5492009-08-24 23:44:59 +02001111#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001112static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1113{
1114 struct btusb_data *data = usb_get_intfdata(intf);
1115
1116 BT_DBG("intf %p", intf);
1117
1118 if (data->suspend_count++)
1119 return 0;
1120
Oliver Neukum7bee5492009-08-24 23:44:59 +02001121 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001122 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001123 set_bit(BTUSB_SUSPENDING, &data->flags);
1124 spin_unlock_irq(&data->txlock);
1125 } else {
1126 spin_unlock_irq(&data->txlock);
1127 data->suspend_count--;
1128 return -EBUSY;
1129 }
1130
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001131 cancel_work_sync(&data->work);
1132
Oliver Neukum7bee5492009-08-24 23:44:59 +02001133 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001134 usb_kill_anchored_urbs(&data->tx_anchor);
1135
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001136 return 0;
1137}
1138
Oliver Neukum7bee5492009-08-24 23:44:59 +02001139static void play_deferred(struct btusb_data *data)
1140{
1141 struct urb *urb;
1142 int err;
1143
1144 while ((urb = usb_get_from_anchor(&data->deferred))) {
1145 err = usb_submit_urb(urb, GFP_ATOMIC);
1146 if (err < 0)
1147 break;
1148
1149 data->tx_in_flight++;
1150 }
1151 usb_scuttle_anchored_urbs(&data->deferred);
1152}
1153
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001154static int btusb_resume(struct usb_interface *intf)
1155{
1156 struct btusb_data *data = usb_get_intfdata(intf);
1157 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001158 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001159
1160 BT_DBG("intf %p", intf);
1161
1162 if (--data->suspend_count)
1163 return 0;
1164
1165 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001166 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001167
1168 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1169 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1170 if (err < 0) {
1171 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001172 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001173 }
1174 }
1175
1176 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001177 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1178 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001179 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001180 goto failed;
1181 }
1182
1183 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001184 }
1185
1186 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1187 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1188 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1189 else
1190 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1191 }
1192
Oliver Neukum7bee5492009-08-24 23:44:59 +02001193 spin_lock_irq(&data->txlock);
1194 play_deferred(data);
1195 clear_bit(BTUSB_SUSPENDING, &data->flags);
1196 spin_unlock_irq(&data->txlock);
1197 schedule_work(&data->work);
1198
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001199 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001200
1201failed:
1202 usb_scuttle_anchored_urbs(&data->deferred);
1203done:
1204 spin_lock_irq(&data->txlock);
1205 clear_bit(BTUSB_SUSPENDING, &data->flags);
1206 spin_unlock_irq(&data->txlock);
1207
1208 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001209}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001210#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001211
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001212static struct usb_driver btusb_driver = {
1213 .name = "btusb",
1214 .probe = btusb_probe,
1215 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001216#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001217 .suspend = btusb_suspend,
1218 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001219#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001221 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001222};
1223
1224static int __init btusb_init(void)
1225{
1226 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1227
1228 return usb_register(&btusb_driver);
1229}
1230
1231static void __exit btusb_exit(void)
1232{
1233 usb_deregister(&btusb_driver);
1234}
1235
1236module_init(btusb_init);
1237module_exit(btusb_exit);
1238
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001239module_param(ignore_dga, bool, 0644);
1240MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1241
1242module_param(ignore_csr, bool, 0644);
1243MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1244
1245module_param(ignore_sniffer, bool, 0644);
1246MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1247
1248module_param(disable_scofix, bool, 0644);
1249MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1250
1251module_param(force_scofix, bool, 0644);
1252MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1253
1254module_param(reset, bool, 0644);
1255MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1256
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001257MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1258MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1259MODULE_VERSION(VERSION);
1260MODULE_LICENSE("GPL");