blob: 9e4448efb104a62be1385e228abd92548a2330df [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/slab.h>
28#include <linux/types.h>
29#include <linux/sched.h>
30#include <linux/errno.h>
31#include <linux/skbuff.h>
32
33#include <linux/usb.h>
34
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Oliver Neukum7bee5492009-08-24 23:44:59 +020038#define VERSION "0.6"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020039
40static int ignore_dga;
41static int ignore_csr;
42static int ignore_sniffer;
43static int disable_scofix;
44static int force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010045
46static int reset = 1;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020047
48static struct usb_driver btusb_driver;
49
50#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010051#define BTUSB_DIGIANSWER 0x02
52#define BTUSB_CSR 0x04
53#define BTUSB_SNIFFER 0x08
54#define BTUSB_BCM92035 0x10
55#define BTUSB_BROKEN_ISOC 0x20
56#define BTUSB_WRONG_SCO_MTU 0x40
Steven.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
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090063 /* Apple MacBookPro 7,1 */
64 { USB_DEVICE(0x05ac, 0x8213) },
65
Cyril Lacoux0a79f672010-07-14 10:29:27 +040066 /* Apple iMac11,1 */
67 { USB_DEVICE(0x05ac, 0x8215) },
68
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090069 /* Apple MacBookPro6,2 */
70 { USB_DEVICE(0x05ac, 0x8218) },
71
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010072 /* Apple MacBookAir3,1, MacBookAir3,2 */
73 { USB_DEVICE(0x05ac, 0x821b) },
74
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030075 /* Apple MacBookPro8,2 */
76 { USB_DEVICE(0x05ac, 0x821a) },
77
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020078 /* AVM BlueFRITZ! USB v2.0 */
79 { USB_DEVICE(0x057c, 0x3800) },
80
81 /* Bluetooth Ultraport Module from IBM */
82 { USB_DEVICE(0x04bf, 0x030a) },
83
84 /* ALPS Modules with non-standard id */
85 { USB_DEVICE(0x044e, 0x3001) },
86 { USB_DEVICE(0x044e, 0x3002) },
87
88 /* Ericsson with non-standard id */
89 { USB_DEVICE(0x0bdb, 0x1002) },
90
91 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010092 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020093
Marcel Holtmann5e23b922007-10-20 14:12:34 +020094 { } /* Terminating entry */
95};
96
97MODULE_DEVICE_TABLE(usb, btusb_table);
98
99static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200100 /* CSR BlueCore devices */
101 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
102
103 /* Broadcom BCM2033 without firmware */
104 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
105
Bala Shanmugambe931122010-11-26 17:35:46 +0530106 /* Atheros 3011 with sflash firmware */
107 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700108 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530109
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800110 /* Atheros AR9285 Malbec with sflash firmware */
111 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
112
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530113 /* Atheros 3012 with sflash firmware */
Steven.Li2d25f8b2011-07-01 14:02:36 +0800114 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530115
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800116 /* Atheros AR5BBU12 with sflash firmware */
117 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
118
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200119 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100120 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
121 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
122 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200123
124 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100125 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
126 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200127
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200128 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100129 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
130 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200131
132 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100133 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200134
135 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100136 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200137
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100138 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100139 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100140 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200141
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100142 /* Belkin F8T012 and F8T013 devices */
143 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
144 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200145
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100146 /* Asus WL-BTD202 device */
147 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
148
149 /* Kensington Bluetooth USB adapter */
150 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
151
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200152 /* RTX Telecom based adapters with buggy SCO support */
153 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
154 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
155
156 /* CONWISE Technology based adapters with buggy SCO support */
157 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
158
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200159 /* Digianswer devices */
160 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
161 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
162
163 /* CSR BlueCore Bluetooth Sniffer */
164 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
165
166 /* Frontline ComProbe Bluetooth Sniffer */
167 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
168
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200169 { } /* Terminating entry */
170};
171
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200172#define BTUSB_MAX_ISOC_FRAMES 10
173
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200174#define BTUSB_INTR_RUNNING 0
175#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200176#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200177#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300178#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200179
180struct btusb_data {
181 struct hci_dev *hdev;
182 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200183 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200184 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200185
186 spinlock_t lock;
187
188 unsigned long flags;
189
190 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200191 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200192
193 struct usb_anchor tx_anchor;
194 struct usb_anchor intr_anchor;
195 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200196 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200197 struct usb_anchor deferred;
198 int tx_in_flight;
199 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200200
201 struct usb_endpoint_descriptor *intr_ep;
202 struct usb_endpoint_descriptor *bulk_tx_ep;
203 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200204 struct usb_endpoint_descriptor *isoc_tx_ep;
205 struct usb_endpoint_descriptor *isoc_rx_ep;
206
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100207 __u8 cmdreq_type;
208
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100209 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200210 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100211 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200212};
213
Oliver Neukum7bee5492009-08-24 23:44:59 +0200214static int inc_tx(struct btusb_data *data)
215{
216 unsigned long flags;
217 int rv;
218
219 spin_lock_irqsave(&data->txlock, flags);
220 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
221 if (!rv)
222 data->tx_in_flight++;
223 spin_unlock_irqrestore(&data->txlock, flags);
224
225 return rv;
226}
227
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200228static void btusb_intr_complete(struct urb *urb)
229{
230 struct hci_dev *hdev = urb->context;
231 struct btusb_data *data = hdev->driver_data;
232 int err;
233
234 BT_DBG("%s urb %p status %d count %d", hdev->name,
235 urb, urb->status, urb->actual_length);
236
237 if (!test_bit(HCI_RUNNING, &hdev->flags))
238 return;
239
240 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200241 hdev->stat.byte_rx += urb->actual_length;
242
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200243 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
244 urb->transfer_buffer,
245 urb->actual_length) < 0) {
246 BT_ERR("%s corrupted event packet", hdev->name);
247 hdev->stat.err_rx++;
248 }
249 }
250
251 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
252 return;
253
Oliver Neukum7bee5492009-08-24 23:44:59 +0200254 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200255 usb_anchor_urb(urb, &data->intr_anchor);
256
257 err = usb_submit_urb(urb, GFP_ATOMIC);
258 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200259 /* -EPERM: urb is being killed;
260 * -ENODEV: device got disconnected */
261 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100262 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200263 hdev->name, urb, -err);
264 usb_unanchor_urb(urb);
265 }
266}
267
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100268static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200269{
270 struct btusb_data *data = hdev->driver_data;
271 struct urb *urb;
272 unsigned char *buf;
273 unsigned int pipe;
274 int err, size;
275
276 BT_DBG("%s", hdev->name);
277
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200278 if (!data->intr_ep)
279 return -ENODEV;
280
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100281 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200282 if (!urb)
283 return -ENOMEM;
284
285 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
286
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100287 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200288 if (!buf) {
289 usb_free_urb(urb);
290 return -ENOMEM;
291 }
292
293 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
294
295 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
296 btusb_intr_complete, hdev,
297 data->intr_ep->bInterval);
298
299 urb->transfer_flags |= URB_FREE_BUFFER;
300
301 usb_anchor_urb(urb, &data->intr_anchor);
302
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100303 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200304 if (err < 0) {
305 BT_ERR("%s urb %p submission failed (%d)",
306 hdev->name, urb, -err);
307 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200308 }
309
310 usb_free_urb(urb);
311
312 return err;
313}
314
315static void btusb_bulk_complete(struct urb *urb)
316{
317 struct hci_dev *hdev = urb->context;
318 struct btusb_data *data = hdev->driver_data;
319 int err;
320
321 BT_DBG("%s urb %p status %d count %d", hdev->name,
322 urb, urb->status, urb->actual_length);
323
324 if (!test_bit(HCI_RUNNING, &hdev->flags))
325 return;
326
327 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200328 hdev->stat.byte_rx += urb->actual_length;
329
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200330 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
331 urb->transfer_buffer,
332 urb->actual_length) < 0) {
333 BT_ERR("%s corrupted ACL packet", hdev->name);
334 hdev->stat.err_rx++;
335 }
336 }
337
338 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
339 return;
340
341 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100342 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200343
344 err = usb_submit_urb(urb, GFP_ATOMIC);
345 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200346 /* -EPERM: urb is being killed;
347 * -ENODEV: device got disconnected */
348 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100349 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200350 hdev->name, urb, -err);
351 usb_unanchor_urb(urb);
352 }
353}
354
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100355static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200356{
357 struct btusb_data *data = hdev->driver_data;
358 struct urb *urb;
359 unsigned char *buf;
360 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530361 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200362
363 BT_DBG("%s", hdev->name);
364
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200365 if (!data->bulk_rx_ep)
366 return -ENODEV;
367
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100368 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200369 if (!urb)
370 return -ENOMEM;
371
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100372 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200373 if (!buf) {
374 usb_free_urb(urb);
375 return -ENOMEM;
376 }
377
378 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
379
380 usb_fill_bulk_urb(urb, data->udev, pipe,
381 buf, size, btusb_bulk_complete, hdev);
382
383 urb->transfer_flags |= URB_FREE_BUFFER;
384
Oliver Neukum7bee5492009-08-24 23:44:59 +0200385 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200386 usb_anchor_urb(urb, &data->bulk_anchor);
387
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100388 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200389 if (err < 0) {
390 BT_ERR("%s urb %p submission failed (%d)",
391 hdev->name, urb, -err);
392 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200393 }
394
395 usb_free_urb(urb);
396
397 return err;
398}
399
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200400static void btusb_isoc_complete(struct urb *urb)
401{
402 struct hci_dev *hdev = urb->context;
403 struct btusb_data *data = hdev->driver_data;
404 int i, err;
405
406 BT_DBG("%s urb %p status %d count %d", hdev->name,
407 urb, urb->status, urb->actual_length);
408
409 if (!test_bit(HCI_RUNNING, &hdev->flags))
410 return;
411
412 if (urb->status == 0) {
413 for (i = 0; i < urb->number_of_packets; i++) {
414 unsigned int offset = urb->iso_frame_desc[i].offset;
415 unsigned int length = urb->iso_frame_desc[i].actual_length;
416
417 if (urb->iso_frame_desc[i].status)
418 continue;
419
420 hdev->stat.byte_rx += length;
421
422 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
423 urb->transfer_buffer + offset,
424 length) < 0) {
425 BT_ERR("%s corrupted SCO packet", hdev->name);
426 hdev->stat.err_rx++;
427 }
428 }
429 }
430
431 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
432 return;
433
434 usb_anchor_urb(urb, &data->isoc_anchor);
435
436 err = usb_submit_urb(urb, GFP_ATOMIC);
437 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200438 /* -EPERM: urb is being killed;
439 * -ENODEV: device got disconnected */
440 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100441 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200442 hdev->name, urb, -err);
443 usb_unanchor_urb(urb);
444 }
445}
446
Jesper Juhl42b16b32011-01-17 00:09:38 +0100447static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200448{
449 int i, offset = 0;
450
451 BT_DBG("len %d mtu %d", len, mtu);
452
453 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
454 i++, offset += mtu, len -= mtu) {
455 urb->iso_frame_desc[i].offset = offset;
456 urb->iso_frame_desc[i].length = mtu;
457 }
458
459 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
460 urb->iso_frame_desc[i].offset = offset;
461 urb->iso_frame_desc[i].length = len;
462 i++;
463 }
464
465 urb->number_of_packets = i;
466}
467
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100468static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200469{
470 struct btusb_data *data = hdev->driver_data;
471 struct urb *urb;
472 unsigned char *buf;
473 unsigned int pipe;
474 int err, size;
475
476 BT_DBG("%s", hdev->name);
477
478 if (!data->isoc_rx_ep)
479 return -ENODEV;
480
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100481 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200482 if (!urb)
483 return -ENOMEM;
484
485 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
486 BTUSB_MAX_ISOC_FRAMES;
487
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100488 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200489 if (!buf) {
490 usb_free_urb(urb);
491 return -ENOMEM;
492 }
493
494 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
495
496 urb->dev = data->udev;
497 urb->pipe = pipe;
498 urb->context = hdev;
499 urb->complete = btusb_isoc_complete;
500 urb->interval = data->isoc_rx_ep->bInterval;
501
502 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
503 urb->transfer_buffer = buf;
504 urb->transfer_buffer_length = size;
505
506 __fill_isoc_descriptor(urb, size,
507 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
508
509 usb_anchor_urb(urb, &data->isoc_anchor);
510
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100511 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200512 if (err < 0) {
513 BT_ERR("%s urb %p submission failed (%d)",
514 hdev->name, urb, -err);
515 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200516 }
517
518 usb_free_urb(urb);
519
520 return err;
521}
522
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200523static void btusb_tx_complete(struct urb *urb)
524{
525 struct sk_buff *skb = urb->context;
526 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200527 struct btusb_data *data = hdev->driver_data;
528
529 BT_DBG("%s urb %p status %d count %d", hdev->name,
530 urb, urb->status, urb->actual_length);
531
532 if (!test_bit(HCI_RUNNING, &hdev->flags))
533 goto done;
534
535 if (!urb->status)
536 hdev->stat.byte_tx += urb->transfer_buffer_length;
537 else
538 hdev->stat.err_tx++;
539
540done:
541 spin_lock(&data->txlock);
542 data->tx_in_flight--;
543 spin_unlock(&data->txlock);
544
545 kfree(urb->setup_packet);
546
547 kfree_skb(skb);
548}
549
550static void btusb_isoc_tx_complete(struct urb *urb)
551{
552 struct sk_buff *skb = urb->context;
553 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200554
555 BT_DBG("%s urb %p status %d count %d", hdev->name,
556 urb, urb->status, urb->actual_length);
557
558 if (!test_bit(HCI_RUNNING, &hdev->flags))
559 goto done;
560
561 if (!urb->status)
562 hdev->stat.byte_tx += urb->transfer_buffer_length;
563 else
564 hdev->stat.err_tx++;
565
566done:
567 kfree(urb->setup_packet);
568
569 kfree_skb(skb);
570}
571
572static int btusb_open(struct hci_dev *hdev)
573{
574 struct btusb_data *data = hdev->driver_data;
575 int err;
576
577 BT_DBG("%s", hdev->name);
578
Oliver Neukum7bee5492009-08-24 23:44:59 +0200579 err = usb_autopm_get_interface(data->intf);
580 if (err < 0)
581 return err;
582
583 data->intf->needs_remote_wakeup = 1;
584
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200585 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200586 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200587
588 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200589 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200590
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100591 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100592 if (err < 0)
593 goto failed;
594
595 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200596 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100597 usb_kill_anchored_urbs(&data->intr_anchor);
598 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200599 }
600
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100601 set_bit(BTUSB_BULK_RUNNING, &data->flags);
602 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
603
Oliver Neukum7bee5492009-08-24 23:44:59 +0200604done:
605 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100606 return 0;
607
608failed:
609 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
610 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200611 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612 return err;
613}
614
Oliver Neukum7bee5492009-08-24 23:44:59 +0200615static void btusb_stop_traffic(struct btusb_data *data)
616{
617 usb_kill_anchored_urbs(&data->intr_anchor);
618 usb_kill_anchored_urbs(&data->bulk_anchor);
619 usb_kill_anchored_urbs(&data->isoc_anchor);
620}
621
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200622static int btusb_close(struct hci_dev *hdev)
623{
624 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200625 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200626
627 BT_DBG("%s", hdev->name);
628
629 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
630 return 0;
631
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200632 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800633 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200634
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200635 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200636 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200638
639 btusb_stop_traffic(data);
640 err = usb_autopm_get_interface(data->intf);
641 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100642 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200643
644 data->intf->needs_remote_wakeup = 0;
645 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200646
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100647failed:
648 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200649 return 0;
650}
651
652static int btusb_flush(struct hci_dev *hdev)
653{
654 struct btusb_data *data = hdev->driver_data;
655
656 BT_DBG("%s", hdev->name);
657
658 usb_kill_anchored_urbs(&data->tx_anchor);
659
660 return 0;
661}
662
663static int btusb_send_frame(struct sk_buff *skb)
664{
665 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
666 struct btusb_data *data = hdev->driver_data;
667 struct usb_ctrlrequest *dr;
668 struct urb *urb;
669 unsigned int pipe;
670 int err;
671
672 BT_DBG("%s", hdev->name);
673
674 if (!test_bit(HCI_RUNNING, &hdev->flags))
675 return -EBUSY;
676
677 switch (bt_cb(skb)->pkt_type) {
678 case HCI_COMMAND_PKT:
679 urb = usb_alloc_urb(0, GFP_ATOMIC);
680 if (!urb)
681 return -ENOMEM;
682
683 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
684 if (!dr) {
685 usb_free_urb(urb);
686 return -ENOMEM;
687 }
688
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100689 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200690 dr->bRequest = 0;
691 dr->wIndex = 0;
692 dr->wValue = 0;
693 dr->wLength = __cpu_to_le16(skb->len);
694
695 pipe = usb_sndctrlpipe(data->udev, 0x00);
696
697 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
698 skb->data, skb->len, btusb_tx_complete, skb);
699
700 hdev->stat.cmd_tx++;
701 break;
702
703 case HCI_ACLDATA_PKT:
Vinicius Costa Gomes8693ac92011-03-14 18:20:33 -0300704 if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 &&
705 hdev->conn_hash.le_num < 1))
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200706 return -ENODEV;
707
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200708 urb = usb_alloc_urb(0, GFP_ATOMIC);
709 if (!urb)
710 return -ENOMEM;
711
712 pipe = usb_sndbulkpipe(data->udev,
713 data->bulk_tx_ep->bEndpointAddress);
714
715 usb_fill_bulk_urb(urb, data->udev, pipe,
716 skb->data, skb->len, btusb_tx_complete, skb);
717
718 hdev->stat.acl_tx++;
719 break;
720
721 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200722 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
723 return -ENODEV;
724
725 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
726 if (!urb)
727 return -ENOMEM;
728
729 pipe = usb_sndisocpipe(data->udev,
730 data->isoc_tx_ep->bEndpointAddress);
731
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300732 usb_fill_int_urb(urb, data->udev, pipe,
733 skb->data, skb->len, btusb_isoc_tx_complete,
734 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200735
736 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200737
738 __fill_isoc_descriptor(urb, skb->len,
739 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
740
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200741 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200742 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200743
744 default:
745 return -EILSEQ;
746 }
747
Oliver Neukum7bee5492009-08-24 23:44:59 +0200748 err = inc_tx(data);
749 if (err) {
750 usb_anchor_urb(urb, &data->deferred);
751 schedule_work(&data->waker);
752 err = 0;
753 goto done;
754 }
755
756skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200757 usb_anchor_urb(urb, &data->tx_anchor);
758
759 err = usb_submit_urb(urb, GFP_ATOMIC);
760 if (err < 0) {
761 BT_ERR("%s urb %p submission failed", hdev->name, urb);
762 kfree(urb->setup_packet);
763 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200764 } else {
765 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200766 }
767
768 usb_free_urb(urb);
769
Oliver Neukum7bee5492009-08-24 23:44:59 +0200770done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200771 return err;
772}
773
774static void btusb_destruct(struct hci_dev *hdev)
775{
776 struct btusb_data *data = hdev->driver_data;
777
778 BT_DBG("%s", hdev->name);
779
780 kfree(data);
781}
782
783static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
784{
785 struct btusb_data *data = hdev->driver_data;
786
787 BT_DBG("%s evt %d", hdev->name, evt);
788
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100789 if (hdev->conn_hash.sco_num != data->sco_num) {
790 data->sco_num = hdev->conn_hash.sco_num;
791 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100792 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200793}
794
Jesper Juhl42b16b32011-01-17 00:09:38 +0100795static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200796{
797 struct btusb_data *data = hdev->driver_data;
798 struct usb_interface *intf = data->isoc;
799 struct usb_endpoint_descriptor *ep_desc;
800 int i, err;
801
802 if (!data->isoc)
803 return -ENODEV;
804
805 err = usb_set_interface(data->udev, 1, altsetting);
806 if (err < 0) {
807 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
808 return err;
809 }
810
811 data->isoc_altsetting = altsetting;
812
813 data->isoc_tx_ep = NULL;
814 data->isoc_rx_ep = NULL;
815
816 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
817 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
818
819 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
820 data->isoc_tx_ep = ep_desc;
821 continue;
822 }
823
824 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
825 data->isoc_rx_ep = ep_desc;
826 continue;
827 }
828 }
829
830 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
831 BT_ERR("%s invalid SCO descriptors", hdev->name);
832 return -ENODEV;
833 }
834
835 return 0;
836}
837
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200838static void btusb_work(struct work_struct *work)
839{
840 struct btusb_data *data = container_of(work, struct btusb_data, work);
841 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200842 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200843
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200844 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300845 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100846 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200847 if (err < 0) {
848 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
849 usb_kill_anchored_urbs(&data->isoc_anchor);
850 return;
851 }
852
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300853 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200854 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200855 if (data->isoc_altsetting != 2) {
856 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
857 usb_kill_anchored_urbs(&data->isoc_anchor);
858
859 if (__set_isoc_interface(hdev, 2) < 0)
860 return;
861 }
862
863 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100864 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200865 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
866 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100867 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200868 }
869 } else {
870 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
871 usb_kill_anchored_urbs(&data->isoc_anchor);
872
873 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300874 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100875 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200876 }
877}
878
Oliver Neukum7bee5492009-08-24 23:44:59 +0200879static void btusb_waker(struct work_struct *work)
880{
881 struct btusb_data *data = container_of(work, struct btusb_data, waker);
882 int err;
883
884 err = usb_autopm_get_interface(data->intf);
885 if (err < 0)
886 return;
887
888 usb_autopm_put_interface(data->intf);
889}
890
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200891static int btusb_probe(struct usb_interface *intf,
892 const struct usb_device_id *id)
893{
894 struct usb_endpoint_descriptor *ep_desc;
895 struct btusb_data *data;
896 struct hci_dev *hdev;
897 int i, err;
898
899 BT_DBG("intf %p id %p", intf, id);
900
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200901 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200902 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
903 return -ENODEV;
904
905 if (!id->driver_info) {
906 const struct usb_device_id *match;
907 match = usb_match_id(intf, blacklist_table);
908 if (match)
909 id = match;
910 }
911
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200912 if (id->driver_info == BTUSB_IGNORE)
913 return -ENODEV;
914
915 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
916 return -ENODEV;
917
918 if (ignore_csr && id->driver_info & BTUSB_CSR)
919 return -ENODEV;
920
921 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
922 return -ENODEV;
923
Steven.Li2d25f8b2011-07-01 14:02:36 +0800924 if (id->driver_info & BTUSB_ATH3012) {
925 struct usb_device *udev = interface_to_usbdev(intf);
926
927 /* Old firmware would otherwise let ath3k driver load
928 * patch and sysconfig files */
929 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
930 return -ENODEV;
931 }
932
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200933 data = kzalloc(sizeof(*data), GFP_KERNEL);
934 if (!data)
935 return -ENOMEM;
936
937 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
938 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
939
940 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
941 data->intr_ep = ep_desc;
942 continue;
943 }
944
945 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
946 data->bulk_tx_ep = ep_desc;
947 continue;
948 }
949
950 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
951 data->bulk_rx_ep = ep_desc;
952 continue;
953 }
954 }
955
956 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
957 kfree(data);
958 return -ENODEV;
959 }
960
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100961 data->cmdreq_type = USB_TYPE_CLASS;
962
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200963 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200964 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200965
966 spin_lock_init(&data->lock);
967
968 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200969 INIT_WORK(&data->waker, btusb_waker);
970 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200971
972 init_usb_anchor(&data->tx_anchor);
973 init_usb_anchor(&data->intr_anchor);
974 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200975 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200976 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200977
978 hdev = hci_alloc_dev();
979 if (!hdev) {
980 kfree(data);
981 return -ENOMEM;
982 }
983
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100984 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200985 hdev->driver_data = data;
986
987 data->hdev = hdev;
988
989 SET_HCIDEV_DEV(hdev, &intf->dev);
990
991 hdev->open = btusb_open;
992 hdev->close = btusb_close;
993 hdev->flush = btusb_flush;
994 hdev->send = btusb_send_frame;
995 hdev->destruct = btusb_destruct;
996 hdev->notify = btusb_notify;
997
998 hdev->owner = THIS_MODULE;
999
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001000 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001001 data->isoc = usb_ifnum_to_if(data->udev, 1);
1002
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001003 if (!reset)
1004 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001005
1006 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1007 if (!disable_scofix)
1008 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1009 }
1010
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001011 if (id->driver_info & BTUSB_BROKEN_ISOC)
1012 data->isoc = NULL;
1013
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001014 if (id->driver_info & BTUSB_DIGIANSWER) {
1015 data->cmdreq_type = USB_TYPE_VENDOR;
1016 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1017 }
1018
1019 if (id->driver_info & BTUSB_CSR) {
1020 struct usb_device *udev = data->udev;
1021
1022 /* Old firmware would otherwise execute USB reset */
1023 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1024 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1025 }
1026
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001027 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001028 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001029
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001030 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001031 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1032 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001033
1034 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001035 }
1036
1037 if (id->driver_info & BTUSB_BCM92035) {
1038 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1039 struct sk_buff *skb;
1040
1041 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1042 if (skb) {
1043 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1044 skb_queue_tail(&hdev->driver_init, skb);
1045 }
1046 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001047
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001048 if (data->isoc) {
1049 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001050 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001051 if (err < 0) {
1052 hci_free_dev(hdev);
1053 kfree(data);
1054 return err;
1055 }
1056 }
1057
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001058 err = hci_register_dev(hdev);
1059 if (err < 0) {
1060 hci_free_dev(hdev);
1061 kfree(data);
1062 return err;
1063 }
1064
1065 usb_set_intfdata(intf, data);
1066
1067 return 0;
1068}
1069
1070static void btusb_disconnect(struct usb_interface *intf)
1071{
1072 struct btusb_data *data = usb_get_intfdata(intf);
1073 struct hci_dev *hdev;
1074
1075 BT_DBG("intf %p", intf);
1076
1077 if (!data)
1078 return;
1079
1080 hdev = data->hdev;
1081
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001082 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001083
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001084 usb_set_intfdata(data->intf, NULL);
1085
1086 if (data->isoc)
1087 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001088
1089 hci_unregister_dev(hdev);
1090
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001091 if (intf == data->isoc)
1092 usb_driver_release_interface(&btusb_driver, data->intf);
1093 else if (data->isoc)
1094 usb_driver_release_interface(&btusb_driver, data->isoc);
1095
1096 __hci_dev_put(hdev);
1097
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001098 hci_free_dev(hdev);
1099}
1100
Oliver Neukum7bee5492009-08-24 23:44:59 +02001101#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001102static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1103{
1104 struct btusb_data *data = usb_get_intfdata(intf);
1105
1106 BT_DBG("intf %p", intf);
1107
1108 if (data->suspend_count++)
1109 return 0;
1110
Oliver Neukum7bee5492009-08-24 23:44:59 +02001111 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001112 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001113 set_bit(BTUSB_SUSPENDING, &data->flags);
1114 spin_unlock_irq(&data->txlock);
1115 } else {
1116 spin_unlock_irq(&data->txlock);
1117 data->suspend_count--;
1118 return -EBUSY;
1119 }
1120
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001121 cancel_work_sync(&data->work);
1122
Oliver Neukum7bee5492009-08-24 23:44:59 +02001123 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001124 usb_kill_anchored_urbs(&data->tx_anchor);
1125
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001126 return 0;
1127}
1128
Oliver Neukum7bee5492009-08-24 23:44:59 +02001129static void play_deferred(struct btusb_data *data)
1130{
1131 struct urb *urb;
1132 int err;
1133
1134 while ((urb = usb_get_from_anchor(&data->deferred))) {
1135 err = usb_submit_urb(urb, GFP_ATOMIC);
1136 if (err < 0)
1137 break;
1138
1139 data->tx_in_flight++;
1140 }
1141 usb_scuttle_anchored_urbs(&data->deferred);
1142}
1143
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001144static int btusb_resume(struct usb_interface *intf)
1145{
1146 struct btusb_data *data = usb_get_intfdata(intf);
1147 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001148 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001149
1150 BT_DBG("intf %p", intf);
1151
1152 if (--data->suspend_count)
1153 return 0;
1154
1155 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001156 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001157
1158 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1159 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1160 if (err < 0) {
1161 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001162 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001163 }
1164 }
1165
1166 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001167 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1168 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001169 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001170 goto failed;
1171 }
1172
1173 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001174 }
1175
1176 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1177 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1178 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1179 else
1180 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1181 }
1182
Oliver Neukum7bee5492009-08-24 23:44:59 +02001183 spin_lock_irq(&data->txlock);
1184 play_deferred(data);
1185 clear_bit(BTUSB_SUSPENDING, &data->flags);
1186 spin_unlock_irq(&data->txlock);
1187 schedule_work(&data->work);
1188
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001189 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001190
1191failed:
1192 usb_scuttle_anchored_urbs(&data->deferred);
1193done:
1194 spin_lock_irq(&data->txlock);
1195 clear_bit(BTUSB_SUSPENDING, &data->flags);
1196 spin_unlock_irq(&data->txlock);
1197
1198 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001199}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001200#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001201
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001202static struct usb_driver btusb_driver = {
1203 .name = "btusb",
1204 .probe = btusb_probe,
1205 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001206#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001207 .suspend = btusb_suspend,
1208 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001209#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001210 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001211 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001212};
1213
1214static int __init btusb_init(void)
1215{
1216 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1217
1218 return usb_register(&btusb_driver);
1219}
1220
1221static void __exit btusb_exit(void)
1222{
1223 usb_deregister(&btusb_driver);
1224}
1225
1226module_init(btusb_init);
1227module_exit(btusb_exit);
1228
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");