blob: f4fb256d6ca691618434b945c28d0ecdce6c14b9 [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
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 Iyer37305cf2012-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;
David Herrmann155961e2012-02-09 21:58:32 +0100246 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200247 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{
David Herrmann155961e2012-02-09 21:58:32 +0100285 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200286 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;
David Herrmann155961e2012-02-09 21:58:32 +0100334 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200335 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{
David Herrmann155961e2012-02-09 21:58:32 +0100373 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200374 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;
David Herrmann155961e2012-02-09 21:58:32 +0100420 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200421 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{
David Herrmann155961e2012-02-09 21:58:32 +0100487 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200488 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;
David Herrmann155961e2012-02-09 21:58:32 +0100540 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200541
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{
David Herrmann155961e2012-02-09 21:58:32 +0100587 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200588 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{
David Herrmann155961e2012-02-09 21:58:32 +0100637 struct btusb_data *data = hci_get_drvdata(hdev);
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{
David Herrmann155961e2012-02-09 21:58:32 +0100667 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200668
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;
David Herrmann155961e2012-02-09 21:58:32 +0100679 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200680 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
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200787static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
788{
David Herrmann155961e2012-02-09 21:58:32 +0100789 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200790
791 BT_DBG("%s evt %d", hdev->name, evt);
792
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100793 if (hdev->conn_hash.sco_num != data->sco_num) {
794 data->sco_num = hdev->conn_hash.sco_num;
795 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100796 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200797}
798
Jesper Juhl42b16b32011-01-17 00:09:38 +0100799static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200800{
David Herrmann155961e2012-02-09 21:58:32 +0100801 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200802 struct usb_interface *intf = data->isoc;
803 struct usb_endpoint_descriptor *ep_desc;
804 int i, err;
805
806 if (!data->isoc)
807 return -ENODEV;
808
809 err = usb_set_interface(data->udev, 1, altsetting);
810 if (err < 0) {
811 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
812 return err;
813 }
814
815 data->isoc_altsetting = altsetting;
816
817 data->isoc_tx_ep = NULL;
818 data->isoc_rx_ep = NULL;
819
820 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
821 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
822
823 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
824 data->isoc_tx_ep = ep_desc;
825 continue;
826 }
827
828 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
829 data->isoc_rx_ep = ep_desc;
830 continue;
831 }
832 }
833
834 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
835 BT_ERR("%s invalid SCO descriptors", hdev->name);
836 return -ENODEV;
837 }
838
839 return 0;
840}
841
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200842static void btusb_work(struct work_struct *work)
843{
844 struct btusb_data *data = container_of(work, struct btusb_data, work);
845 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200846 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200847
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200848 if (hdev->conn_hash.sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300849 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100850 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200851 if (err < 0) {
852 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
853 usb_kill_anchored_urbs(&data->isoc_anchor);
854 return;
855 }
856
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300857 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200858 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200859 if (data->isoc_altsetting != 2) {
860 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
861 usb_kill_anchored_urbs(&data->isoc_anchor);
862
863 if (__set_isoc_interface(hdev, 2) < 0)
864 return;
865 }
866
867 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100868 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200869 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
870 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100871 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200872 }
873 } else {
874 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
875 usb_kill_anchored_urbs(&data->isoc_anchor);
876
877 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300878 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100879 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200880 }
881}
882
Oliver Neukum7bee5492009-08-24 23:44:59 +0200883static void btusb_waker(struct work_struct *work)
884{
885 struct btusb_data *data = container_of(work, struct btusb_data, waker);
886 int err;
887
888 err = usb_autopm_get_interface(data->intf);
889 if (err < 0)
890 return;
891
892 usb_autopm_put_interface(data->intf);
893}
894
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200895static int btusb_probe(struct usb_interface *intf,
896 const struct usb_device_id *id)
897{
898 struct usb_endpoint_descriptor *ep_desc;
899 struct btusb_data *data;
900 struct hci_dev *hdev;
901 int i, err;
902
903 BT_DBG("intf %p id %p", intf, id);
904
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200905 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200906 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
907 return -ENODEV;
908
909 if (!id->driver_info) {
910 const struct usb_device_id *match;
911 match = usb_match_id(intf, blacklist_table);
912 if (match)
913 id = match;
914 }
915
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200916 if (id->driver_info == BTUSB_IGNORE)
917 return -ENODEV;
918
919 if (ignore_dga && id->driver_info & BTUSB_DIGIANSWER)
920 return -ENODEV;
921
922 if (ignore_csr && id->driver_info & BTUSB_CSR)
923 return -ENODEV;
924
925 if (ignore_sniffer && id->driver_info & BTUSB_SNIFFER)
926 return -ENODEV;
927
Steven.Li2d25f8b2011-07-01 14:02:36 +0800928 if (id->driver_info & BTUSB_ATH3012) {
929 struct usb_device *udev = interface_to_usbdev(intf);
930
931 /* Old firmware would otherwise let ath3k driver load
932 * patch and sysconfig files */
933 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
934 return -ENODEV;
935 }
936
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200937 data = kzalloc(sizeof(*data), GFP_KERNEL);
938 if (!data)
939 return -ENOMEM;
940
941 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
942 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
943
944 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
945 data->intr_ep = ep_desc;
946 continue;
947 }
948
949 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
950 data->bulk_tx_ep = ep_desc;
951 continue;
952 }
953
954 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
955 data->bulk_rx_ep = ep_desc;
956 continue;
957 }
958 }
959
960 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep) {
961 kfree(data);
962 return -ENODEV;
963 }
964
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100965 data->cmdreq_type = USB_TYPE_CLASS;
966
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200967 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200968 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200969
970 spin_lock_init(&data->lock);
971
972 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200973 INIT_WORK(&data->waker, btusb_waker);
974 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200975
976 init_usb_anchor(&data->tx_anchor);
977 init_usb_anchor(&data->intr_anchor);
978 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200979 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200980 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200981
982 hdev = hci_alloc_dev();
983 if (!hdev) {
984 kfree(data);
985 return -ENOMEM;
986 }
987
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100988 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +0100989 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200990
991 data->hdev = hdev;
992
993 SET_HCIDEV_DEV(hdev, &intf->dev);
994
995 hdev->open = btusb_open;
996 hdev->close = btusb_close;
997 hdev->flush = btusb_flush;
998 hdev->send = btusb_send_frame;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200999 hdev->notify = btusb_notify;
1000
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001001 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001002 data->isoc = usb_ifnum_to_if(data->udev, 1);
1003
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001004 if (!reset)
1005 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001006
1007 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1008 if (!disable_scofix)
1009 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1010 }
1011
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001012 if (id->driver_info & BTUSB_BROKEN_ISOC)
1013 data->isoc = NULL;
1014
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001015 if (id->driver_info & BTUSB_DIGIANSWER) {
1016 data->cmdreq_type = USB_TYPE_VENDOR;
1017 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1018 }
1019
1020 if (id->driver_info & BTUSB_CSR) {
1021 struct usb_device *udev = data->udev;
1022
1023 /* Old firmware would otherwise execute USB reset */
1024 if (le16_to_cpu(udev->descriptor.bcdDevice) < 0x117)
1025 set_bit(HCI_QUIRK_NO_RESET, &hdev->quirks);
1026 }
1027
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001028 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001029 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001030
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001031 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001032 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1033 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001034
1035 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001036 }
1037
1038 if (id->driver_info & BTUSB_BCM92035) {
1039 unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
1040 struct sk_buff *skb;
1041
1042 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
1043 if (skb) {
1044 memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
1045 skb_queue_tail(&hdev->driver_init, skb);
1046 }
1047 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001048
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001049 if (data->isoc) {
1050 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001051 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001052 if (err < 0) {
1053 hci_free_dev(hdev);
1054 kfree(data);
1055 return err;
1056 }
1057 }
1058
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001059 err = hci_register_dev(hdev);
1060 if (err < 0) {
1061 hci_free_dev(hdev);
1062 kfree(data);
1063 return err;
1064 }
1065
1066 usb_set_intfdata(intf, data);
1067
1068 return 0;
1069}
1070
1071static void btusb_disconnect(struct usb_interface *intf)
1072{
1073 struct btusb_data *data = usb_get_intfdata(intf);
1074 struct hci_dev *hdev;
1075
1076 BT_DBG("intf %p", intf);
1077
1078 if (!data)
1079 return;
1080
1081 hdev = data->hdev;
1082
David Herrmanndc946bd2012-01-07 15:47:24 +01001083 hci_dev_hold(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001084
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001085 usb_set_intfdata(data->intf, NULL);
1086
1087 if (data->isoc)
1088 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001089
1090 hci_unregister_dev(hdev);
1091
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001092 if (intf == data->isoc)
1093 usb_driver_release_interface(&btusb_driver, data->intf);
1094 else if (data->isoc)
1095 usb_driver_release_interface(&btusb_driver, data->isoc);
1096
David Herrmanndc946bd2012-01-07 15:47:24 +01001097 hci_dev_put(hdev);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001098
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001099 hci_free_dev(hdev);
David Herrmann83810882012-01-07 15:47:16 +01001100 kfree(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001101}
1102
Oliver Neukum7bee5492009-08-24 23:44:59 +02001103#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001104static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1105{
1106 struct btusb_data *data = usb_get_intfdata(intf);
1107
1108 BT_DBG("intf %p", intf);
1109
1110 if (data->suspend_count++)
1111 return 0;
1112
Oliver Neukum7bee5492009-08-24 23:44:59 +02001113 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001114 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001115 set_bit(BTUSB_SUSPENDING, &data->flags);
1116 spin_unlock_irq(&data->txlock);
1117 } else {
1118 spin_unlock_irq(&data->txlock);
1119 data->suspend_count--;
1120 return -EBUSY;
1121 }
1122
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001123 cancel_work_sync(&data->work);
1124
Oliver Neukum7bee5492009-08-24 23:44:59 +02001125 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001126 usb_kill_anchored_urbs(&data->tx_anchor);
1127
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001128 return 0;
1129}
1130
Oliver Neukum7bee5492009-08-24 23:44:59 +02001131static void play_deferred(struct btusb_data *data)
1132{
1133 struct urb *urb;
1134 int err;
1135
1136 while ((urb = usb_get_from_anchor(&data->deferred))) {
1137 err = usb_submit_urb(urb, GFP_ATOMIC);
1138 if (err < 0)
1139 break;
1140
1141 data->tx_in_flight++;
1142 }
1143 usb_scuttle_anchored_urbs(&data->deferred);
1144}
1145
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001146static int btusb_resume(struct usb_interface *intf)
1147{
1148 struct btusb_data *data = usb_get_intfdata(intf);
1149 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001150 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001151
1152 BT_DBG("intf %p", intf);
1153
1154 if (--data->suspend_count)
1155 return 0;
1156
1157 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001158 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001159
1160 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1161 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1162 if (err < 0) {
1163 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001164 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001165 }
1166 }
1167
1168 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001169 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1170 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001171 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001172 goto failed;
1173 }
1174
1175 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001176 }
1177
1178 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1179 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1180 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1181 else
1182 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1183 }
1184
Oliver Neukum7bee5492009-08-24 23:44:59 +02001185 spin_lock_irq(&data->txlock);
1186 play_deferred(data);
1187 clear_bit(BTUSB_SUSPENDING, &data->flags);
1188 spin_unlock_irq(&data->txlock);
1189 schedule_work(&data->work);
1190
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001191 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001192
1193failed:
1194 usb_scuttle_anchored_urbs(&data->deferred);
1195done:
1196 spin_lock_irq(&data->txlock);
1197 clear_bit(BTUSB_SUSPENDING, &data->flags);
1198 spin_unlock_irq(&data->txlock);
1199
1200 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001201}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001202#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001203
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001204static struct usb_driver btusb_driver = {
1205 .name = "btusb",
1206 .probe = btusb_probe,
1207 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001208#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001209 .suspend = btusb_suspend,
1210 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001211#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001212 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001213 .supports_autosuspend = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001214};
1215
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001216module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001217
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001218module_param(ignore_dga, bool, 0644);
1219MODULE_PARM_DESC(ignore_dga, "Ignore devices with id 08fd:0001");
1220
1221module_param(ignore_csr, bool, 0644);
1222MODULE_PARM_DESC(ignore_csr, "Ignore devices with id 0a12:0001");
1223
1224module_param(ignore_sniffer, bool, 0644);
1225MODULE_PARM_DESC(ignore_sniffer, "Ignore devices with id 0a12:0002");
1226
1227module_param(disable_scofix, bool, 0644);
1228MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1229
1230module_param(force_scofix, bool, 0644);
1231MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1232
1233module_param(reset, bool, 0644);
1234MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1235
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001236MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1237MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1238MODULE_VERSION(VERSION);
1239MODULE_LICENSE("GPL");