blob: 97f155e6c4411f0239d98593a6bccfa3a7e0e41f [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.Li4770ac22011-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
Pieter-Augustijn Van Malleghemefb14972011-09-07 02:28:10 -040075 /* Apple MacBookAir4,1 */
76 { USB_DEVICE(0x05ac, 0x821f) },
77
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030078 /* Apple MacBookPro8,2 */
79 { USB_DEVICE(0x05ac, 0x821a) },
80
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020081 /* AVM BlueFRITZ! USB v2.0 */
82 { USB_DEVICE(0x057c, 0x3800) },
83
84 /* Bluetooth Ultraport Module from IBM */
85 { USB_DEVICE(0x04bf, 0x030a) },
86
87 /* ALPS Modules with non-standard id */
88 { USB_DEVICE(0x044e, 0x3001) },
89 { USB_DEVICE(0x044e, 0x3002) },
90
91 /* Ericsson with non-standard id */
92 { USB_DEVICE(0x0bdb, 0x1002) },
93
94 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010095 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020096
Marcel Holtmann5e23b922007-10-20 14:12:34 +020097 { } /* Terminating entry */
98};
99
100MODULE_DEVICE_TABLE(usb, btusb_table);
101
102static struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200103 /* CSR BlueCore devices */
104 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
105
106 /* Broadcom BCM2033 without firmware */
107 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
108
Bala Shanmugambe931122010-11-26 17:35:46 +0530109 /* Atheros 3011 with sflash firmware */
110 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700111 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Ricardo Mendoza39361fc2011-07-13 16:04:29 +0100112 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530113
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800114 /* Atheros AR9285 Malbec with sflash firmware */
115 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
116
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530117 /* Atheros 3012 with sflash firmware */
Steven.Li4770ac22011-07-01 14:02:36 +0800118 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530119
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800120 /* Atheros AR5BBU12 with sflash firmware */
121 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
122
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200123 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100124 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
125 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
126 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200127
128 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100129 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
130 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200131
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200132 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100133 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
134 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200135
136 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100137 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200138
139 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100140 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200141
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100142 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100143 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100144 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200145
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100146 /* Belkin F8T012 and F8T013 devices */
147 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
148 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200149
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100150 /* Asus WL-BTD202 device */
151 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
152
153 /* Kensington Bluetooth USB adapter */
154 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
155
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200156 /* RTX Telecom based adapters with buggy SCO support */
157 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
158 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
159
160 /* CONWISE Technology based adapters with buggy SCO support */
161 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
162
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200163 /* Digianswer devices */
164 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
165 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
166
167 /* CSR BlueCore Bluetooth Sniffer */
168 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
169
170 /* Frontline ComProbe Bluetooth Sniffer */
171 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
172
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200173 { } /* Terminating entry */
174};
175
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200176#define BTUSB_MAX_ISOC_FRAMES 10
177
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200178#define BTUSB_INTR_RUNNING 0
179#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200180#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200181#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300182#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200183
184struct btusb_data {
185 struct hci_dev *hdev;
186 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200187 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200188 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200189
190 spinlock_t lock;
191
192 unsigned long flags;
193
194 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200195 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200196
197 struct usb_anchor tx_anchor;
198 struct usb_anchor intr_anchor;
199 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200200 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200201 struct usb_anchor deferred;
202 int tx_in_flight;
203 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200204
205 struct usb_endpoint_descriptor *intr_ep;
206 struct usb_endpoint_descriptor *bulk_tx_ep;
207 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200208 struct usb_endpoint_descriptor *isoc_tx_ep;
209 struct usb_endpoint_descriptor *isoc_rx_ep;
210
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100211 __u8 cmdreq_type;
212
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100213 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200214 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100215 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200216};
217
Oliver Neukum7bee5492009-08-24 23:44:59 +0200218static int inc_tx(struct btusb_data *data)
219{
220 unsigned long flags;
221 int rv;
222
223 spin_lock_irqsave(&data->txlock, flags);
224 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
225 if (!rv)
226 data->tx_in_flight++;
227 spin_unlock_irqrestore(&data->txlock, flags);
228
229 return rv;
230}
231
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200232static void btusb_intr_complete(struct urb *urb)
233{
234 struct hci_dev *hdev = urb->context;
235 struct btusb_data *data = hdev->driver_data;
236 int err;
237
238 BT_DBG("%s urb %p status %d count %d", hdev->name,
239 urb, urb->status, urb->actual_length);
240
241 if (!test_bit(HCI_RUNNING, &hdev->flags))
242 return;
243
244 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200245 hdev->stat.byte_rx += urb->actual_length;
246
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200247 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
248 urb->transfer_buffer,
249 urb->actual_length) < 0) {
250 BT_ERR("%s corrupted event packet", hdev->name);
251 hdev->stat.err_rx++;
252 }
253 }
254
255 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
256 return;
257
Oliver Neukum7bee5492009-08-24 23:44:59 +0200258 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200259 usb_anchor_urb(urb, &data->intr_anchor);
260
261 err = usb_submit_urb(urb, GFP_ATOMIC);
262 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100263 if (err != -EPERM)
264 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200265 hdev->name, urb, -err);
266 usb_unanchor_urb(urb);
267 }
268}
269
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100270static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200271{
272 struct btusb_data *data = hdev->driver_data;
273 struct urb *urb;
274 unsigned char *buf;
275 unsigned int pipe;
276 int err, size;
277
278 BT_DBG("%s", hdev->name);
279
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200280 if (!data->intr_ep)
281 return -ENODEV;
282
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100283 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200284 if (!urb)
285 return -ENOMEM;
286
287 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
288
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100289 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200290 if (!buf) {
291 usb_free_urb(urb);
292 return -ENOMEM;
293 }
294
295 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
296
297 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
298 btusb_intr_complete, hdev,
299 data->intr_ep->bInterval);
300
301 urb->transfer_flags |= URB_FREE_BUFFER;
302
303 usb_anchor_urb(urb, &data->intr_anchor);
304
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100305 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200306 if (err < 0) {
307 BT_ERR("%s urb %p submission failed (%d)",
308 hdev->name, urb, -err);
309 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200310 }
311
312 usb_free_urb(urb);
313
314 return err;
315}
316
317static void btusb_bulk_complete(struct urb *urb)
318{
319 struct hci_dev *hdev = urb->context;
320 struct btusb_data *data = hdev->driver_data;
321 int err;
322
323 BT_DBG("%s urb %p status %d count %d", hdev->name,
324 urb, urb->status, urb->actual_length);
325
326 if (!test_bit(HCI_RUNNING, &hdev->flags))
327 return;
328
329 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200330 hdev->stat.byte_rx += urb->actual_length;
331
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200332 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
333 urb->transfer_buffer,
334 urb->actual_length) < 0) {
335 BT_ERR("%s corrupted ACL packet", hdev->name);
336 hdev->stat.err_rx++;
337 }
338 }
339
340 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
341 return;
342
343 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100344 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200345
346 err = usb_submit_urb(urb, GFP_ATOMIC);
347 if (err < 0) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100348 if (err != -EPERM)
349 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) {
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100438 if (err != -EPERM)
439 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200440 hdev->name, urb, -err);
441 usb_unanchor_urb(urb);
442 }
443}
444
Jesper Juhl42b16b32011-01-17 00:09:38 +0100445static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200446{
447 int i, offset = 0;
448
449 BT_DBG("len %d mtu %d", len, mtu);
450
451 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
452 i++, offset += mtu, len -= mtu) {
453 urb->iso_frame_desc[i].offset = offset;
454 urb->iso_frame_desc[i].length = mtu;
455 }
456
457 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
458 urb->iso_frame_desc[i].offset = offset;
459 urb->iso_frame_desc[i].length = len;
460 i++;
461 }
462
463 urb->number_of_packets = i;
464}
465
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100466static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200467{
468 struct btusb_data *data = hdev->driver_data;
469 struct urb *urb;
470 unsigned char *buf;
471 unsigned int pipe;
472 int err, size;
473
474 BT_DBG("%s", hdev->name);
475
476 if (!data->isoc_rx_ep)
477 return -ENODEV;
478
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100479 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200480 if (!urb)
481 return -ENOMEM;
482
483 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
484 BTUSB_MAX_ISOC_FRAMES;
485
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100486 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200487 if (!buf) {
488 usb_free_urb(urb);
489 return -ENOMEM;
490 }
491
492 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
493
494 urb->dev = data->udev;
495 urb->pipe = pipe;
496 urb->context = hdev;
497 urb->complete = btusb_isoc_complete;
498 urb->interval = data->isoc_rx_ep->bInterval;
499
500 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
501 urb->transfer_buffer = buf;
502 urb->transfer_buffer_length = size;
503
504 __fill_isoc_descriptor(urb, size,
505 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
506
507 usb_anchor_urb(urb, &data->isoc_anchor);
508
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100509 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200510 if (err < 0) {
511 BT_ERR("%s urb %p submission failed (%d)",
512 hdev->name, urb, -err);
513 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200514 }
515
516 usb_free_urb(urb);
517
518 return err;
519}
520
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200521static void btusb_tx_complete(struct urb *urb)
522{
523 struct sk_buff *skb = urb->context;
524 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200525 struct btusb_data *data = hdev->driver_data;
526
527 BT_DBG("%s urb %p status %d count %d", hdev->name,
528 urb, urb->status, urb->actual_length);
529
530 if (!test_bit(HCI_RUNNING, &hdev->flags))
531 goto done;
532
533 if (!urb->status)
534 hdev->stat.byte_tx += urb->transfer_buffer_length;
535 else
536 hdev->stat.err_tx++;
537
538done:
539 spin_lock(&data->txlock);
540 data->tx_in_flight--;
541 spin_unlock(&data->txlock);
542
543 kfree(urb->setup_packet);
544
545 kfree_skb(skb);
546}
547
548static void btusb_isoc_tx_complete(struct urb *urb)
549{
550 struct sk_buff *skb = urb->context;
551 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200552
553 BT_DBG("%s urb %p status %d count %d", hdev->name,
554 urb, urb->status, urb->actual_length);
555
556 if (!test_bit(HCI_RUNNING, &hdev->flags))
557 goto done;
558
559 if (!urb->status)
560 hdev->stat.byte_tx += urb->transfer_buffer_length;
561 else
562 hdev->stat.err_tx++;
563
564done:
565 kfree(urb->setup_packet);
566
567 kfree_skb(skb);
568}
569
570static int btusb_open(struct hci_dev *hdev)
571{
572 struct btusb_data *data = hdev->driver_data;
573 int err;
574
575 BT_DBG("%s", hdev->name);
576
Oliver Neukum7bee5492009-08-24 23:44:59 +0200577 err = usb_autopm_get_interface(data->intf);
578 if (err < 0)
579 return err;
580
581 data->intf->needs_remote_wakeup = 1;
582
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200583 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200584 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200585
586 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200587 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200588
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100589 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100590 if (err < 0)
591 goto failed;
592
593 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200594 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100595 usb_kill_anchored_urbs(&data->intr_anchor);
596 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200597 }
598
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100599 set_bit(BTUSB_BULK_RUNNING, &data->flags);
600 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
601
Oliver Neukum7bee5492009-08-24 23:44:59 +0200602done:
603 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100604 return 0;
605
606failed:
607 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
608 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200609 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610 return err;
611}
612
Oliver Neukum7bee5492009-08-24 23:44:59 +0200613static void btusb_stop_traffic(struct btusb_data *data)
614{
615 usb_kill_anchored_urbs(&data->intr_anchor);
616 usb_kill_anchored_urbs(&data->bulk_anchor);
617 usb_kill_anchored_urbs(&data->isoc_anchor);
618}
619
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200620static int btusb_close(struct hci_dev *hdev)
621{
622 struct btusb_data *data = hdev->driver_data;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200623 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200624
625 BT_DBG("%s", hdev->name);
626
627 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
628 return 0;
629
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200630 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800631 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200632
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200633 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200634 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200635 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200636
637 btusb_stop_traffic(data);
638 err = usb_autopm_get_interface(data->intf);
639 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100640 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200641
642 data->intf->needs_remote_wakeup = 0;
643 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100645failed:
646 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647 return 0;
648}
649
650static int btusb_flush(struct hci_dev *hdev)
651{
652 struct btusb_data *data = hdev->driver_data;
653
654 BT_DBG("%s", hdev->name);
655
656 usb_kill_anchored_urbs(&data->tx_anchor);
657
658 return 0;
659}
660
661static int btusb_send_frame(struct sk_buff *skb)
662{
663 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
664 struct btusb_data *data = hdev->driver_data;
665 struct usb_ctrlrequest *dr;
666 struct urb *urb;
667 unsigned int pipe;
668 int err;
669
670 BT_DBG("%s", hdev->name);
671
672 if (!test_bit(HCI_RUNNING, &hdev->flags))
673 return -EBUSY;
674
675 switch (bt_cb(skb)->pkt_type) {
676 case HCI_COMMAND_PKT:
677 urb = usb_alloc_urb(0, GFP_ATOMIC);
678 if (!urb)
679 return -ENOMEM;
680
681 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
682 if (!dr) {
683 usb_free_urb(urb);
684 return -ENOMEM;
685 }
686
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100687 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200688 dr->bRequest = 0;
689 dr->wIndex = 0;
690 dr->wValue = 0;
691 dr->wLength = __cpu_to_le16(skb->len);
692
693 pipe = usb_sndctrlpipe(data->udev, 0x00);
694
695 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
696 skb->data, skb->len, btusb_tx_complete, skb);
697
698 hdev->stat.cmd_tx++;
699 break;
700
701 case HCI_ACLDATA_PKT:
Vinicius Costa Gomes8693ac92011-03-14 18:20:33 -0300702 if (!data->bulk_tx_ep || (hdev->conn_hash.acl_num < 1 &&
703 hdev->conn_hash.le_num < 1))
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200704 return -ENODEV;
705
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200706 urb = usb_alloc_urb(0, GFP_ATOMIC);
707 if (!urb)
708 return -ENOMEM;
709
710 pipe = usb_sndbulkpipe(data->udev,
711 data->bulk_tx_ep->bEndpointAddress);
712
713 usb_fill_bulk_urb(urb, data->udev, pipe,
714 skb->data, skb->len, btusb_tx_complete, skb);
715
716 hdev->stat.acl_tx++;
717 break;
718
719 case HCI_SCODATA_PKT:
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200720 if (!data->isoc_tx_ep || hdev->conn_hash.sco_num < 1)
721 return -ENODEV;
722
723 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
724 if (!urb)
725 return -ENOMEM;
726
727 pipe = usb_sndisocpipe(data->udev,
728 data->isoc_tx_ep->bEndpointAddress);
729
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300730 usb_fill_int_urb(urb, data->udev, pipe,
731 skb->data, skb->len, btusb_isoc_tx_complete,
732 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200733
734 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200735
736 __fill_isoc_descriptor(urb, skb->len,
737 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
738
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200739 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200740 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200741
742 default:
743 return -EILSEQ;
744 }
745
Oliver Neukum7bee5492009-08-24 23:44:59 +0200746 err = inc_tx(data);
747 if (err) {
748 usb_anchor_urb(urb, &data->deferred);
749 schedule_work(&data->waker);
750 err = 0;
751 goto done;
752 }
753
754skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200755 usb_anchor_urb(urb, &data->tx_anchor);
756
757 err = usb_submit_urb(urb, GFP_ATOMIC);
758 if (err < 0) {
759 BT_ERR("%s urb %p submission failed", hdev->name, urb);
760 kfree(urb->setup_packet);
761 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200762 } else {
763 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200764 }
765
766 usb_free_urb(urb);
767
Oliver Neukum7bee5492009-08-24 23:44:59 +0200768done:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200769 return err;
770}
771
772static void btusb_destruct(struct hci_dev *hdev)
773{
774 struct btusb_data *data = hdev->driver_data;
775
776 BT_DBG("%s", hdev->name);
777
778 kfree(data);
779}
780
781static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
782{
783 struct btusb_data *data = hdev->driver_data;
784
785 BT_DBG("%s evt %d", hdev->name, evt);
786
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100787 if (hdev->conn_hash.sco_num != data->sco_num) {
788 data->sco_num = hdev->conn_hash.sco_num;
789 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100790 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200791}
792
Jesper Juhl42b16b32011-01-17 00:09:38 +0100793static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200794{
795 struct btusb_data *data = hdev->driver_data;
796 struct usb_interface *intf = data->isoc;
797 struct usb_endpoint_descriptor *ep_desc;
798 int i, err;
799
800 if (!data->isoc)
801 return -ENODEV;
802
803 err = usb_set_interface(data->udev, 1, altsetting);
804 if (err < 0) {
805 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
806 return err;
807 }
808
809 data->isoc_altsetting = altsetting;
810
811 data->isoc_tx_ep = NULL;
812 data->isoc_rx_ep = NULL;
813
814 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
815 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
816
817 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
818 data->isoc_tx_ep = ep_desc;
819 continue;
820 }
821
822 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
823 data->isoc_rx_ep = ep_desc;
824 continue;
825 }
826 }
827
828 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
829 BT_ERR("%s invalid SCO descriptors", hdev->name);
830 return -ENODEV;
831 }
832
833 return 0;
834}
835
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200836static void btusb_work(struct work_struct *work)
837{
838 struct btusb_data *data = container_of(work, struct btusb_data, work);
839 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200840 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200841
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200842 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300843 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100844 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200845 if (err < 0) {
846 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
847 usb_kill_anchored_urbs(&data->isoc_anchor);
848 return;
849 }
850
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300851 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200852 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200853 if (data->isoc_altsetting != 2) {
854 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
855 usb_kill_anchored_urbs(&data->isoc_anchor);
856
857 if (__set_isoc_interface(hdev, 2) < 0)
858 return;
859 }
860
861 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100862 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200863 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
864 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100865 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200866 }
867 } else {
868 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
869 usb_kill_anchored_urbs(&data->isoc_anchor);
870
871 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300872 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100873 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200874 }
875}
876
Oliver Neukum7bee5492009-08-24 23:44:59 +0200877static void btusb_waker(struct work_struct *work)
878{
879 struct btusb_data *data = container_of(work, struct btusb_data, waker);
880 int err;
881
882 err = usb_autopm_get_interface(data->intf);
883 if (err < 0)
884 return;
885
886 usb_autopm_put_interface(data->intf);
887}
888
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200889static int btusb_probe(struct usb_interface *intf,
890 const struct usb_device_id *id)
891{
892 struct usb_endpoint_descriptor *ep_desc;
893 struct btusb_data *data;
894 struct hci_dev *hdev;
895 int i, err;
896
897 BT_DBG("intf %p id %p", intf, id);
898
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200899 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200900 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
901 return -ENODEV;
902
903 if (!id->driver_info) {
904 const struct usb_device_id *match;
905 match = usb_match_id(intf, blacklist_table);
906 if (match)
907 id = match;
908 }
909
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200910 if (id->driver_info == BTUSB_IGNORE)
911 return -ENODEV;
912
913 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
914 return -ENODEV;
915
916 if (ignore_csr && id->driver_info & BTUSB_CSR)
917 return -ENODEV;
918
919 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
920 return -ENODEV;
921
Steven.Li4770ac22011-07-01 14:02:36 +0800922 if (id->driver_info & BTUSB_ATH3012) {
923 struct usb_device *udev = interface_to_usbdev(intf);
924
925 /* Old firmware would otherwise let ath3k driver load
926 * patch and sysconfig files */
927 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
928 return -ENODEV;
929 }
930
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200931 data = kzalloc(sizeof(*data), GFP_KERNEL);
932 if (!data)
933 return -ENOMEM;
934
935 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
936 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
937
938 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
939 data->intr_ep = ep_desc;
940 continue;
941 }
942
943 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
944 data->bulk_tx_ep = ep_desc;
945 continue;
946 }
947
948 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
949 data->bulk_rx_ep = ep_desc;
950 continue;
951 }
952 }
953
954 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
955 kfree(data);
956 return -ENODEV;
957 }
958
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100959 data->cmdreq_type = USB_TYPE_CLASS;
960
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200961 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200962 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200963
964 spin_lock_init(&data->lock);
965
966 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200967 INIT_WORK(&data->waker, btusb_waker);
968 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200969
970 init_usb_anchor(&data->tx_anchor);
971 init_usb_anchor(&data->intr_anchor);
972 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200973 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200974 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200975
976 hdev = hci_alloc_dev();
977 if (!hdev) {
978 kfree(data);
979 return -ENOMEM;
980 }
981
Marcel Holtmannc13854ce2010-02-08 15:27:07 +0100982 hdev->bus = HCI_USB;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200983 hdev->driver_data = data;
984
985 data->hdev = hdev;
986
987 SET_HCIDEV_DEV(hdev, &intf->dev);
988
989 hdev->open = btusb_open;
990 hdev->close = btusb_close;
991 hdev->flush = btusb_flush;
992 hdev->send = btusb_send_frame;
993 hdev->destruct = btusb_destruct;
994 hdev->notify = btusb_notify;
995
996 hdev->owner = THIS_MODULE;
997
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100998 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200999 data->isoc = usb_ifnum_to_if(data->udev, 1);
1000
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001001 if (!reset)
1002 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001003
1004 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1005 if (!disable_scofix)
1006 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1007 }
1008
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001009 if (id->driver_info & BTUSB_BROKEN_ISOC)
1010 data->isoc = NULL;
1011
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001012 if (id->driver_info & BTUSB_DIGIANSWER) {
1013 data->cmdreq_type = USB_TYPE_VENDOR;
1014 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1015 }
1016
1017 if (id->driver_info & BTUSB_CSR) {
1018 struct usb_device *udev = data->udev;
1019
1020 /* Old firmware would otherwise execute USB reset */
1021 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1022 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1023 }
1024
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001025 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001026 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001027
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001028 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001029 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1030 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001031
1032 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001033 }
1034
1035 if (id->driver_info & BTUSB_BCM92035) {
1036 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1037 struct sk_buff *skb;
1038
1039 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1040 if (skb) {
1041 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1042 skb_queue_tail(&hdev->driver_init, skb);
1043 }
1044 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001045
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001046 if (data->isoc) {
1047 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001048 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001049 if (err < 0) {
1050 hci_free_dev(hdev);
1051 kfree(data);
1052 return err;
1053 }
1054 }
1055
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001056 err = hci_register_dev(hdev);
1057 if (err < 0) {
1058 hci_free_dev(hdev);
1059 kfree(data);
1060 return err;
1061 }
1062
1063 usb_set_intfdata(intf, data);
1064
1065 return 0;
1066}
1067
1068static void btusb_disconnect(struct usb_interface *intf)
1069{
1070 struct btusb_data *data = usb_get_intfdata(intf);
1071 struct hci_dev *hdev;
1072
1073 BT_DBG("intf %p", intf);
1074
1075 if (!data)
1076 return;
1077
1078 hdev = data->hdev;
1079
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001080 __hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001081
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001082 usb_set_intfdata(data->intf, NULL);
1083
1084 if (data->isoc)
1085 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001086
1087 hci_unregister_dev(hdev);
1088
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001089 if (intf == data->isoc)
1090 usb_driver_release_interface(&btusb_driver, data->intf);
1091 else if (data->isoc)
1092 usb_driver_release_interface(&btusb_driver, data->isoc);
1093
1094 __hci_dev_put(hdev);
1095
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001096 hci_free_dev(hdev);
1097}
1098
Oliver Neukum7bee5492009-08-24 23:44:59 +02001099#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001100static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1101{
1102 struct btusb_data *data = usb_get_intfdata(intf);
1103
1104 BT_DBG("intf %p", intf);
1105
1106 if (data->suspend_count++)
1107 return 0;
1108
Oliver Neukum7bee5492009-08-24 23:44:59 +02001109 spin_lock_irq(&data->txlock);
Alan Sternfb34d532009-11-13 11:53:59 -05001110 if (!((message.event & PM_EVENT_AUTO) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001111 set_bit(BTUSB_SUSPENDING, &data->flags);
1112 spin_unlock_irq(&data->txlock);
1113 } else {
1114 spin_unlock_irq(&data->txlock);
1115 data->suspend_count--;
1116 return -EBUSY;
1117 }
1118
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001119 cancel_work_sync(&data->work);
1120
Oliver Neukum7bee5492009-08-24 23:44:59 +02001121 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001122 usb_kill_anchored_urbs(&data->tx_anchor);
1123
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001124 return 0;
1125}
1126
Oliver Neukum7bee5492009-08-24 23:44:59 +02001127static void play_deferred(struct btusb_data *data)
1128{
1129 struct urb *urb;
1130 int err;
1131
1132 while ((urb = usb_get_from_anchor(&data->deferred))) {
1133 err = usb_submit_urb(urb, GFP_ATOMIC);
1134 if (err < 0)
1135 break;
1136
1137 data->tx_in_flight++;
1138 }
1139 usb_scuttle_anchored_urbs(&data->deferred);
1140}
1141
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001142static int btusb_resume(struct usb_interface *intf)
1143{
1144 struct btusb_data *data = usb_get_intfdata(intf);
1145 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001146 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001147
1148 BT_DBG("intf %p", intf);
1149
1150 if (--data->suspend_count)
1151 return 0;
1152
1153 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001154 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001155
1156 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1157 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1158 if (err < 0) {
1159 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001160 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001161 }
1162 }
1163
1164 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001165 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1166 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001167 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001168 goto failed;
1169 }
1170
1171 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001172 }
1173
1174 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1175 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1176 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1177 else
1178 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1179 }
1180
Oliver Neukum7bee5492009-08-24 23:44:59 +02001181 spin_lock_irq(&data->txlock);
1182 play_deferred(data);
1183 clear_bit(BTUSB_SUSPENDING, &data->flags);
1184 spin_unlock_irq(&data->txlock);
1185 schedule_work(&data->work);
1186
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001187 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001188
1189failed:
1190 usb_scuttle_anchored_urbs(&data->deferred);
1191done:
1192 spin_lock_irq(&data->txlock);
1193 clear_bit(BTUSB_SUSPENDING, &data->flags);
1194 spin_unlock_irq(&data->txlock);
1195
1196 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001197}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001198#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001199
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001200static struct usb_driver btusb_driver = {
1201 .name = "btusb",
1202 .probe = btusb_probe,
1203 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001204#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001205 .suspend = btusb_suspend,
1206 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001207#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001208 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001209 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001210};
1211
1212static int __init btusb_init(void)
1213{
1214 BT_INFO("Generic Bluetooth USB driver ver %s", VERSION);
1215
1216 return usb_register(&btusb_driver);
1217}
1218
1219static void __exit btusb_exit(void)
1220{
1221 usb_deregister(&btusb_driver);
1222}
1223
1224module_init(btusb_init);
1225module_exit(btusb_exit);
1226
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001227module_param(ignore_dga, bool, 0644);
1228MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1229
1230module_param(ignore_csr, bool, 0644);
1231MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1232
1233module_param(ignore_sniffer, bool, 0644);
1234MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1235
1236module_param(disable_scofix, bool, 0644);
1237MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1238
1239module_param(force_scofix, bool, 0644);
1240MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1241
1242module_param(reset, bool, 0644);
1243MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1244
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001245MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1246MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1247MODULE_VERSION(VERSION);
1248MODULE_LICENSE("GPL");