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 <linux/of_device.h>
29 #include <linux/of_irq.h>
30 #include <linux/suspend.h>
31 #include <asm/unaligned.h>
33 #include <net/bluetooth/bluetooth.h>
34 #include <net/bluetooth/hci_core.h>
42 static bool disable_scofix
;
43 static bool force_scofix
;
44 static bool enable_autosuspend
= IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND
);
46 static bool reset
= true;
48 static struct usb_driver btusb_driver
;
50 #define BTUSB_IGNORE 0x01
51 #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
57 #define BTUSB_ATH3012 0x80
58 #define BTUSB_INTEL 0x100
59 #define BTUSB_INTEL_BOOT 0x200
60 #define BTUSB_BCM_PATCHRAM 0x400
61 #define BTUSB_MARVELL 0x800
62 #define BTUSB_SWAVE 0x1000
63 #define BTUSB_INTEL_NEW 0x2000
64 #define BTUSB_AMP 0x4000
65 #define BTUSB_QCA_ROME 0x8000
66 #define BTUSB_BCM_APPLE 0x10000
67 #define BTUSB_REALTEK 0x20000
68 #define BTUSB_BCM2045 0x40000
69 #define BTUSB_IFNUM_2 0x80000
70 #define BTUSB_CW6622 0x100000
72 static const struct usb_device_id btusb_table
[] = {
73 /* Generic Bluetooth USB device */
74 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
76 /* Generic Bluetooth AMP device */
77 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info
= BTUSB_AMP
},
79 /* Generic Bluetooth USB interface */
80 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
82 /* Apple-specific (Broadcom) devices */
83 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
84 .driver_info
= BTUSB_BCM_APPLE
| BTUSB_IFNUM_2
},
86 /* MediaTek MT76x0E */
87 { USB_DEVICE(0x0e8d, 0x763f) },
89 /* Broadcom SoftSailing reporting vendor specific */
90 { USB_DEVICE(0x0a5c, 0x21e1) },
92 /* Apple MacBookPro 7,1 */
93 { USB_DEVICE(0x05ac, 0x8213) },
96 { USB_DEVICE(0x05ac, 0x8215) },
98 /* Apple MacBookPro6,2 */
99 { USB_DEVICE(0x05ac, 0x8218) },
101 /* Apple MacBookAir3,1, MacBookAir3,2 */
102 { USB_DEVICE(0x05ac, 0x821b) },
104 /* Apple MacBookAir4,1 */
105 { USB_DEVICE(0x05ac, 0x821f) },
107 /* Apple MacBookPro8,2 */
108 { USB_DEVICE(0x05ac, 0x821a) },
110 /* Apple MacMini5,1 */
111 { USB_DEVICE(0x05ac, 0x8281) },
113 /* AVM BlueFRITZ! USB v2.0 */
114 { USB_DEVICE(0x057c, 0x3800), .driver_info
= BTUSB_SWAVE
},
116 /* Bluetooth Ultraport Module from IBM */
117 { USB_DEVICE(0x04bf, 0x030a) },
119 /* ALPS Modules with non-standard id */
120 { USB_DEVICE(0x044e, 0x3001) },
121 { USB_DEVICE(0x044e, 0x3002) },
123 /* Ericsson with non-standard id */
124 { USB_DEVICE(0x0bdb, 0x1002) },
126 /* Canyon CN-BTU1 with HID interfaces */
127 { USB_DEVICE(0x0c10, 0x0000) },
129 /* Broadcom BCM20702A0 */
130 { USB_DEVICE(0x413c, 0x8197) },
132 /* Broadcom BCM20702B0 (Dynex/Insignia) */
133 { USB_DEVICE(0x19ff, 0x0239), .driver_info
= BTUSB_BCM_PATCHRAM
},
135 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
136 { USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
137 .driver_info
= BTUSB_BCM_PATCHRAM
},
139 /* Broadcom BCM920703 (HTC Vive) */
140 { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
141 .driver_info
= BTUSB_BCM_PATCHRAM
},
143 /* Foxconn - Hon Hai */
144 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
145 .driver_info
= BTUSB_BCM_PATCHRAM
},
147 /* Lite-On Technology - Broadcom based */
148 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
149 .driver_info
= BTUSB_BCM_PATCHRAM
},
151 /* Broadcom devices with vendor specific id */
152 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
153 .driver_info
= BTUSB_BCM_PATCHRAM
},
155 /* ASUSTek Computer - Broadcom based */
156 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
157 .driver_info
= BTUSB_BCM_PATCHRAM
},
159 /* Belkin F8065bf - Broadcom based */
160 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
161 .driver_info
= BTUSB_BCM_PATCHRAM
},
163 /* IMC Networks - Broadcom based */
164 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
165 .driver_info
= BTUSB_BCM_PATCHRAM
},
167 /* Dell Computer - Broadcom based */
168 { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
169 .driver_info
= BTUSB_BCM_PATCHRAM
},
171 /* Toshiba Corp - Broadcom based */
172 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
173 .driver_info
= BTUSB_BCM_PATCHRAM
},
175 /* Intel Bluetooth USB Bootloader (RAM module) */
176 { USB_DEVICE(0x8087, 0x0a5a),
177 .driver_info
= BTUSB_INTEL_BOOT
| BTUSB_BROKEN_ISOC
},
179 { } /* Terminating entry */
182 MODULE_DEVICE_TABLE(usb
, btusb_table
);
184 static const struct usb_device_id blacklist_table
[] = {
185 /* CSR BlueCore devices */
186 { USB_DEVICE(0x0a12, 0x0001), .driver_info
= BTUSB_CSR
},
188 /* Broadcom BCM2033 without firmware */
189 { USB_DEVICE(0x0a5c, 0x2033), .driver_info
= BTUSB_IGNORE
},
191 /* Broadcom BCM2045 devices */
192 { USB_DEVICE(0x0a5c, 0x2045), .driver_info
= BTUSB_BCM2045
},
194 /* Atheros 3011 with sflash firmware */
195 { USB_DEVICE(0x0489, 0xe027), .driver_info
= BTUSB_IGNORE
},
196 { USB_DEVICE(0x0489, 0xe03d), .driver_info
= BTUSB_IGNORE
},
197 { USB_DEVICE(0x04f2, 0xaff1), .driver_info
= BTUSB_IGNORE
},
198 { USB_DEVICE(0x0930, 0x0215), .driver_info
= BTUSB_IGNORE
},
199 { USB_DEVICE(0x0cf3, 0x3002), .driver_info
= BTUSB_IGNORE
},
200 { USB_DEVICE(0x0cf3, 0xe019), .driver_info
= BTUSB_IGNORE
},
201 { USB_DEVICE(0x13d3, 0x3304), .driver_info
= BTUSB_IGNORE
},
203 /* Atheros AR9285 Malbec with sflash firmware */
204 { USB_DEVICE(0x03f0, 0x311d), .driver_info
= BTUSB_IGNORE
},
206 /* Atheros 3012 with sflash firmware */
207 { USB_DEVICE(0x0489, 0xe04d), .driver_info
= BTUSB_ATH3012
},
208 { USB_DEVICE(0x0489, 0xe04e), .driver_info
= BTUSB_ATH3012
},
209 { USB_DEVICE(0x0489, 0xe056), .driver_info
= BTUSB_ATH3012
},
210 { USB_DEVICE(0x0489, 0xe057), .driver_info
= BTUSB_ATH3012
},
211 { USB_DEVICE(0x0489, 0xe05f), .driver_info
= BTUSB_ATH3012
},
212 { USB_DEVICE(0x0489, 0xe076), .driver_info
= BTUSB_ATH3012
},
213 { USB_DEVICE(0x0489, 0xe078), .driver_info
= BTUSB_ATH3012
},
214 { USB_DEVICE(0x0489, 0xe095), .driver_info
= BTUSB_ATH3012
},
215 { USB_DEVICE(0x04c5, 0x1330), .driver_info
= BTUSB_ATH3012
},
216 { USB_DEVICE(0x04ca, 0x3004), .driver_info
= BTUSB_ATH3012
},
217 { USB_DEVICE(0x04ca, 0x3005), .driver_info
= BTUSB_ATH3012
},
218 { USB_DEVICE(0x04ca, 0x3006), .driver_info
= BTUSB_ATH3012
},
219 { USB_DEVICE(0x04ca, 0x3007), .driver_info
= BTUSB_ATH3012
},
220 { USB_DEVICE(0x04ca, 0x3008), .driver_info
= BTUSB_ATH3012
},
221 { USB_DEVICE(0x04ca, 0x300b), .driver_info
= BTUSB_ATH3012
},
222 { USB_DEVICE(0x04ca, 0x300d), .driver_info
= BTUSB_ATH3012
},
223 { USB_DEVICE(0x04ca, 0x300f), .driver_info
= BTUSB_ATH3012
},
224 { USB_DEVICE(0x04ca, 0x3010), .driver_info
= BTUSB_ATH3012
},
225 { USB_DEVICE(0x04ca, 0x3014), .driver_info
= BTUSB_ATH3012
},
226 { USB_DEVICE(0x04ca, 0x3018), .driver_info
= BTUSB_ATH3012
},
227 { USB_DEVICE(0x0930, 0x0219), .driver_info
= BTUSB_ATH3012
},
228 { USB_DEVICE(0x0930, 0x021c), .driver_info
= BTUSB_ATH3012
},
229 { USB_DEVICE(0x0930, 0x0220), .driver_info
= BTUSB_ATH3012
},
230 { USB_DEVICE(0x0930, 0x0227), .driver_info
= BTUSB_ATH3012
},
231 { USB_DEVICE(0x0b05, 0x17d0), .driver_info
= BTUSB_ATH3012
},
232 { USB_DEVICE(0x0cf3, 0x0036), .driver_info
= BTUSB_ATH3012
},
233 { USB_DEVICE(0x0cf3, 0x3004), .driver_info
= BTUSB_ATH3012
},
234 { USB_DEVICE(0x0cf3, 0x3008), .driver_info
= BTUSB_ATH3012
},
235 { USB_DEVICE(0x0cf3, 0x311d), .driver_info
= BTUSB_ATH3012
},
236 { USB_DEVICE(0x0cf3, 0x311e), .driver_info
= BTUSB_ATH3012
},
237 { USB_DEVICE(0x0cf3, 0x311f), .driver_info
= BTUSB_ATH3012
},
238 { USB_DEVICE(0x0cf3, 0x3121), .driver_info
= BTUSB_ATH3012
},
239 { USB_DEVICE(0x0cf3, 0x817a), .driver_info
= BTUSB_ATH3012
},
240 { USB_DEVICE(0x0cf3, 0x817b), .driver_info
= BTUSB_ATH3012
},
241 { USB_DEVICE(0x0cf3, 0xe003), .driver_info
= BTUSB_ATH3012
},
242 { USB_DEVICE(0x0cf3, 0xe004), .driver_info
= BTUSB_ATH3012
},
243 { USB_DEVICE(0x0cf3, 0xe005), .driver_info
= BTUSB_ATH3012
},
244 { USB_DEVICE(0x0cf3, 0xe006), .driver_info
= BTUSB_ATH3012
},
245 { USB_DEVICE(0x13d3, 0x3362), .driver_info
= BTUSB_ATH3012
},
246 { USB_DEVICE(0x13d3, 0x3375), .driver_info
= BTUSB_ATH3012
},
247 { USB_DEVICE(0x13d3, 0x3393), .driver_info
= BTUSB_ATH3012
},
248 { USB_DEVICE(0x13d3, 0x3395), .driver_info
= BTUSB_ATH3012
},
249 { USB_DEVICE(0x13d3, 0x3402), .driver_info
= BTUSB_ATH3012
},
250 { USB_DEVICE(0x13d3, 0x3408), .driver_info
= BTUSB_ATH3012
},
251 { USB_DEVICE(0x13d3, 0x3423), .driver_info
= BTUSB_ATH3012
},
252 { USB_DEVICE(0x13d3, 0x3432), .driver_info
= BTUSB_ATH3012
},
253 { USB_DEVICE(0x13d3, 0x3472), .driver_info
= BTUSB_ATH3012
},
254 { USB_DEVICE(0x13d3, 0x3474), .driver_info
= BTUSB_ATH3012
},
255 { USB_DEVICE(0x13d3, 0x3487), .driver_info
= BTUSB_ATH3012
},
256 { USB_DEVICE(0x13d3, 0x3490), .driver_info
= BTUSB_ATH3012
},
258 /* Atheros AR5BBU12 with sflash firmware */
259 { USB_DEVICE(0x0489, 0xe02c), .driver_info
= BTUSB_IGNORE
},
261 /* Atheros AR5BBU12 with sflash firmware */
262 { USB_DEVICE(0x0489, 0xe036), .driver_info
= BTUSB_ATH3012
},
263 { USB_DEVICE(0x0489, 0xe03c), .driver_info
= BTUSB_ATH3012
},
265 /* QCA ROME chipset */
266 { USB_DEVICE(0x0cf3, 0xe007), .driver_info
= BTUSB_QCA_ROME
},
267 { USB_DEVICE(0x0cf3, 0xe009), .driver_info
= BTUSB_QCA_ROME
},
268 { USB_DEVICE(0x0cf3, 0xe010), .driver_info
= BTUSB_QCA_ROME
},
269 { USB_DEVICE(0x0cf3, 0xe300), .driver_info
= BTUSB_QCA_ROME
},
270 { USB_DEVICE(0x0cf3, 0xe301), .driver_info
= BTUSB_QCA_ROME
},
271 { USB_DEVICE(0x0cf3, 0xe360), .driver_info
= BTUSB_QCA_ROME
},
272 { USB_DEVICE(0x0489, 0xe092), .driver_info
= BTUSB_QCA_ROME
},
273 { USB_DEVICE(0x0489, 0xe09f), .driver_info
= BTUSB_QCA_ROME
},
274 { USB_DEVICE(0x0489, 0xe0a2), .driver_info
= BTUSB_QCA_ROME
},
275 { USB_DEVICE(0x04ca, 0x3011), .driver_info
= BTUSB_QCA_ROME
},
276 { USB_DEVICE(0x04ca, 0x3015), .driver_info
= BTUSB_QCA_ROME
},
277 { USB_DEVICE(0x04ca, 0x3016), .driver_info
= BTUSB_QCA_ROME
},
279 /* Broadcom BCM2035 */
280 { USB_DEVICE(0x0a5c, 0x2009), .driver_info
= BTUSB_BCM92035
},
281 { USB_DEVICE(0x0a5c, 0x200a), .driver_info
= BTUSB_WRONG_SCO_MTU
},
282 { USB_DEVICE(0x0a5c, 0x2035), .driver_info
= BTUSB_WRONG_SCO_MTU
},
284 /* Broadcom BCM2045 */
285 { USB_DEVICE(0x0a5c, 0x2039), .driver_info
= BTUSB_WRONG_SCO_MTU
},
286 { USB_DEVICE(0x0a5c, 0x2101), .driver_info
= BTUSB_WRONG_SCO_MTU
},
288 /* IBM/Lenovo ThinkPad with Broadcom chip */
289 { USB_DEVICE(0x0a5c, 0x201e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
290 { USB_DEVICE(0x0a5c, 0x2110), .driver_info
= BTUSB_WRONG_SCO_MTU
},
292 /* HP laptop with Broadcom chip */
293 { USB_DEVICE(0x03f0, 0x171d), .driver_info
= BTUSB_WRONG_SCO_MTU
},
295 /* Dell laptop with Broadcom chip */
296 { USB_DEVICE(0x413c, 0x8126), .driver_info
= BTUSB_WRONG_SCO_MTU
},
298 /* Dell Wireless 370 and 410 devices */
299 { USB_DEVICE(0x413c, 0x8152), .driver_info
= BTUSB_WRONG_SCO_MTU
},
300 { USB_DEVICE(0x413c, 0x8156), .driver_info
= BTUSB_WRONG_SCO_MTU
},
302 /* Belkin F8T012 and F8T013 devices */
303 { USB_DEVICE(0x050d, 0x0012), .driver_info
= BTUSB_WRONG_SCO_MTU
},
304 { USB_DEVICE(0x050d, 0x0013), .driver_info
= BTUSB_WRONG_SCO_MTU
},
306 /* Asus WL-BTD202 device */
307 { USB_DEVICE(0x0b05, 0x1715), .driver_info
= BTUSB_WRONG_SCO_MTU
},
309 /* Kensington Bluetooth USB adapter */
310 { USB_DEVICE(0x047d, 0x105e), .driver_info
= BTUSB_WRONG_SCO_MTU
},
312 /* RTX Telecom based adapters with buggy SCO support */
313 { USB_DEVICE(0x0400, 0x0807), .driver_info
= BTUSB_BROKEN_ISOC
},
314 { USB_DEVICE(0x0400, 0x080a), .driver_info
= BTUSB_BROKEN_ISOC
},
316 /* CONWISE Technology based adapters with buggy SCO support */
317 { USB_DEVICE(0x0e5e, 0x6622),
318 .driver_info
= BTUSB_BROKEN_ISOC
| BTUSB_CW6622
},
320 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
321 { USB_DEVICE(0x1310, 0x0001), .driver_info
= BTUSB_SWAVE
},
323 /* Digianswer devices */
324 { USB_DEVICE(0x08fd, 0x0001), .driver_info
= BTUSB_DIGIANSWER
},
325 { USB_DEVICE(0x08fd, 0x0002), .driver_info
= BTUSB_IGNORE
},
327 /* CSR BlueCore Bluetooth Sniffer */
328 { USB_DEVICE(0x0a12, 0x0002),
329 .driver_info
= BTUSB_SNIFFER
| BTUSB_BROKEN_ISOC
},
331 /* Frontline ComProbe Bluetooth Sniffer */
332 { USB_DEVICE(0x16d3, 0x0002),
333 .driver_info
= BTUSB_SNIFFER
| BTUSB_BROKEN_ISOC
},
335 /* Marvell Bluetooth devices */
336 { USB_DEVICE(0x1286, 0x2044), .driver_info
= BTUSB_MARVELL
},
337 { USB_DEVICE(0x1286, 0x2046), .driver_info
= BTUSB_MARVELL
},
338 { USB_DEVICE(0x1286, 0x204e), .driver_info
= BTUSB_MARVELL
},
340 /* Intel Bluetooth devices */
341 { USB_DEVICE(0x8087, 0x0025), .driver_info
= BTUSB_INTEL_NEW
},
342 { USB_DEVICE(0x8087, 0x07da), .driver_info
= BTUSB_CSR
},
343 { USB_DEVICE(0x8087, 0x07dc), .driver_info
= BTUSB_INTEL
},
344 { USB_DEVICE(0x8087, 0x0a2a), .driver_info
= BTUSB_INTEL
},
345 { USB_DEVICE(0x8087, 0x0a2b), .driver_info
= BTUSB_INTEL_NEW
},
346 { USB_DEVICE(0x8087, 0x0aa7), .driver_info
= BTUSB_INTEL
},
347 { USB_DEVICE(0x8087, 0x0aaa), .driver_info
= BTUSB_INTEL_NEW
},
349 /* Other Intel Bluetooth devices */
350 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
351 .driver_info
= BTUSB_IGNORE
},
353 /* Realtek Bluetooth devices */
354 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
355 .driver_info
= BTUSB_REALTEK
},
357 /* Additional Realtek 8723AE Bluetooth devices */
358 { USB_DEVICE(0x0930, 0x021d), .driver_info
= BTUSB_REALTEK
},
359 { USB_DEVICE(0x13d3, 0x3394), .driver_info
= BTUSB_REALTEK
},
361 /* Additional Realtek 8723BE Bluetooth devices */
362 { USB_DEVICE(0x0489, 0xe085), .driver_info
= BTUSB_REALTEK
},
363 { USB_DEVICE(0x0489, 0xe08b), .driver_info
= BTUSB_REALTEK
},
364 { USB_DEVICE(0x13d3, 0x3410), .driver_info
= BTUSB_REALTEK
},
365 { USB_DEVICE(0x13d3, 0x3416), .driver_info
= BTUSB_REALTEK
},
366 { USB_DEVICE(0x13d3, 0x3459), .driver_info
= BTUSB_REALTEK
},
367 { USB_DEVICE(0x13d3, 0x3494), .driver_info
= BTUSB_REALTEK
},
369 /* Additional Realtek 8821AE Bluetooth devices */
370 { USB_DEVICE(0x0b05, 0x17dc), .driver_info
= BTUSB_REALTEK
},
371 { USB_DEVICE(0x13d3, 0x3414), .driver_info
= BTUSB_REALTEK
},
372 { USB_DEVICE(0x13d3, 0x3458), .driver_info
= BTUSB_REALTEK
},
373 { USB_DEVICE(0x13d3, 0x3461), .driver_info
= BTUSB_REALTEK
},
374 { USB_DEVICE(0x13d3, 0x3462), .driver_info
= BTUSB_REALTEK
},
376 /* Silicon Wave based devices */
377 { USB_DEVICE(0x0c10, 0x0000), .driver_info
= BTUSB_SWAVE
},
379 { } /* Terminating entry */
382 #define BTUSB_MAX_ISOC_FRAMES 10
384 #define BTUSB_INTR_RUNNING 0
385 #define BTUSB_BULK_RUNNING 1
386 #define BTUSB_ISOC_RUNNING 2
387 #define BTUSB_SUSPENDING 3
388 #define BTUSB_DID_ISO_RESUME 4
389 #define BTUSB_BOOTLOADER 5
390 #define BTUSB_DOWNLOADING 6
391 #define BTUSB_FIRMWARE_LOADED 7
392 #define BTUSB_FIRMWARE_FAILED 8
393 #define BTUSB_BOOTING 9
394 #define BTUSB_DIAG_RUNNING 10
395 #define BTUSB_OOB_WAKE_ENABLED 11
398 struct hci_dev
*hdev
;
399 struct usb_device
*udev
;
400 struct usb_interface
*intf
;
401 struct usb_interface
*isoc
;
402 struct usb_interface
*diag
;
407 struct work_struct work
;
408 struct work_struct waker
;
410 struct usb_anchor deferred
;
411 struct usb_anchor tx_anchor
;
415 struct usb_anchor intr_anchor
;
416 struct usb_anchor bulk_anchor
;
417 struct usb_anchor isoc_anchor
;
418 struct usb_anchor diag_anchor
;
421 struct sk_buff
*evt_skb
;
422 struct sk_buff
*acl_skb
;
423 struct sk_buff
*sco_skb
;
425 struct usb_endpoint_descriptor
*intr_ep
;
426 struct usb_endpoint_descriptor
*bulk_tx_ep
;
427 struct usb_endpoint_descriptor
*bulk_rx_ep
;
428 struct usb_endpoint_descriptor
*isoc_tx_ep
;
429 struct usb_endpoint_descriptor
*isoc_rx_ep
;
430 struct usb_endpoint_descriptor
*diag_tx_ep
;
431 struct usb_endpoint_descriptor
*diag_rx_ep
;
436 unsigned int sco_num
;
440 int (*recv_event
)(struct hci_dev
*hdev
, struct sk_buff
*skb
);
441 int (*recv_bulk
)(struct btusb_data
*data
, void *buffer
, int count
);
443 int (*setup_on_usb
)(struct hci_dev
*hdev
);
445 int oob_wake_irq
; /* irq for out-of-band wake-on-bt */
448 static inline void btusb_free_frags(struct btusb_data
*data
)
452 spin_lock_irqsave(&data
->rxlock
, flags
);
454 kfree_skb(data
->evt_skb
);
455 data
->evt_skb
= NULL
;
457 kfree_skb(data
->acl_skb
);
458 data
->acl_skb
= NULL
;
460 kfree_skb(data
->sco_skb
);
461 data
->sco_skb
= NULL
;
463 spin_unlock_irqrestore(&data
->rxlock
, flags
);
466 static int btusb_recv_intr(struct btusb_data
*data
, void *buffer
, int count
)
471 spin_lock(&data
->rxlock
);
478 skb
= bt_skb_alloc(HCI_MAX_EVENT_SIZE
, GFP_ATOMIC
);
484 hci_skb_pkt_type(skb
) = HCI_EVENT_PKT
;
485 hci_skb_expect(skb
) = HCI_EVENT_HDR_SIZE
;
488 len
= min_t(uint
, hci_skb_expect(skb
), count
);
489 skb_put_data(skb
, buffer
, len
);
493 hci_skb_expect(skb
) -= len
;
495 if (skb
->len
== HCI_EVENT_HDR_SIZE
) {
496 /* Complete event header */
497 hci_skb_expect(skb
) = hci_event_hdr(skb
)->plen
;
499 if (skb_tailroom(skb
) < hci_skb_expect(skb
)) {
508 if (!hci_skb_expect(skb
)) {
510 data
->recv_event(data
->hdev
, skb
);
516 spin_unlock(&data
->rxlock
);
521 static int btusb_recv_bulk(struct btusb_data
*data
, void *buffer
, int count
)
526 spin_lock(&data
->rxlock
);
533 skb
= bt_skb_alloc(HCI_MAX_FRAME_SIZE
, GFP_ATOMIC
);
539 hci_skb_pkt_type(skb
) = HCI_ACLDATA_PKT
;
540 hci_skb_expect(skb
) = HCI_ACL_HDR_SIZE
;
543 len
= min_t(uint
, hci_skb_expect(skb
), count
);
544 skb_put_data(skb
, buffer
, len
);
548 hci_skb_expect(skb
) -= len
;
550 if (skb
->len
== HCI_ACL_HDR_SIZE
) {
551 __le16 dlen
= hci_acl_hdr(skb
)->dlen
;
553 /* Complete ACL header */
554 hci_skb_expect(skb
) = __le16_to_cpu(dlen
);
556 if (skb_tailroom(skb
) < hci_skb_expect(skb
)) {
565 if (!hci_skb_expect(skb
)) {
567 hci_recv_frame(data
->hdev
, skb
);
573 spin_unlock(&data
->rxlock
);
578 static int btusb_recv_isoc(struct btusb_data
*data
, void *buffer
, int count
)
583 spin_lock(&data
->rxlock
);
590 skb
= bt_skb_alloc(HCI_MAX_SCO_SIZE
, GFP_ATOMIC
);
596 hci_skb_pkt_type(skb
) = HCI_SCODATA_PKT
;
597 hci_skb_expect(skb
) = HCI_SCO_HDR_SIZE
;
600 len
= min_t(uint
, hci_skb_expect(skb
), count
);
601 skb_put_data(skb
, buffer
, len
);
605 hci_skb_expect(skb
) -= len
;
607 if (skb
->len
== HCI_SCO_HDR_SIZE
) {
608 /* Complete SCO header */
609 hci_skb_expect(skb
) = hci_sco_hdr(skb
)->dlen
;
611 if (skb_tailroom(skb
) < hci_skb_expect(skb
)) {
620 if (!hci_skb_expect(skb
)) {
622 hci_recv_frame(data
->hdev
, skb
);
628 spin_unlock(&data
->rxlock
);
633 static void btusb_intr_complete(struct urb
*urb
)
635 struct hci_dev
*hdev
= urb
->context
;
636 struct btusb_data
*data
= hci_get_drvdata(hdev
);
639 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
642 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
645 if (urb
->status
== 0) {
646 hdev
->stat
.byte_rx
+= urb
->actual_length
;
648 if (btusb_recv_intr(data
, urb
->transfer_buffer
,
649 urb
->actual_length
) < 0) {
650 bt_dev_err(hdev
, "corrupted event packet");
653 } else if (urb
->status
== -ENOENT
) {
654 /* Avoid suspend failed when usb_kill_urb */
658 if (!test_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
661 usb_mark_last_busy(data
->udev
);
662 usb_anchor_urb(urb
, &data
->intr_anchor
);
664 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
666 /* -EPERM: urb is being killed;
667 * -ENODEV: device got disconnected
669 if (err
!= -EPERM
&& err
!= -ENODEV
)
670 bt_dev_err(hdev
, "urb %p failed to resubmit (%d)",
672 usb_unanchor_urb(urb
);
676 static int btusb_submit_intr_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
678 struct btusb_data
*data
= hci_get_drvdata(hdev
);
684 BT_DBG("%s", hdev
->name
);
689 urb
= usb_alloc_urb(0, mem_flags
);
693 size
= le16_to_cpu(data
->intr_ep
->wMaxPacketSize
);
695 buf
= kmalloc(size
, mem_flags
);
701 pipe
= usb_rcvintpipe(data
->udev
, data
->intr_ep
->bEndpointAddress
);
703 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
,
704 btusb_intr_complete
, hdev
, data
->intr_ep
->bInterval
);
706 urb
->transfer_flags
|= URB_FREE_BUFFER
;
708 usb_anchor_urb(urb
, &data
->intr_anchor
);
710 err
= usb_submit_urb(urb
, mem_flags
);
712 if (err
!= -EPERM
&& err
!= -ENODEV
)
713 bt_dev_err(hdev
, "urb %p submission failed (%d)",
715 usb_unanchor_urb(urb
);
723 static void btusb_bulk_complete(struct urb
*urb
)
725 struct hci_dev
*hdev
= urb
->context
;
726 struct btusb_data
*data
= hci_get_drvdata(hdev
);
729 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
732 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
735 if (urb
->status
== 0) {
736 hdev
->stat
.byte_rx
+= urb
->actual_length
;
738 if (data
->recv_bulk(data
, urb
->transfer_buffer
,
739 urb
->actual_length
) < 0) {
740 bt_dev_err(hdev
, "corrupted ACL packet");
743 } else if (urb
->status
== -ENOENT
) {
744 /* Avoid suspend failed when usb_kill_urb */
748 if (!test_bit(BTUSB_BULK_RUNNING
, &data
->flags
))
751 usb_anchor_urb(urb
, &data
->bulk_anchor
);
752 usb_mark_last_busy(data
->udev
);
754 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
756 /* -EPERM: urb is being killed;
757 * -ENODEV: device got disconnected
759 if (err
!= -EPERM
&& err
!= -ENODEV
)
760 bt_dev_err(hdev
, "urb %p failed to resubmit (%d)",
762 usb_unanchor_urb(urb
);
766 static int btusb_submit_bulk_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
768 struct btusb_data
*data
= hci_get_drvdata(hdev
);
772 int err
, size
= HCI_MAX_FRAME_SIZE
;
774 BT_DBG("%s", hdev
->name
);
776 if (!data
->bulk_rx_ep
)
779 urb
= usb_alloc_urb(0, mem_flags
);
783 buf
= kmalloc(size
, mem_flags
);
789 pipe
= usb_rcvbulkpipe(data
->udev
, data
->bulk_rx_ep
->bEndpointAddress
);
791 usb_fill_bulk_urb(urb
, data
->udev
, pipe
, buf
, size
,
792 btusb_bulk_complete
, hdev
);
794 urb
->transfer_flags
|= URB_FREE_BUFFER
;
796 usb_mark_last_busy(data
->udev
);
797 usb_anchor_urb(urb
, &data
->bulk_anchor
);
799 err
= usb_submit_urb(urb
, mem_flags
);
801 if (err
!= -EPERM
&& err
!= -ENODEV
)
802 bt_dev_err(hdev
, "urb %p submission failed (%d)",
804 usb_unanchor_urb(urb
);
812 static void btusb_isoc_complete(struct urb
*urb
)
814 struct hci_dev
*hdev
= urb
->context
;
815 struct btusb_data
*data
= hci_get_drvdata(hdev
);
818 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
821 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
824 if (urb
->status
== 0) {
825 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
826 unsigned int offset
= urb
->iso_frame_desc
[i
].offset
;
827 unsigned int length
= urb
->iso_frame_desc
[i
].actual_length
;
829 if (urb
->iso_frame_desc
[i
].status
)
832 hdev
->stat
.byte_rx
+= length
;
834 if (btusb_recv_isoc(data
, urb
->transfer_buffer
+ offset
,
836 bt_dev_err(hdev
, "corrupted SCO packet");
840 } else if (urb
->status
== -ENOENT
) {
841 /* Avoid suspend failed when usb_kill_urb */
845 if (!test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
))
848 usb_anchor_urb(urb
, &data
->isoc_anchor
);
850 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
852 /* -EPERM: urb is being killed;
853 * -ENODEV: device got disconnected
855 if (err
!= -EPERM
&& err
!= -ENODEV
)
856 bt_dev_err(hdev
, "urb %p failed to resubmit (%d)",
858 usb_unanchor_urb(urb
);
862 static inline void __fill_isoc_descriptor(struct urb
*urb
, int len
, int mtu
)
866 BT_DBG("len %d mtu %d", len
, mtu
);
868 for (i
= 0; i
< BTUSB_MAX_ISOC_FRAMES
&& len
>= mtu
;
869 i
++, offset
+= mtu
, len
-= mtu
) {
870 urb
->iso_frame_desc
[i
].offset
= offset
;
871 urb
->iso_frame_desc
[i
].length
= mtu
;
874 if (len
&& i
< BTUSB_MAX_ISOC_FRAMES
) {
875 urb
->iso_frame_desc
[i
].offset
= offset
;
876 urb
->iso_frame_desc
[i
].length
= len
;
880 urb
->number_of_packets
= i
;
883 static int btusb_submit_isoc_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
885 struct btusb_data
*data
= hci_get_drvdata(hdev
);
891 BT_DBG("%s", hdev
->name
);
893 if (!data
->isoc_rx_ep
)
896 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, mem_flags
);
900 size
= le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
) *
901 BTUSB_MAX_ISOC_FRAMES
;
903 buf
= kmalloc(size
, mem_flags
);
909 pipe
= usb_rcvisocpipe(data
->udev
, data
->isoc_rx_ep
->bEndpointAddress
);
911 usb_fill_int_urb(urb
, data
->udev
, pipe
, buf
, size
, btusb_isoc_complete
,
912 hdev
, data
->isoc_rx_ep
->bInterval
);
914 urb
->transfer_flags
= URB_FREE_BUFFER
| URB_ISO_ASAP
;
916 __fill_isoc_descriptor(urb
, size
,
917 le16_to_cpu(data
->isoc_rx_ep
->wMaxPacketSize
));
919 usb_anchor_urb(urb
, &data
->isoc_anchor
);
921 err
= usb_submit_urb(urb
, mem_flags
);
923 if (err
!= -EPERM
&& err
!= -ENODEV
)
924 bt_dev_err(hdev
, "urb %p submission failed (%d)",
926 usb_unanchor_urb(urb
);
934 static void btusb_diag_complete(struct urb
*urb
)
936 struct hci_dev
*hdev
= urb
->context
;
937 struct btusb_data
*data
= hci_get_drvdata(hdev
);
940 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
943 if (urb
->status
== 0) {
946 skb
= bt_skb_alloc(urb
->actual_length
, GFP_ATOMIC
);
948 skb_put_data(skb
, urb
->transfer_buffer
,
950 hci_recv_diag(hdev
, skb
);
952 } else if (urb
->status
== -ENOENT
) {
953 /* Avoid suspend failed when usb_kill_urb */
957 if (!test_bit(BTUSB_DIAG_RUNNING
, &data
->flags
))
960 usb_anchor_urb(urb
, &data
->diag_anchor
);
961 usb_mark_last_busy(data
->udev
);
963 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
965 /* -EPERM: urb is being killed;
966 * -ENODEV: device got disconnected
968 if (err
!= -EPERM
&& err
!= -ENODEV
)
969 bt_dev_err(hdev
, "urb %p failed to resubmit (%d)",
971 usb_unanchor_urb(urb
);
975 static int btusb_submit_diag_urb(struct hci_dev
*hdev
, gfp_t mem_flags
)
977 struct btusb_data
*data
= hci_get_drvdata(hdev
);
981 int err
, size
= HCI_MAX_FRAME_SIZE
;
983 BT_DBG("%s", hdev
->name
);
985 if (!data
->diag_rx_ep
)
988 urb
= usb_alloc_urb(0, mem_flags
);
992 buf
= kmalloc(size
, mem_flags
);
998 pipe
= usb_rcvbulkpipe(data
->udev
, data
->diag_rx_ep
->bEndpointAddress
);
1000 usb_fill_bulk_urb(urb
, data
->udev
, pipe
, buf
, size
,
1001 btusb_diag_complete
, hdev
);
1003 urb
->transfer_flags
|= URB_FREE_BUFFER
;
1005 usb_mark_last_busy(data
->udev
);
1006 usb_anchor_urb(urb
, &data
->diag_anchor
);
1008 err
= usb_submit_urb(urb
, mem_flags
);
1010 if (err
!= -EPERM
&& err
!= -ENODEV
)
1011 bt_dev_err(hdev
, "urb %p submission failed (%d)",
1013 usb_unanchor_urb(urb
);
1021 static void btusb_tx_complete(struct urb
*urb
)
1023 struct sk_buff
*skb
= urb
->context
;
1024 struct hci_dev
*hdev
= (struct hci_dev
*)skb
->dev
;
1025 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1027 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
1028 urb
->actual_length
);
1030 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1034 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
1036 hdev
->stat
.err_tx
++;
1039 spin_lock(&data
->txlock
);
1040 data
->tx_in_flight
--;
1041 spin_unlock(&data
->txlock
);
1043 kfree(urb
->setup_packet
);
1048 static void btusb_isoc_tx_complete(struct urb
*urb
)
1050 struct sk_buff
*skb
= urb
->context
;
1051 struct hci_dev
*hdev
= (struct hci_dev
*)skb
->dev
;
1053 BT_DBG("%s urb %p status %d count %d", hdev
->name
, urb
, urb
->status
,
1054 urb
->actual_length
);
1056 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
1060 hdev
->stat
.byte_tx
+= urb
->transfer_buffer_length
;
1062 hdev
->stat
.err_tx
++;
1065 kfree(urb
->setup_packet
);
1070 static int btusb_open(struct hci_dev
*hdev
)
1072 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1075 BT_DBG("%s", hdev
->name
);
1077 err
= usb_autopm_get_interface(data
->intf
);
1081 /* Patching USB firmware files prior to starting any URBs of HCI path
1082 * It is more safe to use USB bulk channel for downloading USB patch
1084 if (data
->setup_on_usb
) {
1085 err
= data
->setup_on_usb(hdev
);
1090 data
->intf
->needs_remote_wakeup
= 1;
1091 /* device specific wakeup source enabled and required for USB
1092 * remote wakeup while host is suspended
1094 device_wakeup_enable(&data
->udev
->dev
);
1096 if (test_and_set_bit(BTUSB_INTR_RUNNING
, &data
->flags
))
1099 err
= btusb_submit_intr_urb(hdev
, GFP_KERNEL
);
1103 err
= btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
1105 usb_kill_anchored_urbs(&data
->intr_anchor
);
1109 set_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1110 btusb_submit_bulk_urb(hdev
, GFP_KERNEL
);
1113 if (!btusb_submit_diag_urb(hdev
, GFP_KERNEL
))
1114 set_bit(BTUSB_DIAG_RUNNING
, &data
->flags
);
1118 usb_autopm_put_interface(data
->intf
);
1122 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1123 usb_autopm_put_interface(data
->intf
);
1127 static void btusb_stop_traffic(struct btusb_data
*data
)
1129 usb_kill_anchored_urbs(&data
->intr_anchor
);
1130 usb_kill_anchored_urbs(&data
->bulk_anchor
);
1131 usb_kill_anchored_urbs(&data
->isoc_anchor
);
1132 usb_kill_anchored_urbs(&data
->diag_anchor
);
1135 static int btusb_close(struct hci_dev
*hdev
)
1137 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1140 BT_DBG("%s", hdev
->name
);
1142 cancel_work_sync(&data
->work
);
1143 cancel_work_sync(&data
->waker
);
1145 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1146 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
1147 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
1148 clear_bit(BTUSB_DIAG_RUNNING
, &data
->flags
);
1150 btusb_stop_traffic(data
);
1151 btusb_free_frags(data
);
1153 err
= usb_autopm_get_interface(data
->intf
);
1157 data
->intf
->needs_remote_wakeup
= 0;
1158 device_wakeup_disable(&data
->udev
->dev
);
1159 usb_autopm_put_interface(data
->intf
);
1162 usb_scuttle_anchored_urbs(&data
->deferred
);
1166 static int btusb_flush(struct hci_dev
*hdev
)
1168 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1170 BT_DBG("%s", hdev
->name
);
1172 usb_kill_anchored_urbs(&data
->tx_anchor
);
1173 btusb_free_frags(data
);
1178 static struct urb
*alloc_ctrl_urb(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1180 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1181 struct usb_ctrlrequest
*dr
;
1185 urb
= usb_alloc_urb(0, GFP_KERNEL
);
1187 return ERR_PTR(-ENOMEM
);
1189 dr
= kmalloc(sizeof(*dr
), GFP_KERNEL
);
1192 return ERR_PTR(-ENOMEM
);
1195 dr
->bRequestType
= data
->cmdreq_type
;
1196 dr
->bRequest
= data
->cmdreq
;
1199 dr
->wLength
= __cpu_to_le16(skb
->len
);
1201 pipe
= usb_sndctrlpipe(data
->udev
, 0x00);
1203 usb_fill_control_urb(urb
, data
->udev
, pipe
, (void *)dr
,
1204 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
1206 skb
->dev
= (void *)hdev
;
1211 static struct urb
*alloc_bulk_urb(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1213 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1217 if (!data
->bulk_tx_ep
)
1218 return ERR_PTR(-ENODEV
);
1220 urb
= usb_alloc_urb(0, GFP_KERNEL
);
1222 return ERR_PTR(-ENOMEM
);
1224 pipe
= usb_sndbulkpipe(data
->udev
, data
->bulk_tx_ep
->bEndpointAddress
);
1226 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
1227 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
1229 skb
->dev
= (void *)hdev
;
1234 static struct urb
*alloc_isoc_urb(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1236 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1240 if (!data
->isoc_tx_ep
)
1241 return ERR_PTR(-ENODEV
);
1243 urb
= usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES
, GFP_KERNEL
);
1245 return ERR_PTR(-ENOMEM
);
1247 pipe
= usb_sndisocpipe(data
->udev
, data
->isoc_tx_ep
->bEndpointAddress
);
1249 usb_fill_int_urb(urb
, data
->udev
, pipe
,
1250 skb
->data
, skb
->len
, btusb_isoc_tx_complete
,
1251 skb
, data
->isoc_tx_ep
->bInterval
);
1253 urb
->transfer_flags
= URB_ISO_ASAP
;
1255 __fill_isoc_descriptor(urb
, skb
->len
,
1256 le16_to_cpu(data
->isoc_tx_ep
->wMaxPacketSize
));
1258 skb
->dev
= (void *)hdev
;
1263 static int submit_tx_urb(struct hci_dev
*hdev
, struct urb
*urb
)
1265 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1268 usb_anchor_urb(urb
, &data
->tx_anchor
);
1270 err
= usb_submit_urb(urb
, GFP_KERNEL
);
1272 if (err
!= -EPERM
&& err
!= -ENODEV
)
1273 bt_dev_err(hdev
, "urb %p submission failed (%d)",
1275 kfree(urb
->setup_packet
);
1276 usb_unanchor_urb(urb
);
1278 usb_mark_last_busy(data
->udev
);
1285 static int submit_or_queue_tx_urb(struct hci_dev
*hdev
, struct urb
*urb
)
1287 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1288 unsigned long flags
;
1291 spin_lock_irqsave(&data
->txlock
, flags
);
1292 suspending
= test_bit(BTUSB_SUSPENDING
, &data
->flags
);
1294 data
->tx_in_flight
++;
1295 spin_unlock_irqrestore(&data
->txlock
, flags
);
1298 return submit_tx_urb(hdev
, urb
);
1300 usb_anchor_urb(urb
, &data
->deferred
);
1301 schedule_work(&data
->waker
);
1307 static int btusb_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1311 BT_DBG("%s", hdev
->name
);
1313 switch (hci_skb_pkt_type(skb
)) {
1314 case HCI_COMMAND_PKT
:
1315 urb
= alloc_ctrl_urb(hdev
, skb
);
1317 return PTR_ERR(urb
);
1319 hdev
->stat
.cmd_tx
++;
1320 return submit_or_queue_tx_urb(hdev
, urb
);
1322 case HCI_ACLDATA_PKT
:
1323 urb
= alloc_bulk_urb(hdev
, skb
);
1325 return PTR_ERR(urb
);
1327 hdev
->stat
.acl_tx
++;
1328 return submit_or_queue_tx_urb(hdev
, urb
);
1330 case HCI_SCODATA_PKT
:
1331 if (hci_conn_num(hdev
, SCO_LINK
) < 1)
1334 urb
= alloc_isoc_urb(hdev
, skb
);
1336 return PTR_ERR(urb
);
1338 hdev
->stat
.sco_tx
++;
1339 return submit_tx_urb(hdev
, urb
);
1345 static void btusb_notify(struct hci_dev
*hdev
, unsigned int evt
)
1347 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1349 BT_DBG("%s evt %d", hdev
->name
, evt
);
1351 if (hci_conn_num(hdev
, SCO_LINK
) != data
->sco_num
) {
1352 data
->sco_num
= hci_conn_num(hdev
, SCO_LINK
);
1353 schedule_work(&data
->work
);
1357 static inline int __set_isoc_interface(struct hci_dev
*hdev
, int altsetting
)
1359 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1360 struct usb_interface
*intf
= data
->isoc
;
1361 struct usb_endpoint_descriptor
*ep_desc
;
1367 err
= usb_set_interface(data
->udev
, data
->isoc_ifnum
, altsetting
);
1369 bt_dev_err(hdev
, "setting interface failed (%d)", -err
);
1373 data
->isoc_altsetting
= altsetting
;
1375 data
->isoc_tx_ep
= NULL
;
1376 data
->isoc_rx_ep
= NULL
;
1378 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
1379 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
1381 if (!data
->isoc_tx_ep
&& usb_endpoint_is_isoc_out(ep_desc
)) {
1382 data
->isoc_tx_ep
= ep_desc
;
1386 if (!data
->isoc_rx_ep
&& usb_endpoint_is_isoc_in(ep_desc
)) {
1387 data
->isoc_rx_ep
= ep_desc
;
1392 if (!data
->isoc_tx_ep
|| !data
->isoc_rx_ep
) {
1393 bt_dev_err(hdev
, "invalid SCO descriptors");
1400 static void btusb_work(struct work_struct
*work
)
1402 struct btusb_data
*data
= container_of(work
, struct btusb_data
, work
);
1403 struct hci_dev
*hdev
= data
->hdev
;
1407 if (data
->sco_num
> 0) {
1408 if (!test_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
)) {
1409 err
= usb_autopm_get_interface(data
->isoc
? data
->isoc
: data
->intf
);
1411 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1412 usb_kill_anchored_urbs(&data
->isoc_anchor
);
1416 set_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
);
1419 if (hdev
->voice_setting
& 0x0020) {
1420 static const int alts
[3] = { 2, 4, 5 };
1422 new_alts
= alts
[data
->sco_num
- 1];
1424 new_alts
= data
->sco_num
;
1427 if (data
->isoc_altsetting
!= new_alts
) {
1428 unsigned long flags
;
1430 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1431 usb_kill_anchored_urbs(&data
->isoc_anchor
);
1433 /* When isochronous alternate setting needs to be
1434 * changed, because SCO connection has been added
1435 * or removed, a packet fragment may be left in the
1436 * reassembling state. This could lead to wrongly
1437 * assembled fragments.
1439 * Clear outstanding fragment when selecting a new
1440 * alternate setting.
1442 spin_lock_irqsave(&data
->rxlock
, flags
);
1443 kfree_skb(data
->sco_skb
);
1444 data
->sco_skb
= NULL
;
1445 spin_unlock_irqrestore(&data
->rxlock
, flags
);
1447 if (__set_isoc_interface(hdev
, new_alts
) < 0)
1451 if (!test_and_set_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
1452 if (btusb_submit_isoc_urb(hdev
, GFP_KERNEL
) < 0)
1453 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1455 btusb_submit_isoc_urb(hdev
, GFP_KERNEL
);
1458 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
1459 usb_kill_anchored_urbs(&data
->isoc_anchor
);
1461 __set_isoc_interface(hdev
, 0);
1462 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME
, &data
->flags
))
1463 usb_autopm_put_interface(data
->isoc
? data
->isoc
: data
->intf
);
1467 static void btusb_waker(struct work_struct
*work
)
1469 struct btusb_data
*data
= container_of(work
, struct btusb_data
, waker
);
1472 err
= usb_autopm_get_interface(data
->intf
);
1476 usb_autopm_put_interface(data
->intf
);
1479 static int btusb_setup_bcm92035(struct hci_dev
*hdev
)
1481 struct sk_buff
*skb
;
1484 BT_DBG("%s", hdev
->name
);
1486 skb
= __hci_cmd_sync(hdev
, 0xfc3b, 1, &val
, HCI_INIT_TIMEOUT
);
1488 bt_dev_err(hdev
, "BCM92035 command failed (%ld)", PTR_ERR(skb
));
1495 static int btusb_setup_csr(struct hci_dev
*hdev
)
1497 struct hci_rp_read_local_version
*rp
;
1498 struct sk_buff
*skb
;
1500 BT_DBG("%s", hdev
->name
);
1502 skb
= __hci_cmd_sync(hdev
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
,
1505 int err
= PTR_ERR(skb
);
1506 bt_dev_err(hdev
, "CSR: Local version failed (%d)", err
);
1510 if (skb
->len
!= sizeof(struct hci_rp_read_local_version
)) {
1511 bt_dev_err(hdev
, "CSR: Local version length mismatch");
1516 rp
= (struct hci_rp_read_local_version
*)skb
->data
;
1518 /* Detect controllers which aren't real CSR ones. */
1519 if (le16_to_cpu(rp
->manufacturer
) != 10 ||
1520 le16_to_cpu(rp
->lmp_subver
) == 0x0c5c) {
1521 /* Clear the reset quirk since this is not an actual
1522 * early Bluetooth 1.1 device from CSR.
1524 clear_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
1526 /* These fake CSR controllers have all a broken
1527 * stored link key handling and so just disable it.
1529 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
, &hdev
->quirks
);
1537 static const struct firmware
*btusb_setup_intel_get_fw(struct hci_dev
*hdev
,
1538 struct intel_version
*ver
)
1540 const struct firmware
*fw
;
1544 snprintf(fwname
, sizeof(fwname
),
1545 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1546 ver
->hw_platform
, ver
->hw_variant
, ver
->hw_revision
,
1547 ver
->fw_variant
, ver
->fw_revision
, ver
->fw_build_num
,
1548 ver
->fw_build_ww
, ver
->fw_build_yy
);
1550 ret
= request_firmware(&fw
, fwname
, &hdev
->dev
);
1552 if (ret
== -EINVAL
) {
1553 BT_ERR("%s Intel firmware file request failed (%d)",
1558 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1559 hdev
->name
, fwname
, ret
);
1561 /* If the correct firmware patch file is not found, use the
1562 * default firmware patch file instead
1564 snprintf(fwname
, sizeof(fwname
), "intel/ibt-hw-%x.%x.bseq",
1565 ver
->hw_platform
, ver
->hw_variant
);
1566 if (request_firmware(&fw
, fwname
, &hdev
->dev
) < 0) {
1567 BT_ERR("%s failed to open default Intel fw file: %s",
1568 hdev
->name
, fwname
);
1573 bt_dev_info(hdev
, "Intel Bluetooth firmware file: %s", fwname
);
1578 static int btusb_setup_intel_patching(struct hci_dev
*hdev
,
1579 const struct firmware
*fw
,
1580 const u8
**fw_ptr
, int *disable_patch
)
1582 struct sk_buff
*skb
;
1583 struct hci_command_hdr
*cmd
;
1584 const u8
*cmd_param
;
1585 struct hci_event_hdr
*evt
= NULL
;
1586 const u8
*evt_param
= NULL
;
1587 int remain
= fw
->size
- (*fw_ptr
- fw
->data
);
1589 /* The first byte indicates the types of the patch command or event.
1590 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1591 * in the current firmware buffer doesn't start with 0x01 or
1592 * the size of remain buffer is smaller than HCI command header,
1593 * the firmware file is corrupted and it should stop the patching
1596 if (remain
> HCI_COMMAND_HDR_SIZE
&& *fw_ptr
[0] != 0x01) {
1597 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev
->name
);
1603 cmd
= (struct hci_command_hdr
*)(*fw_ptr
);
1604 *fw_ptr
+= sizeof(*cmd
);
1605 remain
-= sizeof(*cmd
);
1607 /* Ensure that the remain firmware data is long enough than the length
1608 * of command parameter. If not, the firmware file is corrupted.
1610 if (remain
< cmd
->plen
) {
1611 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev
->name
);
1615 /* If there is a command that loads a patch in the firmware
1616 * file, then enable the patch upon success, otherwise just
1617 * disable the manufacturer mode, for example patch activation
1618 * is not required when the default firmware patch file is used
1619 * because there are no patch data to load.
1621 if (*disable_patch
&& le16_to_cpu(cmd
->opcode
) == 0xfc8e)
1624 cmd_param
= *fw_ptr
;
1625 *fw_ptr
+= cmd
->plen
;
1626 remain
-= cmd
->plen
;
1628 /* This reads the expected events when the above command is sent to the
1629 * device. Some vendor commands expects more than one events, for
1630 * example command status event followed by vendor specific event.
1631 * For this case, it only keeps the last expected event. so the command
1632 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1633 * last expected event.
1635 while (remain
> HCI_EVENT_HDR_SIZE
&& *fw_ptr
[0] == 0x02) {
1639 evt
= (struct hci_event_hdr
*)(*fw_ptr
);
1640 *fw_ptr
+= sizeof(*evt
);
1641 remain
-= sizeof(*evt
);
1643 if (remain
< evt
->plen
) {
1644 BT_ERR("%s Intel fw corrupted: invalid evt len",
1649 evt_param
= *fw_ptr
;
1650 *fw_ptr
+= evt
->plen
;
1651 remain
-= evt
->plen
;
1654 /* Every HCI commands in the firmware file has its correspond event.
1655 * If event is not found or remain is smaller than zero, the firmware
1656 * file is corrupted.
1658 if (!evt
|| !evt_param
|| remain
< 0) {
1659 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev
->name
);
1663 skb
= __hci_cmd_sync_ev(hdev
, le16_to_cpu(cmd
->opcode
), cmd
->plen
,
1664 cmd_param
, evt
->evt
, HCI_INIT_TIMEOUT
);
1666 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1667 hdev
->name
, cmd
->opcode
, PTR_ERR(skb
));
1668 return PTR_ERR(skb
);
1671 /* It ensures that the returned event matches the event data read from
1672 * the firmware file. At fist, it checks the length and then
1673 * the contents of the event.
1675 if (skb
->len
!= evt
->plen
) {
1676 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev
->name
,
1677 le16_to_cpu(cmd
->opcode
));
1682 if (memcmp(skb
->data
, evt_param
, evt
->plen
)) {
1683 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1684 hdev
->name
, le16_to_cpu(cmd
->opcode
));
1693 static int btusb_setup_intel(struct hci_dev
*hdev
)
1695 struct sk_buff
*skb
;
1696 const struct firmware
*fw
;
1698 int disable_patch
, err
;
1699 struct intel_version ver
;
1701 BT_DBG("%s", hdev
->name
);
1703 /* The controller has a bug with the first HCI command sent to it
1704 * returning number of completed commands as zero. This would stall the
1705 * command processing in the Bluetooth core.
1707 * As a workaround, send HCI Reset command first which will reset the
1708 * number of completed commands and allow normal command processing
1711 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
, HCI_INIT_TIMEOUT
);
1713 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1714 hdev
->name
, PTR_ERR(skb
));
1715 return PTR_ERR(skb
);
1719 /* Read Intel specific controller version first to allow selection of
1720 * which firmware file to load.
1722 * The returned information are hardware variant and revision plus
1723 * firmware variant, revision and build number.
1725 err
= btintel_read_version(hdev
, &ver
);
1729 bt_dev_info(hdev
, "read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1730 ver
.hw_platform
, ver
.hw_variant
, ver
.hw_revision
,
1731 ver
.fw_variant
, ver
.fw_revision
, ver
.fw_build_num
,
1732 ver
.fw_build_ww
, ver
.fw_build_yy
, ver
.fw_patch_num
);
1734 /* fw_patch_num indicates the version of patch the device currently
1735 * have. If there is no patch data in the device, it is always 0x00.
1736 * So, if it is other than 0x00, no need to patch the device again.
1738 if (ver
.fw_patch_num
) {
1739 bt_dev_info(hdev
, "Intel device is already patched. "
1740 "patch num: %02x", ver
.fw_patch_num
);
1744 /* Opens the firmware patch file based on the firmware version read
1745 * from the controller. If it fails to open the matching firmware
1746 * patch file, it tries to open the default firmware patch file.
1747 * If no patch file is found, allow the device to operate without
1750 fw
= btusb_setup_intel_get_fw(hdev
, &ver
);
1755 /* Enable the manufacturer mode of the controller.
1756 * Only while this mode is enabled, the driver can download the
1757 * firmware patch data and configuration parameters.
1759 err
= btintel_enter_mfg(hdev
);
1761 release_firmware(fw
);
1767 /* The firmware data file consists of list of Intel specific HCI
1768 * commands and its expected events. The first byte indicates the
1769 * type of the message, either HCI command or HCI event.
1771 * It reads the command and its expected event from the firmware file,
1772 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1773 * the returned event is compared with the event read from the firmware
1774 * file and it will continue until all the messages are downloaded to
1777 * Once the firmware patching is completed successfully,
1778 * the manufacturer mode is disabled with reset and activating the
1781 * If the firmware patching fails, the manufacturer mode is
1782 * disabled with reset and deactivating the patch.
1784 * If the default patch file is used, no reset is done when disabling
1787 while (fw
->size
> fw_ptr
- fw
->data
) {
1790 ret
= btusb_setup_intel_patching(hdev
, fw
, &fw_ptr
,
1793 goto exit_mfg_deactivate
;
1796 release_firmware(fw
);
1799 goto exit_mfg_disable
;
1801 /* Patching completed successfully and disable the manufacturer mode
1802 * with reset and activate the downloaded firmware patches.
1804 err
= btintel_exit_mfg(hdev
, true, true);
1808 bt_dev_info(hdev
, "Intel firmware patch completed and activated");
1813 /* Disable the manufacturer mode without reset */
1814 err
= btintel_exit_mfg(hdev
, false, false);
1818 bt_dev_info(hdev
, "Intel firmware patch completed");
1822 exit_mfg_deactivate
:
1823 release_firmware(fw
);
1825 /* Patching failed. Disable the manufacturer mode with reset and
1826 * deactivate the downloaded firmware patches.
1828 err
= btintel_exit_mfg(hdev
, true, false);
1832 bt_dev_info(hdev
, "Intel firmware patch completed and deactivated");
1835 /* Set the event mask for Intel specific vendor events. This enables
1836 * a few extra events that are useful during general operation.
1838 btintel_set_event_mask_mfg(hdev
, false);
1840 btintel_check_bdaddr(hdev
);
1844 static int inject_cmd_complete(struct hci_dev
*hdev
, __u16 opcode
)
1846 struct sk_buff
*skb
;
1847 struct hci_event_hdr
*hdr
;
1848 struct hci_ev_cmd_complete
*evt
;
1850 skb
= bt_skb_alloc(sizeof(*hdr
) + sizeof(*evt
) + 1, GFP_ATOMIC
);
1854 hdr
= skb_put(skb
, sizeof(*hdr
));
1855 hdr
->evt
= HCI_EV_CMD_COMPLETE
;
1856 hdr
->plen
= sizeof(*evt
) + 1;
1858 evt
= skb_put(skb
, sizeof(*evt
));
1860 evt
->opcode
= cpu_to_le16(opcode
);
1862 skb_put_u8(skb
, 0x00);
1864 hci_skb_pkt_type(skb
) = HCI_EVENT_PKT
;
1866 return hci_recv_frame(hdev
, skb
);
1869 static int btusb_recv_bulk_intel(struct btusb_data
*data
, void *buffer
,
1872 /* When the device is in bootloader mode, then it can send
1873 * events via the bulk endpoint. These events are treated the
1874 * same way as the ones received from the interrupt endpoint.
1876 if (test_bit(BTUSB_BOOTLOADER
, &data
->flags
))
1877 return btusb_recv_intr(data
, buffer
, count
);
1879 return btusb_recv_bulk(data
, buffer
, count
);
1882 static void btusb_intel_bootup(struct btusb_data
*data
, const void *ptr
,
1885 const struct intel_bootup
*evt
= ptr
;
1887 if (len
!= sizeof(*evt
))
1890 if (test_and_clear_bit(BTUSB_BOOTING
, &data
->flags
)) {
1891 smp_mb__after_atomic();
1892 wake_up_bit(&data
->flags
, BTUSB_BOOTING
);
1896 static void btusb_intel_secure_send_result(struct btusb_data
*data
,
1897 const void *ptr
, unsigned int len
)
1899 const struct intel_secure_send_result
*evt
= ptr
;
1901 if (len
!= sizeof(*evt
))
1905 set_bit(BTUSB_FIRMWARE_FAILED
, &data
->flags
);
1907 if (test_and_clear_bit(BTUSB_DOWNLOADING
, &data
->flags
) &&
1908 test_bit(BTUSB_FIRMWARE_LOADED
, &data
->flags
)) {
1909 smp_mb__after_atomic();
1910 wake_up_bit(&data
->flags
, BTUSB_DOWNLOADING
);
1914 static int btusb_recv_event_intel(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1916 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1918 if (test_bit(BTUSB_BOOTLOADER
, &data
->flags
)) {
1919 struct hci_event_hdr
*hdr
= (void *)skb
->data
;
1921 if (skb
->len
> HCI_EVENT_HDR_SIZE
&& hdr
->evt
== 0xff &&
1923 const void *ptr
= skb
->data
+ HCI_EVENT_HDR_SIZE
+ 1;
1924 unsigned int len
= skb
->len
- HCI_EVENT_HDR_SIZE
- 1;
1926 switch (skb
->data
[2]) {
1928 /* When switching to the operational firmware
1929 * the device sends a vendor specific event
1930 * indicating that the bootup completed.
1932 btusb_intel_bootup(data
, ptr
, len
);
1935 /* When the firmware loading completes the
1936 * device sends out a vendor specific event
1937 * indicating the result of the firmware
1940 btusb_intel_secure_send_result(data
, ptr
, len
);
1946 return hci_recv_frame(hdev
, skb
);
1949 static int btusb_send_frame_intel(struct hci_dev
*hdev
, struct sk_buff
*skb
)
1951 struct btusb_data
*data
= hci_get_drvdata(hdev
);
1954 BT_DBG("%s", hdev
->name
);
1956 switch (hci_skb_pkt_type(skb
)) {
1957 case HCI_COMMAND_PKT
:
1958 if (test_bit(BTUSB_BOOTLOADER
, &data
->flags
)) {
1959 struct hci_command_hdr
*cmd
= (void *)skb
->data
;
1960 __u16 opcode
= le16_to_cpu(cmd
->opcode
);
1962 /* When in bootloader mode and the command 0xfc09
1963 * is received, it needs to be send down the
1964 * bulk endpoint. So allocate a bulk URB instead.
1966 if (opcode
== 0xfc09)
1967 urb
= alloc_bulk_urb(hdev
, skb
);
1969 urb
= alloc_ctrl_urb(hdev
, skb
);
1971 /* When the 0xfc01 command is issued to boot into
1972 * the operational firmware, it will actually not
1973 * send a command complete event. To keep the flow
1974 * control working inject that event here.
1976 if (opcode
== 0xfc01)
1977 inject_cmd_complete(hdev
, opcode
);
1979 urb
= alloc_ctrl_urb(hdev
, skb
);
1982 return PTR_ERR(urb
);
1984 hdev
->stat
.cmd_tx
++;
1985 return submit_or_queue_tx_urb(hdev
, urb
);
1987 case HCI_ACLDATA_PKT
:
1988 urb
= alloc_bulk_urb(hdev
, skb
);
1990 return PTR_ERR(urb
);
1992 hdev
->stat
.acl_tx
++;
1993 return submit_or_queue_tx_urb(hdev
, urb
);
1995 case HCI_SCODATA_PKT
:
1996 if (hci_conn_num(hdev
, SCO_LINK
) < 1)
1999 urb
= alloc_isoc_urb(hdev
, skb
);
2001 return PTR_ERR(urb
);
2003 hdev
->stat
.sco_tx
++;
2004 return submit_tx_urb(hdev
, urb
);
2010 static int btusb_setup_intel_new(struct hci_dev
*hdev
)
2012 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2013 struct intel_version ver
;
2014 struct intel_boot_params params
;
2015 const struct firmware
*fw
;
2018 ktime_t calltime
, delta
, rettime
;
2019 unsigned long long duration
;
2022 BT_DBG("%s", hdev
->name
);
2024 /* Set the default boot parameter to 0x0 and it is updated to
2025 * SKU specific boot parameter after reading Intel_Write_Boot_Params
2026 * command while downloading the firmware.
2028 boot_param
= 0x00000000;
2030 calltime
= ktime_get();
2032 /* Read the Intel version information to determine if the device
2033 * is in bootloader mode or if it already has operational firmware
2036 err
= btintel_read_version(hdev
, &ver
);
2040 /* The hardware platform number has a fixed value of 0x37 and
2041 * for now only accept this single value.
2043 if (ver
.hw_platform
!= 0x37) {
2044 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2045 hdev
->name
, ver
.hw_platform
);
2049 /* Check for supported iBT hardware variants of this firmware
2052 * This check has been put in place to ensure correct forward
2053 * compatibility options when newer hardware variants come along.
2055 switch (ver
.hw_variant
) {
2056 case 0x0b: /* SfP */
2057 case 0x0c: /* WsP */
2058 case 0x11: /* JfP */
2059 case 0x12: /* ThP */
2062 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2063 hdev
->name
, ver
.hw_variant
);
2067 btintel_version_info(hdev
, &ver
);
2069 /* The firmware variant determines if the device is in bootloader
2070 * mode or is running operational firmware. The value 0x06 identifies
2071 * the bootloader and the value 0x23 identifies the operational
2074 * When the operational firmware is already present, then only
2075 * the check for valid Bluetooth device address is needed. This
2076 * determines if the device will be added as configured or
2077 * unconfigured controller.
2079 * It is not possible to use the Secure Boot Parameters in this
2080 * case since that command is only available in bootloader mode.
2082 if (ver
.fw_variant
== 0x23) {
2083 clear_bit(BTUSB_BOOTLOADER
, &data
->flags
);
2084 btintel_check_bdaddr(hdev
);
2088 /* If the device is not in bootloader mode, then the only possible
2089 * choice is to return an error and abort the device initialization.
2091 if (ver
.fw_variant
!= 0x06) {
2092 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2093 hdev
->name
, ver
.fw_variant
);
2097 /* Read the secure boot parameters to identify the operating
2098 * details of the bootloader.
2100 err
= btintel_read_boot_params(hdev
, ¶ms
);
2104 /* It is required that every single firmware fragment is acknowledged
2105 * with a command complete event. If the boot parameters indicate
2106 * that this bootloader does not send them, then abort the setup.
2108 if (params
.limited_cce
!= 0x00) {
2109 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2110 hdev
->name
, params
.limited_cce
);
2114 /* If the OTP has no valid Bluetooth device address, then there will
2115 * also be no valid address for the operational firmware.
2117 if (!bacmp(¶ms
.otp_bdaddr
, BDADDR_ANY
)) {
2118 bt_dev_info(hdev
, "No device address configured");
2119 set_bit(HCI_QUIRK_INVALID_BDADDR
, &hdev
->quirks
);
2122 /* With this Intel bootloader only the hardware variant and device
2123 * revision information are used to select the right firmware for SfP
2126 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2128 * Currently the supported hardware variants are:
2129 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2130 * 12 (0x0c) for iBT3.5 (WsP)
2132 * For ThP/JfP and for future SKU's, the FW name varies based on HW
2133 * variant, HW revision and FW revision, as these are dependent on CNVi
2134 * and RF Combination.
2136 * 17 (0x11) for iBT3.5 (JfP)
2137 * 18 (0x12) for iBT3.5 (ThP)
2139 * The firmware file name for these will be
2140 * ibt-<hw_variant>-<hw_revision>-<fw_revision>.sfi.
2143 switch (ver
.hw_variant
) {
2144 case 0x0b: /* SfP */
2145 case 0x0c: /* WsP */
2146 snprintf(fwname
, sizeof(fwname
), "intel/ibt-%u-%u.sfi",
2147 le16_to_cpu(ver
.hw_variant
),
2148 le16_to_cpu(params
.dev_revid
));
2150 case 0x11: /* JfP */
2151 case 0x12: /* ThP */
2152 snprintf(fwname
, sizeof(fwname
), "intel/ibt-%u-%u-%u.sfi",
2153 le16_to_cpu(ver
.hw_variant
),
2154 le16_to_cpu(ver
.hw_revision
),
2155 le16_to_cpu(ver
.fw_revision
));
2158 BT_ERR("%s: Unsupported Intel firmware naming", hdev
->name
);
2162 err
= request_firmware(&fw
, fwname
, &hdev
->dev
);
2164 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2169 bt_dev_info(hdev
, "Found device firmware: %s", fwname
);
2171 /* Save the DDC file name for later use to apply once the firmware
2172 * downloading is done.
2174 switch (ver
.hw_variant
) {
2175 case 0x0b: /* SfP */
2176 case 0x0c: /* WsP */
2177 snprintf(fwname
, sizeof(fwname
), "intel/ibt-%u-%u.ddc",
2178 le16_to_cpu(ver
.hw_variant
),
2179 le16_to_cpu(params
.dev_revid
));
2181 case 0x11: /* JfP */
2182 case 0x12: /* ThP */
2183 snprintf(fwname
, sizeof(fwname
), "intel/ibt-%u-%u-%u.ddc",
2184 le16_to_cpu(ver
.hw_variant
),
2185 le16_to_cpu(ver
.hw_revision
),
2186 le16_to_cpu(ver
.fw_revision
));
2189 BT_ERR("%s: Unsupported Intel firmware naming", hdev
->name
);
2193 if (fw
->size
< 644) {
2194 BT_ERR("%s: Invalid size of firmware file (%zu)",
2195 hdev
->name
, fw
->size
);
2200 set_bit(BTUSB_DOWNLOADING
, &data
->flags
);
2202 /* Start firmware downloading and get boot parameter */
2203 err
= btintel_download_firmware(hdev
, fw
, &boot_param
);
2207 set_bit(BTUSB_FIRMWARE_LOADED
, &data
->flags
);
2209 bt_dev_info(hdev
, "Waiting for firmware download to complete");
2211 /* Before switching the device into operational mode and with that
2212 * booting the loaded firmware, wait for the bootloader notification
2213 * that all fragments have been successfully received.
2215 * When the event processing receives the notification, then the
2216 * BTUSB_DOWNLOADING flag will be cleared.
2218 * The firmware loading should not take longer than 5 seconds
2219 * and thus just timeout if that happens and fail the setup
2222 err
= wait_on_bit_timeout(&data
->flags
, BTUSB_DOWNLOADING
,
2224 msecs_to_jiffies(5000));
2225 if (err
== -EINTR
) {
2226 BT_ERR("%s: Firmware loading interrupted", hdev
->name
);
2231 BT_ERR("%s: Firmware loading timeout", hdev
->name
);
2236 if (test_bit(BTUSB_FIRMWARE_FAILED
, &data
->flags
)) {
2237 BT_ERR("%s: Firmware loading failed", hdev
->name
);
2242 rettime
= ktime_get();
2243 delta
= ktime_sub(rettime
, calltime
);
2244 duration
= (unsigned long long) ktime_to_ns(delta
) >> 10;
2246 bt_dev_info(hdev
, "Firmware loaded in %llu usecs", duration
);
2249 release_firmware(fw
);
2254 calltime
= ktime_get();
2256 set_bit(BTUSB_BOOTING
, &data
->flags
);
2258 err
= btintel_send_intel_reset(hdev
, boot_param
);
2262 /* The bootloader will not indicate when the device is ready. This
2263 * is done by the operational firmware sending bootup notification.
2265 * Booting into operational firmware should not take longer than
2266 * 1 second. However if that happens, then just fail the setup
2267 * since something went wrong.
2269 bt_dev_info(hdev
, "Waiting for device to boot");
2271 err
= wait_on_bit_timeout(&data
->flags
, BTUSB_BOOTING
,
2273 msecs_to_jiffies(1000));
2275 if (err
== -EINTR
) {
2276 BT_ERR("%s: Device boot interrupted", hdev
->name
);
2281 BT_ERR("%s: Device boot timeout", hdev
->name
);
2285 rettime
= ktime_get();
2286 delta
= ktime_sub(rettime
, calltime
);
2287 duration
= (unsigned long long) ktime_to_ns(delta
) >> 10;
2289 bt_dev_info(hdev
, "Device booted in %llu usecs", duration
);
2291 clear_bit(BTUSB_BOOTLOADER
, &data
->flags
);
2293 /* Once the device is running in operational mode, it needs to apply
2294 * the device configuration (DDC) parameters.
2296 * The device can work without DDC parameters, so even if it fails
2297 * to load the file, no need to fail the setup.
2299 btintel_load_ddc_config(hdev
, fwname
);
2301 /* Set the event mask for Intel specific vendor events. This enables
2302 * a few extra events that are useful during general operation. It
2303 * does not enable any debugging related events.
2305 * The device will function correctly without these events enabled
2306 * and thus no need to fail the setup.
2308 btintel_set_event_mask(hdev
, false);
2313 static int btusb_shutdown_intel(struct hci_dev
*hdev
)
2315 struct sk_buff
*skb
;
2318 /* Some platforms have an issue with BT LED when the interface is
2319 * down or BT radio is turned off, which takes 5 seconds to BT LED
2320 * goes off. This command turns off the BT LED immediately.
2322 skb
= __hci_cmd_sync(hdev
, 0xfc3f, 0, NULL
, HCI_INIT_TIMEOUT
);
2325 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2335 /* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
2336 static int marvell_config_oob_wake(struct hci_dev
*hdev
)
2338 struct sk_buff
*skb
;
2339 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2340 struct device
*dev
= &data
->udev
->dev
;
2341 u16 pin
, gap
, opcode
;
2345 /* Move on if no wakeup pin specified */
2346 if (of_property_read_u16(dev
->of_node
, "marvell,wakeup-pin", &pin
) ||
2347 of_property_read_u16(dev
->of_node
, "marvell,wakeup-gap-ms", &gap
))
2350 /* Vendor specific command to configure a GPIO as wake-up pin */
2351 opcode
= hci_opcode_pack(0x3F, 0x59);
2352 cmd
[0] = opcode
& 0xFF;
2353 cmd
[1] = opcode
>> 8;
2354 cmd
[2] = 2; /* length of parameters that follow */
2356 cmd
[4] = gap
; /* time in ms, for which wakeup pin should be asserted */
2358 skb
= bt_skb_alloc(sizeof(cmd
), GFP_KERNEL
);
2360 bt_dev_err(hdev
, "%s: No memory\n", __func__
);
2364 skb_put_data(skb
, cmd
, sizeof(cmd
));
2365 hci_skb_pkt_type(skb
) = HCI_COMMAND_PKT
;
2367 ret
= btusb_send_frame(hdev
, skb
);
2369 bt_dev_err(hdev
, "%s: configuration failed\n", __func__
);
2378 static int btusb_set_bdaddr_marvell(struct hci_dev
*hdev
,
2379 const bdaddr_t
*bdaddr
)
2381 struct sk_buff
*skb
;
2386 buf
[1] = sizeof(bdaddr_t
);
2387 memcpy(buf
+ 2, bdaddr
, sizeof(bdaddr_t
));
2389 skb
= __hci_cmd_sync(hdev
, 0xfc22, sizeof(buf
), buf
, HCI_INIT_TIMEOUT
);
2392 bt_dev_err(hdev
, "changing Marvell device address failed (%ld)",
2401 static int btusb_set_bdaddr_ath3012(struct hci_dev
*hdev
,
2402 const bdaddr_t
*bdaddr
)
2404 struct sk_buff
*skb
;
2411 buf
[3] = sizeof(bdaddr_t
);
2412 memcpy(buf
+ 4, bdaddr
, sizeof(bdaddr_t
));
2414 skb
= __hci_cmd_sync(hdev
, 0xfc0b, sizeof(buf
), buf
, HCI_INIT_TIMEOUT
);
2417 bt_dev_err(hdev
, "Change address command failed (%ld)", ret
);
2425 #define QCA_DFU_PACKET_LEN 4096
2427 #define QCA_GET_TARGET_VERSION 0x09
2428 #define QCA_CHECK_STATUS 0x05
2429 #define QCA_DFU_DOWNLOAD 0x01
2431 #define QCA_SYSCFG_UPDATED 0x40
2432 #define QCA_PATCH_UPDATED 0x80
2433 #define QCA_DFU_TIMEOUT 3000
2435 struct qca_version
{
2437 __le32 patch_version
;
2443 struct qca_rampatch_version
{
2445 __le16 patch_version
;
2448 struct qca_device_info
{
2450 u8 rampatch_hdr
; /* length of header in rampatch */
2451 u8 nvm_hdr
; /* length of header in NVM */
2452 u8 ver_offset
; /* offset of version structure in rampatch */
2455 static const struct qca_device_info qca_devices_table
[] = {
2456 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2457 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
2458 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
2459 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2460 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2461 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2464 static int btusb_qca_send_vendor_req(struct hci_dev
*hdev
, u8 request
,
2465 void *data
, u16 size
)
2467 struct btusb_data
*btdata
= hci_get_drvdata(hdev
);
2468 struct usb_device
*udev
= btdata
->udev
;
2472 buf
= kmalloc(size
, GFP_KERNEL
);
2476 /* Found some of USB hosts have IOT issues with ours so that we should
2477 * not wait until HCI layer is ready.
2479 pipe
= usb_rcvctrlpipe(udev
, 0);
2480 err
= usb_control_msg(udev
, pipe
, request
, USB_TYPE_VENDOR
| USB_DIR_IN
,
2481 0, 0, buf
, size
, USB_CTRL_SET_TIMEOUT
);
2483 bt_dev_err(hdev
, "Failed to access otp area (%d)", err
);
2487 memcpy(data
, buf
, size
);
2495 static int btusb_setup_qca_download_fw(struct hci_dev
*hdev
,
2496 const struct firmware
*firmware
,
2499 struct btusb_data
*btdata
= hci_get_drvdata(hdev
);
2500 struct usb_device
*udev
= btdata
->udev
;
2501 size_t count
, size
, sent
= 0;
2505 buf
= kmalloc(QCA_DFU_PACKET_LEN
, GFP_KERNEL
);
2509 count
= firmware
->size
;
2511 size
= min_t(size_t, count
, hdr_size
);
2512 memcpy(buf
, firmware
->data
, size
);
2514 /* USB patches should go down to controller through USB path
2515 * because binary format fits to go down through USB channel.
2516 * USB control path is for patching headers and USB bulk is for
2519 pipe
= usb_sndctrlpipe(udev
, 0);
2520 err
= usb_control_msg(udev
, pipe
, QCA_DFU_DOWNLOAD
, USB_TYPE_VENDOR
,
2521 0, 0, buf
, size
, USB_CTRL_SET_TIMEOUT
);
2523 bt_dev_err(hdev
, "Failed to send headers (%d)", err
);
2531 size
= min_t(size_t, count
, QCA_DFU_PACKET_LEN
);
2533 memcpy(buf
, firmware
->data
+ sent
, size
);
2535 pipe
= usb_sndbulkpipe(udev
, 0x02);
2536 err
= usb_bulk_msg(udev
, pipe
, buf
, size
, &len
,
2539 bt_dev_err(hdev
, "Failed to send body at %zd of %zd (%d)",
2540 sent
, firmware
->size
, err
);
2545 bt_dev_err(hdev
, "Failed to get bulk buffer");
2559 static int btusb_setup_qca_load_rampatch(struct hci_dev
*hdev
,
2560 struct qca_version
*ver
,
2561 const struct qca_device_info
*info
)
2563 struct qca_rampatch_version
*rver
;
2564 const struct firmware
*fw
;
2565 u32 ver_rom
, ver_patch
;
2566 u16 rver_rom
, rver_patch
;
2570 ver_rom
= le32_to_cpu(ver
->rom_version
);
2571 ver_patch
= le32_to_cpu(ver
->patch_version
);
2573 snprintf(fwname
, sizeof(fwname
), "qca/rampatch_usb_%08x.bin", ver_rom
);
2575 err
= request_firmware(&fw
, fwname
, &hdev
->dev
);
2577 bt_dev_err(hdev
, "failed to request rampatch file: %s (%d)",
2582 bt_dev_info(hdev
, "using rampatch file: %s", fwname
);
2584 rver
= (struct qca_rampatch_version
*)(fw
->data
+ info
->ver_offset
);
2585 rver_rom
= le16_to_cpu(rver
->rom_version
);
2586 rver_patch
= le16_to_cpu(rver
->patch_version
);
2588 bt_dev_info(hdev
, "QCA: patch rome 0x%x build 0x%x, "
2589 "firmware rome 0x%x build 0x%x",
2590 rver_rom
, rver_patch
, ver_rom
, ver_patch
);
2592 if (rver_rom
!= ver_rom
|| rver_patch
<= ver_patch
) {
2593 bt_dev_err(hdev
, "rampatch file version did not match with firmware");
2598 err
= btusb_setup_qca_download_fw(hdev
, fw
, info
->rampatch_hdr
);
2601 release_firmware(fw
);
2606 static int btusb_setup_qca_load_nvm(struct hci_dev
*hdev
,
2607 struct qca_version
*ver
,
2608 const struct qca_device_info
*info
)
2610 const struct firmware
*fw
;
2614 snprintf(fwname
, sizeof(fwname
), "qca/nvm_usb_%08x.bin",
2615 le32_to_cpu(ver
->rom_version
));
2617 err
= request_firmware(&fw
, fwname
, &hdev
->dev
);
2619 bt_dev_err(hdev
, "failed to request NVM file: %s (%d)",
2624 bt_dev_info(hdev
, "using NVM file: %s", fwname
);
2626 err
= btusb_setup_qca_download_fw(hdev
, fw
, info
->nvm_hdr
);
2628 release_firmware(fw
);
2633 static int btusb_setup_qca(struct hci_dev
*hdev
)
2635 const struct qca_device_info
*info
= NULL
;
2636 struct qca_version ver
;
2641 err
= btusb_qca_send_vendor_req(hdev
, QCA_GET_TARGET_VERSION
, &ver
,
2646 ver_rom
= le32_to_cpu(ver
.rom_version
);
2647 for (i
= 0; i
< ARRAY_SIZE(qca_devices_table
); i
++) {
2648 if (ver_rom
== qca_devices_table
[i
].rom_version
)
2649 info
= &qca_devices_table
[i
];
2652 bt_dev_err(hdev
, "don't support firmware rome 0x%x", ver_rom
);
2656 err
= btusb_qca_send_vendor_req(hdev
, QCA_CHECK_STATUS
, &status
,
2661 if (!(status
& QCA_PATCH_UPDATED
)) {
2662 err
= btusb_setup_qca_load_rampatch(hdev
, &ver
, info
);
2667 if (!(status
& QCA_SYSCFG_UPDATED
)) {
2668 err
= btusb_setup_qca_load_nvm(hdev
, &ver
, info
);
2676 #ifdef CONFIG_BT_HCIBTUSB_BCM
2677 static inline int __set_diag_interface(struct hci_dev
*hdev
)
2679 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2680 struct usb_interface
*intf
= data
->diag
;
2686 data
->diag_tx_ep
= NULL
;
2687 data
->diag_rx_ep
= NULL
;
2689 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
2690 struct usb_endpoint_descriptor
*ep_desc
;
2692 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
2694 if (!data
->diag_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
2695 data
->diag_tx_ep
= ep_desc
;
2699 if (!data
->diag_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
2700 data
->diag_rx_ep
= ep_desc
;
2705 if (!data
->diag_tx_ep
|| !data
->diag_rx_ep
) {
2706 bt_dev_err(hdev
, "invalid diagnostic descriptors");
2713 static struct urb
*alloc_diag_urb(struct hci_dev
*hdev
, bool enable
)
2715 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2716 struct sk_buff
*skb
;
2720 if (!data
->diag_tx_ep
)
2721 return ERR_PTR(-ENODEV
);
2723 urb
= usb_alloc_urb(0, GFP_KERNEL
);
2725 return ERR_PTR(-ENOMEM
);
2727 skb
= bt_skb_alloc(2, GFP_KERNEL
);
2730 return ERR_PTR(-ENOMEM
);
2733 skb_put_u8(skb
, 0xf0);
2734 skb_put_u8(skb
, enable
);
2736 pipe
= usb_sndbulkpipe(data
->udev
, data
->diag_tx_ep
->bEndpointAddress
);
2738 usb_fill_bulk_urb(urb
, data
->udev
, pipe
,
2739 skb
->data
, skb
->len
, btusb_tx_complete
, skb
);
2741 skb
->dev
= (void *)hdev
;
2746 static int btusb_bcm_set_diag(struct hci_dev
*hdev
, bool enable
)
2748 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2754 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
2757 urb
= alloc_diag_urb(hdev
, enable
);
2759 return PTR_ERR(urb
);
2761 return submit_or_queue_tx_urb(hdev
, urb
);
2766 static irqreturn_t
btusb_oob_wake_handler(int irq
, void *priv
)
2768 struct btusb_data
*data
= priv
;
2770 pm_wakeup_event(&data
->udev
->dev
, 0);
2773 /* Disable only if not already disabled (keep it balanced) */
2774 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED
, &data
->flags
)) {
2775 disable_irq_nosync(irq
);
2776 disable_irq_wake(irq
);
2781 static const struct of_device_id btusb_match_table
[] = {
2782 { .compatible
= "usb1286,204e" },
2785 MODULE_DEVICE_TABLE(of
, btusb_match_table
);
2787 /* Use an oob wakeup pin? */
2788 static int btusb_config_oob_wake(struct hci_dev
*hdev
)
2790 struct btusb_data
*data
= hci_get_drvdata(hdev
);
2791 struct device
*dev
= &data
->udev
->dev
;
2794 clear_bit(BTUSB_OOB_WAKE_ENABLED
, &data
->flags
);
2796 if (!of_match_device(btusb_match_table
, dev
))
2799 /* Move on if no IRQ specified */
2800 irq
= of_irq_get_byname(dev
->of_node
, "wakeup");
2802 bt_dev_dbg(hdev
, "%s: no OOB Wakeup IRQ in DT", __func__
);
2806 ret
= devm_request_irq(&hdev
->dev
, irq
, btusb_oob_wake_handler
,
2807 0, "OOB Wake-on-BT", data
);
2809 bt_dev_err(hdev
, "%s: IRQ request failed", __func__
);
2813 ret
= device_init_wakeup(dev
, true);
2815 bt_dev_err(hdev
, "%s: failed to init_wakeup", __func__
);
2819 data
->oob_wake_irq
= irq
;
2821 bt_dev_info(hdev
, "OOB Wake-on-BT configured at IRQ %u", irq
);
2826 static int btusb_probe(struct usb_interface
*intf
,
2827 const struct usb_device_id
*id
)
2829 struct usb_endpoint_descriptor
*ep_desc
;
2830 struct btusb_data
*data
;
2831 struct hci_dev
*hdev
;
2832 unsigned ifnum_base
;
2835 BT_DBG("intf %p id %p", intf
, id
);
2837 /* interface numbers are hardcoded in the spec */
2838 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0) {
2839 if (!(id
->driver_info
& BTUSB_IFNUM_2
))
2841 if (intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 2)
2845 ifnum_base
= intf
->cur_altsetting
->desc
.bInterfaceNumber
;
2847 if (!id
->driver_info
) {
2848 const struct usb_device_id
*match
;
2850 match
= usb_match_id(intf
, blacklist_table
);
2855 if (id
->driver_info
== BTUSB_IGNORE
)
2858 if (id
->driver_info
& BTUSB_ATH3012
) {
2859 struct usb_device
*udev
= interface_to_usbdev(intf
);
2861 /* Old firmware would otherwise let ath3k driver load
2862 * patch and sysconfig files
2864 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) <= 0x0001)
2868 data
= devm_kzalloc(&intf
->dev
, sizeof(*data
), GFP_KERNEL
);
2872 for (i
= 0; i
< intf
->cur_altsetting
->desc
.bNumEndpoints
; i
++) {
2873 ep_desc
= &intf
->cur_altsetting
->endpoint
[i
].desc
;
2875 if (!data
->intr_ep
&& usb_endpoint_is_int_in(ep_desc
)) {
2876 data
->intr_ep
= ep_desc
;
2880 if (!data
->bulk_tx_ep
&& usb_endpoint_is_bulk_out(ep_desc
)) {
2881 data
->bulk_tx_ep
= ep_desc
;
2885 if (!data
->bulk_rx_ep
&& usb_endpoint_is_bulk_in(ep_desc
)) {
2886 data
->bulk_rx_ep
= ep_desc
;
2891 if (!data
->intr_ep
|| !data
->bulk_tx_ep
|| !data
->bulk_rx_ep
)
2894 if (id
->driver_info
& BTUSB_AMP
) {
2895 data
->cmdreq_type
= USB_TYPE_CLASS
| 0x01;
2896 data
->cmdreq
= 0x2b;
2898 data
->cmdreq_type
= USB_TYPE_CLASS
;
2899 data
->cmdreq
= 0x00;
2902 data
->udev
= interface_to_usbdev(intf
);
2905 INIT_WORK(&data
->work
, btusb_work
);
2906 INIT_WORK(&data
->waker
, btusb_waker
);
2907 init_usb_anchor(&data
->deferred
);
2908 init_usb_anchor(&data
->tx_anchor
);
2909 spin_lock_init(&data
->txlock
);
2911 init_usb_anchor(&data
->intr_anchor
);
2912 init_usb_anchor(&data
->bulk_anchor
);
2913 init_usb_anchor(&data
->isoc_anchor
);
2914 init_usb_anchor(&data
->diag_anchor
);
2915 spin_lock_init(&data
->rxlock
);
2917 if (id
->driver_info
& BTUSB_INTEL_NEW
) {
2918 data
->recv_event
= btusb_recv_event_intel
;
2919 data
->recv_bulk
= btusb_recv_bulk_intel
;
2920 set_bit(BTUSB_BOOTLOADER
, &data
->flags
);
2922 data
->recv_event
= hci_recv_frame
;
2923 data
->recv_bulk
= btusb_recv_bulk
;
2926 hdev
= hci_alloc_dev();
2930 hdev
->bus
= HCI_USB
;
2931 hci_set_drvdata(hdev
, data
);
2933 if (id
->driver_info
& BTUSB_AMP
)
2934 hdev
->dev_type
= HCI_AMP
;
2936 hdev
->dev_type
= HCI_PRIMARY
;
2940 SET_HCIDEV_DEV(hdev
, &intf
->dev
);
2942 hdev
->open
= btusb_open
;
2943 hdev
->close
= btusb_close
;
2944 hdev
->flush
= btusb_flush
;
2945 hdev
->send
= btusb_send_frame
;
2946 hdev
->notify
= btusb_notify
;
2949 err
= btusb_config_oob_wake(hdev
);
2953 /* Marvell devices may need a specific chip configuration */
2954 if (id
->driver_info
& BTUSB_MARVELL
&& data
->oob_wake_irq
) {
2955 err
= marvell_config_oob_wake(hdev
);
2960 if (id
->driver_info
& BTUSB_CW6622
)
2961 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
, &hdev
->quirks
);
2963 if (id
->driver_info
& BTUSB_BCM2045
)
2964 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
, &hdev
->quirks
);
2966 if (id
->driver_info
& BTUSB_BCM92035
)
2967 hdev
->setup
= btusb_setup_bcm92035
;
2969 #ifdef CONFIG_BT_HCIBTUSB_BCM
2970 if (id
->driver_info
& BTUSB_BCM_PATCHRAM
) {
2971 hdev
->manufacturer
= 15;
2972 hdev
->setup
= btbcm_setup_patchram
;
2973 hdev
->set_diag
= btusb_bcm_set_diag
;
2974 hdev
->set_bdaddr
= btbcm_set_bdaddr
;
2976 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2977 data
->diag
= usb_ifnum_to_if(data
->udev
, ifnum_base
+ 2);
2980 if (id
->driver_info
& BTUSB_BCM_APPLE
) {
2981 hdev
->manufacturer
= 15;
2982 hdev
->setup
= btbcm_setup_apple
;
2983 hdev
->set_diag
= btusb_bcm_set_diag
;
2985 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2986 data
->diag
= usb_ifnum_to_if(data
->udev
, ifnum_base
+ 2);
2990 if (id
->driver_info
& BTUSB_INTEL
) {
2991 hdev
->manufacturer
= 2;
2992 hdev
->setup
= btusb_setup_intel
;
2993 hdev
->shutdown
= btusb_shutdown_intel
;
2994 hdev
->set_diag
= btintel_set_diag_mfg
;
2995 hdev
->set_bdaddr
= btintel_set_bdaddr
;
2996 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
2997 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY
, &hdev
->quirks
);
2998 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG
, &hdev
->quirks
);
3001 if (id
->driver_info
& BTUSB_INTEL_NEW
) {
3002 hdev
->manufacturer
= 2;
3003 hdev
->send
= btusb_send_frame_intel
;
3004 hdev
->setup
= btusb_setup_intel_new
;
3005 hdev
->hw_error
= btintel_hw_error
;
3006 hdev
->set_diag
= btintel_set_diag
;
3007 hdev
->set_bdaddr
= btintel_set_bdaddr
;
3008 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
3009 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG
, &hdev
->quirks
);
3012 if (id
->driver_info
& BTUSB_MARVELL
)
3013 hdev
->set_bdaddr
= btusb_set_bdaddr_marvell
;
3015 if (id
->driver_info
& BTUSB_SWAVE
) {
3016 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE
, &hdev
->quirks
);
3017 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS
, &hdev
->quirks
);
3020 if (id
->driver_info
& BTUSB_INTEL_BOOT
) {
3021 hdev
->manufacturer
= 2;
3022 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
3025 if (id
->driver_info
& BTUSB_ATH3012
) {
3026 hdev
->set_bdaddr
= btusb_set_bdaddr_ath3012
;
3027 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY
, &hdev
->quirks
);
3028 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER
, &hdev
->quirks
);
3031 if (id
->driver_info
& BTUSB_QCA_ROME
) {
3032 data
->setup_on_usb
= btusb_setup_qca
;
3033 hdev
->set_bdaddr
= btusb_set_bdaddr_ath3012
;
3035 /* QCA Rome devices lose their updated firmware over suspend,
3036 * but the USB hub doesn't notice any status change.
3037 * explicitly request a device reset on resume.
3039 interface_to_usbdev(intf
)->quirks
|= USB_QUIRK_RESET_RESUME
;
3042 #ifdef CONFIG_BT_HCIBTUSB_RTL
3043 if (id
->driver_info
& BTUSB_REALTEK
) {
3044 hdev
->setup
= btrtl_setup_realtek
;
3046 /* Realtek devices lose their updated firmware over suspend,
3047 * but the USB hub doesn't notice any status change.
3048 * Explicitly request a device reset on resume.
3050 interface_to_usbdev(intf
)->quirks
|= USB_QUIRK_RESET_RESUME
;
3054 if (id
->driver_info
& BTUSB_AMP
) {
3055 /* AMP controllers do not support SCO packets */
3058 /* Interface orders are hardcoded in the specification */
3059 data
->isoc
= usb_ifnum_to_if(data
->udev
, ifnum_base
+ 1);
3060 data
->isoc_ifnum
= ifnum_base
+ 1;
3064 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
3066 if (force_scofix
|| id
->driver_info
& BTUSB_WRONG_SCO_MTU
) {
3067 if (!disable_scofix
)
3068 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE
, &hdev
->quirks
);
3071 if (id
->driver_info
& BTUSB_BROKEN_ISOC
)
3074 if (id
->driver_info
& BTUSB_DIGIANSWER
) {
3075 data
->cmdreq_type
= USB_TYPE_VENDOR
;
3076 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
3079 if (id
->driver_info
& BTUSB_CSR
) {
3080 struct usb_device
*udev
= data
->udev
;
3081 u16 bcdDevice
= le16_to_cpu(udev
->descriptor
.bcdDevice
);
3083 /* Old firmware would otherwise execute USB reset */
3084 if (bcdDevice
< 0x117)
3085 set_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
);
3087 /* Fake CSR devices with broken commands */
3088 if (bcdDevice
<= 0x100 || bcdDevice
== 0x134)
3089 hdev
->setup
= btusb_setup_csr
;
3091 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY
, &hdev
->quirks
);
3094 if (id
->driver_info
& BTUSB_SNIFFER
) {
3095 struct usb_device
*udev
= data
->udev
;
3097 /* New sniffer firmware has crippled HCI interface */
3098 if (le16_to_cpu(udev
->descriptor
.bcdDevice
) > 0x997)
3099 set_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
);
3102 if (id
->driver_info
& BTUSB_INTEL_BOOT
) {
3103 /* A bug in the bootloader causes that interrupt interface is
3104 * only enabled after receiving SetInterface(0, AltSetting=0).
3106 err
= usb_set_interface(data
->udev
, 0, 0);
3108 BT_ERR("failed to set interface 0, alt 0 %d", err
);
3114 err
= usb_driver_claim_interface(&btusb_driver
,
3120 #ifdef CONFIG_BT_HCIBTUSB_BCM
3122 if (!usb_driver_claim_interface(&btusb_driver
,
3124 __set_diag_interface(hdev
);
3130 if (enable_autosuspend
)
3131 usb_enable_autosuspend(data
->udev
);
3133 err
= hci_register_dev(hdev
);
3137 usb_set_intfdata(intf
, data
);
3146 static void btusb_disconnect(struct usb_interface
*intf
)
3148 struct btusb_data
*data
= usb_get_intfdata(intf
);
3149 struct hci_dev
*hdev
;
3151 BT_DBG("intf %p", intf
);
3157 usb_set_intfdata(data
->intf
, NULL
);
3160 usb_set_intfdata(data
->isoc
, NULL
);
3163 usb_set_intfdata(data
->diag
, NULL
);
3165 hci_unregister_dev(hdev
);
3167 if (intf
== data
->intf
) {
3169 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
3171 usb_driver_release_interface(&btusb_driver
, data
->diag
);
3172 } else if (intf
== data
->isoc
) {
3174 usb_driver_release_interface(&btusb_driver
, data
->diag
);
3175 usb_driver_release_interface(&btusb_driver
, data
->intf
);
3176 } else if (intf
== data
->diag
) {
3177 usb_driver_release_interface(&btusb_driver
, data
->intf
);
3179 usb_driver_release_interface(&btusb_driver
, data
->isoc
);
3182 if (data
->oob_wake_irq
)
3183 device_init_wakeup(&data
->udev
->dev
, false);
3189 static int btusb_suspend(struct usb_interface
*intf
, pm_message_t message
)
3191 struct btusb_data
*data
= usb_get_intfdata(intf
);
3193 BT_DBG("intf %p", intf
);
3195 if (data
->suspend_count
++)
3198 spin_lock_irq(&data
->txlock
);
3199 if (!(PMSG_IS_AUTO(message
) && data
->tx_in_flight
)) {
3200 set_bit(BTUSB_SUSPENDING
, &data
->flags
);
3201 spin_unlock_irq(&data
->txlock
);
3203 spin_unlock_irq(&data
->txlock
);
3204 data
->suspend_count
--;
3208 cancel_work_sync(&data
->work
);
3210 btusb_stop_traffic(data
);
3211 usb_kill_anchored_urbs(&data
->tx_anchor
);
3213 if (data
->oob_wake_irq
&& device_may_wakeup(&data
->udev
->dev
)) {
3214 set_bit(BTUSB_OOB_WAKE_ENABLED
, &data
->flags
);
3215 enable_irq_wake(data
->oob_wake_irq
);
3216 enable_irq(data
->oob_wake_irq
);
3222 static void play_deferred(struct btusb_data
*data
)
3227 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
3228 usb_anchor_urb(urb
, &data
->tx_anchor
);
3230 err
= usb_submit_urb(urb
, GFP_ATOMIC
);
3232 if (err
!= -EPERM
&& err
!= -ENODEV
)
3233 BT_ERR("%s urb %p submission failed (%d)",
3234 data
->hdev
->name
, urb
, -err
);
3235 kfree(urb
->setup_packet
);
3236 usb_unanchor_urb(urb
);
3241 data
->tx_in_flight
++;
3245 /* Cleanup the rest deferred urbs. */
3246 while ((urb
= usb_get_from_anchor(&data
->deferred
))) {
3247 kfree(urb
->setup_packet
);
3252 static int btusb_resume(struct usb_interface
*intf
)
3254 struct btusb_data
*data
= usb_get_intfdata(intf
);
3255 struct hci_dev
*hdev
= data
->hdev
;
3258 BT_DBG("intf %p", intf
);
3260 if (--data
->suspend_count
)
3263 /* Disable only if not already disabled (keep it balanced) */
3264 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED
, &data
->flags
)) {
3265 disable_irq(data
->oob_wake_irq
);
3266 disable_irq_wake(data
->oob_wake_irq
);
3269 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
3272 if (test_bit(BTUSB_INTR_RUNNING
, &data
->flags
)) {
3273 err
= btusb_submit_intr_urb(hdev
, GFP_NOIO
);
3275 clear_bit(BTUSB_INTR_RUNNING
, &data
->flags
);
3280 if (test_bit(BTUSB_BULK_RUNNING
, &data
->flags
)) {
3281 err
= btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
3283 clear_bit(BTUSB_BULK_RUNNING
, &data
->flags
);
3287 btusb_submit_bulk_urb(hdev
, GFP_NOIO
);
3290 if (test_bit(BTUSB_ISOC_RUNNING
, &data
->flags
)) {
3291 if (btusb_submit_isoc_urb(hdev
, GFP_NOIO
) < 0)
3292 clear_bit(BTUSB_ISOC_RUNNING
, &data
->flags
);
3294 btusb_submit_isoc_urb(hdev
, GFP_NOIO
);
3297 spin_lock_irq(&data
->txlock
);
3298 play_deferred(data
);
3299 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
3300 spin_unlock_irq(&data
->txlock
);
3301 schedule_work(&data
->work
);
3306 usb_scuttle_anchored_urbs(&data
->deferred
);
3308 spin_lock_irq(&data
->txlock
);
3309 clear_bit(BTUSB_SUSPENDING
, &data
->flags
);
3310 spin_unlock_irq(&data
->txlock
);
3316 static struct usb_driver btusb_driver
= {
3318 .probe
= btusb_probe
,
3319 .disconnect
= btusb_disconnect
,
3321 .suspend
= btusb_suspend
,
3322 .resume
= btusb_resume
,
3324 .id_table
= btusb_table
,
3325 .supports_autosuspend
= 1,
3326 .disable_hub_initiated_lpm
= 1,
3329 module_usb_driver(btusb_driver
);
3331 module_param(disable_scofix
, bool, 0644);
3332 MODULE_PARM_DESC(disable_scofix
, "Disable fixup of wrong SCO buffer size");
3334 module_param(force_scofix
, bool, 0644);
3335 MODULE_PARM_DESC(force_scofix
, "Force fixup of wrong SCO buffers size");
3337 module_param(enable_autosuspend
, bool, 0644);
3338 MODULE_PARM_DESC(enable_autosuspend
, "Enable USB autosuspend by default");
3340 module_param(reset
, bool, 0644);
3341 MODULE_PARM_DESC(reset
, "Send HCI reset command on initialization");
3343 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3344 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION
);
3345 MODULE_VERSION(VERSION
);
3346 MODULE_LICENSE("GPL");