blob: b6338543c03c891b228a1d7017767ed5509d4f08 [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 },
Eran9498ba72011-12-05 22:15:29 +0000133 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530134
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800135 /* Atheros AR5BBU12 with sflash firmware */
136 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
137
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200138 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100139 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
140 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
141 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200142
143 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100144 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
145 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200146
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200147 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100148 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
149 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200150
151 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100152 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200153
154 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100155 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200156
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100157 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100158 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100159 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200160
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100161 /* Belkin F8T012 and F8T013 devices */
162 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
163 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200164
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100165 /* Asus WL-BTD202 device */
166 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
167
168 /* Kensington Bluetooth USB adapter */
169 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
170
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200171 /* RTX Telecom based adapters with buggy SCO support */
172 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
173 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
174
175 /* CONWISE Technology based adapters with buggy SCO support */
176 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
177
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200178 /* Digianswer devices */
179 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
180 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
181
182 /* CSR BlueCore Bluetooth Sniffer */
183 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
184
185 /* Frontline ComProbe Bluetooth Sniffer */
186 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
187
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200188 { } /* Terminating entry */
189};
190
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200191#define BTUSB_MAX_ISOC_FRAMES 10
192
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200193#define BTUSB_INTR_RUNNING 0
194#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200195#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200196#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300197#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200198
199struct btusb_data {
200 struct hci_dev *hdev;
201 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200202 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200203 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200204
205 spinlock_t lock;
206
207 unsigned long flags;
208
209 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200210 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200211
212 struct usb_anchor tx_anchor;
213 struct usb_anchor intr_anchor;
214 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200215 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200216 struct usb_anchor deferred;
217 int tx_in_flight;
218 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200219
220 struct usb_endpoint_descriptor *intr_ep;
221 struct usb_endpoint_descriptor *bulk_tx_ep;
222 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200223 struct usb_endpoint_descriptor *isoc_tx_ep;
224 struct usb_endpoint_descriptor *isoc_rx_ep;
225
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100226 __u8 cmdreq_type;
227
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100228 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200229 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100230 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200231};
232
Oliver Neukum7bee5492009-08-24 23:44:59 +0200233static int inc_tx(struct btusb_data *data)
234{
235 unsigned long flags;
236 int rv;
237
238 spin_lock_irqsave(&data->txlock, flags);
239 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
240 if (!rv)
241 data->tx_in_flight++;
242 spin_unlock_irqrestore(&data->txlock, flags);
243
244 return rv;
245}
246
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200247static void btusb_intr_complete(struct urb *urb)
248{
249 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100250 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200251 int err;
252
253 BT_DBG("%s urb %p status %d count %d", hdev->name,
254 urb, urb->status, urb->actual_length);
255
256 if (!test_bit(HCI_RUNNING, &hdev->flags))
257 return;
258
259 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200260 hdev->stat.byte_rx += urb->actual_length;
261
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200262 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
263 urb->transfer_buffer,
264 urb->actual_length) < 0) {
265 BT_ERR("%s corrupted event packet", hdev->name);
266 hdev->stat.err_rx++;
267 }
268 }
269
270 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
271 return;
272
Oliver Neukum7bee5492009-08-24 23:44:59 +0200273 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200274 usb_anchor_urb(urb, &data->intr_anchor);
275
276 err = usb_submit_urb(urb, GFP_ATOMIC);
277 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200278 /* -EPERM: urb is being killed;
279 * -ENODEV: device got disconnected */
280 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100281 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200282 hdev->name, urb, -err);
283 usb_unanchor_urb(urb);
284 }
285}
286
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100287static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200288{
David Herrmann155961e2012-02-09 21:58:32 +0100289 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200290 struct urb *urb;
291 unsigned char *buf;
292 unsigned int pipe;
293 int err, size;
294
295 BT_DBG("%s", hdev->name);
296
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200297 if (!data->intr_ep)
298 return -ENODEV;
299
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100300 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200301 if (!urb)
302 return -ENOMEM;
303
304 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
305
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100306 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200307 if (!buf) {
308 usb_free_urb(urb);
309 return -ENOMEM;
310 }
311
312 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
313
314 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
315 btusb_intr_complete, hdev,
316 data->intr_ep->bInterval);
317
318 urb->transfer_flags |= URB_FREE_BUFFER;
319
320 usb_anchor_urb(urb, &data->intr_anchor);
321
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100322 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200323 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200324 if (err != -EPERM && err != -ENODEV)
325 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200326 hdev->name, urb, -err);
327 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200328 }
329
330 usb_free_urb(urb);
331
332 return err;
333}
334
335static void btusb_bulk_complete(struct urb *urb)
336{
337 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100338 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200339 int err;
340
341 BT_DBG("%s urb %p status %d count %d", hdev->name,
342 urb, urb->status, urb->actual_length);
343
344 if (!test_bit(HCI_RUNNING, &hdev->flags))
345 return;
346
347 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200348 hdev->stat.byte_rx += urb->actual_length;
349
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200350 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
351 urb->transfer_buffer,
352 urb->actual_length) < 0) {
353 BT_ERR("%s corrupted ACL packet", hdev->name);
354 hdev->stat.err_rx++;
355 }
356 }
357
358 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
359 return;
360
361 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100362 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200363
364 err = usb_submit_urb(urb, GFP_ATOMIC);
365 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200366 /* -EPERM: urb is being killed;
367 * -ENODEV: device got disconnected */
368 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100369 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200370 hdev->name, urb, -err);
371 usb_unanchor_urb(urb);
372 }
373}
374
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100375static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200376{
David Herrmann155961e2012-02-09 21:58:32 +0100377 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200378 struct urb *urb;
379 unsigned char *buf;
380 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530381 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200382
383 BT_DBG("%s", hdev->name);
384
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200385 if (!data->bulk_rx_ep)
386 return -ENODEV;
387
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100388 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200389 if (!urb)
390 return -ENOMEM;
391
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100392 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200393 if (!buf) {
394 usb_free_urb(urb);
395 return -ENOMEM;
396 }
397
398 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
399
400 usb_fill_bulk_urb(urb, data->udev, pipe,
401 buf, size, btusb_bulk_complete, hdev);
402
403 urb->transfer_flags |= URB_FREE_BUFFER;
404
Oliver Neukum7bee5492009-08-24 23:44:59 +0200405 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200406 usb_anchor_urb(urb, &data->bulk_anchor);
407
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100408 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200409 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200410 if (err != -EPERM && err != -ENODEV)
411 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200412 hdev->name, urb, -err);
413 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200414 }
415
416 usb_free_urb(urb);
417
418 return err;
419}
420
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200421static void btusb_isoc_complete(struct urb *urb)
422{
423 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100424 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200425 int i, err;
426
427 BT_DBG("%s urb %p status %d count %d", hdev->name,
428 urb, urb->status, urb->actual_length);
429
430 if (!test_bit(HCI_RUNNING, &hdev->flags))
431 return;
432
433 if (urb->status == 0) {
434 for (i = 0; i < urb->number_of_packets; i++) {
435 unsigned int offset = urb->iso_frame_desc[i].offset;
436 unsigned int length = urb->iso_frame_desc[i].actual_length;
437
438 if (urb->iso_frame_desc[i].status)
439 continue;
440
441 hdev->stat.byte_rx += length;
442
443 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
444 urb->transfer_buffer + offset,
445 length) < 0) {
446 BT_ERR("%s corrupted SCO packet", hdev->name);
447 hdev->stat.err_rx++;
448 }
449 }
450 }
451
452 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
453 return;
454
455 usb_anchor_urb(urb, &data->isoc_anchor);
456
457 err = usb_submit_urb(urb, GFP_ATOMIC);
458 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200459 /* -EPERM: urb is being killed;
460 * -ENODEV: device got disconnected */
461 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100462 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200463 hdev->name, urb, -err);
464 usb_unanchor_urb(urb);
465 }
466}
467
Jesper Juhl42b16b32011-01-17 00:09:38 +0100468static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200469{
470 int i, offset = 0;
471
472 BT_DBG("len %d mtu %d", len, mtu);
473
474 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
475 i++, offset += mtu, len -= mtu) {
476 urb->iso_frame_desc[i].offset = offset;
477 urb->iso_frame_desc[i].length = mtu;
478 }
479
480 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
481 urb->iso_frame_desc[i].offset = offset;
482 urb->iso_frame_desc[i].length = len;
483 i++;
484 }
485
486 urb->number_of_packets = i;
487}
488
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100489static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200490{
David Herrmann155961e2012-02-09 21:58:32 +0100491 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200492 struct urb *urb;
493 unsigned char *buf;
494 unsigned int pipe;
495 int err, size;
496
497 BT_DBG("%s", hdev->name);
498
499 if (!data->isoc_rx_ep)
500 return -ENODEV;
501
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100502 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200503 if (!urb)
504 return -ENOMEM;
505
506 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
507 BTUSB_MAX_ISOC_FRAMES;
508
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100509 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200510 if (!buf) {
511 usb_free_urb(urb);
512 return -ENOMEM;
513 }
514
515 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
516
Bing Zhaofa0fb932011-12-20 18:19:00 -0800517 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
518 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200519
520 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200521
522 __fill_isoc_descriptor(urb, size,
523 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
524
525 usb_anchor_urb(urb, &data->isoc_anchor);
526
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100527 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200528 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200529 if (err != -EPERM && err != -ENODEV)
530 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200531 hdev->name, urb, -err);
532 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200533 }
534
535 usb_free_urb(urb);
536
537 return err;
538}
539
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200540static void btusb_tx_complete(struct urb *urb)
541{
542 struct sk_buff *skb = urb->context;
543 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100544 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200545
546 BT_DBG("%s urb %p status %d count %d", hdev->name,
547 urb, urb->status, urb->actual_length);
548
549 if (!test_bit(HCI_RUNNING, &hdev->flags))
550 goto done;
551
552 if (!urb->status)
553 hdev->stat.byte_tx += urb->transfer_buffer_length;
554 else
555 hdev->stat.err_tx++;
556
557done:
558 spin_lock(&data->txlock);
559 data->tx_in_flight--;
560 spin_unlock(&data->txlock);
561
562 kfree(urb->setup_packet);
563
564 kfree_skb(skb);
565}
566
567static void btusb_isoc_tx_complete(struct urb *urb)
568{
569 struct sk_buff *skb = urb->context;
570 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200571
572 BT_DBG("%s urb %p status %d count %d", hdev->name,
573 urb, urb->status, urb->actual_length);
574
575 if (!test_bit(HCI_RUNNING, &hdev->flags))
576 goto done;
577
578 if (!urb->status)
579 hdev->stat.byte_tx += urb->transfer_buffer_length;
580 else
581 hdev->stat.err_tx++;
582
583done:
584 kfree(urb->setup_packet);
585
586 kfree_skb(skb);
587}
588
589static int btusb_open(struct hci_dev *hdev)
590{
David Herrmann155961e2012-02-09 21:58:32 +0100591 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200592 int err;
593
594 BT_DBG("%s", hdev->name);
595
Oliver Neukum7bee5492009-08-24 23:44:59 +0200596 err = usb_autopm_get_interface(data->intf);
597 if (err < 0)
598 return err;
599
600 data->intf->needs_remote_wakeup = 1;
601
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200602 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200603 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200604
605 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200606 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200607
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100608 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100609 if (err < 0)
610 goto failed;
611
612 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200613 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100614 usb_kill_anchored_urbs(&data->intr_anchor);
615 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200616 }
617
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100618 set_bit(BTUSB_BULK_RUNNING, &data->flags);
619 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
620
Oliver Neukum7bee5492009-08-24 23:44:59 +0200621done:
622 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100623 return 0;
624
625failed:
626 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
627 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200628 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629 return err;
630}
631
Oliver Neukum7bee5492009-08-24 23:44:59 +0200632static void btusb_stop_traffic(struct btusb_data *data)
633{
634 usb_kill_anchored_urbs(&data->intr_anchor);
635 usb_kill_anchored_urbs(&data->bulk_anchor);
636 usb_kill_anchored_urbs(&data->isoc_anchor);
637}
638
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639static int btusb_close(struct hci_dev *hdev)
640{
David Herrmann155961e2012-02-09 21:58:32 +0100641 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200642 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200643
644 BT_DBG("%s", hdev->name);
645
646 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
647 return 0;
648
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200649 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800650 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200651
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200652 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200653 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200654 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200655
656 btusb_stop_traffic(data);
657 err = usb_autopm_get_interface(data->intf);
658 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100659 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200660
661 data->intf->needs_remote_wakeup = 0;
662 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200663
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100664failed:
665 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200666 return 0;
667}
668
669static int btusb_flush(struct hci_dev *hdev)
670{
David Herrmann155961e2012-02-09 21:58:32 +0100671 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200672
673 BT_DBG("%s", hdev->name);
674
675 usb_kill_anchored_urbs(&data->tx_anchor);
676
677 return 0;
678}
679
680static int btusb_send_frame(struct sk_buff *skb)
681{
682 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100683 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200684 struct usb_ctrlrequest *dr;
685 struct urb *urb;
686 unsigned int pipe;
687 int err;
688
689 BT_DBG("%s", hdev->name);
690
691 if (!test_bit(HCI_RUNNING, &hdev->flags))
692 return -EBUSY;
693
694 switch (bt_cb(skb)->pkt_type) {
695 case HCI_COMMAND_PKT:
696 urb = usb_alloc_urb(0, GFP_ATOMIC);
697 if (!urb)
698 return -ENOMEM;
699
700 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
701 if (!dr) {
702 usb_free_urb(urb);
703 return -ENOMEM;
704 }
705
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100706 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200707 dr->bRequest = 0;
708 dr->wIndex = 0;
709 dr->wValue = 0;
710 dr->wLength = __cpu_to_le16(skb->len);
711
712 pipe = usb_sndctrlpipe(data->udev, 0x00);
713
714 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
715 skb->data, skb->len, btusb_tx_complete, skb);
716
717 hdev->stat.cmd_tx++;
718 break;
719
720 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400721 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200722 return -ENODEV;
723
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200724 urb = usb_alloc_urb(0, GFP_ATOMIC);
725 if (!urb)
726 return -ENOMEM;
727
728 pipe = usb_sndbulkpipe(data->udev,
729 data->bulk_tx_ep->bEndpointAddress);
730
731 usb_fill_bulk_urb(urb, data->udev, pipe,
732 skb->data, skb->len, btusb_tx_complete, skb);
733
734 hdev->stat.acl_tx++;
735 break;
736
737 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200738 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
739 return -ENODEV;
740
741 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
742 if (!urb)
743 return -ENOMEM;
744
745 pipe = usb_sndisocpipe(data->udev,
746 data->isoc_tx_ep->bEndpointAddress);
747
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300748 usb_fill_int_urb(urb, data->udev, pipe,
749 skb->data, skb->len, btusb_isoc_tx_complete,
750 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200751
752 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200753
754 __fill_isoc_descriptor(urb, skb->len,
755 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
756
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200757 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200758 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200759
760 default:
761 return -EILSEQ;
762 }
763
Oliver Neukum7bee5492009-08-24 23:44:59 +0200764 err = inc_tx(data);
765 if (err) {
766 usb_anchor_urb(urb, &data->deferred);
767 schedule_work(&data->waker);
768 err = 0;
769 goto done;
770 }
771
772skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200773 usb_anchor_urb(urb, &data->tx_anchor);
774
775 err = usb_submit_urb(urb, GFP_ATOMIC);
776 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200777 if (err != -EPERM && err != -ENODEV)
778 BT_ERR("%s urb %p submission failed (%d)",
779 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200780 kfree(urb->setup_packet);
781 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200782 } else {
783 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200784 }
785
Oliver Neukum7bee5492009-08-24 23:44:59 +0200786done:
Cong Wang54a8a79c2011-11-22 09:32:57 +0800787 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200788 return err;
789}
790
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200791static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
792{
David Herrmann155961e2012-02-09 21:58:32 +0100793 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200794
795 BT_DBG("%s evt %d", hdev->name, evt);
796
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100797 if (hdev->conn_hash.sco_num != data->sco_num) {
798 data->sco_num = hdev->conn_hash.sco_num;
799 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100800 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200801}
802
Jesper Juhl42b16b32011-01-17 00:09:38 +0100803static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200804{
David Herrmann155961e2012-02-09 21:58:32 +0100805 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200806 struct usb_interface *intf = data->isoc;
807 struct usb_endpoint_descriptor *ep_desc;
808 int i, err;
809
810 if (!data->isoc)
811 return -ENODEV;
812
813 err = usb_set_interface(data->udev, 1, altsetting);
814 if (err < 0) {
815 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
816 return err;
817 }
818
819 data->isoc_altsetting = altsetting;
820
821 data->isoc_tx_ep = NULL;
822 data->isoc_rx_ep = NULL;
823
824 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
825 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
826
827 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
828 data->isoc_tx_ep = ep_desc;
829 continue;
830 }
831
832 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
833 data->isoc_rx_ep = ep_desc;
834 continue;
835 }
836 }
837
838 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
839 BT_ERR("%s invalid SCO descriptors", hdev->name);
840 return -ENODEV;
841 }
842
843 return 0;
844}
845
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200846static void btusb_work(struct work_struct *work)
847{
848 struct btusb_data *data = container_of(work, struct btusb_data, work);
849 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200850 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200851
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200852 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300853 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100854 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200855 if (err < 0) {
856 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
857 usb_kill_anchored_urbs(&data->isoc_anchor);
858 return;
859 }
860
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300861 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200862 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200863 if (data->isoc_altsetting != 2) {
864 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
865 usb_kill_anchored_urbs(&data->isoc_anchor);
866
867 if (__set_isoc_interface(hdev, 2) < 0)
868 return;
869 }
870
871 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100872 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200873 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
874 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100875 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200876 }
877 } else {
878 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
879 usb_kill_anchored_urbs(&data->isoc_anchor);
880
881 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300882 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100883 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200884 }
885}
886
Oliver Neukum7bee5492009-08-24 23:44:59 +0200887static void btusb_waker(struct work_struct *work)
888{
889 struct btusb_data *data = container_of(work, struct btusb_data, waker);
890 int err;
891
892 err = usb_autopm_get_interface(data->intf);
893 if (err < 0)
894 return;
895
896 usb_autopm_put_interface(data->intf);
897}
898
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200899static int btusb_probe(struct usb_interface *intf,
900 const struct usb_device_id *id)
901{
902 struct usb_endpoint_descriptor *ep_desc;
903 struct btusb_data *data;
904 struct hci_dev *hdev;
905 int i, err;
906
907 BT_DBG("intf %p id %p", intf, id);
908
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200909 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200910 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
911 return -ENODEV;
912
913 if (!id->driver_info) {
914 const struct usb_device_id *match;
915 match = usb_match_id(intf, blacklist_table);
916 if (match)
917 id = match;
918 }
919
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200920 if (id->driver_info == BTUSB_IGNORE)
921 return -ENODEV;
922
923 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
924 return -ENODEV;
925
926 if (ignore_csr && id->driver_info & BTUSB_CSR)
927 return -ENODEV;
928
929 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
930 return -ENODEV;
931
Steven.Li2d25f8b2011-07-01 14:02:36 +0800932 if (id->driver_info & BTUSB_ATH3012) {
933 struct usb_device *udev = interface_to_usbdev(intf);
934
935 /* Old firmware would otherwise let ath3k driver load
936 * patch and sysconfig files */
937 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
938 return -ENODEV;
939 }
940
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200941 data = kzalloc(sizeof(*data), GFP_KERNEL);
942 if (!data)
943 return -ENOMEM;
944
945 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
946 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
947
948 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
949 data->intr_ep = ep_desc;
950 continue;
951 }
952
953 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
954 data->bulk_tx_ep = ep_desc;
955 continue;
956 }
957
958 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
959 data->bulk_rx_ep = ep_desc;
960 continue;
961 }
962 }
963
964 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
965 kfree(data);
966 return -ENODEV;
967 }
968
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100969 data->cmdreq_type = USB_TYPE_CLASS;
970
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200971 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200972 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200973
974 spin_lock_init(&data->lock);
975
976 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200977 INIT_WORK(&data->waker, btusb_waker);
978 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200979
980 init_usb_anchor(&data->tx_anchor);
981 init_usb_anchor(&data->intr_anchor);
982 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200983 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200984 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200985
986 hdev = hci_alloc_dev();
987 if (!hdev) {
988 kfree(data);
989 return -ENOMEM;
990 }
991
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100992 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100993 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200994
995 data->hdev = hdev;
996
997 SET_HCIDEV_DEV(hdev, &intf->dev);
998
999 hdev->open = btusb_open;
1000 hdev->close = btusb_close;
1001 hdev->flush = btusb_flush;
1002 hdev->send = btusb_send_frame;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001003 hdev->notify = btusb_notify;
1004
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001005 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001006 data->isoc = usb_ifnum_to_if(data->udev, 1);
1007
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001008 if (!reset)
1009 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001010
1011 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1012 if (!disable_scofix)
1013 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1014 }
1015
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001016 if (id->driver_info & BTUSB_BROKEN_ISOC)
1017 data->isoc = NULL;
1018
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001019 if (id->driver_info & BTUSB_DIGIANSWER) {
1020 data->cmdreq_type = USB_TYPE_VENDOR;
1021 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1022 }
1023
1024 if (id->driver_info & BTUSB_CSR) {
1025 struct usb_device *udev = data->udev;
1026
1027 /* Old firmware would otherwise execute USB reset */
1028 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1029 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1030 }
1031
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001032 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001033 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001034
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001035 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001036 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1037 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001038
1039 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001040 }
1041
1042 if (id->driver_info & BTUSB_BCM92035) {
1043 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1044 struct sk_buff *skb;
1045
1046 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1047 if (skb) {
1048 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1049 skb_queue_tail(&hdev->driver_init, skb);
1050 }
1051 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001052
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001053 if (data->isoc) {
1054 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001055 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001056 if (err < 0) {
1057 hci_free_dev(hdev);
1058 kfree(data);
1059 return err;
1060 }
1061 }
1062
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001063 err = hci_register_dev(hdev);
1064 if (err < 0) {
1065 hci_free_dev(hdev);
1066 kfree(data);
1067 return err;
1068 }
1069
1070 usb_set_intfdata(intf, data);
1071
1072 return 0;
1073}
1074
1075static void btusb_disconnect(struct usb_interface *intf)
1076{
1077 struct btusb_data *data = usb_get_intfdata(intf);
1078 struct hci_dev *hdev;
1079
1080 BT_DBG("intf %p", intf);
1081
1082 if (!data)
1083 return;
1084
1085 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001086 usb_set_intfdata(data->intf, NULL);
1087
1088 if (data->isoc)
1089 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001090
1091 hci_unregister_dev(hdev);
1092
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001093 if (intf == data->isoc)
1094 usb_driver_release_interface(&btusb_driver, data->intf);
1095 else if (data->isoc)
1096 usb_driver_release_interface(&btusb_driver, data->isoc);
1097
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001098 hci_free_dev(hdev);
David Herrmann83810882012-01-07 15:47:16 +01001099 kfree(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001100}
1101
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001103static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1104{
1105 struct btusb_data *data = usb_get_intfdata(intf);
1106
1107 BT_DBG("intf %p", intf);
1108
1109 if (data->suspend_count++)
1110 return 0;
1111
Oliver Neukum7bee5492009-08-24 23:44:59 +02001112 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001113 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001114 set_bit(BTUSB_SUSPENDING, &data->flags);
1115 spin_unlock_irq(&data->txlock);
1116 } else {
1117 spin_unlock_irq(&data->txlock);
1118 data->suspend_count--;
1119 return -EBUSY;
1120 }
1121
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001122 cancel_work_sync(&data->work);
1123
Oliver Neukum7bee5492009-08-24 23:44:59 +02001124 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001125 usb_kill_anchored_urbs(&data->tx_anchor);
1126
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001127 return 0;
1128}
1129
Oliver Neukum7bee5492009-08-24 23:44:59 +02001130static void play_deferred(struct btusb_data *data)
1131{
1132 struct urb *urb;
1133 int err;
1134
1135 while ((urb = usb_get_from_anchor(&data->deferred))) {
1136 err = usb_submit_urb(urb, GFP_ATOMIC);
1137 if (err < 0)
1138 break;
1139
1140 data->tx_in_flight++;
1141 }
1142 usb_scuttle_anchored_urbs(&data->deferred);
1143}
1144
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001145static int btusb_resume(struct usb_interface *intf)
1146{
1147 struct btusb_data *data = usb_get_intfdata(intf);
1148 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001149 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001150
1151 BT_DBG("intf %p", intf);
1152
1153 if (--data->suspend_count)
1154 return 0;
1155
1156 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001157 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001158
1159 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1160 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1161 if (err < 0) {
1162 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001163 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001164 }
1165 }
1166
1167 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001168 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1169 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001170 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001171 goto failed;
1172 }
1173
1174 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001175 }
1176
1177 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1178 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1179 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1180 else
1181 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1182 }
1183
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184 spin_lock_irq(&data->txlock);
1185 play_deferred(data);
1186 clear_bit(BTUSB_SUSPENDING, &data->flags);
1187 spin_unlock_irq(&data->txlock);
1188 schedule_work(&data->work);
1189
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001190 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001191
1192failed:
1193 usb_scuttle_anchored_urbs(&data->deferred);
1194done:
1195 spin_lock_irq(&data->txlock);
1196 clear_bit(BTUSB_SUSPENDING, &data->flags);
1197 spin_unlock_irq(&data->txlock);
1198
1199 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001200}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001201#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001202
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001203static struct usb_driver btusb_driver = {
1204 .name = "btusb",
1205 .probe = btusb_probe,
1206 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001207#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001208 .suspend = btusb_suspend,
1209 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001210#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001211 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001212 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001213};
1214
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001215module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001217module_param(ignore_dga, bool, 0644);
1218MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1219
1220module_param(ignore_csr, bool, 0644);
1221MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1222
1223module_param(ignore_sniffer, bool, 0644);
1224MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1225
1226module_param(disable_scofix, bool, 0644);
1227MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1228
1229module_param(force_scofix, bool, 0644);
1230MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1231
1232module_param(reset, bool, 0644);
1233MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1234
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001235MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1236MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1237MODULE_VERSION(VERSION);
1238MODULE_LICENSE("GPL");