blob: de171211a1c8fed4a25da519606473ebbe6c6695 [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 */
Don Zickus2e8b50632012-03-28 16:41:11 -040064 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020065
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 */
Manoj Iyer79cd7602012-04-09 09:22:28 -0500104 { USB_DEVICE(0x0489, 0xe042) },
Jesse Sungc0190922011-12-22 10:48:47 +0800105 { USB_DEVICE(0x0a5c, 0x21e3) },
James M. Leddy0a4eaee2012-03-06 02:41:33 +0200106 { USB_DEVICE(0x0a5c, 0x21e6) },
João Paulo Rechi Vita6dfc3262012-03-14 21:45:16 +0200107 { USB_DEVICE(0x0a5c, 0x21e8) },
Manoj Iyer37305cf2012-02-02 09:32:36 -0600108 { USB_DEVICE(0x0a5c, 0x21f3) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800109 { USB_DEVICE(0x413c, 0x8197) },
110
Steven Harms98514032012-04-13 14:45:55 -0400111 /* Foxconn - Hon Hai */
112 { USB_DEVICE(0x0489, 0xe033) },
113
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200114 { } /* Terminating entry */
115};
116
117MODULE_DEVICE_TABLE(usb, btusb_table);
118
119static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200120 /* CSR BlueCore devices */
121 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
122
123 /* Broadcom BCM2033 without firmware */
124 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
125
Bala Shanmugambe931122010-11-26 17:35:46 +0530126 /* Atheros 3011 with sflash firmware */
127 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700128 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +0100129 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Keng-Yu Lin6b6ba882011-11-30 18:32:37 +0800130 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530131
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800132 /* Atheros AR9285 Malbec with sflash firmware */
133 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
134
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530135 /* Atheros 3012 with sflash firmware */
Steven.Li2d25f8b2011-07-01 14:02:36 +0800136 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200137 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Eran9498ba72011-12-05 22:15:29 +0000138 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kao55ed7d42012-03-28 10:25:36 +0800139 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
AceLan Kao87522a42012-04-13 17:39:57 +0800140 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800141 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530142
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800143 /* Atheros AR5BBU12 with sflash firmware */
144 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
145
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200146 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100147 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
148 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
149 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200150
151 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100152 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
153 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200154
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200155 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100156 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
157 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200158
159 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100160 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200161
162 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100163 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200164
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100165 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100166 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100167 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200168
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100169 /* Belkin F8T012 and F8T013 devices */
170 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
171 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200172
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100173 /* Asus WL-BTD202 device */
174 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
175
176 /* Kensington Bluetooth USB adapter */
177 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
178
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200179 /* RTX Telecom based adapters with buggy SCO support */
180 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
181 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
182
183 /* CONWISE Technology based adapters with buggy SCO support */
184 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
185
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200186 /* Digianswer devices */
187 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
188 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
189
190 /* CSR BlueCore Bluetooth Sniffer */
191 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
192
193 /* Frontline ComProbe Bluetooth Sniffer */
194 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
195
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200196 { } /* Terminating entry */
197};
198
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200199#define BTUSB_MAX_ISOC_FRAMES 10
200
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200201#define BTUSB_INTR_RUNNING 0
202#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200203#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200204#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300205#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200206
207struct btusb_data {
208 struct hci_dev *hdev;
209 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200210 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200211 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200212
213 spinlock_t lock;
214
215 unsigned long flags;
216
217 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200218 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200219
220 struct usb_anchor tx_anchor;
221 struct usb_anchor intr_anchor;
222 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200223 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200224 struct usb_anchor deferred;
225 int tx_in_flight;
226 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200227
228 struct usb_endpoint_descriptor *intr_ep;
229 struct usb_endpoint_descriptor *bulk_tx_ep;
230 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200231 struct usb_endpoint_descriptor *isoc_tx_ep;
232 struct usb_endpoint_descriptor *isoc_rx_ep;
233
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100234 __u8 cmdreq_type;
235
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100236 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200237 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100238 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200239};
240
Oliver Neukum7bee5492009-08-24 23:44:59 +0200241static int inc_tx(struct btusb_data *data)
242{
243 unsigned long flags;
244 int rv;
245
246 spin_lock_irqsave(&data->txlock, flags);
247 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
248 if (!rv)
249 data->tx_in_flight++;
250 spin_unlock_irqrestore(&data->txlock, flags);
251
252 return rv;
253}
254
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200255static void btusb_intr_complete(struct urb *urb)
256{
257 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100258 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200259 int err;
260
261 BT_DBG("%s urb %p status %d count %d", hdev->name,
262 urb, urb->status, urb->actual_length);
263
264 if (!test_bit(HCI_RUNNING, &hdev->flags))
265 return;
266
267 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200268 hdev->stat.byte_rx += urb->actual_length;
269
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200270 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
271 urb->transfer_buffer,
272 urb->actual_length) < 0) {
273 BT_ERR("%s corrupted event packet", hdev->name);
274 hdev->stat.err_rx++;
275 }
276 }
277
278 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
279 return;
280
Oliver Neukum7bee5492009-08-24 23:44:59 +0200281 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200282 usb_anchor_urb(urb, &data->intr_anchor);
283
284 err = usb_submit_urb(urb, GFP_ATOMIC);
285 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200286 /* -EPERM: urb is being killed;
287 * -ENODEV: device got disconnected */
288 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100289 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200290 hdev->name, urb, -err);
291 usb_unanchor_urb(urb);
292 }
293}
294
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100295static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200296{
David Herrmann155961e2012-02-09 21:58:32 +0100297 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200298 struct urb *urb;
299 unsigned char *buf;
300 unsigned int pipe;
301 int err, size;
302
303 BT_DBG("%s", hdev->name);
304
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200305 if (!data->intr_ep)
306 return -ENODEV;
307
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100308 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200309 if (!urb)
310 return -ENOMEM;
311
312 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
313
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100314 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200315 if (!buf) {
316 usb_free_urb(urb);
317 return -ENOMEM;
318 }
319
320 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
321
322 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
323 btusb_intr_complete, hdev,
324 data->intr_ep->bInterval);
325
326 urb->transfer_flags |= URB_FREE_BUFFER;
327
328 usb_anchor_urb(urb, &data->intr_anchor);
329
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100330 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200331 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200332 if (err != -EPERM && err != -ENODEV)
333 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200334 hdev->name, urb, -err);
335 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200336 }
337
338 usb_free_urb(urb);
339
340 return err;
341}
342
343static void btusb_bulk_complete(struct urb *urb)
344{
345 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100346 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200347 int err;
348
349 BT_DBG("%s urb %p status %d count %d", hdev->name,
350 urb, urb->status, urb->actual_length);
351
352 if (!test_bit(HCI_RUNNING, &hdev->flags))
353 return;
354
355 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200356 hdev->stat.byte_rx += urb->actual_length;
357
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200358 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
359 urb->transfer_buffer,
360 urb->actual_length) < 0) {
361 BT_ERR("%s corrupted ACL packet", hdev->name);
362 hdev->stat.err_rx++;
363 }
364 }
365
366 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
367 return;
368
369 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100370 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200371
372 err = usb_submit_urb(urb, GFP_ATOMIC);
373 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200374 /* -EPERM: urb is being killed;
375 * -ENODEV: device got disconnected */
376 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100377 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200378 hdev->name, urb, -err);
379 usb_unanchor_urb(urb);
380 }
381}
382
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100383static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200384{
David Herrmann155961e2012-02-09 21:58:32 +0100385 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200386 struct urb *urb;
387 unsigned char *buf;
388 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530389 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200390
391 BT_DBG("%s", hdev->name);
392
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200393 if (!data->bulk_rx_ep)
394 return -ENODEV;
395
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100396 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200397 if (!urb)
398 return -ENOMEM;
399
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100400 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200401 if (!buf) {
402 usb_free_urb(urb);
403 return -ENOMEM;
404 }
405
406 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
407
408 usb_fill_bulk_urb(urb, data->udev, pipe,
409 buf, size, btusb_bulk_complete, hdev);
410
411 urb->transfer_flags |= URB_FREE_BUFFER;
412
Oliver Neukum7bee5492009-08-24 23:44:59 +0200413 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200414 usb_anchor_urb(urb, &data->bulk_anchor);
415
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100416 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200417 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200418 if (err != -EPERM && err != -ENODEV)
419 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200420 hdev->name, urb, -err);
421 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200422 }
423
424 usb_free_urb(urb);
425
426 return err;
427}
428
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200429static void btusb_isoc_complete(struct urb *urb)
430{
431 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100432 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200433 int i, err;
434
435 BT_DBG("%s urb %p status %d count %d", hdev->name,
436 urb, urb->status, urb->actual_length);
437
438 if (!test_bit(HCI_RUNNING, &hdev->flags))
439 return;
440
441 if (urb->status == 0) {
442 for (i = 0; i < urb->number_of_packets; i++) {
443 unsigned int offset = urb->iso_frame_desc[i].offset;
444 unsigned int length = urb->iso_frame_desc[i].actual_length;
445
446 if (urb->iso_frame_desc[i].status)
447 continue;
448
449 hdev->stat.byte_rx += length;
450
451 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
452 urb->transfer_buffer + offset,
453 length) < 0) {
454 BT_ERR("%s corrupted SCO packet", hdev->name);
455 hdev->stat.err_rx++;
456 }
457 }
458 }
459
460 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
461 return;
462
463 usb_anchor_urb(urb, &data->isoc_anchor);
464
465 err = usb_submit_urb(urb, GFP_ATOMIC);
466 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200467 /* -EPERM: urb is being killed;
468 * -ENODEV: device got disconnected */
469 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100470 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200471 hdev->name, urb, -err);
472 usb_unanchor_urb(urb);
473 }
474}
475
Jesper Juhl42b16b32011-01-17 00:09:38 +0100476static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200477{
478 int i, offset = 0;
479
480 BT_DBG("len %d mtu %d", len, mtu);
481
482 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
483 i++, offset += mtu, len -= mtu) {
484 urb->iso_frame_desc[i].offset = offset;
485 urb->iso_frame_desc[i].length = mtu;
486 }
487
488 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
489 urb->iso_frame_desc[i].offset = offset;
490 urb->iso_frame_desc[i].length = len;
491 i++;
492 }
493
494 urb->number_of_packets = i;
495}
496
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100497static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200498{
David Herrmann155961e2012-02-09 21:58:32 +0100499 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200500 struct urb *urb;
501 unsigned char *buf;
502 unsigned int pipe;
503 int err, size;
504
505 BT_DBG("%s", hdev->name);
506
507 if (!data->isoc_rx_ep)
508 return -ENODEV;
509
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100510 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200511 if (!urb)
512 return -ENOMEM;
513
514 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
515 BTUSB_MAX_ISOC_FRAMES;
516
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100517 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200518 if (!buf) {
519 usb_free_urb(urb);
520 return -ENOMEM;
521 }
522
523 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
524
Bing Zhaofa0fb932011-12-20 18:19:00 -0800525 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
526 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200527
528 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200529
530 __fill_isoc_descriptor(urb, size,
531 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
532
533 usb_anchor_urb(urb, &data->isoc_anchor);
534
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100535 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200536 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200537 if (err != -EPERM && err != -ENODEV)
538 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200539 hdev->name, urb, -err);
540 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200541 }
542
543 usb_free_urb(urb);
544
545 return err;
546}
547
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200548static void btusb_tx_complete(struct urb *urb)
549{
550 struct sk_buff *skb = urb->context;
551 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100552 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200553
554 BT_DBG("%s urb %p status %d count %d", hdev->name,
555 urb, urb->status, urb->actual_length);
556
557 if (!test_bit(HCI_RUNNING, &hdev->flags))
558 goto done;
559
560 if (!urb->status)
561 hdev->stat.byte_tx += urb->transfer_buffer_length;
562 else
563 hdev->stat.err_tx++;
564
565done:
566 spin_lock(&data->txlock);
567 data->tx_in_flight--;
568 spin_unlock(&data->txlock);
569
570 kfree(urb->setup_packet);
571
572 kfree_skb(skb);
573}
574
575static void btusb_isoc_tx_complete(struct urb *urb)
576{
577 struct sk_buff *skb = urb->context;
578 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200579
580 BT_DBG("%s urb %p status %d count %d", hdev->name,
581 urb, urb->status, urb->actual_length);
582
583 if (!test_bit(HCI_RUNNING, &hdev->flags))
584 goto done;
585
586 if (!urb->status)
587 hdev->stat.byte_tx += urb->transfer_buffer_length;
588 else
589 hdev->stat.err_tx++;
590
591done:
592 kfree(urb->setup_packet);
593
594 kfree_skb(skb);
595}
596
597static int btusb_open(struct hci_dev *hdev)
598{
David Herrmann155961e2012-02-09 21:58:32 +0100599 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200600 int err;
601
602 BT_DBG("%s", hdev->name);
603
Oliver Neukum7bee5492009-08-24 23:44:59 +0200604 err = usb_autopm_get_interface(data->intf);
605 if (err < 0)
606 return err;
607
608 data->intf->needs_remote_wakeup = 1;
609
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200611 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612
613 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200614 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200615
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100616 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100617 if (err < 0)
618 goto failed;
619
620 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200621 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100622 usb_kill_anchored_urbs(&data->intr_anchor);
623 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200624 }
625
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100626 set_bit(BTUSB_BULK_RUNNING, &data->flags);
627 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
628
Oliver Neukum7bee5492009-08-24 23:44:59 +0200629done:
630 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100631 return 0;
632
633failed:
634 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
635 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200636 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637 return err;
638}
639
Oliver Neukum7bee5492009-08-24 23:44:59 +0200640static void btusb_stop_traffic(struct btusb_data *data)
641{
642 usb_kill_anchored_urbs(&data->intr_anchor);
643 usb_kill_anchored_urbs(&data->bulk_anchor);
644 usb_kill_anchored_urbs(&data->isoc_anchor);
645}
646
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647static int btusb_close(struct hci_dev *hdev)
648{
David Herrmann155961e2012-02-09 21:58:32 +0100649 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200650 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200651
652 BT_DBG("%s", hdev->name);
653
654 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
655 return 0;
656
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200657 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800658 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200659
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200660 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200661 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200662 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200663
664 btusb_stop_traffic(data);
665 err = usb_autopm_get_interface(data->intf);
666 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100667 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200668
669 data->intf->needs_remote_wakeup = 0;
670 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200671
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100672failed:
673 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200674 return 0;
675}
676
677static int btusb_flush(struct hci_dev *hdev)
678{
David Herrmann155961e2012-02-09 21:58:32 +0100679 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200680
681 BT_DBG("%s", hdev->name);
682
683 usb_kill_anchored_urbs(&data->tx_anchor);
684
685 return 0;
686}
687
688static int btusb_send_frame(struct sk_buff *skb)
689{
690 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100691 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200692 struct usb_ctrlrequest *dr;
693 struct urb *urb;
694 unsigned int pipe;
695 int err;
696
697 BT_DBG("%s", hdev->name);
698
699 if (!test_bit(HCI_RUNNING, &hdev->flags))
700 return -EBUSY;
701
702 switch (bt_cb(skb)->pkt_type) {
703 case HCI_COMMAND_PKT:
704 urb = usb_alloc_urb(0, GFP_ATOMIC);
705 if (!urb)
706 return -ENOMEM;
707
708 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
709 if (!dr) {
710 usb_free_urb(urb);
711 return -ENOMEM;
712 }
713
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100714 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200715 dr->bRequest = 0;
716 dr->wIndex = 0;
717 dr->wValue = 0;
718 dr->wLength = __cpu_to_le16(skb->len);
719
720 pipe = usb_sndctrlpipe(data->udev, 0x00);
721
722 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
723 skb->data, skb->len, btusb_tx_complete, skb);
724
725 hdev->stat.cmd_tx++;
726 break;
727
728 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400729 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200730 return -ENODEV;
731
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200732 urb = usb_alloc_urb(0, GFP_ATOMIC);
733 if (!urb)
734 return -ENOMEM;
735
736 pipe = usb_sndbulkpipe(data->udev,
737 data->bulk_tx_ep->bEndpointAddress);
738
739 usb_fill_bulk_urb(urb, data->udev, pipe,
740 skb->data, skb->len, btusb_tx_complete, skb);
741
742 hdev->stat.acl_tx++;
743 break;
744
745 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200746 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
747 return -ENODEV;
748
749 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
750 if (!urb)
751 return -ENOMEM;
752
753 pipe = usb_sndisocpipe(data->udev,
754 data->isoc_tx_ep->bEndpointAddress);
755
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300756 usb_fill_int_urb(urb, data->udev, pipe,
757 skb->data, skb->len, btusb_isoc_tx_complete,
758 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200759
760 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200761
762 __fill_isoc_descriptor(urb, skb->len,
763 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
764
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200765 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200766 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200767
768 default:
769 return -EILSEQ;
770 }
771
Oliver Neukum7bee5492009-08-24 23:44:59 +0200772 err = inc_tx(data);
773 if (err) {
774 usb_anchor_urb(urb, &data->deferred);
775 schedule_work(&data->waker);
776 err = 0;
777 goto done;
778 }
779
780skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200781 usb_anchor_urb(urb, &data->tx_anchor);
782
783 err = usb_submit_urb(urb, GFP_ATOMIC);
784 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200785 if (err != -EPERM && err != -ENODEV)
786 BT_ERR("%s urb %p submission failed (%d)",
787 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200788 kfree(urb->setup_packet);
789 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200790 } else {
791 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200792 }
793
Oliver Neukum7bee5492009-08-24 23:44:59 +0200794done:
Cong Wang54a8a79c2011-11-22 09:32:57 +0800795 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200796 return err;
797}
798
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200799static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
800{
David Herrmann155961e2012-02-09 21:58:32 +0100801 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200802
803 BT_DBG("%s evt %d", hdev->name, evt);
804
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100805 if (hdev->conn_hash.sco_num != data->sco_num) {
806 data->sco_num = hdev->conn_hash.sco_num;
807 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100808 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200809}
810
Jesper Juhl42b16b32011-01-17 00:09:38 +0100811static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200812{
David Herrmann155961e2012-02-09 21:58:32 +0100813 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200814 struct usb_interface *intf = data->isoc;
815 struct usb_endpoint_descriptor *ep_desc;
816 int i, err;
817
818 if (!data->isoc)
819 return -ENODEV;
820
821 err = usb_set_interface(data->udev, 1, altsetting);
822 if (err < 0) {
823 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
824 return err;
825 }
826
827 data->isoc_altsetting = altsetting;
828
829 data->isoc_tx_ep = NULL;
830 data->isoc_rx_ep = NULL;
831
832 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
833 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
834
835 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
836 data->isoc_tx_ep = ep_desc;
837 continue;
838 }
839
840 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
841 data->isoc_rx_ep = ep_desc;
842 continue;
843 }
844 }
845
846 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
847 BT_ERR("%s invalid SCO descriptors", hdev->name);
848 return -ENODEV;
849 }
850
851 return 0;
852}
853
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200854static void btusb_work(struct work_struct *work)
855{
856 struct btusb_data *data = container_of(work, struct btusb_data, work);
857 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +0200858 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200859 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200860
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200861 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300862 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100863 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200864 if (err < 0) {
865 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
866 usb_kill_anchored_urbs(&data->isoc_anchor);
867 return;
868 }
869
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300870 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200871 }
Mikel Astizf4001d22012-04-11 08:48:51 +0200872
873 if (hdev->voice_setting & 0x0020) {
874 static const int alts[3] = { 2, 4, 5 };
875 new_alts = alts[hdev->conn_hash.sco_num - 1];
876 } else {
877 new_alts = hdev->conn_hash.sco_num;
878 }
879
880 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200881 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
882 usb_kill_anchored_urbs(&data->isoc_anchor);
883
Mikel Astizf4001d22012-04-11 08:48:51 +0200884 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200885 return;
886 }
887
888 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100889 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200890 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
891 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100892 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200893 }
894 } else {
895 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
896 usb_kill_anchored_urbs(&data->isoc_anchor);
897
898 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300899 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100900 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200901 }
902}
903
Oliver Neukum7bee5492009-08-24 23:44:59 +0200904static void btusb_waker(struct work_struct *work)
905{
906 struct btusb_data *data = container_of(work, struct btusb_data, waker);
907 int err;
908
909 err = usb_autopm_get_interface(data->intf);
910 if (err < 0)
911 return;
912
913 usb_autopm_put_interface(data->intf);
914}
915
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200916static int btusb_probe(struct usb_interface *intf,
917 const struct usb_device_id *id)
918{
919 struct usb_endpoint_descriptor *ep_desc;
920 struct btusb_data *data;
921 struct hci_dev *hdev;
922 int i, err;
923
924 BT_DBG("intf %p id %p", intf, id);
925
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200926 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200927 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
928 return -ENODEV;
929
930 if (!id->driver_info) {
931 const struct usb_device_id *match;
932 match = usb_match_id(intf, blacklist_table);
933 if (match)
934 id = match;
935 }
936
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200937 if (id->driver_info == BTUSB_IGNORE)
938 return -ENODEV;
939
940 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
941 return -ENODEV;
942
943 if (ignore_csr && id->driver_info & BTUSB_CSR)
944 return -ENODEV;
945
946 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
947 return -ENODEV;
948
Steven.Li2d25f8b2011-07-01 14:02:36 +0800949 if (id->driver_info & BTUSB_ATH3012) {
950 struct usb_device *udev = interface_to_usbdev(intf);
951
952 /* Old firmware would otherwise let ath3k driver load
953 * patch and sysconfig files */
954 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
955 return -ENODEV;
956 }
957
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200958 data = kzalloc(sizeof(*data), GFP_KERNEL);
959 if (!data)
960 return -ENOMEM;
961
962 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
963 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
964
965 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
966 data->intr_ep = ep_desc;
967 continue;
968 }
969
970 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
971 data->bulk_tx_ep = ep_desc;
972 continue;
973 }
974
975 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
976 data->bulk_rx_ep = ep_desc;
977 continue;
978 }
979 }
980
981 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
982 kfree(data);
983 return -ENODEV;
984 }
985
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100986 data->cmdreq_type = USB_TYPE_CLASS;
987
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200988 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200989 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200990
991 spin_lock_init(&data->lock);
992
993 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200994 INIT_WORK(&data->waker, btusb_waker);
995 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200996
997 init_usb_anchor(&data->tx_anchor);
998 init_usb_anchor(&data->intr_anchor);
999 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001000 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001001 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001002
1003 hdev = hci_alloc_dev();
1004 if (!hdev) {
1005 kfree(data);
1006 return -ENOMEM;
1007 }
1008
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001009 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01001010 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001011
1012 data->hdev = hdev;
1013
1014 SET_HCIDEV_DEV(hdev, &intf->dev);
1015
1016 hdev->open = btusb_open;
1017 hdev->close = btusb_close;
1018 hdev->flush = btusb_flush;
1019 hdev->send = btusb_send_frame;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001020 hdev->notify = btusb_notify;
1021
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001022 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001023 data->isoc = usb_ifnum_to_if(data->udev, 1);
1024
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001025 if (!reset)
1026 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001027
1028 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1029 if (!disable_scofix)
1030 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1031 }
1032
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001033 if (id->driver_info & BTUSB_BROKEN_ISOC)
1034 data->isoc = NULL;
1035
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001036 if (id->driver_info & BTUSB_DIGIANSWER) {
1037 data->cmdreq_type = USB_TYPE_VENDOR;
1038 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1039 }
1040
1041 if (id->driver_info & BTUSB_CSR) {
1042 struct usb_device *udev = data->udev;
1043
1044 /* Old firmware would otherwise execute USB reset */
1045 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1046 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1047 }
1048
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001049 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001050 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001051
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001052 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001053 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1054 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001055
1056 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001057 }
1058
1059 if (id->driver_info & BTUSB_BCM92035) {
1060 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1061 struct sk_buff *skb;
1062
1063 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1064 if (skb) {
1065 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1066 skb_queue_tail(&hdev->driver_init, skb);
1067 }
1068 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001069
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001070 if (data->isoc) {
1071 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001072 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001073 if (err < 0) {
1074 hci_free_dev(hdev);
1075 kfree(data);
1076 return err;
1077 }
1078 }
1079
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001080 err = hci_register_dev(hdev);
1081 if (err < 0) {
1082 hci_free_dev(hdev);
1083 kfree(data);
1084 return err;
1085 }
1086
1087 usb_set_intfdata(intf, data);
1088
1089 return 0;
1090}
1091
1092static void btusb_disconnect(struct usb_interface *intf)
1093{
1094 struct btusb_data *data = usb_get_intfdata(intf);
1095 struct hci_dev *hdev;
1096
1097 BT_DBG("intf %p", intf);
1098
1099 if (!data)
1100 return;
1101
1102 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001103 usb_set_intfdata(data->intf, NULL);
1104
1105 if (data->isoc)
1106 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001107
1108 hci_unregister_dev(hdev);
1109
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001110 if (intf == data->isoc)
1111 usb_driver_release_interface(&btusb_driver, data->intf);
1112 else if (data->isoc)
1113 usb_driver_release_interface(&btusb_driver, data->isoc);
1114
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001115 hci_free_dev(hdev);
David Herrmann83810882012-01-07 15:47:16 +01001116 kfree(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001117}
1118
Oliver Neukum7bee5492009-08-24 23:44:59 +02001119#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001120static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1121{
1122 struct btusb_data *data = usb_get_intfdata(intf);
1123
1124 BT_DBG("intf %p", intf);
1125
1126 if (data->suspend_count++)
1127 return 0;
1128
Oliver Neukum7bee5492009-08-24 23:44:59 +02001129 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001130 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001131 set_bit(BTUSB_SUSPENDING, &data->flags);
1132 spin_unlock_irq(&data->txlock);
1133 } else {
1134 spin_unlock_irq(&data->txlock);
1135 data->suspend_count--;
1136 return -EBUSY;
1137 }
1138
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001139 cancel_work_sync(&data->work);
1140
Oliver Neukum7bee5492009-08-24 23:44:59 +02001141 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001142 usb_kill_anchored_urbs(&data->tx_anchor);
1143
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001144 return 0;
1145}
1146
Oliver Neukum7bee5492009-08-24 23:44:59 +02001147static void play_deferred(struct btusb_data *data)
1148{
1149 struct urb *urb;
1150 int err;
1151
1152 while ((urb = usb_get_from_anchor(&data->deferred))) {
1153 err = usb_submit_urb(urb, GFP_ATOMIC);
1154 if (err < 0)
1155 break;
1156
1157 data->tx_in_flight++;
1158 }
1159 usb_scuttle_anchored_urbs(&data->deferred);
1160}
1161
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001162static int btusb_resume(struct usb_interface *intf)
1163{
1164 struct btusb_data *data = usb_get_intfdata(intf);
1165 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001166 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001167
1168 BT_DBG("intf %p", intf);
1169
1170 if (--data->suspend_count)
1171 return 0;
1172
1173 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001174 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001175
1176 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1177 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1178 if (err < 0) {
1179 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001180 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001181 }
1182 }
1183
1184 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001185 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1186 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001187 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001188 goto failed;
1189 }
1190
1191 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001192 }
1193
1194 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1195 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1196 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1197 else
1198 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1199 }
1200
Oliver Neukum7bee5492009-08-24 23:44:59 +02001201 spin_lock_irq(&data->txlock);
1202 play_deferred(data);
1203 clear_bit(BTUSB_SUSPENDING, &data->flags);
1204 spin_unlock_irq(&data->txlock);
1205 schedule_work(&data->work);
1206
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001207 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001208
1209failed:
1210 usb_scuttle_anchored_urbs(&data->deferred);
1211done:
1212 spin_lock_irq(&data->txlock);
1213 clear_bit(BTUSB_SUSPENDING, &data->flags);
1214 spin_unlock_irq(&data->txlock);
1215
1216 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001217}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001218#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001219
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220static struct usb_driver btusb_driver = {
1221 .name = "btusb",
1222 .probe = btusb_probe,
1223 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001224#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001225 .suspend = btusb_suspend,
1226 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001227#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001228 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001229 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001230};
1231
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001232module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001233
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001234module_param(ignore_dga, bool, 0644);
1235MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1236
1237module_param(ignore_csr, bool, 0644);
1238MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1239
1240module_param(ignore_sniffer, bool, 0644);
1241MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1242
1243module_param(disable_scofix, bool, 0644);
1244MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1245
1246module_param(force_scofix, bool, 0644);
1247MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1248
1249module_param(reset, bool, 0644);
1250MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1251
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001252MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1253MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1254MODULE_VERSION(VERSION);
1255MODULE_LICENSE("GPL");