blob: 789c9b579aea5bac7e0b2abfe3d14b377917a9c4 [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) },
Manoj Iyer403f0482012-02-02 09:32:36 -0600105 { USB_DEVICE(0x0a5c, 0x21f3) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800106 { USB_DEVICE(0x413c, 0x8197) },
107
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200108 { } /* Terminating entry */
109};
110
111MODULE_DEVICE_TABLE(usb, btusb_table);
112
113static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200114 /* CSR BlueCore devices */
115 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
116
117 /* Broadcom BCM2033 without firmware */
118 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
119
Bala Shanmugambe931122010-11-26 17:35:46 +0530120 /* Atheros 3011 with sflash firmware */
121 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700122 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza8e7c3d22011-07-13 16:04:29 +0100123 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530124
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800125 /* Atheros AR9285 Malbec with sflash firmware */
126 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
127
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530128 /* Atheros 3012 with sflash firmware */
Steven.Li2d25f8b2011-07-01 14:02:36 +0800129 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530130
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800131 /* Atheros AR5BBU12 with sflash firmware */
132 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
133
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200134 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100135 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
136 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
137 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200138
139 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100140 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
141 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200142
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200143 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100144 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
145 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200146
147 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100148 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200149
150 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100151 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200152
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100153 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100154 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100155 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200156
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100157 /* Belkin F8T012 and F8T013 devices */
158 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
159 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200160
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100161 /* Asus WL-BTD202 device */
162 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
163
164 /* Kensington Bluetooth USB adapter */
165 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
166
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200167 /* RTX Telecom based adapters with buggy SCO support */
168 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
169 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
170
171 /* CONWISE Technology based adapters with buggy SCO support */
172 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
173
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200174 /* Digianswer devices */
175 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
176 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
177
178 /* CSR BlueCore Bluetooth Sniffer */
179 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
180
181 /* Frontline ComProbe Bluetooth Sniffer */
182 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
183
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200184 { } /* Terminating entry */
185};
186
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200187#define BTUSB_MAX_ISOC_FRAMES 10
188
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200189#define BTUSB_INTR_RUNNING 0
190#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200191#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200192#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300193#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200194
195struct btusb_data {
196 struct hci_dev *hdev;
197 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200198 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200199 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200200
201 spinlock_t lock;
202
203 unsigned long flags;
204
205 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200206 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200207
208 struct usb_anchor tx_anchor;
209 struct usb_anchor intr_anchor;
210 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200211 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200212 struct usb_anchor deferred;
213 int tx_in_flight;
214 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200215
216 struct usb_endpoint_descriptor *intr_ep;
217 struct usb_endpoint_descriptor *bulk_tx_ep;
218 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200219 struct usb_endpoint_descriptor *isoc_tx_ep;
220 struct usb_endpoint_descriptor *isoc_rx_ep;
221
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100222 __u8 cmdreq_type;
223
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100224 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200225 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100226 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200227};
228
Oliver Neukum7bee5492009-08-24 23:44:59 +0200229static int inc_tx(struct btusb_data *data)
230{
231 unsigned long flags;
232 int rv;
233
234 spin_lock_irqsave(&data->txlock, flags);
235 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
236 if (!rv)
237 data->tx_in_flight++;
238 spin_unlock_irqrestore(&data->txlock, flags);
239
240 return rv;
241}
242
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200243static void btusb_intr_complete(struct urb *urb)
244{
245 struct hci_dev *hdev = urb->context;
246 struct btusb_data *data = hdev->driver_data;
247 int err;
248
249 BT_DBG("%s urb %p status %d count %d", hdev->name,
250 urb, urb->status, urb->actual_length);
251
252 if (!test_bit(HCI_RUNNING, &hdev->flags))
253 return;
254
255 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200256 hdev->stat.byte_rx += urb->actual_length;
257
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200258 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
259 urb->transfer_buffer,
260 urb->actual_length) < 0) {
261 BT_ERR("%s corrupted event packet", hdev->name);
262 hdev->stat.err_rx++;
263 }
264 }
265
266 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
267 return;
268
Oliver Neukum7bee5492009-08-24 23:44:59 +0200269 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200270 usb_anchor_urb(urb, &data->intr_anchor);
271
272 err = usb_submit_urb(urb, GFP_ATOMIC);
273 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200274 /* -EPERM: urb is being killed;
275 * -ENODEV: device got disconnected */
276 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100277 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200278 hdev->name, urb, -err);
279 usb_unanchor_urb(urb);
280 }
281}
282
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100283static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200284{
285 struct btusb_data *data = hdev->driver_data;
286 struct urb *urb;
287 unsigned char *buf;
288 unsigned int pipe;
289 int err, size;
290
291 BT_DBG("%s", hdev->name);
292
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200293 if (!data->intr_ep)
294 return -ENODEV;
295
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100296 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200297 if (!urb)
298 return -ENOMEM;
299
300 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
301
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100302 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200303 if (!buf) {
304 usb_free_urb(urb);
305 return -ENOMEM;
306 }
307
308 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
309
310 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
311 btusb_intr_complete, hdev,
312 data->intr_ep->bInterval);
313
314 urb->transfer_flags |= URB_FREE_BUFFER;
315
316 usb_anchor_urb(urb, &data->intr_anchor);
317
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100318 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200319 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200320 if (err != -EPERM && err != -ENODEV)
321 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200322 hdev->name, urb, -err);
323 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200324 }
325
326 usb_free_urb(urb);
327
328 return err;
329}
330
331static void btusb_bulk_complete(struct urb *urb)
332{
333 struct hci_dev *hdev = urb->context;
334 struct btusb_data *data = hdev->driver_data;
335 int err;
336
337 BT_DBG("%s urb %p status %d count %d", hdev->name,
338 urb, urb->status, urb->actual_length);
339
340 if (!test_bit(HCI_RUNNING, &hdev->flags))
341 return;
342
343 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200344 hdev->stat.byte_rx += urb->actual_length;
345
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200346 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
347 urb->transfer_buffer,
348 urb->actual_length) < 0) {
349 BT_ERR("%s corrupted ACL packet", hdev->name);
350 hdev->stat.err_rx++;
351 }
352 }
353
354 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
355 return;
356
357 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100358 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200359
360 err = usb_submit_urb(urb, GFP_ATOMIC);
361 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200362 /* -EPERM: urb is being killed;
363 * -ENODEV: device got disconnected */
364 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100365 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200366 hdev->name, urb, -err);
367 usb_unanchor_urb(urb);
368 }
369}
370
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100371static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372{
373 struct btusb_data *data = hdev->driver_data;
374 struct urb *urb;
375 unsigned char *buf;
376 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530377 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200378
379 BT_DBG("%s", hdev->name);
380
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200381 if (!data->bulk_rx_ep)
382 return -ENODEV;
383
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100384 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200385 if (!urb)
386 return -ENOMEM;
387
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100388 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200389 if (!buf) {
390 usb_free_urb(urb);
391 return -ENOMEM;
392 }
393
394 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
395
396 usb_fill_bulk_urb(urb, data->udev, pipe,
397 buf, size, btusb_bulk_complete, hdev);
398
399 urb->transfer_flags |= URB_FREE_BUFFER;
400
Oliver Neukum7bee5492009-08-24 23:44:59 +0200401 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200402 usb_anchor_urb(urb, &data->bulk_anchor);
403
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100404 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200405 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200406 if (err != -EPERM && err != -ENODEV)
407 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200408 hdev->name, urb, -err);
409 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200410 }
411
412 usb_free_urb(urb);
413
414 return err;
415}
416
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200417static void btusb_isoc_complete(struct urb *urb)
418{
419 struct hci_dev *hdev = urb->context;
420 struct btusb_data *data = hdev->driver_data;
421 int i, err;
422
423 BT_DBG("%s urb %p status %d count %d", hdev->name,
424 urb, urb->status, urb->actual_length);
425
426 if (!test_bit(HCI_RUNNING, &hdev->flags))
427 return;
428
429 if (urb->status == 0) {
430 for (i = 0; i < urb->number_of_packets; i++) {
431 unsigned int offset = urb->iso_frame_desc[i].offset;
432 unsigned int length = urb->iso_frame_desc[i].actual_length;
433
434 if (urb->iso_frame_desc[i].status)
435 continue;
436
437 hdev->stat.byte_rx += length;
438
439 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
440 urb->transfer_buffer + offset,
441 length) < 0) {
442 BT_ERR("%s corrupted SCO packet", hdev->name);
443 hdev->stat.err_rx++;
444 }
445 }
446 }
447
448 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
449 return;
450
451 usb_anchor_urb(urb, &data->isoc_anchor);
452
453 err = usb_submit_urb(urb, GFP_ATOMIC);
454 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200455 /* -EPERM: urb is being killed;
456 * -ENODEV: device got disconnected */
457 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100458 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200459 hdev->name, urb, -err);
460 usb_unanchor_urb(urb);
461 }
462}
463
Jesper Juhl42b16b32011-01-17 00:09:38 +0100464static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200465{
466 int i, offset = 0;
467
468 BT_DBG("len %d mtu %d", len, mtu);
469
470 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
471 i++, offset += mtu, len -= mtu) {
472 urb->iso_frame_desc[i].offset = offset;
473 urb->iso_frame_desc[i].length = mtu;
474 }
475
476 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
477 urb->iso_frame_desc[i].offset = offset;
478 urb->iso_frame_desc[i].length = len;
479 i++;
480 }
481
482 urb->number_of_packets = i;
483}
484
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100485static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200486{
487 struct btusb_data *data = hdev->driver_data;
488 struct urb *urb;
489 unsigned char *buf;
490 unsigned int pipe;
491 int err, size;
492
493 BT_DBG("%s", hdev->name);
494
495 if (!data->isoc_rx_ep)
496 return -ENODEV;
497
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100498 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200499 if (!urb)
500 return -ENOMEM;
501
502 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
503 BTUSB_MAX_ISOC_FRAMES;
504
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100505 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200506 if (!buf) {
507 usb_free_urb(urb);
508 return -ENOMEM;
509 }
510
511 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
512
Bing Zhaofa0fb932011-12-20 18:19:00 -0800513 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
514 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200515
516 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200517
518 __fill_isoc_descriptor(urb, size,
519 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
520
521 usb_anchor_urb(urb, &data->isoc_anchor);
522
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100523 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200524 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200525 if (err != -EPERM && err != -ENODEV)
526 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200527 hdev->name, urb, -err);
528 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200529 }
530
531 usb_free_urb(urb);
532
533 return err;
534}
535
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200536static void btusb_tx_complete(struct urb *urb)
537{
538 struct sk_buff *skb = urb->context;
539 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200540 struct btusb_data *data = hdev->driver_data;
541
542 BT_DBG("%s urb %p status %d count %d", hdev->name,
543 urb, urb->status, urb->actual_length);
544
545 if (!test_bit(HCI_RUNNING, &hdev->flags))
546 goto done;
547
548 if (!urb->status)
549 hdev->stat.byte_tx += urb->transfer_buffer_length;
550 else
551 hdev->stat.err_tx++;
552
553done:
554 spin_lock(&data->txlock);
555 data->tx_in_flight--;
556 spin_unlock(&data->txlock);
557
558 kfree(urb->setup_packet);
559
560 kfree_skb(skb);
561}
562
563static void btusb_isoc_tx_complete(struct urb *urb)
564{
565 struct sk_buff *skb = urb->context;
566 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200567
568 BT_DBG("%s urb %p status %d count %d", hdev->name,
569 urb, urb->status, urb->actual_length);
570
571 if (!test_bit(HCI_RUNNING, &hdev->flags))
572 goto done;
573
574 if (!urb->status)
575 hdev->stat.byte_tx += urb->transfer_buffer_length;
576 else
577 hdev->stat.err_tx++;
578
579done:
580 kfree(urb->setup_packet);
581
582 kfree_skb(skb);
583}
584
585static int btusb_open(struct hci_dev *hdev)
586{
587 struct btusb_data *data = hdev->driver_data;
588 int err;
589
590 BT_DBG("%s", hdev->name);
591
Oliver Neukum7bee5492009-08-24 23:44:59 +0200592 err = usb_autopm_get_interface(data->intf);
593 if (err < 0)
594 return err;
595
596 data->intf->needs_remote_wakeup = 1;
597
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200598 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200599 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200600
601 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200602 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200603
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100604 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100605 if (err < 0)
606 goto failed;
607
608 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200609 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100610 usb_kill_anchored_urbs(&data->intr_anchor);
611 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612 }
613
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100614 set_bit(BTUSB_BULK_RUNNING, &data->flags);
615 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
616
Oliver Neukum7bee5492009-08-24 23:44:59 +0200617done:
618 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100619 return 0;
620
621failed:
622 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
623 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200624 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200625 return err;
626}
627
Oliver Neukum7bee5492009-08-24 23:44:59 +0200628static void btusb_stop_traffic(struct btusb_data *data)
629{
630 usb_kill_anchored_urbs(&data->intr_anchor);
631 usb_kill_anchored_urbs(&data->bulk_anchor);
632 usb_kill_anchored_urbs(&data->isoc_anchor);
633}
634
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200635static int btusb_close(struct hci_dev *hdev)
636{
637 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200638 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639
640 BT_DBG("%s", hdev->name);
641
642 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
643 return 0;
644
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200645 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800646 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200647
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200648 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200649 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200650 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200651
652 btusb_stop_traffic(data);
653 err = usb_autopm_get_interface(data->intf);
654 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100655 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200656
657 data->intf->needs_remote_wakeup = 0;
658 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200659
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100660failed:
661 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200662 return 0;
663}
664
665static int btusb_flush(struct hci_dev *hdev)
666{
667 struct btusb_data *data = hdev->driver_data;
668
669 BT_DBG("%s", hdev->name);
670
671 usb_kill_anchored_urbs(&data->tx_anchor);
672
673 return 0;
674}
675
676static int btusb_send_frame(struct sk_buff *skb)
677{
678 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
679 struct btusb_data *data = hdev->driver_data;
680 struct usb_ctrlrequest *dr;
681 struct urb *urb;
682 unsigned int pipe;
683 int err;
684
685 BT_DBG("%s", hdev->name);
686
687 if (!test_bit(HCI_RUNNING, &hdev->flags))
688 return -EBUSY;
689
690 switch (bt_cb(skb)->pkt_type) {
691 case HCI_COMMAND_PKT:
692 urb = usb_alloc_urb(0, GFP_ATOMIC);
693 if (!urb)
694 return -ENOMEM;
695
696 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
697 if (!dr) {
698 usb_free_urb(urb);
699 return -ENOMEM;
700 }
701
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100702 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200703 dr->bRequest = 0;
704 dr->wIndex = 0;
705 dr->wValue = 0;
706 dr->wLength = __cpu_to_le16(skb->len);
707
708 pipe = usb_sndctrlpipe(data->udev, 0x00);
709
710 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
711 skb->data, skb->len, btusb_tx_complete, skb);
712
713 hdev->stat.cmd_tx++;
714 break;
715
716 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400717 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200718 return -ENODEV;
719
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200720 urb = usb_alloc_urb(0, GFP_ATOMIC);
721 if (!urb)
722 return -ENOMEM;
723
724 pipe = usb_sndbulkpipe(data->udev,
725 data->bulk_tx_ep->bEndpointAddress);
726
727 usb_fill_bulk_urb(urb, data->udev, pipe,
728 skb->data, skb->len, btusb_tx_complete, skb);
729
730 hdev->stat.acl_tx++;
731 break;
732
733 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200734 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
735 return -ENODEV;
736
737 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
738 if (!urb)
739 return -ENOMEM;
740
741 pipe = usb_sndisocpipe(data->udev,
742 data->isoc_tx_ep->bEndpointAddress);
743
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300744 usb_fill_int_urb(urb, data->udev, pipe,
745 skb->data, skb->len, btusb_isoc_tx_complete,
746 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200747
748 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200749
750 __fill_isoc_descriptor(urb, skb->len,
751 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
752
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200753 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200754 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200755
756 default:
757 return -EILSEQ;
758 }
759
Oliver Neukum7bee5492009-08-24 23:44:59 +0200760 err = inc_tx(data);
761 if (err) {
762 usb_anchor_urb(urb, &data->deferred);
763 schedule_work(&data->waker);
764 err = 0;
765 goto done;
766 }
767
768skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200769 usb_anchor_urb(urb, &data->tx_anchor);
770
771 err = usb_submit_urb(urb, GFP_ATOMIC);
772 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200773 if (err != -EPERM && err != -ENODEV)
774 BT_ERR("%s urb %p submission failed (%d)",
775 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200776 kfree(urb->setup_packet);
777 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200778 } else {
779 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200780 }
781
Oliver Neukum7bee5492009-08-24 23:44:59 +0200782done:
Cong Wang54a8a792011-11-22 09:32:57 +0800783 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200784 return err;
785}
786
787static void btusb_destruct(struct hci_dev *hdev)
788{
789 struct btusb_data *data = hdev->driver_data;
790
791 BT_DBG("%s", hdev->name);
792
793 kfree(data);
794}
795
796static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
797{
798 struct btusb_data *data = hdev->driver_data;
799
800 BT_DBG("%s evt %d", hdev->name, evt);
801
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100802 if (hdev->conn_hash.sco_num != data->sco_num) {
803 data->sco_num = hdev->conn_hash.sco_num;
804 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100805 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200806}
807
Jesper Juhl42b16b32011-01-17 00:09:38 +0100808static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200809{
810 struct btusb_data *data = hdev->driver_data;
811 struct usb_interface *intf = data->isoc;
812 struct usb_endpoint_descriptor *ep_desc;
813 int i, err;
814
815 if (!data->isoc)
816 return -ENODEV;
817
818 err = usb_set_interface(data->udev, 1, altsetting);
819 if (err < 0) {
820 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
821 return err;
822 }
823
824 data->isoc_altsetting = altsetting;
825
826 data->isoc_tx_ep = NULL;
827 data->isoc_rx_ep = NULL;
828
829 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
830 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
831
832 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
833 data->isoc_tx_ep = ep_desc;
834 continue;
835 }
836
837 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
838 data->isoc_rx_ep = ep_desc;
839 continue;
840 }
841 }
842
843 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
844 BT_ERR("%s invalid SCO descriptors", hdev->name);
845 return -ENODEV;
846 }
847
848 return 0;
849}
850
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200851static void btusb_work(struct work_struct *work)
852{
853 struct btusb_data *data = container_of(work, struct btusb_data, work);
854 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200855 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200856
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200857 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300858 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100859 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200860 if (err < 0) {
861 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
862 usb_kill_anchored_urbs(&data->isoc_anchor);
863 return;
864 }
865
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300866 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200867 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200868 if (data->isoc_altsetting != 2) {
869 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
870 usb_kill_anchored_urbs(&data->isoc_anchor);
871
872 if (__set_isoc_interface(hdev, 2) < 0)
873 return;
874 }
875
876 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100877 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200878 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
879 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100880 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200881 }
882 } else {
883 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
884 usb_kill_anchored_urbs(&data->isoc_anchor);
885
886 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300887 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100888 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200889 }
890}
891
Oliver Neukum7bee5492009-08-24 23:44:59 +0200892static void btusb_waker(struct work_struct *work)
893{
894 struct btusb_data *data = container_of(work, struct btusb_data, waker);
895 int err;
896
897 err = usb_autopm_get_interface(data->intf);
898 if (err < 0)
899 return;
900
901 usb_autopm_put_interface(data->intf);
902}
903
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200904static int btusb_probe(struct usb_interface *intf,
905 const struct usb_device_id *id)
906{
907 struct usb_endpoint_descriptor *ep_desc;
908 struct btusb_data *data;
909 struct hci_dev *hdev;
910 int i, err;
911
912 BT_DBG("intf %p id %p", intf, id);
913
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200914 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200915 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
916 return -ENODEV;
917
918 if (!id->driver_info) {
919 const struct usb_device_id *match;
920 match = usb_match_id(intf, blacklist_table);
921 if (match)
922 id = match;
923 }
924
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200925 if (id->driver_info == BTUSB_IGNORE)
926 return -ENODEV;
927
928 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
929 return -ENODEV;
930
931 if (ignore_csr && id->driver_info & BTUSB_CSR)
932 return -ENODEV;
933
934 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
935 return -ENODEV;
936
Steven.Li2d25f8b2011-07-01 14:02:36 +0800937 if (id->driver_info & BTUSB_ATH3012) {
938 struct usb_device *udev = interface_to_usbdev(intf);
939
940 /* Old firmware would otherwise let ath3k driver load
941 * patch and sysconfig files */
942 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
943 return -ENODEV;
944 }
945
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200946 data = kzalloc(sizeof(*data), GFP_KERNEL);
947 if (!data)
948 return -ENOMEM;
949
950 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
951 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
952
953 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
954 data->intr_ep = ep_desc;
955 continue;
956 }
957
958 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
959 data->bulk_tx_ep = ep_desc;
960 continue;
961 }
962
963 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
964 data->bulk_rx_ep = ep_desc;
965 continue;
966 }
967 }
968
969 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
970 kfree(data);
971 return -ENODEV;
972 }
973
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100974 data->cmdreq_type = USB_TYPE_CLASS;
975
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200976 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200977 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200978
979 spin_lock_init(&data->lock);
980
981 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200982 INIT_WORK(&data->waker, btusb_waker);
983 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200984
985 init_usb_anchor(&data->tx_anchor);
986 init_usb_anchor(&data->intr_anchor);
987 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200988 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200989 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200990
991 hdev = hci_alloc_dev();
992 if (!hdev) {
993 kfree(data);
994 return -ENOMEM;
995 }
996
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100997 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200998 hdev->driver_data = data;
999
1000 data->hdev = hdev;
1001
1002 SET_HCIDEV_DEV(hdev, &intf->dev);
1003
1004 hdev->open = btusb_open;
1005 hdev->close = btusb_close;
1006 hdev->flush = btusb_flush;
1007 hdev->send = btusb_send_frame;
1008 hdev->destruct = btusb_destruct;
1009 hdev->notify = btusb_notify;
1010
1011 hdev->owner = THIS_MODULE;
1012
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001013 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001014 data->isoc = usb_ifnum_to_if(data->udev, 1);
1015
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001016 if (!reset)
1017 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001018
1019 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1020 if (!disable_scofix)
1021 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1022 }
1023
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001024 if (id->driver_info & BTUSB_BROKEN_ISOC)
1025 data->isoc = NULL;
1026
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001027 if (id->driver_info & BTUSB_DIGIANSWER) {
1028 data->cmdreq_type = USB_TYPE_VENDOR;
1029 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1030 }
1031
1032 if (id->driver_info & BTUSB_CSR) {
1033 struct usb_device *udev = data->udev;
1034
1035 /* Old firmware would otherwise execute USB reset */
1036 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1037 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1038 }
1039
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001040 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001041 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001042
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001043 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001044 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1045 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001046
1047 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001048 }
1049
1050 if (id->driver_info & BTUSB_BCM92035) {
1051 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1052 struct sk_buff *skb;
1053
1054 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1055 if (skb) {
1056 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1057 skb_queue_tail(&hdev->driver_init, skb);
1058 }
1059 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001060
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001061 if (data->isoc) {
1062 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001063 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001064 if (err < 0) {
1065 hci_free_dev(hdev);
1066 kfree(data);
1067 return err;
1068 }
1069 }
1070
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001071 err = hci_register_dev(hdev);
1072 if (err < 0) {
1073 hci_free_dev(hdev);
1074 kfree(data);
1075 return err;
1076 }
1077
1078 usb_set_intfdata(intf, data);
1079
1080 return 0;
1081}
1082
1083static void btusb_disconnect(struct usb_interface *intf)
1084{
1085 struct btusb_data *data = usb_get_intfdata(intf);
1086 struct hci_dev *hdev;
1087
1088 BT_DBG("intf %p", intf);
1089
1090 if (!data)
1091 return;
1092
1093 hdev = data->hdev;
1094
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001095 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001096
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001097 usb_set_intfdata(data->intf, NULL);
1098
1099 if (data->isoc)
1100 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001101
1102 hci_unregister_dev(hdev);
1103
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001104 if (intf == data->isoc)
1105 usb_driver_release_interface(&btusb_driver, data->intf);
1106 else if (data->isoc)
1107 usb_driver_release_interface(&btusb_driver, data->isoc);
1108
1109 __hci_dev_put(hdev);
1110
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001111 hci_free_dev(hdev);
1112}
1113
Oliver Neukum7bee5492009-08-24 23:44:59 +02001114#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001115static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1116{
1117 struct btusb_data *data = usb_get_intfdata(intf);
1118
1119 BT_DBG("intf %p", intf);
1120
1121 if (data->suspend_count++)
1122 return 0;
1123
Oliver Neukum7bee5492009-08-24 23:44:59 +02001124 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001125 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001126 set_bit(BTUSB_SUSPENDING, &data->flags);
1127 spin_unlock_irq(&data->txlock);
1128 } else {
1129 spin_unlock_irq(&data->txlock);
1130 data->suspend_count--;
1131 return -EBUSY;
1132 }
1133
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001134 cancel_work_sync(&data->work);
1135
Oliver Neukum7bee5492009-08-24 23:44:59 +02001136 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001137 usb_kill_anchored_urbs(&data->tx_anchor);
1138
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001139 return 0;
1140}
1141
Oliver Neukum7bee5492009-08-24 23:44:59 +02001142static void play_deferred(struct btusb_data *data)
1143{
1144 struct urb *urb;
1145 int err;
1146
1147 while ((urb = usb_get_from_anchor(&data->deferred))) {
1148 err = usb_submit_urb(urb, GFP_ATOMIC);
1149 if (err < 0)
1150 break;
1151
1152 data->tx_in_flight++;
1153 }
1154 usb_scuttle_anchored_urbs(&data->deferred);
1155}
1156
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001157static int btusb_resume(struct usb_interface *intf)
1158{
1159 struct btusb_data *data = usb_get_intfdata(intf);
1160 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001161 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001162
1163 BT_DBG("intf %p", intf);
1164
1165 if (--data->suspend_count)
1166 return 0;
1167
1168 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001169 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001170
1171 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1172 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1173 if (err < 0) {
1174 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001175 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001176 }
1177 }
1178
1179 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001180 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1181 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001182 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001183 goto failed;
1184 }
1185
1186 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001187 }
1188
1189 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1190 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1191 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1192 else
1193 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1194 }
1195
Oliver Neukum7bee5492009-08-24 23:44:59 +02001196 spin_lock_irq(&data->txlock);
1197 play_deferred(data);
1198 clear_bit(BTUSB_SUSPENDING, &data->flags);
1199 spin_unlock_irq(&data->txlock);
1200 schedule_work(&data->work);
1201
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001202 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001203
1204failed:
1205 usb_scuttle_anchored_urbs(&data->deferred);
1206done:
1207 spin_lock_irq(&data->txlock);
1208 clear_bit(BTUSB_SUSPENDING, &data->flags);
1209 spin_unlock_irq(&data->txlock);
1210
1211 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001212}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001213#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001214
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001215static struct usb_driver btusb_driver = {
1216 .name = "btusb",
1217 .probe = btusb_probe,
1218 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001219#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001220 .suspend = btusb_suspend,
1221 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001222#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001223 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001224 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001225};
1226
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001227module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001228
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001229module_param(ignore_dga, bool, 0644);
1230MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1231
1232module_param(ignore_csr, bool, 0644);
1233MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1234
1235module_param(ignore_sniffer, bool, 0644);
1236MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1237
1238module_param(disable_scofix, bool, 0644);
1239MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1240
1241module_param(force_scofix, bool, 0644);
1242MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1243
1244module_param(reset, bool, 0644);
1245MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1246
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001247MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1248MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1249MODULE_VERSION(VERSION);
1250MODULE_LICENSE("GPL");