r8152: fix tx packets accounting
[linux/fpc-iii.git] / drivers / bluetooth / btusb.c
blobbff67c5a5fe7f8e55caebd29b3a3964fc9cdd23e
1 /*
3 * Generic Bluetooth USB driver
5 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
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.
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.
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
24 #include <linux/module.h>
25 #include <linux/usb.h>
26 #include <linux/usb/quirks.h>
27 #include <linux/firmware.h>
28 #include <asm/unaligned.h>
30 #include <net/bluetooth/bluetooth.h>
31 #include <net/bluetooth/hci_core.h>
33 #include "btintel.h"
34 #include "btbcm.h"
35 #include "btrtl.h"
37 #define VERSION "0.8"
39 static bool disable_scofix;
40 static bool force_scofix;
42 static bool reset = true;
44 static struct usb_driver btusb_driver;
46 #define BTUSB_IGNORE 0x01
47 #define BTUSB_DIGIANSWER 0x02
48 #define BTUSB_CSR 0x04
49 #define BTUSB_SNIFFER 0x08
50 #define BTUSB_BCM92035 0x10
51 #define BTUSB_BROKEN_ISOC 0x20
52 #define BTUSB_WRONG_SCO_MTU 0x40
53 #define BTUSB_ATH3012 0x80
54 #define BTUSB_INTEL 0x100
55 #define BTUSB_INTEL_BOOT 0x200
56 #define BTUSB_BCM_PATCHRAM 0x400
57 #define BTUSB_MARVELL 0x800
58 #define BTUSB_SWAVE 0x1000
59 #define BTUSB_INTEL_NEW 0x2000
60 #define BTUSB_AMP 0x4000
61 #define BTUSB_QCA_ROME 0x8000
62 #define BTUSB_BCM_APPLE 0x10000
63 #define BTUSB_REALTEK 0x20000
64 #define BTUSB_BCM2045 0x40000
65 #define BTUSB_IFNUM_2 0x80000
66 #define BTUSB_CW6622 0x100000
68 static const struct usb_device_id btusb_table[] = {
69 /* Generic Bluetooth USB device */
70 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
72 /* Generic Bluetooth AMP device */
73 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
75 /* Generic Bluetooth USB interface */
76 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
78 /* Apple-specific (Broadcom) devices */
79 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
80 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
82 /* MediaTek MT76x0E */
83 { USB_DEVICE(0x0e8d, 0x763f) },
85 /* Broadcom SoftSailing reporting vendor specific */
86 { USB_DEVICE(0x0a5c, 0x21e1) },
88 /* Apple MacBookPro 7,1 */
89 { USB_DEVICE(0x05ac, 0x8213) },
91 /* Apple iMac11,1 */
92 { USB_DEVICE(0x05ac, 0x8215) },
94 /* Apple MacBookPro6,2 */
95 { USB_DEVICE(0x05ac, 0x8218) },
97 /* Apple MacBookAir3,1, MacBookAir3,2 */
98 { USB_DEVICE(0x05ac, 0x821b) },
100 /* Apple MacBookAir4,1 */
101 { USB_DEVICE(0x05ac, 0x821f) },
103 /* Apple MacBookPro8,2 */
104 { USB_DEVICE(0x05ac, 0x821a) },
106 /* Apple MacMini5,1 */
107 { USB_DEVICE(0x05ac, 0x8281) },
109 /* AVM BlueFRITZ! USB v2.0 */
110 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
112 /* Bluetooth Ultraport Module from IBM */
113 { USB_DEVICE(0x04bf, 0x030a) },
115 /* ALPS Modules with non-standard id */
116 { USB_DEVICE(0x044e, 0x3001) },
117 { USB_DEVICE(0x044e, 0x3002) },
119 /* Ericsson with non-standard id */
120 { USB_DEVICE(0x0bdb, 0x1002) },
122 /* Canyon CN-BTU1 with HID interfaces */
123 { USB_DEVICE(0x0c10, 0x0000) },
125 /* Broadcom BCM20702A0 */
126 { USB_DEVICE(0x413c, 0x8197) },
128 /* Broadcom BCM20702B0 (Dynex/Insignia) */
129 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
131 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
132 { USB_DEVICE(0x105b, 0xe065), .driver_info = BTUSB_BCM_PATCHRAM },
134 /* Foxconn - Hon Hai */
135 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
136 .driver_info = BTUSB_BCM_PATCHRAM },
138 /* Lite-On Technology - Broadcom based */
139 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
140 .driver_info = BTUSB_BCM_PATCHRAM },
142 /* Broadcom devices with vendor specific id */
143 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
144 .driver_info = BTUSB_BCM_PATCHRAM },
146 /* ASUSTek Computer - Broadcom based */
147 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
148 .driver_info = BTUSB_BCM_PATCHRAM },
150 /* Belkin F8065bf - Broadcom based */
151 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
152 .driver_info = BTUSB_BCM_PATCHRAM },
154 /* IMC Networks - Broadcom based */
155 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
156 .driver_info = BTUSB_BCM_PATCHRAM },
158 /* Toshiba Corp - Broadcom based */
159 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
160 .driver_info = BTUSB_BCM_PATCHRAM },
162 /* Intel Bluetooth USB Bootloader (RAM module) */
163 { USB_DEVICE(0x8087, 0x0a5a),
164 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
166 { } /* Terminating entry */
169 MODULE_DEVICE_TABLE(usb, btusb_table);
171 static const struct usb_device_id blacklist_table[] = {
172 /* CSR BlueCore devices */
173 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
175 /* Broadcom BCM2033 without firmware */
176 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
178 /* Broadcom BCM2045 devices */
179 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
181 /* Atheros 3011 with sflash firmware */
182 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
183 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
184 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
185 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
186 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
187 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
188 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
190 /* Atheros AR9285 Malbec with sflash firmware */
191 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
193 /* Atheros 3012 with sflash firmware */
194 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
195 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
196 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
197 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
198 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
199 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
200 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
201 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
202 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
203 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
204 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
205 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
206 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
207 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
208 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
209 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
210 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
211 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
212 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
213 { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
214 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
215 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
216 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
217 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
218 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
219 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
220 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
221 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
222 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
223 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
224 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
225 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
226 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
227 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
228 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
229 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
230 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
231 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
232 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
233 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
234 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
235 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
236 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
237 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
238 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
239 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
240 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
241 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
242 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
243 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
245 /* Atheros AR5BBU12 with sflash firmware */
246 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
248 /* Atheros AR5BBU12 with sflash firmware */
249 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
250 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
252 /* QCA ROME chipset */
253 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
254 { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME },
255 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
256 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
257 { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
258 { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
260 /* Broadcom BCM2035 */
261 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
262 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
263 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
265 /* Broadcom BCM2045 */
266 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
267 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
269 /* IBM/Lenovo ThinkPad with Broadcom chip */
270 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
271 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
273 /* HP laptop with Broadcom chip */
274 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
276 /* Dell laptop with Broadcom chip */
277 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
279 /* Dell Wireless 370 and 410 devices */
280 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
281 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
283 /* Belkin F8T012 and F8T013 devices */
284 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
285 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
287 /* Asus WL-BTD202 device */
288 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
290 /* Kensington Bluetooth USB adapter */
291 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
293 /* RTX Telecom based adapters with buggy SCO support */
294 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
295 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
297 /* CONWISE Technology based adapters with buggy SCO support */
298 { USB_DEVICE(0x0e5e, 0x6622),
299 .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
301 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
302 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
304 /* Digianswer devices */
305 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
306 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
308 /* CSR BlueCore Bluetooth Sniffer */
309 { USB_DEVICE(0x0a12, 0x0002),
310 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
312 /* Frontline ComProbe Bluetooth Sniffer */
313 { USB_DEVICE(0x16d3, 0x0002),
314 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
316 /* Marvell Bluetooth devices */
317 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
318 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
319 { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
321 /* Intel Bluetooth devices */
322 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
323 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
324 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
325 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
326 { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL },
328 /* Other Intel Bluetooth devices */
329 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
330 .driver_info = BTUSB_IGNORE },
332 /* Realtek Bluetooth devices */
333 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
334 .driver_info = BTUSB_REALTEK },
336 /* Additional Realtek 8723AE Bluetooth devices */
337 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
338 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
340 /* Additional Realtek 8723BE Bluetooth devices */
341 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
342 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
343 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
344 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
345 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
346 { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
348 /* Additional Realtek 8723BU Bluetooth devices */
349 { USB_DEVICE(0x7392, 0xa611), .driver_info = BTUSB_REALTEK },
351 /* Additional Realtek 8821AE Bluetooth devices */
352 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
353 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
354 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
355 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
356 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
358 /* Additional Realtek 8822BE Bluetooth devices */
359 { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK },
361 /* Silicon Wave based devices */
362 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
364 { } /* Terminating entry */
367 #define BTUSB_MAX_ISOC_FRAMES 10
369 #define BTUSB_INTR_RUNNING 0
370 #define BTUSB_BULK_RUNNING 1
371 #define BTUSB_ISOC_RUNNING 2
372 #define BTUSB_SUSPENDING 3
373 #define BTUSB_DID_ISO_RESUME 4
374 #define BTUSB_BOOTLOADER 5
375 #define BTUSB_DOWNLOADING 6
376 #define BTUSB_FIRMWARE_LOADED 7
377 #define BTUSB_FIRMWARE_FAILED 8
378 #define BTUSB_BOOTING 9
379 #define BTUSB_DIAG_RUNNING 10
380 #define BTUSB_OOB_WAKE_ENABLED 11
382 struct btusb_data {
383 struct hci_dev *hdev;
384 struct usb_device *udev;
385 struct usb_interface *intf;
386 struct usb_interface *isoc;
387 struct usb_interface *diag;
389 unsigned long flags;
391 struct work_struct work;
392 struct work_struct waker;
394 struct usb_anchor deferred;
395 struct usb_anchor tx_anchor;
396 int tx_in_flight;
397 spinlock_t txlock;
399 struct usb_anchor intr_anchor;
400 struct usb_anchor bulk_anchor;
401 struct usb_anchor isoc_anchor;
402 struct usb_anchor diag_anchor;
403 spinlock_t rxlock;
405 struct sk_buff *evt_skb;
406 struct sk_buff *acl_skb;
407 struct sk_buff *sco_skb;
409 struct usb_endpoint_descriptor *intr_ep;
410 struct usb_endpoint_descriptor *bulk_tx_ep;
411 struct usb_endpoint_descriptor *bulk_rx_ep;
412 struct usb_endpoint_descriptor *isoc_tx_ep;
413 struct usb_endpoint_descriptor *isoc_rx_ep;
414 struct usb_endpoint_descriptor *diag_tx_ep;
415 struct usb_endpoint_descriptor *diag_rx_ep;
417 __u8 cmdreq_type;
418 __u8 cmdreq;
420 unsigned int sco_num;
421 int isoc_altsetting;
422 int suspend_count;
424 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
425 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
427 int (*setup_on_usb)(struct hci_dev *hdev);
430 static inline void btusb_free_frags(struct btusb_data *data)
432 unsigned long flags;
434 spin_lock_irqsave(&data->rxlock, flags);
436 kfree_skb(data->evt_skb);
437 data->evt_skb = NULL;
439 kfree_skb(data->acl_skb);
440 data->acl_skb = NULL;
442 kfree_skb(data->sco_skb);
443 data->sco_skb = NULL;
445 spin_unlock_irqrestore(&data->rxlock, flags);
448 static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
450 struct sk_buff *skb;
451 int err = 0;
453 spin_lock(&data->rxlock);
454 skb = data->evt_skb;
456 while (count) {
457 int len;
459 if (!skb) {
460 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
461 if (!skb) {
462 err = -ENOMEM;
463 break;
466 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
467 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
470 len = min_t(uint, hci_skb_expect(skb), count);
471 memcpy(skb_put(skb, len), buffer, len);
473 count -= len;
474 buffer += len;
475 hci_skb_expect(skb) -= len;
477 if (skb->len == HCI_EVENT_HDR_SIZE) {
478 /* Complete event header */
479 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
481 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
482 kfree_skb(skb);
483 skb = NULL;
485 err = -EILSEQ;
486 break;
490 if (!hci_skb_expect(skb)) {
491 /* Complete frame */
492 data->recv_event(data->hdev, skb);
493 skb = NULL;
497 data->evt_skb = skb;
498 spin_unlock(&data->rxlock);
500 return err;
503 static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
505 struct sk_buff *skb;
506 int err = 0;
508 spin_lock(&data->rxlock);
509 skb = data->acl_skb;
511 while (count) {
512 int len;
514 if (!skb) {
515 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
516 if (!skb) {
517 err = -ENOMEM;
518 break;
521 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
522 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
525 len = min_t(uint, hci_skb_expect(skb), count);
526 memcpy(skb_put(skb, len), buffer, len);
528 count -= len;
529 buffer += len;
530 hci_skb_expect(skb) -= len;
532 if (skb->len == HCI_ACL_HDR_SIZE) {
533 __le16 dlen = hci_acl_hdr(skb)->dlen;
535 /* Complete ACL header */
536 hci_skb_expect(skb) = __le16_to_cpu(dlen);
538 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
539 kfree_skb(skb);
540 skb = NULL;
542 err = -EILSEQ;
543 break;
547 if (!hci_skb_expect(skb)) {
548 /* Complete frame */
549 hci_recv_frame(data->hdev, skb);
550 skb = NULL;
554 data->acl_skb = skb;
555 spin_unlock(&data->rxlock);
557 return err;
560 static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
562 struct sk_buff *skb;
563 int err = 0;
565 spin_lock(&data->rxlock);
566 skb = data->sco_skb;
568 while (count) {
569 int len;
571 if (!skb) {
572 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
573 if (!skb) {
574 err = -ENOMEM;
575 break;
578 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
579 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
582 len = min_t(uint, hci_skb_expect(skb), count);
583 memcpy(skb_put(skb, len), buffer, len);
585 count -= len;
586 buffer += len;
587 hci_skb_expect(skb) -= len;
589 if (skb->len == HCI_SCO_HDR_SIZE) {
590 /* Complete SCO header */
591 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
593 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
594 kfree_skb(skb);
595 skb = NULL;
597 err = -EILSEQ;
598 break;
602 if (!hci_skb_expect(skb)) {
603 /* Complete frame */
604 hci_recv_frame(data->hdev, skb);
605 skb = NULL;
609 data->sco_skb = skb;
610 spin_unlock(&data->rxlock);
612 return err;
615 static void btusb_intr_complete(struct urb *urb)
617 struct hci_dev *hdev = urb->context;
618 struct btusb_data *data = hci_get_drvdata(hdev);
619 int err;
621 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
622 urb->actual_length);
624 if (!test_bit(HCI_RUNNING, &hdev->flags))
625 return;
627 if (urb->status == 0) {
628 hdev->stat.byte_rx += urb->actual_length;
630 if (btusb_recv_intr(data, urb->transfer_buffer,
631 urb->actual_length) < 0) {
632 BT_ERR("%s corrupted event packet", hdev->name);
633 hdev->stat.err_rx++;
635 } else if (urb->status == -ENOENT) {
636 /* Avoid suspend failed when usb_kill_urb */
637 return;
640 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
641 return;
643 usb_mark_last_busy(data->udev);
644 usb_anchor_urb(urb, &data->intr_anchor);
646 err = usb_submit_urb(urb, GFP_ATOMIC);
647 if (err < 0) {
648 /* -EPERM: urb is being killed;
649 * -ENODEV: device got disconnected */
650 if (err != -EPERM && err != -ENODEV)
651 BT_ERR("%s urb %p failed to resubmit (%d)",
652 hdev->name, urb, -err);
653 usb_unanchor_urb(urb);
657 static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
659 struct btusb_data *data = hci_get_drvdata(hdev);
660 struct urb *urb;
661 unsigned char *buf;
662 unsigned int pipe;
663 int err, size;
665 BT_DBG("%s", hdev->name);
667 if (!data->intr_ep)
668 return -ENODEV;
670 urb = usb_alloc_urb(0, mem_flags);
671 if (!urb)
672 return -ENOMEM;
674 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
676 buf = kmalloc(size, mem_flags);
677 if (!buf) {
678 usb_free_urb(urb);
679 return -ENOMEM;
682 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
684 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
685 btusb_intr_complete, hdev, data->intr_ep->bInterval);
687 urb->transfer_flags |= URB_FREE_BUFFER;
689 usb_anchor_urb(urb, &data->intr_anchor);
691 err = usb_submit_urb(urb, mem_flags);
692 if (err < 0) {
693 if (err != -EPERM && err != -ENODEV)
694 BT_ERR("%s urb %p submission failed (%d)",
695 hdev->name, urb, -err);
696 usb_unanchor_urb(urb);
699 usb_free_urb(urb);
701 return err;
704 static void btusb_bulk_complete(struct urb *urb)
706 struct hci_dev *hdev = urb->context;
707 struct btusb_data *data = hci_get_drvdata(hdev);
708 int err;
710 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
711 urb->actual_length);
713 if (!test_bit(HCI_RUNNING, &hdev->flags))
714 return;
716 if (urb->status == 0) {
717 hdev->stat.byte_rx += urb->actual_length;
719 if (data->recv_bulk(data, urb->transfer_buffer,
720 urb->actual_length) < 0) {
721 BT_ERR("%s corrupted ACL packet", hdev->name);
722 hdev->stat.err_rx++;
724 } else if (urb->status == -ENOENT) {
725 /* Avoid suspend failed when usb_kill_urb */
726 return;
729 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
730 return;
732 usb_anchor_urb(urb, &data->bulk_anchor);
733 usb_mark_last_busy(data->udev);
735 err = usb_submit_urb(urb, GFP_ATOMIC);
736 if (err < 0) {
737 /* -EPERM: urb is being killed;
738 * -ENODEV: device got disconnected */
739 if (err != -EPERM && err != -ENODEV)
740 BT_ERR("%s urb %p failed to resubmit (%d)",
741 hdev->name, urb, -err);
742 usb_unanchor_urb(urb);
746 static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
748 struct btusb_data *data = hci_get_drvdata(hdev);
749 struct urb *urb;
750 unsigned char *buf;
751 unsigned int pipe;
752 int err, size = HCI_MAX_FRAME_SIZE;
754 BT_DBG("%s", hdev->name);
756 if (!data->bulk_rx_ep)
757 return -ENODEV;
759 urb = usb_alloc_urb(0, mem_flags);
760 if (!urb)
761 return -ENOMEM;
763 buf = kmalloc(size, mem_flags);
764 if (!buf) {
765 usb_free_urb(urb);
766 return -ENOMEM;
769 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
771 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
772 btusb_bulk_complete, hdev);
774 urb->transfer_flags |= URB_FREE_BUFFER;
776 usb_mark_last_busy(data->udev);
777 usb_anchor_urb(urb, &data->bulk_anchor);
779 err = usb_submit_urb(urb, mem_flags);
780 if (err < 0) {
781 if (err != -EPERM && err != -ENODEV)
782 BT_ERR("%s urb %p submission failed (%d)",
783 hdev->name, urb, -err);
784 usb_unanchor_urb(urb);
787 usb_free_urb(urb);
789 return err;
792 static void btusb_isoc_complete(struct urb *urb)
794 struct hci_dev *hdev = urb->context;
795 struct btusb_data *data = hci_get_drvdata(hdev);
796 int i, err;
798 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
799 urb->actual_length);
801 if (!test_bit(HCI_RUNNING, &hdev->flags))
802 return;
804 if (urb->status == 0) {
805 for (i = 0; i < urb->number_of_packets; i++) {
806 unsigned int offset = urb->iso_frame_desc[i].offset;
807 unsigned int length = urb->iso_frame_desc[i].actual_length;
809 if (urb->iso_frame_desc[i].status)
810 continue;
812 hdev->stat.byte_rx += length;
814 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
815 length) < 0) {
816 BT_ERR("%s corrupted SCO packet", hdev->name);
817 hdev->stat.err_rx++;
820 } else if (urb->status == -ENOENT) {
821 /* Avoid suspend failed when usb_kill_urb */
822 return;
825 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
826 return;
828 usb_anchor_urb(urb, &data->isoc_anchor);
830 err = usb_submit_urb(urb, GFP_ATOMIC);
831 if (err < 0) {
832 /* -EPERM: urb is being killed;
833 * -ENODEV: device got disconnected */
834 if (err != -EPERM && err != -ENODEV)
835 BT_ERR("%s urb %p failed to resubmit (%d)",
836 hdev->name, urb, -err);
837 usb_unanchor_urb(urb);
841 static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
843 int i, offset = 0;
845 BT_DBG("len %d mtu %d", len, mtu);
847 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
848 i++, offset += mtu, len -= mtu) {
849 urb->iso_frame_desc[i].offset = offset;
850 urb->iso_frame_desc[i].length = mtu;
853 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
854 urb->iso_frame_desc[i].offset = offset;
855 urb->iso_frame_desc[i].length = len;
856 i++;
859 urb->number_of_packets = i;
862 static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
864 struct btusb_data *data = hci_get_drvdata(hdev);
865 struct urb *urb;
866 unsigned char *buf;
867 unsigned int pipe;
868 int err, size;
870 BT_DBG("%s", hdev->name);
872 if (!data->isoc_rx_ep)
873 return -ENODEV;
875 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
876 if (!urb)
877 return -ENOMEM;
879 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
880 BTUSB_MAX_ISOC_FRAMES;
882 buf = kmalloc(size, mem_flags);
883 if (!buf) {
884 usb_free_urb(urb);
885 return -ENOMEM;
888 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
890 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
891 hdev, data->isoc_rx_ep->bInterval);
893 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
895 __fill_isoc_descriptor(urb, size,
896 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
898 usb_anchor_urb(urb, &data->isoc_anchor);
900 err = usb_submit_urb(urb, mem_flags);
901 if (err < 0) {
902 if (err != -EPERM && err != -ENODEV)
903 BT_ERR("%s urb %p submission failed (%d)",
904 hdev->name, urb, -err);
905 usb_unanchor_urb(urb);
908 usb_free_urb(urb);
910 return err;
913 static void btusb_diag_complete(struct urb *urb)
915 struct hci_dev *hdev = urb->context;
916 struct btusb_data *data = hci_get_drvdata(hdev);
917 int err;
919 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
920 urb->actual_length);
922 if (urb->status == 0) {
923 struct sk_buff *skb;
925 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
926 if (skb) {
927 memcpy(skb_put(skb, urb->actual_length),
928 urb->transfer_buffer, urb->actual_length);
929 hci_recv_diag(hdev, skb);
931 } else if (urb->status == -ENOENT) {
932 /* Avoid suspend failed when usb_kill_urb */
933 return;
936 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
937 return;
939 usb_anchor_urb(urb, &data->diag_anchor);
940 usb_mark_last_busy(data->udev);
942 err = usb_submit_urb(urb, GFP_ATOMIC);
943 if (err < 0) {
944 /* -EPERM: urb is being killed;
945 * -ENODEV: device got disconnected */
946 if (err != -EPERM && err != -ENODEV)
947 BT_ERR("%s urb %p failed to resubmit (%d)",
948 hdev->name, urb, -err);
949 usb_unanchor_urb(urb);
953 static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
955 struct btusb_data *data = hci_get_drvdata(hdev);
956 struct urb *urb;
957 unsigned char *buf;
958 unsigned int pipe;
959 int err, size = HCI_MAX_FRAME_SIZE;
961 BT_DBG("%s", hdev->name);
963 if (!data->diag_rx_ep)
964 return -ENODEV;
966 urb = usb_alloc_urb(0, mem_flags);
967 if (!urb)
968 return -ENOMEM;
970 buf = kmalloc(size, mem_flags);
971 if (!buf) {
972 usb_free_urb(urb);
973 return -ENOMEM;
976 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
978 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
979 btusb_diag_complete, hdev);
981 urb->transfer_flags |= URB_FREE_BUFFER;
983 usb_mark_last_busy(data->udev);
984 usb_anchor_urb(urb, &data->diag_anchor);
986 err = usb_submit_urb(urb, mem_flags);
987 if (err < 0) {
988 if (err != -EPERM && err != -ENODEV)
989 BT_ERR("%s urb %p submission failed (%d)",
990 hdev->name, urb, -err);
991 usb_unanchor_urb(urb);
994 usb_free_urb(urb);
996 return err;
999 static void btusb_tx_complete(struct urb *urb)
1001 struct sk_buff *skb = urb->context;
1002 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1003 struct btusb_data *data = hci_get_drvdata(hdev);
1005 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1006 urb->actual_length);
1008 if (!test_bit(HCI_RUNNING, &hdev->flags))
1009 goto done;
1011 if (!urb->status)
1012 hdev->stat.byte_tx += urb->transfer_buffer_length;
1013 else
1014 hdev->stat.err_tx++;
1016 done:
1017 spin_lock(&data->txlock);
1018 data->tx_in_flight--;
1019 spin_unlock(&data->txlock);
1021 kfree(urb->setup_packet);
1023 kfree_skb(skb);
1026 static void btusb_isoc_tx_complete(struct urb *urb)
1028 struct sk_buff *skb = urb->context;
1029 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1031 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1032 urb->actual_length);
1034 if (!test_bit(HCI_RUNNING, &hdev->flags))
1035 goto done;
1037 if (!urb->status)
1038 hdev->stat.byte_tx += urb->transfer_buffer_length;
1039 else
1040 hdev->stat.err_tx++;
1042 done:
1043 kfree(urb->setup_packet);
1045 kfree_skb(skb);
1048 static int btusb_open(struct hci_dev *hdev)
1050 struct btusb_data *data = hci_get_drvdata(hdev);
1051 int err;
1053 BT_DBG("%s", hdev->name);
1055 err = usb_autopm_get_interface(data->intf);
1056 if (err < 0)
1057 return err;
1059 /* Patching USB firmware files prior to starting any URBs of HCI path
1060 * It is more safe to use USB bulk channel for downloading USB patch
1062 if (data->setup_on_usb) {
1063 err = data->setup_on_usb(hdev);
1064 if (err < 0)
1065 return err;
1068 data->intf->needs_remote_wakeup = 1;
1070 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
1071 goto done;
1073 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
1074 if (err < 0)
1075 goto failed;
1077 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1078 if (err < 0) {
1079 usb_kill_anchored_urbs(&data->intr_anchor);
1080 goto failed;
1083 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1084 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1086 if (data->diag) {
1087 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1088 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1091 done:
1092 usb_autopm_put_interface(data->intf);
1093 return 0;
1095 failed:
1096 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1097 usb_autopm_put_interface(data->intf);
1098 return err;
1101 static void btusb_stop_traffic(struct btusb_data *data)
1103 usb_kill_anchored_urbs(&data->intr_anchor);
1104 usb_kill_anchored_urbs(&data->bulk_anchor);
1105 usb_kill_anchored_urbs(&data->isoc_anchor);
1106 usb_kill_anchored_urbs(&data->diag_anchor);
1109 static int btusb_close(struct hci_dev *hdev)
1111 struct btusb_data *data = hci_get_drvdata(hdev);
1112 int err;
1114 BT_DBG("%s", hdev->name);
1116 cancel_work_sync(&data->work);
1117 cancel_work_sync(&data->waker);
1119 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1120 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
1121 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1122 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
1124 btusb_stop_traffic(data);
1125 btusb_free_frags(data);
1127 err = usb_autopm_get_interface(data->intf);
1128 if (err < 0)
1129 goto failed;
1131 data->intf->needs_remote_wakeup = 0;
1132 usb_autopm_put_interface(data->intf);
1134 failed:
1135 usb_scuttle_anchored_urbs(&data->deferred);
1136 return 0;
1139 static int btusb_flush(struct hci_dev *hdev)
1141 struct btusb_data *data = hci_get_drvdata(hdev);
1143 BT_DBG("%s", hdev->name);
1145 usb_kill_anchored_urbs(&data->tx_anchor);
1146 btusb_free_frags(data);
1148 return 0;
1151 static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
1153 struct btusb_data *data = hci_get_drvdata(hdev);
1154 struct usb_ctrlrequest *dr;
1155 struct urb *urb;
1156 unsigned int pipe;
1158 urb = usb_alloc_urb(0, GFP_KERNEL);
1159 if (!urb)
1160 return ERR_PTR(-ENOMEM);
1162 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1163 if (!dr) {
1164 usb_free_urb(urb);
1165 return ERR_PTR(-ENOMEM);
1168 dr->bRequestType = data->cmdreq_type;
1169 dr->bRequest = data->cmdreq;
1170 dr->wIndex = 0;
1171 dr->wValue = 0;
1172 dr->wLength = __cpu_to_le16(skb->len);
1174 pipe = usb_sndctrlpipe(data->udev, 0x00);
1176 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
1177 skb->data, skb->len, btusb_tx_complete, skb);
1179 skb->dev = (void *)hdev;
1181 return urb;
1184 static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1186 struct btusb_data *data = hci_get_drvdata(hdev);
1187 struct urb *urb;
1188 unsigned int pipe;
1190 if (!data->bulk_tx_ep)
1191 return ERR_PTR(-ENODEV);
1193 urb = usb_alloc_urb(0, GFP_KERNEL);
1194 if (!urb)
1195 return ERR_PTR(-ENOMEM);
1197 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
1199 usb_fill_bulk_urb(urb, data->udev, pipe,
1200 skb->data, skb->len, btusb_tx_complete, skb);
1202 skb->dev = (void *)hdev;
1204 return urb;
1207 static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1209 struct btusb_data *data = hci_get_drvdata(hdev);
1210 struct urb *urb;
1211 unsigned int pipe;
1213 if (!data->isoc_tx_ep)
1214 return ERR_PTR(-ENODEV);
1216 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1217 if (!urb)
1218 return ERR_PTR(-ENOMEM);
1220 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
1222 usb_fill_int_urb(urb, data->udev, pipe,
1223 skb->data, skb->len, btusb_isoc_tx_complete,
1224 skb, data->isoc_tx_ep->bInterval);
1226 urb->transfer_flags = URB_ISO_ASAP;
1228 __fill_isoc_descriptor(urb, skb->len,
1229 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
1231 skb->dev = (void *)hdev;
1233 return urb;
1236 static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1238 struct btusb_data *data = hci_get_drvdata(hdev);
1239 int err;
1241 usb_anchor_urb(urb, &data->tx_anchor);
1243 err = usb_submit_urb(urb, GFP_KERNEL);
1244 if (err < 0) {
1245 if (err != -EPERM && err != -ENODEV)
1246 BT_ERR("%s urb %p submission failed (%d)",
1247 hdev->name, urb, -err);
1248 kfree(urb->setup_packet);
1249 usb_unanchor_urb(urb);
1250 } else {
1251 usb_mark_last_busy(data->udev);
1254 usb_free_urb(urb);
1255 return err;
1258 static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1260 struct btusb_data *data = hci_get_drvdata(hdev);
1261 unsigned long flags;
1262 bool suspending;
1264 spin_lock_irqsave(&data->txlock, flags);
1265 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1266 if (!suspending)
1267 data->tx_in_flight++;
1268 spin_unlock_irqrestore(&data->txlock, flags);
1270 if (!suspending)
1271 return submit_tx_urb(hdev, urb);
1273 usb_anchor_urb(urb, &data->deferred);
1274 schedule_work(&data->waker);
1276 usb_free_urb(urb);
1277 return 0;
1280 static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1282 struct urb *urb;
1284 BT_DBG("%s", hdev->name);
1286 switch (hci_skb_pkt_type(skb)) {
1287 case HCI_COMMAND_PKT:
1288 urb = alloc_ctrl_urb(hdev, skb);
1289 if (IS_ERR(urb))
1290 return PTR_ERR(urb);
1292 hdev->stat.cmd_tx++;
1293 return submit_or_queue_tx_urb(hdev, urb);
1295 case HCI_ACLDATA_PKT:
1296 urb = alloc_bulk_urb(hdev, skb);
1297 if (IS_ERR(urb))
1298 return PTR_ERR(urb);
1300 hdev->stat.acl_tx++;
1301 return submit_or_queue_tx_urb(hdev, urb);
1303 case HCI_SCODATA_PKT:
1304 if (hci_conn_num(hdev, SCO_LINK) < 1)
1305 return -ENODEV;
1307 urb = alloc_isoc_urb(hdev, skb);
1308 if (IS_ERR(urb))
1309 return PTR_ERR(urb);
1311 hdev->stat.sco_tx++;
1312 return submit_tx_urb(hdev, urb);
1315 return -EILSEQ;
1318 static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1320 struct btusb_data *data = hci_get_drvdata(hdev);
1322 BT_DBG("%s evt %d", hdev->name, evt);
1324 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1325 data->sco_num = hci_conn_num(hdev, SCO_LINK);
1326 schedule_work(&data->work);
1330 static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
1332 struct btusb_data *data = hci_get_drvdata(hdev);
1333 struct usb_interface *intf = data->isoc;
1334 struct usb_endpoint_descriptor *ep_desc;
1335 int i, err;
1337 if (!data->isoc)
1338 return -ENODEV;
1340 err = usb_set_interface(data->udev, 1, altsetting);
1341 if (err < 0) {
1342 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1343 return err;
1346 data->isoc_altsetting = altsetting;
1348 data->isoc_tx_ep = NULL;
1349 data->isoc_rx_ep = NULL;
1351 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1352 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1354 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1355 data->isoc_tx_ep = ep_desc;
1356 continue;
1359 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1360 data->isoc_rx_ep = ep_desc;
1361 continue;
1365 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1366 BT_ERR("%s invalid SCO descriptors", hdev->name);
1367 return -ENODEV;
1370 return 0;
1373 static void btusb_work(struct work_struct *work)
1375 struct btusb_data *data = container_of(work, struct btusb_data, work);
1376 struct hci_dev *hdev = data->hdev;
1377 int new_alts;
1378 int err;
1380 if (data->sco_num > 0) {
1381 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
1382 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
1383 if (err < 0) {
1384 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1385 usb_kill_anchored_urbs(&data->isoc_anchor);
1386 return;
1389 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
1392 if (hdev->voice_setting & 0x0020) {
1393 static const int alts[3] = { 2, 4, 5 };
1395 new_alts = alts[data->sco_num - 1];
1396 } else {
1397 new_alts = data->sco_num;
1400 if (data->isoc_altsetting != new_alts) {
1401 unsigned long flags;
1403 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1404 usb_kill_anchored_urbs(&data->isoc_anchor);
1406 /* When isochronous alternate setting needs to be
1407 * changed, because SCO connection has been added
1408 * or removed, a packet fragment may be left in the
1409 * reassembling state. This could lead to wrongly
1410 * assembled fragments.
1412 * Clear outstanding fragment when selecting a new
1413 * alternate setting.
1415 spin_lock_irqsave(&data->rxlock, flags);
1416 kfree_skb(data->sco_skb);
1417 data->sco_skb = NULL;
1418 spin_unlock_irqrestore(&data->rxlock, flags);
1420 if (__set_isoc_interface(hdev, new_alts) < 0)
1421 return;
1424 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1425 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
1426 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1427 else
1428 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
1430 } else {
1431 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1432 usb_kill_anchored_urbs(&data->isoc_anchor);
1434 __set_isoc_interface(hdev, 0);
1435 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
1436 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
1440 static void btusb_waker(struct work_struct *work)
1442 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1443 int err;
1445 err = usb_autopm_get_interface(data->intf);
1446 if (err < 0)
1447 return;
1449 usb_autopm_put_interface(data->intf);
1452 static int btusb_setup_bcm92035(struct hci_dev *hdev)
1454 struct sk_buff *skb;
1455 u8 val = 0x00;
1457 BT_DBG("%s", hdev->name);
1459 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1460 if (IS_ERR(skb))
1461 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1462 else
1463 kfree_skb(skb);
1465 return 0;
1468 static int btusb_setup_csr(struct hci_dev *hdev)
1470 struct hci_rp_read_local_version *rp;
1471 struct sk_buff *skb;
1473 BT_DBG("%s", hdev->name);
1475 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1476 HCI_INIT_TIMEOUT);
1477 if (IS_ERR(skb)) {
1478 int err = PTR_ERR(skb);
1479 BT_ERR("%s: CSR: Local version failed (%d)", hdev->name, err);
1480 return err;
1483 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1484 BT_ERR("%s: CSR: Local version length mismatch", hdev->name);
1485 kfree_skb(skb);
1486 return -EIO;
1489 rp = (struct hci_rp_read_local_version *)skb->data;
1491 /* Detect controllers which aren't real CSR ones. */
1492 if (le16_to_cpu(rp->manufacturer) != 10 ||
1493 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
1494 /* Clear the reset quirk since this is not an actual
1495 * early Bluetooth 1.1 device from CSR.
1497 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1499 /* These fake CSR controllers have all a broken
1500 * stored link key handling and so just disable it.
1502 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
1505 kfree_skb(skb);
1507 return 0;
1510 static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
1511 struct intel_version *ver)
1513 const struct firmware *fw;
1514 char fwname[64];
1515 int ret;
1517 snprintf(fwname, sizeof(fwname),
1518 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1519 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1520 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1521 ver->fw_build_ww, ver->fw_build_yy);
1523 ret = request_firmware(&fw, fwname, &hdev->dev);
1524 if (ret < 0) {
1525 if (ret == -EINVAL) {
1526 BT_ERR("%s Intel firmware file request failed (%d)",
1527 hdev->name, ret);
1528 return NULL;
1531 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1532 hdev->name, fwname, ret);
1534 /* If the correct firmware patch file is not found, use the
1535 * default firmware patch file instead
1537 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1538 ver->hw_platform, ver->hw_variant);
1539 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1540 BT_ERR("%s failed to open default Intel fw file: %s",
1541 hdev->name, fwname);
1542 return NULL;
1546 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1548 return fw;
1551 static int btusb_setup_intel_patching(struct hci_dev *hdev,
1552 const struct firmware *fw,
1553 const u8 **fw_ptr, int *disable_patch)
1555 struct sk_buff *skb;
1556 struct hci_command_hdr *cmd;
1557 const u8 *cmd_param;
1558 struct hci_event_hdr *evt = NULL;
1559 const u8 *evt_param = NULL;
1560 int remain = fw->size - (*fw_ptr - fw->data);
1562 /* The first byte indicates the types of the patch command or event.
1563 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1564 * in the current firmware buffer doesn't start with 0x01 or
1565 * the size of remain buffer is smaller than HCI command header,
1566 * the firmware file is corrupted and it should stop the patching
1567 * process.
1569 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1570 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1571 return -EINVAL;
1573 (*fw_ptr)++;
1574 remain--;
1576 cmd = (struct hci_command_hdr *)(*fw_ptr);
1577 *fw_ptr += sizeof(*cmd);
1578 remain -= sizeof(*cmd);
1580 /* Ensure that the remain firmware data is long enough than the length
1581 * of command parameter. If not, the firmware file is corrupted.
1583 if (remain < cmd->plen) {
1584 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1585 return -EFAULT;
1588 /* If there is a command that loads a patch in the firmware
1589 * file, then enable the patch upon success, otherwise just
1590 * disable the manufacturer mode, for example patch activation
1591 * is not required when the default firmware patch file is used
1592 * because there are no patch data to load.
1594 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1595 *disable_patch = 0;
1597 cmd_param = *fw_ptr;
1598 *fw_ptr += cmd->plen;
1599 remain -= cmd->plen;
1601 /* This reads the expected events when the above command is sent to the
1602 * device. Some vendor commands expects more than one events, for
1603 * example command status event followed by vendor specific event.
1604 * For this case, it only keeps the last expected event. so the command
1605 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1606 * last expected event.
1608 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1609 (*fw_ptr)++;
1610 remain--;
1612 evt = (struct hci_event_hdr *)(*fw_ptr);
1613 *fw_ptr += sizeof(*evt);
1614 remain -= sizeof(*evt);
1616 if (remain < evt->plen) {
1617 BT_ERR("%s Intel fw corrupted: invalid evt len",
1618 hdev->name);
1619 return -EFAULT;
1622 evt_param = *fw_ptr;
1623 *fw_ptr += evt->plen;
1624 remain -= evt->plen;
1627 /* Every HCI commands in the firmware file has its correspond event.
1628 * If event is not found or remain is smaller than zero, the firmware
1629 * file is corrupted.
1631 if (!evt || !evt_param || remain < 0) {
1632 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1633 return -EFAULT;
1636 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1637 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1638 if (IS_ERR(skb)) {
1639 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1640 hdev->name, cmd->opcode, PTR_ERR(skb));
1641 return PTR_ERR(skb);
1644 /* It ensures that the returned event matches the event data read from
1645 * the firmware file. At fist, it checks the length and then
1646 * the contents of the event.
1648 if (skb->len != evt->plen) {
1649 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1650 le16_to_cpu(cmd->opcode));
1651 kfree_skb(skb);
1652 return -EFAULT;
1655 if (memcmp(skb->data, evt_param, evt->plen)) {
1656 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1657 hdev->name, le16_to_cpu(cmd->opcode));
1658 kfree_skb(skb);
1659 return -EFAULT;
1661 kfree_skb(skb);
1663 return 0;
1666 static int btusb_setup_intel(struct hci_dev *hdev)
1668 struct sk_buff *skb;
1669 const struct firmware *fw;
1670 const u8 *fw_ptr;
1671 int disable_patch, err;
1672 struct intel_version ver;
1674 BT_DBG("%s", hdev->name);
1676 /* The controller has a bug with the first HCI command sent to it
1677 * returning number of completed commands as zero. This would stall the
1678 * command processing in the Bluetooth core.
1680 * As a workaround, send HCI Reset command first which will reset the
1681 * number of completed commands and allow normal command processing
1682 * from now on.
1684 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1685 if (IS_ERR(skb)) {
1686 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1687 hdev->name, PTR_ERR(skb));
1688 return PTR_ERR(skb);
1690 kfree_skb(skb);
1692 /* Read Intel specific controller version first to allow selection of
1693 * which firmware file to load.
1695 * The returned information are hardware variant and revision plus
1696 * firmware variant, revision and build number.
1698 err = btintel_read_version(hdev, &ver);
1699 if (err)
1700 return err;
1702 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1703 hdev->name, ver.hw_platform, ver.hw_variant, ver.hw_revision,
1704 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1705 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
1707 /* fw_patch_num indicates the version of patch the device currently
1708 * have. If there is no patch data in the device, it is always 0x00.
1709 * So, if it is other than 0x00, no need to patch the device again.
1711 if (ver.fw_patch_num) {
1712 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1713 hdev->name, ver.fw_patch_num);
1714 goto complete;
1717 /* Opens the firmware patch file based on the firmware version read
1718 * from the controller. If it fails to open the matching firmware
1719 * patch file, it tries to open the default firmware patch file.
1720 * If no patch file is found, allow the device to operate without
1721 * a patch.
1723 fw = btusb_setup_intel_get_fw(hdev, &ver);
1724 if (!fw)
1725 goto complete;
1726 fw_ptr = fw->data;
1728 /* Enable the manufacturer mode of the controller.
1729 * Only while this mode is enabled, the driver can download the
1730 * firmware patch data and configuration parameters.
1732 err = btintel_enter_mfg(hdev);
1733 if (err) {
1734 release_firmware(fw);
1735 return err;
1738 disable_patch = 1;
1740 /* The firmware data file consists of list of Intel specific HCI
1741 * commands and its expected events. The first byte indicates the
1742 * type of the message, either HCI command or HCI event.
1744 * It reads the command and its expected event from the firmware file,
1745 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1746 * the returned event is compared with the event read from the firmware
1747 * file and it will continue until all the messages are downloaded to
1748 * the controller.
1750 * Once the firmware patching is completed successfully,
1751 * the manufacturer mode is disabled with reset and activating the
1752 * downloaded patch.
1754 * If the firmware patching fails, the manufacturer mode is
1755 * disabled with reset and deactivating the patch.
1757 * If the default patch file is used, no reset is done when disabling
1758 * the manufacturer.
1760 while (fw->size > fw_ptr - fw->data) {
1761 int ret;
1763 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1764 &disable_patch);
1765 if (ret < 0)
1766 goto exit_mfg_deactivate;
1769 release_firmware(fw);
1771 if (disable_patch)
1772 goto exit_mfg_disable;
1774 /* Patching completed successfully and disable the manufacturer mode
1775 * with reset and activate the downloaded firmware patches.
1777 err = btintel_exit_mfg(hdev, true, true);
1778 if (err)
1779 return err;
1781 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1782 hdev->name);
1784 goto complete;
1786 exit_mfg_disable:
1787 /* Disable the manufacturer mode without reset */
1788 err = btintel_exit_mfg(hdev, false, false);
1789 if (err)
1790 return err;
1792 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
1794 goto complete;
1796 exit_mfg_deactivate:
1797 release_firmware(fw);
1799 /* Patching failed. Disable the manufacturer mode with reset and
1800 * deactivate the downloaded firmware patches.
1802 err = btintel_exit_mfg(hdev, true, false);
1803 if (err)
1804 return err;
1806 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1807 hdev->name);
1809 complete:
1810 /* Set the event mask for Intel specific vendor events. This enables
1811 * a few extra events that are useful during general operation.
1813 btintel_set_event_mask_mfg(hdev, false);
1815 btintel_check_bdaddr(hdev);
1816 return 0;
1819 static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1821 struct sk_buff *skb;
1822 struct hci_event_hdr *hdr;
1823 struct hci_ev_cmd_complete *evt;
1825 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1826 if (!skb)
1827 return -ENOMEM;
1829 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1830 hdr->evt = HCI_EV_CMD_COMPLETE;
1831 hdr->plen = sizeof(*evt) + 1;
1833 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1834 evt->ncmd = 0x01;
1835 evt->opcode = cpu_to_le16(opcode);
1837 *skb_put(skb, 1) = 0x00;
1839 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
1841 return hci_recv_frame(hdev, skb);
1844 static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1845 int count)
1847 /* When the device is in bootloader mode, then it can send
1848 * events via the bulk endpoint. These events are treated the
1849 * same way as the ones received from the interrupt endpoint.
1851 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1852 return btusb_recv_intr(data, buffer, count);
1854 return btusb_recv_bulk(data, buffer, count);
1857 static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1858 unsigned int len)
1860 const struct intel_bootup *evt = ptr;
1862 if (len != sizeof(*evt))
1863 return;
1865 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1866 smp_mb__after_atomic();
1867 wake_up_bit(&data->flags, BTUSB_BOOTING);
1871 static void btusb_intel_secure_send_result(struct btusb_data *data,
1872 const void *ptr, unsigned int len)
1874 const struct intel_secure_send_result *evt = ptr;
1876 if (len != sizeof(*evt))
1877 return;
1879 if (evt->result)
1880 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1882 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1883 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1884 smp_mb__after_atomic();
1885 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1889 static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1891 struct btusb_data *data = hci_get_drvdata(hdev);
1893 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1894 struct hci_event_hdr *hdr = (void *)skb->data;
1896 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1897 hdr->plen > 0) {
1898 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1899 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
1901 switch (skb->data[2]) {
1902 case 0x02:
1903 /* When switching to the operational firmware
1904 * the device sends a vendor specific event
1905 * indicating that the bootup completed.
1907 btusb_intel_bootup(data, ptr, len);
1908 break;
1909 case 0x06:
1910 /* When the firmware loading completes the
1911 * device sends out a vendor specific event
1912 * indicating the result of the firmware
1913 * loading.
1915 btusb_intel_secure_send_result(data, ptr, len);
1916 break;
1921 return hci_recv_frame(hdev, skb);
1924 static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1926 struct btusb_data *data = hci_get_drvdata(hdev);
1927 struct urb *urb;
1929 BT_DBG("%s", hdev->name);
1931 switch (hci_skb_pkt_type(skb)) {
1932 case HCI_COMMAND_PKT:
1933 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1934 struct hci_command_hdr *cmd = (void *)skb->data;
1935 __u16 opcode = le16_to_cpu(cmd->opcode);
1937 /* When in bootloader mode and the command 0xfc09
1938 * is received, it needs to be send down the
1939 * bulk endpoint. So allocate a bulk URB instead.
1941 if (opcode == 0xfc09)
1942 urb = alloc_bulk_urb(hdev, skb);
1943 else
1944 urb = alloc_ctrl_urb(hdev, skb);
1946 /* When the 0xfc01 command is issued to boot into
1947 * the operational firmware, it will actually not
1948 * send a command complete event. To keep the flow
1949 * control working inject that event here.
1951 if (opcode == 0xfc01)
1952 inject_cmd_complete(hdev, opcode);
1953 } else {
1954 urb = alloc_ctrl_urb(hdev, skb);
1956 if (IS_ERR(urb))
1957 return PTR_ERR(urb);
1959 hdev->stat.cmd_tx++;
1960 return submit_or_queue_tx_urb(hdev, urb);
1962 case HCI_ACLDATA_PKT:
1963 urb = alloc_bulk_urb(hdev, skb);
1964 if (IS_ERR(urb))
1965 return PTR_ERR(urb);
1967 hdev->stat.acl_tx++;
1968 return submit_or_queue_tx_urb(hdev, urb);
1970 case HCI_SCODATA_PKT:
1971 if (hci_conn_num(hdev, SCO_LINK) < 1)
1972 return -ENODEV;
1974 urb = alloc_isoc_urb(hdev, skb);
1975 if (IS_ERR(urb))
1976 return PTR_ERR(urb);
1978 hdev->stat.sco_tx++;
1979 return submit_tx_urb(hdev, urb);
1982 return -EILSEQ;
1985 static int btusb_setup_intel_new(struct hci_dev *hdev)
1987 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1988 0x00, 0x08, 0x04, 0x00 };
1989 struct btusb_data *data = hci_get_drvdata(hdev);
1990 struct sk_buff *skb;
1991 struct intel_version ver;
1992 struct intel_boot_params *params;
1993 const struct firmware *fw;
1994 const u8 *fw_ptr;
1995 u32 frag_len;
1996 char fwname[64];
1997 ktime_t calltime, delta, rettime;
1998 unsigned long long duration;
1999 int err;
2001 BT_DBG("%s", hdev->name);
2003 calltime = ktime_get();
2005 /* Read the Intel version information to determine if the device
2006 * is in bootloader mode or if it already has operational firmware
2007 * loaded.
2009 err = btintel_read_version(hdev, &ver);
2010 if (err)
2011 return err;
2013 /* The hardware platform number has a fixed value of 0x37 and
2014 * for now only accept this single value.
2016 if (ver.hw_platform != 0x37) {
2017 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2018 hdev->name, ver.hw_platform);
2019 return -EINVAL;
2022 /* At the moment the iBT 3.0 hardware variants 0x0b (LnP/SfP)
2023 * and 0x0c (WsP) are supported by this firmware loading method.
2025 * This check has been put in place to ensure correct forward
2026 * compatibility options when newer hardware variants come along.
2028 if (ver.hw_variant != 0x0b && ver.hw_variant != 0x0c) {
2029 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2030 hdev->name, ver.hw_variant);
2031 return -EINVAL;
2034 btintel_version_info(hdev, &ver);
2036 /* The firmware variant determines if the device is in bootloader
2037 * mode or is running operational firmware. The value 0x06 identifies
2038 * the bootloader and the value 0x23 identifies the operational
2039 * firmware.
2041 * When the operational firmware is already present, then only
2042 * the check for valid Bluetooth device address is needed. This
2043 * determines if the device will be added as configured or
2044 * unconfigured controller.
2046 * It is not possible to use the Secure Boot Parameters in this
2047 * case since that command is only available in bootloader mode.
2049 if (ver.fw_variant == 0x23) {
2050 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2051 btintel_check_bdaddr(hdev);
2052 return 0;
2055 /* If the device is not in bootloader mode, then the only possible
2056 * choice is to return an error and abort the device initialization.
2058 if (ver.fw_variant != 0x06) {
2059 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2060 hdev->name, ver.fw_variant);
2061 return -ENODEV;
2064 /* Read the secure boot parameters to identify the operating
2065 * details of the bootloader.
2067 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2068 if (IS_ERR(skb)) {
2069 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2070 hdev->name, PTR_ERR(skb));
2071 return PTR_ERR(skb);
2074 if (skb->len != sizeof(*params)) {
2075 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2076 kfree_skb(skb);
2077 return -EILSEQ;
2080 params = (struct intel_boot_params *)skb->data;
2082 BT_INFO("%s: Device revision is %u", hdev->name,
2083 le16_to_cpu(params->dev_revid));
2085 BT_INFO("%s: Secure boot is %s", hdev->name,
2086 params->secure_boot ? "enabled" : "disabled");
2088 BT_INFO("%s: OTP lock is %s", hdev->name,
2089 params->otp_lock ? "enabled" : "disabled");
2091 BT_INFO("%s: API lock is %s", hdev->name,
2092 params->api_lock ? "enabled" : "disabled");
2094 BT_INFO("%s: Debug lock is %s", hdev->name,
2095 params->debug_lock ? "enabled" : "disabled");
2097 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2098 params->min_fw_build_nn, params->min_fw_build_cw,
2099 2000 + params->min_fw_build_yy);
2101 /* It is required that every single firmware fragment is acknowledged
2102 * with a command complete event. If the boot parameters indicate
2103 * that this bootloader does not send them, then abort the setup.
2105 if (params->limited_cce != 0x00) {
2106 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2107 hdev->name, params->limited_cce);
2108 kfree_skb(skb);
2109 return -EINVAL;
2112 /* If the OTP has no valid Bluetooth device address, then there will
2113 * also be no valid address for the operational firmware.
2115 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2116 BT_INFO("%s: No device address configured", hdev->name);
2117 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2120 /* With this Intel bootloader only the hardware variant and device
2121 * revision information are used to select the right firmware.
2123 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2125 * Currently the supported hardware variants are:
2126 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2127 * 12 (0x0c) for iBT3.5 (WsP)
2129 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi",
2130 le16_to_cpu(ver.hw_variant),
2131 le16_to_cpu(params->dev_revid));
2133 err = request_firmware(&fw, fwname, &hdev->dev);
2134 if (err < 0) {
2135 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2136 hdev->name, err);
2137 kfree_skb(skb);
2138 return err;
2141 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2143 /* Save the DDC file name for later use to apply once the firmware
2144 * downloading is done.
2146 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc",
2147 le16_to_cpu(ver.hw_variant),
2148 le16_to_cpu(params->dev_revid));
2150 kfree_skb(skb);
2152 if (fw->size < 644) {
2153 BT_ERR("%s: Invalid size of firmware file (%zu)",
2154 hdev->name, fw->size);
2155 err = -EBADF;
2156 goto done;
2159 set_bit(BTUSB_DOWNLOADING, &data->flags);
2161 /* Start the firmware download transaction with the Init fragment
2162 * represented by the 128 bytes of CSS header.
2164 err = btintel_secure_send(hdev, 0x00, 128, fw->data);
2165 if (err < 0) {
2166 BT_ERR("%s: Failed to send firmware header (%d)",
2167 hdev->name, err);
2168 goto done;
2171 /* Send the 256 bytes of public key information from the firmware
2172 * as the PKey fragment.
2174 err = btintel_secure_send(hdev, 0x03, 256, fw->data + 128);
2175 if (err < 0) {
2176 BT_ERR("%s: Failed to send firmware public key (%d)",
2177 hdev->name, err);
2178 goto done;
2181 /* Send the 256 bytes of signature information from the firmware
2182 * as the Sign fragment.
2184 err = btintel_secure_send(hdev, 0x02, 256, fw->data + 388);
2185 if (err < 0) {
2186 BT_ERR("%s: Failed to send firmware signature (%d)",
2187 hdev->name, err);
2188 goto done;
2191 fw_ptr = fw->data + 644;
2192 frag_len = 0;
2194 while (fw_ptr - fw->data < fw->size) {
2195 struct hci_command_hdr *cmd = (void *)(fw_ptr + frag_len);
2197 frag_len += sizeof(*cmd) + cmd->plen;
2199 /* The parameter length of the secure send command requires
2200 * a 4 byte alignment. It happens so that the firmware file
2201 * contains proper Intel_NOP commands to align the fragments
2202 * as needed.
2204 * Send set of commands with 4 byte alignment from the
2205 * firmware data buffer as a single Data fragement.
2207 if (!(frag_len % 4)) {
2208 err = btintel_secure_send(hdev, 0x01, frag_len, fw_ptr);
2209 if (err < 0) {
2210 BT_ERR("%s: Failed to send firmware data (%d)",
2211 hdev->name, err);
2212 goto done;
2215 fw_ptr += frag_len;
2216 frag_len = 0;
2220 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2222 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2224 /* Before switching the device into operational mode and with that
2225 * booting the loaded firmware, wait for the bootloader notification
2226 * that all fragments have been successfully received.
2228 * When the event processing receives the notification, then the
2229 * BTUSB_DOWNLOADING flag will be cleared.
2231 * The firmware loading should not take longer than 5 seconds
2232 * and thus just timeout if that happens and fail the setup
2233 * of this device.
2235 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2236 TASK_INTERRUPTIBLE,
2237 msecs_to_jiffies(5000));
2238 if (err == -EINTR) {
2239 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2240 goto done;
2243 if (err) {
2244 BT_ERR("%s: Firmware loading timeout", hdev->name);
2245 err = -ETIMEDOUT;
2246 goto done;
2249 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2250 BT_ERR("%s: Firmware loading failed", hdev->name);
2251 err = -ENOEXEC;
2252 goto done;
2255 rettime = ktime_get();
2256 delta = ktime_sub(rettime, calltime);
2257 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2259 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2261 done:
2262 release_firmware(fw);
2264 if (err < 0)
2265 return err;
2267 calltime = ktime_get();
2269 set_bit(BTUSB_BOOTING, &data->flags);
2271 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2272 HCI_INIT_TIMEOUT);
2273 if (IS_ERR(skb))
2274 return PTR_ERR(skb);
2276 kfree_skb(skb);
2278 /* The bootloader will not indicate when the device is ready. This
2279 * is done by the operational firmware sending bootup notification.
2281 * Booting into operational firmware should not take longer than
2282 * 1 second. However if that happens, then just fail the setup
2283 * since something went wrong.
2285 BT_INFO("%s: Waiting for device to boot", hdev->name);
2287 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2288 TASK_INTERRUPTIBLE,
2289 msecs_to_jiffies(1000));
2291 if (err == -EINTR) {
2292 BT_ERR("%s: Device boot interrupted", hdev->name);
2293 return -EINTR;
2296 if (err) {
2297 BT_ERR("%s: Device boot timeout", hdev->name);
2298 return -ETIMEDOUT;
2301 rettime = ktime_get();
2302 delta = ktime_sub(rettime, calltime);
2303 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2305 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2307 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2309 /* Once the device is running in operational mode, it needs to apply
2310 * the device configuration (DDC) parameters.
2312 * The device can work without DDC parameters, so even if it fails
2313 * to load the file, no need to fail the setup.
2315 btintel_load_ddc_config(hdev, fwname);
2317 /* Set the event mask for Intel specific vendor events. This enables
2318 * a few extra events that are useful during general operation. It
2319 * does not enable any debugging related events.
2321 * The device will function correctly without these events enabled
2322 * and thus no need to fail the setup.
2324 btintel_set_event_mask(hdev, false);
2326 return 0;
2329 static int btusb_shutdown_intel(struct hci_dev *hdev)
2331 struct sk_buff *skb;
2332 long ret;
2334 /* Some platforms have an issue with BT LED when the interface is
2335 * down or BT radio is turned off, which takes 5 seconds to BT LED
2336 * goes off. This command turns off the BT LED immediately.
2338 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2339 if (IS_ERR(skb)) {
2340 ret = PTR_ERR(skb);
2341 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2342 hdev->name, ret);
2343 return ret;
2345 kfree_skb(skb);
2347 return 0;
2350 static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2351 const bdaddr_t *bdaddr)
2353 struct sk_buff *skb;
2354 u8 buf[8];
2355 long ret;
2357 buf[0] = 0xfe;
2358 buf[1] = sizeof(bdaddr_t);
2359 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2361 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2362 if (IS_ERR(skb)) {
2363 ret = PTR_ERR(skb);
2364 BT_ERR("%s: changing Marvell device address failed (%ld)",
2365 hdev->name, ret);
2366 return ret;
2368 kfree_skb(skb);
2370 return 0;
2373 static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2374 const bdaddr_t *bdaddr)
2376 struct sk_buff *skb;
2377 u8 buf[10];
2378 long ret;
2380 buf[0] = 0x01;
2381 buf[1] = 0x01;
2382 buf[2] = 0x00;
2383 buf[3] = sizeof(bdaddr_t);
2384 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2386 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2387 if (IS_ERR(skb)) {
2388 ret = PTR_ERR(skb);
2389 BT_ERR("%s: Change address command failed (%ld)",
2390 hdev->name, ret);
2391 return ret;
2393 kfree_skb(skb);
2395 return 0;
2398 #define QCA_DFU_PACKET_LEN 4096
2400 #define QCA_GET_TARGET_VERSION 0x09
2401 #define QCA_CHECK_STATUS 0x05
2402 #define QCA_DFU_DOWNLOAD 0x01
2404 #define QCA_SYSCFG_UPDATED 0x40
2405 #define QCA_PATCH_UPDATED 0x80
2406 #define QCA_DFU_TIMEOUT 3000
2408 struct qca_version {
2409 __le32 rom_version;
2410 __le32 patch_version;
2411 __le32 ram_version;
2412 __le32 ref_clock;
2413 __u8 reserved[4];
2414 } __packed;
2416 struct qca_rampatch_version {
2417 __le16 rom_version;
2418 __le16 patch_version;
2419 } __packed;
2421 struct qca_device_info {
2422 u32 rom_version;
2423 u8 rampatch_hdr; /* length of header in rampatch */
2424 u8 nvm_hdr; /* length of header in NVM */
2425 u8 ver_offset; /* offset of version structure in rampatch */
2428 static const struct qca_device_info qca_devices_table[] = {
2429 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2430 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
2431 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
2432 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2433 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2434 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2437 static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2438 void *data, u16 size)
2440 struct btusb_data *btdata = hci_get_drvdata(hdev);
2441 struct usb_device *udev = btdata->udev;
2442 int pipe, err;
2443 u8 *buf;
2445 buf = kmalloc(size, GFP_KERNEL);
2446 if (!buf)
2447 return -ENOMEM;
2449 /* Found some of USB hosts have IOT issues with ours so that we should
2450 * not wait until HCI layer is ready.
2452 pipe = usb_rcvctrlpipe(udev, 0);
2453 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2454 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2455 if (err < 0) {
2456 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2457 goto done;
2460 memcpy(data, buf, size);
2462 done:
2463 kfree(buf);
2465 return err;
2468 static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2469 const struct firmware *firmware,
2470 size_t hdr_size)
2472 struct btusb_data *btdata = hci_get_drvdata(hdev);
2473 struct usb_device *udev = btdata->udev;
2474 size_t count, size, sent = 0;
2475 int pipe, len, err;
2476 u8 *buf;
2478 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2479 if (!buf)
2480 return -ENOMEM;
2482 count = firmware->size;
2484 size = min_t(size_t, count, hdr_size);
2485 memcpy(buf, firmware->data, size);
2487 /* USB patches should go down to controller through USB path
2488 * because binary format fits to go down through USB channel.
2489 * USB control path is for patching headers and USB bulk is for
2490 * patch body.
2492 pipe = usb_sndctrlpipe(udev, 0);
2493 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2494 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2495 if (err < 0) {
2496 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2497 goto done;
2500 sent += size;
2501 count -= size;
2503 while (count) {
2504 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2506 memcpy(buf, firmware->data + sent, size);
2508 pipe = usb_sndbulkpipe(udev, 0x02);
2509 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2510 QCA_DFU_TIMEOUT);
2511 if (err < 0) {
2512 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2513 hdev->name, sent, firmware->size, err);
2514 break;
2517 if (size != len) {
2518 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2519 err = -EILSEQ;
2520 break;
2523 sent += size;
2524 count -= size;
2527 done:
2528 kfree(buf);
2529 return err;
2532 static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2533 struct qca_version *ver,
2534 const struct qca_device_info *info)
2536 struct qca_rampatch_version *rver;
2537 const struct firmware *fw;
2538 u32 ver_rom, ver_patch;
2539 u16 rver_rom, rver_patch;
2540 char fwname[64];
2541 int err;
2543 ver_rom = le32_to_cpu(ver->rom_version);
2544 ver_patch = le32_to_cpu(ver->patch_version);
2546 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
2548 err = request_firmware(&fw, fwname, &hdev->dev);
2549 if (err) {
2550 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2551 hdev->name, fwname, err);
2552 return err;
2555 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
2557 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2558 rver_rom = le16_to_cpu(rver->rom_version);
2559 rver_patch = le16_to_cpu(rver->patch_version);
2561 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2562 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2563 ver_patch);
2565 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
2566 BT_ERR("%s: rampatch file version did not match with firmware",
2567 hdev->name);
2568 err = -EINVAL;
2569 goto done;
2572 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2574 done:
2575 release_firmware(fw);
2577 return err;
2580 static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2581 struct qca_version *ver,
2582 const struct qca_device_info *info)
2584 const struct firmware *fw;
2585 char fwname[64];
2586 int err;
2588 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2589 le32_to_cpu(ver->rom_version));
2591 err = request_firmware(&fw, fwname, &hdev->dev);
2592 if (err) {
2593 BT_ERR("%s: failed to request NVM file: %s (%d)",
2594 hdev->name, fwname, err);
2595 return err;
2598 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2600 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2602 release_firmware(fw);
2604 return err;
2607 static int btusb_setup_qca(struct hci_dev *hdev)
2609 const struct qca_device_info *info = NULL;
2610 struct qca_version ver;
2611 u32 ver_rom;
2612 u8 status;
2613 int i, err;
2615 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
2616 sizeof(ver));
2617 if (err < 0)
2618 return err;
2620 ver_rom = le32_to_cpu(ver.rom_version);
2621 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
2622 if (ver_rom == qca_devices_table[i].rom_version)
2623 info = &qca_devices_table[i];
2625 if (!info) {
2626 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
2627 ver_rom);
2628 return -ENODEV;
2631 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2632 sizeof(status));
2633 if (err < 0)
2634 return err;
2636 if (!(status & QCA_PATCH_UPDATED)) {
2637 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2638 if (err < 0)
2639 return err;
2642 if (!(status & QCA_SYSCFG_UPDATED)) {
2643 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2644 if (err < 0)
2645 return err;
2648 return 0;
2651 #ifdef CONFIG_BT_HCIBTUSB_BCM
2652 static inline int __set_diag_interface(struct hci_dev *hdev)
2654 struct btusb_data *data = hci_get_drvdata(hdev);
2655 struct usb_interface *intf = data->diag;
2656 int i;
2658 if (!data->diag)
2659 return -ENODEV;
2661 data->diag_tx_ep = NULL;
2662 data->diag_rx_ep = NULL;
2664 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2665 struct usb_endpoint_descriptor *ep_desc;
2667 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2669 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2670 data->diag_tx_ep = ep_desc;
2671 continue;
2674 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2675 data->diag_rx_ep = ep_desc;
2676 continue;
2680 if (!data->diag_tx_ep || !data->diag_rx_ep) {
2681 BT_ERR("%s invalid diagnostic descriptors", hdev->name);
2682 return -ENODEV;
2685 return 0;
2688 static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2690 struct btusb_data *data = hci_get_drvdata(hdev);
2691 struct sk_buff *skb;
2692 struct urb *urb;
2693 unsigned int pipe;
2695 if (!data->diag_tx_ep)
2696 return ERR_PTR(-ENODEV);
2698 urb = usb_alloc_urb(0, GFP_KERNEL);
2699 if (!urb)
2700 return ERR_PTR(-ENOMEM);
2702 skb = bt_skb_alloc(2, GFP_KERNEL);
2703 if (!skb) {
2704 usb_free_urb(urb);
2705 return ERR_PTR(-ENOMEM);
2708 *skb_put(skb, 1) = 0xf0;
2709 *skb_put(skb, 1) = enable;
2711 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2713 usb_fill_bulk_urb(urb, data->udev, pipe,
2714 skb->data, skb->len, btusb_tx_complete, skb);
2716 skb->dev = (void *)hdev;
2718 return urb;
2721 static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2723 struct btusb_data *data = hci_get_drvdata(hdev);
2724 struct urb *urb;
2726 if (!data->diag)
2727 return -ENODEV;
2729 if (!test_bit(HCI_RUNNING, &hdev->flags))
2730 return -ENETDOWN;
2732 urb = alloc_diag_urb(hdev, enable);
2733 if (IS_ERR(urb))
2734 return PTR_ERR(urb);
2736 return submit_or_queue_tx_urb(hdev, urb);
2738 #endif
2740 static int btusb_probe(struct usb_interface *intf,
2741 const struct usb_device_id *id)
2743 struct usb_endpoint_descriptor *ep_desc;
2744 struct btusb_data *data;
2745 struct hci_dev *hdev;
2746 unsigned ifnum_base;
2747 int i, err;
2749 BT_DBG("intf %p id %p", intf, id);
2751 /* interface numbers are hardcoded in the spec */
2752 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
2753 if (!(id->driver_info & BTUSB_IFNUM_2))
2754 return -ENODEV;
2755 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
2756 return -ENODEV;
2759 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
2761 if (!id->driver_info) {
2762 const struct usb_device_id *match;
2764 match = usb_match_id(intf, blacklist_table);
2765 if (match)
2766 id = match;
2769 if (id->driver_info == BTUSB_IGNORE)
2770 return -ENODEV;
2772 if (id->driver_info & BTUSB_ATH3012) {
2773 struct usb_device *udev = interface_to_usbdev(intf);
2775 /* Old firmware would otherwise let ath3k driver load
2776 * patch and sysconfig files */
2777 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2778 return -ENODEV;
2781 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
2782 if (!data)
2783 return -ENOMEM;
2785 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2786 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2788 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2789 data->intr_ep = ep_desc;
2790 continue;
2793 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2794 data->bulk_tx_ep = ep_desc;
2795 continue;
2798 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2799 data->bulk_rx_ep = ep_desc;
2800 continue;
2804 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
2805 return -ENODEV;
2807 if (id->driver_info & BTUSB_AMP) {
2808 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2809 data->cmdreq = 0x2b;
2810 } else {
2811 data->cmdreq_type = USB_TYPE_CLASS;
2812 data->cmdreq = 0x00;
2815 data->udev = interface_to_usbdev(intf);
2816 data->intf = intf;
2818 INIT_WORK(&data->work, btusb_work);
2819 INIT_WORK(&data->waker, btusb_waker);
2820 init_usb_anchor(&data->deferred);
2821 init_usb_anchor(&data->tx_anchor);
2822 spin_lock_init(&data->txlock);
2824 init_usb_anchor(&data->intr_anchor);
2825 init_usb_anchor(&data->bulk_anchor);
2826 init_usb_anchor(&data->isoc_anchor);
2827 init_usb_anchor(&data->diag_anchor);
2828 spin_lock_init(&data->rxlock);
2830 if (id->driver_info & BTUSB_INTEL_NEW) {
2831 data->recv_event = btusb_recv_event_intel;
2832 data->recv_bulk = btusb_recv_bulk_intel;
2833 set_bit(BTUSB_BOOTLOADER, &data->flags);
2834 } else {
2835 data->recv_event = hci_recv_frame;
2836 data->recv_bulk = btusb_recv_bulk;
2839 hdev = hci_alloc_dev();
2840 if (!hdev)
2841 return -ENOMEM;
2843 hdev->bus = HCI_USB;
2844 hci_set_drvdata(hdev, data);
2846 if (id->driver_info & BTUSB_AMP)
2847 hdev->dev_type = HCI_AMP;
2848 else
2849 hdev->dev_type = HCI_PRIMARY;
2851 data->hdev = hdev;
2853 SET_HCIDEV_DEV(hdev, &intf->dev);
2855 hdev->open = btusb_open;
2856 hdev->close = btusb_close;
2857 hdev->flush = btusb_flush;
2858 hdev->send = btusb_send_frame;
2859 hdev->notify = btusb_notify;
2861 if (id->driver_info & BTUSB_CW6622)
2862 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2864 if (id->driver_info & BTUSB_BCM2045)
2865 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2867 if (id->driver_info & BTUSB_BCM92035)
2868 hdev->setup = btusb_setup_bcm92035;
2870 #ifdef CONFIG_BT_HCIBTUSB_BCM
2871 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
2872 hdev->manufacturer = 15;
2873 hdev->setup = btbcm_setup_patchram;
2874 hdev->set_diag = btusb_bcm_set_diag;
2875 hdev->set_bdaddr = btbcm_set_bdaddr;
2877 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2878 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
2881 if (id->driver_info & BTUSB_BCM_APPLE) {
2882 hdev->manufacturer = 15;
2883 hdev->setup = btbcm_setup_apple;
2884 hdev->set_diag = btusb_bcm_set_diag;
2886 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2887 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
2889 #endif
2891 if (id->driver_info & BTUSB_INTEL) {
2892 hdev->manufacturer = 2;
2893 hdev->setup = btusb_setup_intel;
2894 hdev->shutdown = btusb_shutdown_intel;
2895 hdev->set_diag = btintel_set_diag_mfg;
2896 hdev->set_bdaddr = btintel_set_bdaddr;
2897 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2898 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
2899 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
2902 if (id->driver_info & BTUSB_INTEL_NEW) {
2903 hdev->manufacturer = 2;
2904 hdev->send = btusb_send_frame_intel;
2905 hdev->setup = btusb_setup_intel_new;
2906 hdev->hw_error = btintel_hw_error;
2907 hdev->set_diag = btintel_set_diag;
2908 hdev->set_bdaddr = btintel_set_bdaddr;
2909 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2910 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
2913 if (id->driver_info & BTUSB_MARVELL)
2914 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2916 if (id->driver_info & BTUSB_SWAVE) {
2917 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
2918 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
2921 if (id->driver_info & BTUSB_INTEL_BOOT) {
2922 hdev->manufacturer = 2;
2923 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2926 if (id->driver_info & BTUSB_ATH3012) {
2927 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2928 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
2929 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2932 if (id->driver_info & BTUSB_QCA_ROME) {
2933 data->setup_on_usb = btusb_setup_qca;
2934 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2936 /* QCA Rome devices lose their updated firmware over suspend,
2937 * but the USB hub doesn't notice any status change.
2938 * explicitly request a device reset on resume.
2940 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
2943 #ifdef CONFIG_BT_HCIBTUSB_RTL
2944 if (id->driver_info & BTUSB_REALTEK) {
2945 hdev->setup = btrtl_setup_realtek;
2947 /* Realtek devices lose their updated firmware over suspend,
2948 * but the USB hub doesn't notice any status change.
2949 * Explicitly request a device reset on resume.
2951 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
2953 #endif
2955 if (id->driver_info & BTUSB_AMP) {
2956 /* AMP controllers do not support SCO packets */
2957 data->isoc = NULL;
2958 } else {
2959 /* Interface orders are hardcoded in the specification */
2960 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
2963 if (!reset)
2964 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2966 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2967 if (!disable_scofix)
2968 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2971 if (id->driver_info & BTUSB_BROKEN_ISOC)
2972 data->isoc = NULL;
2974 if (id->driver_info & BTUSB_DIGIANSWER) {
2975 data->cmdreq_type = USB_TYPE_VENDOR;
2976 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2979 if (id->driver_info & BTUSB_CSR) {
2980 struct usb_device *udev = data->udev;
2981 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
2983 /* Old firmware would otherwise execute USB reset */
2984 if (bcdDevice < 0x117)
2985 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2987 /* Fake CSR devices with broken commands */
2988 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
2989 hdev->setup = btusb_setup_csr;
2991 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
2994 if (id->driver_info & BTUSB_SNIFFER) {
2995 struct usb_device *udev = data->udev;
2997 /* New sniffer firmware has crippled HCI interface */
2998 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2999 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
3002 if (id->driver_info & BTUSB_INTEL_BOOT) {
3003 /* A bug in the bootloader causes that interrupt interface is
3004 * only enabled after receiving SetInterface(0, AltSetting=0).
3006 err = usb_set_interface(data->udev, 0, 0);
3007 if (err < 0) {
3008 BT_ERR("failed to set interface 0, alt 0 %d", err);
3009 hci_free_dev(hdev);
3010 return err;
3014 if (data->isoc) {
3015 err = usb_driver_claim_interface(&btusb_driver,
3016 data->isoc, data);
3017 if (err < 0) {
3018 hci_free_dev(hdev);
3019 return err;
3023 #ifdef CONFIG_BT_HCIBTUSB_BCM
3024 if (data->diag) {
3025 if (!usb_driver_claim_interface(&btusb_driver,
3026 data->diag, data))
3027 __set_diag_interface(hdev);
3028 else
3029 data->diag = NULL;
3031 #endif
3033 err = hci_register_dev(hdev);
3034 if (err < 0) {
3035 hci_free_dev(hdev);
3036 return err;
3039 usb_set_intfdata(intf, data);
3041 return 0;
3044 static void btusb_disconnect(struct usb_interface *intf)
3046 struct btusb_data *data = usb_get_intfdata(intf);
3047 struct hci_dev *hdev;
3049 BT_DBG("intf %p", intf);
3051 if (!data)
3052 return;
3054 hdev = data->hdev;
3055 usb_set_intfdata(data->intf, NULL);
3057 if (data->isoc)
3058 usb_set_intfdata(data->isoc, NULL);
3060 if (data->diag)
3061 usb_set_intfdata(data->diag, NULL);
3063 hci_unregister_dev(hdev);
3065 if (intf == data->intf) {
3066 if (data->isoc)
3067 usb_driver_release_interface(&btusb_driver, data->isoc);
3068 if (data->diag)
3069 usb_driver_release_interface(&btusb_driver, data->diag);
3070 } else if (intf == data->isoc) {
3071 if (data->diag)
3072 usb_driver_release_interface(&btusb_driver, data->diag);
3073 usb_driver_release_interface(&btusb_driver, data->intf);
3074 } else if (intf == data->diag) {
3075 usb_driver_release_interface(&btusb_driver, data->intf);
3076 if (data->isoc)
3077 usb_driver_release_interface(&btusb_driver, data->isoc);
3080 hci_free_dev(hdev);
3083 #ifdef CONFIG_PM
3084 static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3086 struct btusb_data *data = usb_get_intfdata(intf);
3088 BT_DBG("intf %p", intf);
3090 if (data->suspend_count++)
3091 return 0;
3093 spin_lock_irq(&data->txlock);
3094 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
3095 set_bit(BTUSB_SUSPENDING, &data->flags);
3096 spin_unlock_irq(&data->txlock);
3097 } else {
3098 spin_unlock_irq(&data->txlock);
3099 data->suspend_count--;
3100 return -EBUSY;
3103 cancel_work_sync(&data->work);
3105 btusb_stop_traffic(data);
3106 usb_kill_anchored_urbs(&data->tx_anchor);
3108 return 0;
3111 static void play_deferred(struct btusb_data *data)
3113 struct urb *urb;
3114 int err;
3116 while ((urb = usb_get_from_anchor(&data->deferred))) {
3117 err = usb_submit_urb(urb, GFP_ATOMIC);
3118 if (err < 0)
3119 break;
3121 data->tx_in_flight++;
3123 usb_scuttle_anchored_urbs(&data->deferred);
3126 static int btusb_resume(struct usb_interface *intf)
3128 struct btusb_data *data = usb_get_intfdata(intf);
3129 struct hci_dev *hdev = data->hdev;
3130 int err = 0;
3132 BT_DBG("intf %p", intf);
3134 if (--data->suspend_count)
3135 return 0;
3137 if (!test_bit(HCI_RUNNING, &hdev->flags))
3138 goto done;
3140 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3141 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3142 if (err < 0) {
3143 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
3144 goto failed;
3148 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
3149 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3150 if (err < 0) {
3151 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
3152 goto failed;
3155 btusb_submit_bulk_urb(hdev, GFP_NOIO);
3158 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3159 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3160 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3161 else
3162 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3165 spin_lock_irq(&data->txlock);
3166 play_deferred(data);
3167 clear_bit(BTUSB_SUSPENDING, &data->flags);
3168 spin_unlock_irq(&data->txlock);
3169 schedule_work(&data->work);
3171 return 0;
3173 failed:
3174 usb_scuttle_anchored_urbs(&data->deferred);
3175 done:
3176 spin_lock_irq(&data->txlock);
3177 clear_bit(BTUSB_SUSPENDING, &data->flags);
3178 spin_unlock_irq(&data->txlock);
3180 return err;
3182 #endif
3184 static struct usb_driver btusb_driver = {
3185 .name = "btusb",
3186 .probe = btusb_probe,
3187 .disconnect = btusb_disconnect,
3188 #ifdef CONFIG_PM
3189 .suspend = btusb_suspend,
3190 .resume = btusb_resume,
3191 #endif
3192 .id_table = btusb_table,
3193 .supports_autosuspend = 1,
3194 .disable_hub_initiated_lpm = 1,
3197 module_usb_driver(btusb_driver);
3199 module_param(disable_scofix, bool, 0644);
3200 MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3202 module_param(force_scofix, bool, 0644);
3203 MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3205 module_param(reset, bool, 0644);
3206 MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3208 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3209 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3210 MODULE_VERSION(VERSION);
3211 MODULE_LICENSE("GPL");