blob: 9a5d8111f13e1c642ec60186e7a6d7ae524a98bc [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
Rusty Russell90ab5ee2012-01-13 09:32:20 +103040static bool ignore_dga;
41static bool ignore_csr;
42static bool ignore_sniffer;
43static bool disable_scofix;
44static bool force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010045
Rusty Russell90ab5ee2012-01-13 09:32:20 +103046static bool 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 */
Jesse Sungc0190922011-12-22 10:48:47 +0800104 { USB_DEVICE(0x0a5c, 0x21e3) },
James M. Leddy0a4eaee2012-03-06 02:41:33 +0200105 { USB_DEVICE(0x0a5c, 0x21e6) },
João Paulo Rechi Vita6dfc3262012-03-14 21:45:16 +0200106 { USB_DEVICE(0x0a5c, 0x21e8) },
Manoj Iyer37305cf2012-02-02 09:32:36 -0600107 { USB_DEVICE(0x0a5c, 0x21f3) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800108 { USB_DEVICE(0x413c, 0x8197) },
109
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200110 { } /* Terminating entry */
111};
112
113MODULE_DEVICE_TABLE(usb, btusb_table);
114
115static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200116 /* CSR BlueCore devices */
117 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
118
119 /* Broadcom BCM2033 without firmware */
120 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
121
Bala Shanmugambe931122010-11-26 17:35:46 +0530122 /* Atheros 3011 with sflash firmware */
123 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700124 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +0100125 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Keng-Yu Lin6b6ba882011-11-30 18:32:37 +0800126 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530127
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800128 /* Atheros AR9285 Malbec with sflash firmware */
129 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
130
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530131 /* Atheros 3012 with sflash firmware */
Steven.Li2d25f8b2011-07-01 14:02:36 +0800132 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200133 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Eran9498ba72011-12-05 22:15:29 +0000134 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530135
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800136 /* Atheros AR5BBU12 with sflash firmware */
137 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
138
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200139 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100140 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
141 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
142 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200143
144 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100145 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
146 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200147
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200148 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100149 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
150 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200151
152 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100153 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200154
155 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100156 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200157
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100158 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100159 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100160 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200161
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100162 /* Belkin F8T012 and F8T013 devices */
163 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
164 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200165
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100166 /* Asus WL-BTD202 device */
167 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
168
169 /* Kensington Bluetooth USB adapter */
170 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
171
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200172 /* RTX Telecom based adapters with buggy SCO support */
173 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
174 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
175
176 /* CONWISE Technology based adapters with buggy SCO support */
177 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
178
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200179 /* Digianswer devices */
180 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
181 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
182
183 /* CSR BlueCore Bluetooth Sniffer */
184 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
185
186 /* Frontline ComProbe Bluetooth Sniffer */
187 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
188
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200189 { } /* Terminating entry */
190};
191
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200192#define BTUSB_MAX_ISOC_FRAMES 10
193
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200194#define BTUSB_INTR_RUNNING 0
195#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200196#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200197#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300198#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200199
200struct btusb_data {
201 struct hci_dev *hdev;
202 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200203 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200204 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200205
206 spinlock_t lock;
207
208 unsigned long flags;
209
210 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200211 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200212
213 struct usb_anchor tx_anchor;
214 struct usb_anchor intr_anchor;
215 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200216 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200217 struct usb_anchor deferred;
218 int tx_in_flight;
219 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200220
221 struct usb_endpoint_descriptor *intr_ep;
222 struct usb_endpoint_descriptor *bulk_tx_ep;
223 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200224 struct usb_endpoint_descriptor *isoc_tx_ep;
225 struct usb_endpoint_descriptor *isoc_rx_ep;
226
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100227 __u8 cmdreq_type;
228
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100229 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200230 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100231 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200232};
233
Oliver Neukum7bee5492009-08-24 23:44:59 +0200234static int inc_tx(struct btusb_data *data)
235{
236 unsigned long flags;
237 int rv;
238
239 spin_lock_irqsave(&data->txlock, flags);
240 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
241 if (!rv)
242 data->tx_in_flight++;
243 spin_unlock_irqrestore(&data->txlock, flags);
244
245 return rv;
246}
247
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200248static void btusb_intr_complete(struct urb *urb)
249{
250 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100251 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200252 int err;
253
254 BT_DBG("%s urb %p status %d count %d", hdev->name,
255 urb, urb->status, urb->actual_length);
256
257 if (!test_bit(HCI_RUNNING, &hdev->flags))
258 return;
259
260 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200261 hdev->stat.byte_rx += urb->actual_length;
262
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200263 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
264 urb->transfer_buffer,
265 urb->actual_length) < 0) {
266 BT_ERR("%s corrupted event packet", hdev->name);
267 hdev->stat.err_rx++;
268 }
269 }
270
271 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
272 return;
273
Oliver Neukum7bee5492009-08-24 23:44:59 +0200274 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200275 usb_anchor_urb(urb, &data->intr_anchor);
276
277 err = usb_submit_urb(urb, GFP_ATOMIC);
278 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200279 /* -EPERM: urb is being killed;
280 * -ENODEV: device got disconnected */
281 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100282 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200283 hdev->name, urb, -err);
284 usb_unanchor_urb(urb);
285 }
286}
287
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100288static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200289{
David Herrmann155961e2012-02-09 21:58:32 +0100290 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200291 struct urb *urb;
292 unsigned char *buf;
293 unsigned int pipe;
294 int err, size;
295
296 BT_DBG("%s", hdev->name);
297
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200298 if (!data->intr_ep)
299 return -ENODEV;
300
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100301 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200302 if (!urb)
303 return -ENOMEM;
304
305 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
306
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100307 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200308 if (!buf) {
309 usb_free_urb(urb);
310 return -ENOMEM;
311 }
312
313 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
314
315 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
316 btusb_intr_complete, hdev,
317 data->intr_ep->bInterval);
318
319 urb->transfer_flags |= URB_FREE_BUFFER;
320
321 usb_anchor_urb(urb, &data->intr_anchor);
322
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100323 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200324 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200325 if (err != -EPERM && err != -ENODEV)
326 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200327 hdev->name, urb, -err);
328 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200329 }
330
331 usb_free_urb(urb);
332
333 return err;
334}
335
336static void btusb_bulk_complete(struct urb *urb)
337{
338 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100339 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200340 int err;
341
342 BT_DBG("%s urb %p status %d count %d", hdev->name,
343 urb, urb->status, urb->actual_length);
344
345 if (!test_bit(HCI_RUNNING, &hdev->flags))
346 return;
347
348 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200349 hdev->stat.byte_rx += urb->actual_length;
350
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200351 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
352 urb->transfer_buffer,
353 urb->actual_length) < 0) {
354 BT_ERR("%s corrupted ACL packet", hdev->name);
355 hdev->stat.err_rx++;
356 }
357 }
358
359 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
360 return;
361
362 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100363 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200364
365 err = usb_submit_urb(urb, GFP_ATOMIC);
366 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200367 /* -EPERM: urb is being killed;
368 * -ENODEV: device got disconnected */
369 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100370 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200371 hdev->name, urb, -err);
372 usb_unanchor_urb(urb);
373 }
374}
375
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100376static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200377{
David Herrmann155961e2012-02-09 21:58:32 +0100378 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200379 struct urb *urb;
380 unsigned char *buf;
381 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530382 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200383
384 BT_DBG("%s", hdev->name);
385
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200386 if (!data->bulk_rx_ep)
387 return -ENODEV;
388
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100389 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200390 if (!urb)
391 return -ENOMEM;
392
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100393 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200394 if (!buf) {
395 usb_free_urb(urb);
396 return -ENOMEM;
397 }
398
399 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
400
401 usb_fill_bulk_urb(urb, data->udev, pipe,
402 buf, size, btusb_bulk_complete, hdev);
403
404 urb->transfer_flags |= URB_FREE_BUFFER;
405
Oliver Neukum7bee5492009-08-24 23:44:59 +0200406 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200407 usb_anchor_urb(urb, &data->bulk_anchor);
408
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100409 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200410 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200411 if (err != -EPERM && err != -ENODEV)
412 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200413 hdev->name, urb, -err);
414 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200415 }
416
417 usb_free_urb(urb);
418
419 return err;
420}
421
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200422static void btusb_isoc_complete(struct urb *urb)
423{
424 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100425 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200426 int i, err;
427
428 BT_DBG("%s urb %p status %d count %d", hdev->name,
429 urb, urb->status, urb->actual_length);
430
431 if (!test_bit(HCI_RUNNING, &hdev->flags))
432 return;
433
434 if (urb->status == 0) {
435 for (i = 0; i < urb->number_of_packets; i++) {
436 unsigned int offset = urb->iso_frame_desc[i].offset;
437 unsigned int length = urb->iso_frame_desc[i].actual_length;
438
439 if (urb->iso_frame_desc[i].status)
440 continue;
441
442 hdev->stat.byte_rx += length;
443
444 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
445 urb->transfer_buffer + offset,
446 length) < 0) {
447 BT_ERR("%s corrupted SCO packet", hdev->name);
448 hdev->stat.err_rx++;
449 }
450 }
451 }
452
453 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
454 return;
455
456 usb_anchor_urb(urb, &data->isoc_anchor);
457
458 err = usb_submit_urb(urb, GFP_ATOMIC);
459 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200460 /* -EPERM: urb is being killed;
461 * -ENODEV: device got disconnected */
462 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100463 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200464 hdev->name, urb, -err);
465 usb_unanchor_urb(urb);
466 }
467}
468
Jesper Juhl42b16b32011-01-17 00:09:38 +0100469static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200470{
471 int i, offset = 0;
472
473 BT_DBG("len %d mtu %d", len, mtu);
474
475 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
476 i++, offset += mtu, len -= mtu) {
477 urb->iso_frame_desc[i].offset = offset;
478 urb->iso_frame_desc[i].length = mtu;
479 }
480
481 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
482 urb->iso_frame_desc[i].offset = offset;
483 urb->iso_frame_desc[i].length = len;
484 i++;
485 }
486
487 urb->number_of_packets = i;
488}
489
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100490static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200491{
David Herrmann155961e2012-02-09 21:58:32 +0100492 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200493 struct urb *urb;
494 unsigned char *buf;
495 unsigned int pipe;
496 int err, size;
497
498 BT_DBG("%s", hdev->name);
499
500 if (!data->isoc_rx_ep)
501 return -ENODEV;
502
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100503 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200504 if (!urb)
505 return -ENOMEM;
506
507 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
508 BTUSB_MAX_ISOC_FRAMES;
509
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100510 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200511 if (!buf) {
512 usb_free_urb(urb);
513 return -ENOMEM;
514 }
515
516 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
517
Bing Zhaofa0fb932011-12-20 18:19:00 -0800518 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
519 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200520
521 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200522
523 __fill_isoc_descriptor(urb, size,
524 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
525
526 usb_anchor_urb(urb, &data->isoc_anchor);
527
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100528 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200529 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200530 if (err != -EPERM && err != -ENODEV)
531 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200532 hdev->name, urb, -err);
533 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200534 }
535
536 usb_free_urb(urb);
537
538 return err;
539}
540
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200541static void btusb_tx_complete(struct urb *urb)
542{
543 struct sk_buff *skb = urb->context;
544 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100545 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200546
547 BT_DBG("%s urb %p status %d count %d", hdev->name,
548 urb, urb->status, urb->actual_length);
549
550 if (!test_bit(HCI_RUNNING, &hdev->flags))
551 goto done;
552
553 if (!urb->status)
554 hdev->stat.byte_tx += urb->transfer_buffer_length;
555 else
556 hdev->stat.err_tx++;
557
558done:
559 spin_lock(&data->txlock);
560 data->tx_in_flight--;
561 spin_unlock(&data->txlock);
562
563 kfree(urb->setup_packet);
564
565 kfree_skb(skb);
566}
567
568static void btusb_isoc_tx_complete(struct urb *urb)
569{
570 struct sk_buff *skb = urb->context;
571 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200572
573 BT_DBG("%s urb %p status %d count %d", hdev->name,
574 urb, urb->status, urb->actual_length);
575
576 if (!test_bit(HCI_RUNNING, &hdev->flags))
577 goto done;
578
579 if (!urb->status)
580 hdev->stat.byte_tx += urb->transfer_buffer_length;
581 else
582 hdev->stat.err_tx++;
583
584done:
585 kfree(urb->setup_packet);
586
587 kfree_skb(skb);
588}
589
590static int btusb_open(struct hci_dev *hdev)
591{
David Herrmann155961e2012-02-09 21:58:32 +0100592 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200593 int err;
594
595 BT_DBG("%s", hdev->name);
596
Oliver Neukum7bee5492009-08-24 23:44:59 +0200597 err = usb_autopm_get_interface(data->intf);
598 if (err < 0)
599 return err;
600
601 data->intf->needs_remote_wakeup = 1;
602
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200603 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200604 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605
606 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200607 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200608
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100609 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100610 if (err < 0)
611 goto failed;
612
613 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200614 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100615 usb_kill_anchored_urbs(&data->intr_anchor);
616 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200617 }
618
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100619 set_bit(BTUSB_BULK_RUNNING, &data->flags);
620 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
621
Oliver Neukum7bee5492009-08-24 23:44:59 +0200622done:
623 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100624 return 0;
625
626failed:
627 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
628 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200629 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200630 return err;
631}
632
Oliver Neukum7bee5492009-08-24 23:44:59 +0200633static void btusb_stop_traffic(struct btusb_data *data)
634{
635 usb_kill_anchored_urbs(&data->intr_anchor);
636 usb_kill_anchored_urbs(&data->bulk_anchor);
637 usb_kill_anchored_urbs(&data->isoc_anchor);
638}
639
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200640static int btusb_close(struct hci_dev *hdev)
641{
David Herrmann155961e2012-02-09 21:58:32 +0100642 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200643 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644
645 BT_DBG("%s", hdev->name);
646
647 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
648 return 0;
649
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200650 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800651 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200652
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200653 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200654 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200655 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200656
657 btusb_stop_traffic(data);
658 err = usb_autopm_get_interface(data->intf);
659 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100660 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200661
662 data->intf->needs_remote_wakeup = 0;
663 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200664
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100665failed:
666 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200667 return 0;
668}
669
670static int btusb_flush(struct hci_dev *hdev)
671{
David Herrmann155961e2012-02-09 21:58:32 +0100672 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200673
674 BT_DBG("%s", hdev->name);
675
676 usb_kill_anchored_urbs(&data->tx_anchor);
677
678 return 0;
679}
680
681static int btusb_send_frame(struct sk_buff *skb)
682{
683 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100684 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200685 struct usb_ctrlrequest *dr;
686 struct urb *urb;
687 unsigned int pipe;
688 int err;
689
690 BT_DBG("%s", hdev->name);
691
692 if (!test_bit(HCI_RUNNING, &hdev->flags))
693 return -EBUSY;
694
695 switch (bt_cb(skb)->pkt_type) {
696 case HCI_COMMAND_PKT:
697 urb = usb_alloc_urb(0, GFP_ATOMIC);
698 if (!urb)
699 return -ENOMEM;
700
701 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
702 if (!dr) {
703 usb_free_urb(urb);
704 return -ENOMEM;
705 }
706
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100707 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200708 dr->bRequest = 0;
709 dr->wIndex = 0;
710 dr->wValue = 0;
711 dr->wLength = __cpu_to_le16(skb->len);
712
713 pipe = usb_sndctrlpipe(data->udev, 0x00);
714
715 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
716 skb->data, skb->len, btusb_tx_complete, skb);
717
718 hdev->stat.cmd_tx++;
719 break;
720
721 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400722 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200723 return -ENODEV;
724
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200725 urb = usb_alloc_urb(0, GFP_ATOMIC);
726 if (!urb)
727 return -ENOMEM;
728
729 pipe = usb_sndbulkpipe(data->udev,
730 data->bulk_tx_ep->bEndpointAddress);
731
732 usb_fill_bulk_urb(urb, data->udev, pipe,
733 skb->data, skb->len, btusb_tx_complete, skb);
734
735 hdev->stat.acl_tx++;
736 break;
737
738 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200739 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
740 return -ENODEV;
741
742 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
743 if (!urb)
744 return -ENOMEM;
745
746 pipe = usb_sndisocpipe(data->udev,
747 data->isoc_tx_ep->bEndpointAddress);
748
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300749 usb_fill_int_urb(urb, data->udev, pipe,
750 skb->data, skb->len, btusb_isoc_tx_complete,
751 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200752
753 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200754
755 __fill_isoc_descriptor(urb, skb->len,
756 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
757
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200758 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200759 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200760
761 default:
762 return -EILSEQ;
763 }
764
Oliver Neukum7bee5492009-08-24 23:44:59 +0200765 err = inc_tx(data);
766 if (err) {
767 usb_anchor_urb(urb, &data->deferred);
768 schedule_work(&data->waker);
769 err = 0;
770 goto done;
771 }
772
773skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200774 usb_anchor_urb(urb, &data->tx_anchor);
775
776 err = usb_submit_urb(urb, GFP_ATOMIC);
777 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200778 if (err != -EPERM && err != -ENODEV)
779 BT_ERR("%s urb %p submission failed (%d)",
780 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200781 kfree(urb->setup_packet);
782 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200783 } else {
784 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200785 }
786
Oliver Neukum7bee5492009-08-24 23:44:59 +0200787done:
Cong Wang54a8a792011-11-22 09:32:57 +0800788 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200789 return err;
790}
791
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200792static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
793{
David Herrmann155961e2012-02-09 21:58:32 +0100794 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200795
796 BT_DBG("%s evt %d", hdev->name, evt);
797
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100798 if (hdev->conn_hash.sco_num != data->sco_num) {
799 data->sco_num = hdev->conn_hash.sco_num;
800 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100801 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200802}
803
Jesper Juhl42b16b32011-01-17 00:09:38 +0100804static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200805{
David Herrmann155961e2012-02-09 21:58:32 +0100806 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200807 struct usb_interface *intf = data->isoc;
808 struct usb_endpoint_descriptor *ep_desc;
809 int i, err;
810
811 if (!data->isoc)
812 return -ENODEV;
813
814 err = usb_set_interface(data->udev, 1, altsetting);
815 if (err < 0) {
816 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
817 return err;
818 }
819
820 data->isoc_altsetting = altsetting;
821
822 data->isoc_tx_ep = NULL;
823 data->isoc_rx_ep = NULL;
824
825 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
826 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
827
828 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
829 data->isoc_tx_ep = ep_desc;
830 continue;
831 }
832
833 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
834 data->isoc_rx_ep = ep_desc;
835 continue;
836 }
837 }
838
839 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
840 BT_ERR("%s invalid SCO descriptors", hdev->name);
841 return -ENODEV;
842 }
843
844 return 0;
845}
846
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200847static void btusb_work(struct work_struct *work)
848{
849 struct btusb_data *data = container_of(work, struct btusb_data, work);
850 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200851 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200852
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200853 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300854 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100855 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200856 if (err < 0) {
857 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
858 usb_kill_anchored_urbs(&data->isoc_anchor);
859 return;
860 }
861
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300862 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200863 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200864 if (data->isoc_altsetting != 2) {
865 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
866 usb_kill_anchored_urbs(&data->isoc_anchor);
867
868 if (__set_isoc_interface(hdev, 2) < 0)
869 return;
870 }
871
872 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100873 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200874 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
875 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100876 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200877 }
878 } else {
879 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
880 usb_kill_anchored_urbs(&data->isoc_anchor);
881
882 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300883 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100884 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200885 }
886}
887
Oliver Neukum7bee5492009-08-24 23:44:59 +0200888static void btusb_waker(struct work_struct *work)
889{
890 struct btusb_data *data = container_of(work, struct btusb_data, waker);
891 int err;
892
893 err = usb_autopm_get_interface(data->intf);
894 if (err < 0)
895 return;
896
897 usb_autopm_put_interface(data->intf);
898}
899
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200900static int btusb_probe(struct usb_interface *intf,
901 const struct usb_device_id *id)
902{
903 struct usb_endpoint_descriptor *ep_desc;
904 struct btusb_data *data;
905 struct hci_dev *hdev;
906 int i, err;
907
908 BT_DBG("intf %p id %p", intf, id);
909
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200910 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200911 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
912 return -ENODEV;
913
914 if (!id->driver_info) {
915 const struct usb_device_id *match;
916 match = usb_match_id(intf, blacklist_table);
917 if (match)
918 id = match;
919 }
920
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200921 if (id->driver_info == BTUSB_IGNORE)
922 return -ENODEV;
923
924 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
925 return -ENODEV;
926
927 if (ignore_csr && id->driver_info & BTUSB_CSR)
928 return -ENODEV;
929
930 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
931 return -ENODEV;
932
Steven.Li2d25f8b2011-07-01 14:02:36 +0800933 if (id->driver_info & BTUSB_ATH3012) {
934 struct usb_device *udev = interface_to_usbdev(intf);
935
936 /* Old firmware would otherwise let ath3k driver load
937 * patch and sysconfig files */
938 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
939 return -ENODEV;
940 }
941
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200942 data = kzalloc(sizeof(*data), GFP_KERNEL);
943 if (!data)
944 return -ENOMEM;
945
946 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
947 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
948
949 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
950 data->intr_ep = ep_desc;
951 continue;
952 }
953
954 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
955 data->bulk_tx_ep = ep_desc;
956 continue;
957 }
958
959 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
960 data->bulk_rx_ep = ep_desc;
961 continue;
962 }
963 }
964
965 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
966 kfree(data);
967 return -ENODEV;
968 }
969
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100970 data->cmdreq_type = USB_TYPE_CLASS;
971
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200972 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200973 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200974
975 spin_lock_init(&data->lock);
976
977 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200978 INIT_WORK(&data->waker, btusb_waker);
979 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200980
981 init_usb_anchor(&data->tx_anchor);
982 init_usb_anchor(&data->intr_anchor);
983 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200984 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200985 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200986
987 hdev = hci_alloc_dev();
988 if (!hdev) {
989 kfree(data);
990 return -ENOMEM;
991 }
992
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100993 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100994 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200995
996 data->hdev = hdev;
997
998 SET_HCIDEV_DEV(hdev, &intf->dev);
999
1000 hdev->open = btusb_open;
1001 hdev->close = btusb_close;
1002 hdev->flush = btusb_flush;
1003 hdev->send = btusb_send_frame;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001004 hdev->notify = btusb_notify;
1005
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001006 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001007 data->isoc = usb_ifnum_to_if(data->udev, 1);
1008
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001009 if (!reset)
1010 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001011
1012 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1013 if (!disable_scofix)
1014 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1015 }
1016
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001017 if (id->driver_info & BTUSB_BROKEN_ISOC)
1018 data->isoc = NULL;
1019
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001020 if (id->driver_info & BTUSB_DIGIANSWER) {
1021 data->cmdreq_type = USB_TYPE_VENDOR;
1022 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1023 }
1024
1025 if (id->driver_info & BTUSB_CSR) {
1026 struct usb_device *udev = data->udev;
1027
1028 /* Old firmware would otherwise execute USB reset */
1029 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1030 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1031 }
1032
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001033 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001034 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001035
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001036 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001037 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1038 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001039
1040 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001041 }
1042
1043 if (id->driver_info & BTUSB_BCM92035) {
1044 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1045 struct sk_buff *skb;
1046
1047 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1048 if (skb) {
1049 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1050 skb_queue_tail(&hdev->driver_init, skb);
1051 }
1052 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001053
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001054 if (data->isoc) {
1055 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001056 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001057 if (err < 0) {
1058 hci_free_dev(hdev);
1059 kfree(data);
1060 return err;
1061 }
1062 }
1063
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001064 err = hci_register_dev(hdev);
1065 if (err < 0) {
1066 hci_free_dev(hdev);
1067 kfree(data);
1068 return err;
1069 }
1070
1071 usb_set_intfdata(intf, data);
1072
1073 return 0;
1074}
1075
1076static void btusb_disconnect(struct usb_interface *intf)
1077{
1078 struct btusb_data *data = usb_get_intfdata(intf);
1079 struct hci_dev *hdev;
1080
1081 BT_DBG("intf %p", intf);
1082
1083 if (!data)
1084 return;
1085
1086 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001087 usb_set_intfdata(data->intf, NULL);
1088
1089 if (data->isoc)
1090 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001091
1092 hci_unregister_dev(hdev);
1093
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001094 if (intf == data->isoc)
1095 usb_driver_release_interface(&btusb_driver, data->intf);
1096 else if (data->isoc)
1097 usb_driver_release_interface(&btusb_driver, data->isoc);
1098
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001099 hci_free_dev(hdev);
David Herrmann83810882012-01-07 15:47:16 +01001100 kfree(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001101}
1102
Oliver Neukum7bee5492009-08-24 23:44:59 +02001103#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001104static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1105{
1106 struct btusb_data *data = usb_get_intfdata(intf);
1107
1108 BT_DBG("intf %p", intf);
1109
1110 if (data->suspend_count++)
1111 return 0;
1112
Oliver Neukum7bee5492009-08-24 23:44:59 +02001113 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001114 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001115 set_bit(BTUSB_SUSPENDING, &data->flags);
1116 spin_unlock_irq(&data->txlock);
1117 } else {
1118 spin_unlock_irq(&data->txlock);
1119 data->suspend_count--;
1120 return -EBUSY;
1121 }
1122
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001123 cancel_work_sync(&data->work);
1124
Oliver Neukum7bee5492009-08-24 23:44:59 +02001125 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001126 usb_kill_anchored_urbs(&data->tx_anchor);
1127
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001128 return 0;
1129}
1130
Oliver Neukum7bee5492009-08-24 23:44:59 +02001131static void play_deferred(struct btusb_data *data)
1132{
1133 struct urb *urb;
1134 int err;
1135
1136 while ((urb = usb_get_from_anchor(&data->deferred))) {
1137 err = usb_submit_urb(urb, GFP_ATOMIC);
1138 if (err < 0)
1139 break;
1140
1141 data->tx_in_flight++;
1142 }
1143 usb_scuttle_anchored_urbs(&data->deferred);
1144}
1145
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001146static int btusb_resume(struct usb_interface *intf)
1147{
1148 struct btusb_data *data = usb_get_intfdata(intf);
1149 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001150 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001151
1152 BT_DBG("intf %p", intf);
1153
1154 if (--data->suspend_count)
1155 return 0;
1156
1157 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001158 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001159
1160 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1161 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1162 if (err < 0) {
1163 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001164 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001165 }
1166 }
1167
1168 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001169 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1170 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001171 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001172 goto failed;
1173 }
1174
1175 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001176 }
1177
1178 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1179 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1180 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1181 else
1182 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1183 }
1184
Oliver Neukum7bee5492009-08-24 23:44:59 +02001185 spin_lock_irq(&data->txlock);
1186 play_deferred(data);
1187 clear_bit(BTUSB_SUSPENDING, &data->flags);
1188 spin_unlock_irq(&data->txlock);
1189 schedule_work(&data->work);
1190
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001191 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001192
1193failed:
1194 usb_scuttle_anchored_urbs(&data->deferred);
1195done:
1196 spin_lock_irq(&data->txlock);
1197 clear_bit(BTUSB_SUSPENDING, &data->flags);
1198 spin_unlock_irq(&data->txlock);
1199
1200 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001201}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001202#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001203
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001204static struct usb_driver btusb_driver = {
1205 .name = "btusb",
1206 .probe = btusb_probe,
1207 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001208#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001209 .suspend = btusb_suspend,
1210 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001211#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001212 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001213 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001214};
1215
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001216module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001217
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001218module_param(ignore_dga, bool, 0644);
1219MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1220
1221module_param(ignore_csr, bool, 0644);
1222MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1223
1224module_param(ignore_sniffer, bool, 0644);
1225MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1226
1227module_param(disable_scofix, bool, 0644);
1228MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1229
1230module_param(force_scofix, bool, 0644);
1231MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1232
1233module_param(reset, bool, 0644);
1234MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1235
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001236MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1237MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1238MODULE_VERSION(VERSION);
1239MODULE_LICENSE("GPL");