xref: /linux/drivers/bluetooth/btusb.c (revision e814f3fd16acfb7f9966773953de8f740a1e3202)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *
4  *  Generic Bluetooth USB driver
5  *
6  *  Copyright (C) 2005-2008  Marcel Holtmann <marcel@holtmann.org>
7  */
8 
9 #include <linux/dmi.h>
10 #include <linux/module.h>
11 #include <linux/usb.h>
12 #include <linux/usb/quirks.h>
13 #include <linux/firmware.h>
14 #include <linux/iopoll.h>
15 #include <linux/of_device.h>
16 #include <linux/of_irq.h>
17 #include <linux/suspend.h>
18 #include <linux/gpio/consumer.h>
19 #include <linux/debugfs.h>
20 #include <linux/unaligned.h>
21 
22 #include <net/bluetooth/bluetooth.h>
23 #include <net/bluetooth/hci_core.h>
24 
25 #include "btintel.h"
26 #include "btbcm.h"
27 #include "btrtl.h"
28 #include "btmtk.h"
29 
30 #define VERSION "0.8"
31 
32 static bool disable_scofix;
33 static bool force_scofix;
34 static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
35 static bool enable_poll_sync = IS_ENABLED(CONFIG_BT_HCIBTUSB_POLL_SYNC);
36 static bool reset = true;
37 
38 static struct usb_driver btusb_driver;
39 
40 #define BTUSB_IGNORE			BIT(0)
41 #define BTUSB_DIGIANSWER		BIT(1)
42 #define BTUSB_CSR			BIT(2)
43 #define BTUSB_SNIFFER			BIT(3)
44 #define BTUSB_BCM92035			BIT(4)
45 #define BTUSB_BROKEN_ISOC		BIT(5)
46 #define BTUSB_WRONG_SCO_MTU		BIT(6)
47 #define BTUSB_ATH3012			BIT(7)
48 #define BTUSB_INTEL_COMBINED		BIT(8)
49 #define BTUSB_INTEL_BOOT		BIT(9)
50 #define BTUSB_BCM_PATCHRAM		BIT(10)
51 #define BTUSB_MARVELL			BIT(11)
52 #define BTUSB_SWAVE			BIT(12)
53 #define BTUSB_AMP			BIT(13)
54 #define BTUSB_QCA_ROME			BIT(14)
55 #define BTUSB_BCM_APPLE			BIT(15)
56 #define BTUSB_REALTEK			BIT(16)
57 #define BTUSB_BCM2045			BIT(17)
58 #define BTUSB_IFNUM_2			BIT(18)
59 #define BTUSB_CW6622			BIT(19)
60 #define BTUSB_MEDIATEK			BIT(20)
61 #define BTUSB_WIDEBAND_SPEECH		BIT(21)
62 #define BTUSB_INVALID_LE_STATES		BIT(22)
63 #define BTUSB_QCA_WCN6855		BIT(23)
64 #define BTUSB_INTEL_BROKEN_SHUTDOWN_LED	BIT(24)
65 #define BTUSB_INTEL_BROKEN_INITIAL_NCMD BIT(25)
66 #define BTUSB_INTEL_NO_WBS_SUPPORT	BIT(26)
67 #define BTUSB_ACTIONS_SEMI		BIT(27)
68 
69 static const struct usb_device_id btusb_table[] = {
70 	/* Generic Bluetooth USB device */
71 	{ USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
72 
73 	/* Generic Bluetooth AMP device */
74 	{ USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
75 
76 	/* Generic Bluetooth USB interface */
77 	{ USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
78 
79 	/* Apple-specific (Broadcom) devices */
80 	{ USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
81 	  .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
82 
83 	/* MediaTek MT76x0E */
84 	{ USB_DEVICE(0x0e8d, 0x763f) },
85 
86 	/* Broadcom SoftSailing reporting vendor specific */
87 	{ USB_DEVICE(0x0a5c, 0x21e1) },
88 
89 	/* Apple MacBookPro 7,1 */
90 	{ USB_DEVICE(0x05ac, 0x8213) },
91 
92 	/* Apple iMac11,1 */
93 	{ USB_DEVICE(0x05ac, 0x8215) },
94 
95 	/* Apple MacBookPro6,2 */
96 	{ USB_DEVICE(0x05ac, 0x8218) },
97 
98 	/* Apple MacBookAir3,1, MacBookAir3,2 */
99 	{ USB_DEVICE(0x05ac, 0x821b) },
100 
101 	/* Apple MacBookAir4,1 */
102 	{ USB_DEVICE(0x05ac, 0x821f) },
103 
104 	/* Apple MacBookPro8,2 */
105 	{ USB_DEVICE(0x05ac, 0x821a) },
106 
107 	/* Apple MacMini5,1 */
108 	{ USB_DEVICE(0x05ac, 0x8281) },
109 
110 	/* AVM BlueFRITZ! USB v2.0 */
111 	{ USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
112 
113 	/* Bluetooth Ultraport Module from IBM */
114 	{ USB_DEVICE(0x04bf, 0x030a) },
115 
116 	/* ALPS Modules with non-standard id */
117 	{ USB_DEVICE(0x044e, 0x3001) },
118 	{ USB_DEVICE(0x044e, 0x3002) },
119 
120 	/* Ericsson with non-standard id */
121 	{ USB_DEVICE(0x0bdb, 0x1002) },
122 
123 	/* Canyon CN-BTU1 with HID interfaces */
124 	{ USB_DEVICE(0x0c10, 0x0000) },
125 
126 	/* Broadcom BCM20702B0 (Dynex/Insignia) */
127 	{ USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
128 
129 	/* Broadcom BCM43142A0 (Foxconn/Lenovo) */
130 	{ USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
131 	  .driver_info = BTUSB_BCM_PATCHRAM },
132 
133 	/* Broadcom BCM920703 (HTC Vive) */
134 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
135 	  .driver_info = BTUSB_BCM_PATCHRAM },
136 
137 	/* Foxconn - Hon Hai */
138 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
139 	  .driver_info = BTUSB_BCM_PATCHRAM },
140 
141 	/* Lite-On Technology - Broadcom based */
142 	{ USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
143 	  .driver_info = BTUSB_BCM_PATCHRAM },
144 
145 	/* Broadcom devices with vendor specific id */
146 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
147 	  .driver_info = BTUSB_BCM_PATCHRAM },
148 
149 	/* ASUSTek Computer - Broadcom based */
150 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
151 	  .driver_info = BTUSB_BCM_PATCHRAM },
152 
153 	/* Belkin F8065bf - Broadcom based */
154 	{ USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
155 	  .driver_info = BTUSB_BCM_PATCHRAM },
156 
157 	/* IMC Networks - Broadcom based */
158 	{ USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
159 	  .driver_info = BTUSB_BCM_PATCHRAM },
160 
161 	/* Dell Computer - Broadcom based  */
162 	{ USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
163 	  .driver_info = BTUSB_BCM_PATCHRAM },
164 
165 	/* Toshiba Corp - Broadcom based */
166 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
167 	  .driver_info = BTUSB_BCM_PATCHRAM },
168 
169 	/* Intel Bluetooth USB Bootloader (RAM module) */
170 	{ USB_DEVICE(0x8087, 0x0a5a),
171 	  .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
172 
173 	{ }	/* Terminating entry */
174 };
175 
176 MODULE_DEVICE_TABLE(usb, btusb_table);
177 
178 static const struct usb_device_id quirks_table[] = {
179 	/* CSR BlueCore devices */
180 	{ USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
181 
182 	/* Broadcom BCM2033 without firmware */
183 	{ USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
184 
185 	/* Broadcom BCM2045 devices */
186 	{ USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
187 
188 	/* Atheros 3011 with sflash firmware */
189 	{ USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
190 	{ USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
191 	{ USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
192 	{ USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
193 	{ USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
194 	{ USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
195 	{ USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
196 
197 	/* Atheros AR9285 Malbec with sflash firmware */
198 	{ USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
199 
200 	/* Atheros 3012 with sflash firmware */
201 	{ USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
202 	{ USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
203 	{ USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
204 	{ USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
205 	{ USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
206 	{ USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
207 	{ USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
208 	{ USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
209 	{ USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
210 	{ USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
211 	{ USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
212 	{ USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
213 	{ USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
214 	{ USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
215 	{ USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
216 	{ USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
217 	{ USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
218 	{ USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
219 	{ USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
220 	{ USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
221 	{ USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
222 	{ USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
223 	{ USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
224 	{ USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
225 	{ USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
226 	{ USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
227 	{ USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
228 	{ USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
229 	{ USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
230 	{ USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
231 	{ USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
232 	{ USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
233 	{ USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
234 	{ USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
235 	{ USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
236 	{ USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
237 	{ USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
238 	{ USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
239 	{ USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
240 	{ USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
241 	{ USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
242 	{ USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
243 	{ USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
244 	{ USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
245 	{ USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
246 	{ USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
247 	{ USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
248 	{ USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
249 	{ USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
250 	{ USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
251 
252 	/* Atheros AR5BBU12 with sflash firmware */
253 	{ USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
254 
255 	/* Atheros AR5BBU12 with sflash firmware */
256 	{ USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
257 	{ USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
258 
259 	/* QCA ROME chipset */
260 	{ USB_DEVICE(0x0cf3, 0x535b), .driver_info = BTUSB_QCA_ROME |
261 						     BTUSB_WIDEBAND_SPEECH },
262 	{ USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME |
263 						     BTUSB_WIDEBAND_SPEECH },
264 	{ USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME |
265 						     BTUSB_WIDEBAND_SPEECH },
266 	{ USB_DEVICE(0x0cf3, 0xe010), .driver_info = BTUSB_QCA_ROME |
267 						     BTUSB_WIDEBAND_SPEECH },
268 	{ USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME |
269 						     BTUSB_WIDEBAND_SPEECH },
270 	{ USB_DEVICE(0x0cf3, 0xe301), .driver_info = BTUSB_QCA_ROME |
271 						     BTUSB_WIDEBAND_SPEECH },
272 	{ USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME |
273 						     BTUSB_WIDEBAND_SPEECH },
274 	{ USB_DEVICE(0x0cf3, 0xe500), .driver_info = BTUSB_QCA_ROME |
275 						     BTUSB_WIDEBAND_SPEECH },
276 	{ USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME |
277 						     BTUSB_WIDEBAND_SPEECH },
278 	{ USB_DEVICE(0x0489, 0xe09f), .driver_info = BTUSB_QCA_ROME |
279 						     BTUSB_WIDEBAND_SPEECH },
280 	{ USB_DEVICE(0x0489, 0xe0a2), .driver_info = BTUSB_QCA_ROME |
281 						     BTUSB_WIDEBAND_SPEECH },
282 	{ USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME |
283 						     BTUSB_WIDEBAND_SPEECH },
284 	{ USB_DEVICE(0x04ca, 0x3015), .driver_info = BTUSB_QCA_ROME |
285 						     BTUSB_WIDEBAND_SPEECH },
286 	{ USB_DEVICE(0x04ca, 0x3016), .driver_info = BTUSB_QCA_ROME |
287 						     BTUSB_WIDEBAND_SPEECH },
288 	{ USB_DEVICE(0x04ca, 0x301a), .driver_info = BTUSB_QCA_ROME |
289 						     BTUSB_WIDEBAND_SPEECH },
290 	{ USB_DEVICE(0x04ca, 0x3021), .driver_info = BTUSB_QCA_ROME |
291 						     BTUSB_WIDEBAND_SPEECH },
292 	{ USB_DEVICE(0x13d3, 0x3491), .driver_info = BTUSB_QCA_ROME |
293 						     BTUSB_WIDEBAND_SPEECH },
294 	{ USB_DEVICE(0x13d3, 0x3496), .driver_info = BTUSB_QCA_ROME |
295 						     BTUSB_WIDEBAND_SPEECH },
296 	{ USB_DEVICE(0x13d3, 0x3501), .driver_info = BTUSB_QCA_ROME |
297 						     BTUSB_WIDEBAND_SPEECH },
298 
299 	/* QCA WCN6855 chipset */
300 	{ USB_DEVICE(0x0cf3, 0xe600), .driver_info = BTUSB_QCA_WCN6855 |
301 						     BTUSB_WIDEBAND_SPEECH },
302 	{ USB_DEVICE(0x0489, 0xe0cc), .driver_info = BTUSB_QCA_WCN6855 |
303 						     BTUSB_WIDEBAND_SPEECH },
304 	{ USB_DEVICE(0x0489, 0xe0d6), .driver_info = BTUSB_QCA_WCN6855 |
305 						     BTUSB_WIDEBAND_SPEECH },
306 	{ USB_DEVICE(0x0489, 0xe0e3), .driver_info = BTUSB_QCA_WCN6855 |
307 						     BTUSB_WIDEBAND_SPEECH },
308 	{ USB_DEVICE(0x10ab, 0x9309), .driver_info = BTUSB_QCA_WCN6855 |
309 						     BTUSB_WIDEBAND_SPEECH },
310 	{ USB_DEVICE(0x10ab, 0x9409), .driver_info = BTUSB_QCA_WCN6855 |
311 						     BTUSB_WIDEBAND_SPEECH },
312 	{ USB_DEVICE(0x0489, 0xe0d0), .driver_info = BTUSB_QCA_WCN6855 |
313 						     BTUSB_WIDEBAND_SPEECH },
314 	{ USB_DEVICE(0x10ab, 0x9108), .driver_info = BTUSB_QCA_WCN6855 |
315 						     BTUSB_WIDEBAND_SPEECH },
316 	{ USB_DEVICE(0x10ab, 0x9109), .driver_info = BTUSB_QCA_WCN6855 |
317 						     BTUSB_WIDEBAND_SPEECH },
318 	{ USB_DEVICE(0x10ab, 0x9208), .driver_info = BTUSB_QCA_WCN6855 |
319 						     BTUSB_WIDEBAND_SPEECH },
320 	{ USB_DEVICE(0x10ab, 0x9209), .driver_info = BTUSB_QCA_WCN6855 |
321 						     BTUSB_WIDEBAND_SPEECH },
322 	{ USB_DEVICE(0x10ab, 0x9308), .driver_info = BTUSB_QCA_WCN6855 |
323 						     BTUSB_WIDEBAND_SPEECH },
324 	{ USB_DEVICE(0x10ab, 0x9408), .driver_info = BTUSB_QCA_WCN6855 |
325 						     BTUSB_WIDEBAND_SPEECH },
326 	{ USB_DEVICE(0x10ab, 0x9508), .driver_info = BTUSB_QCA_WCN6855 |
327 						     BTUSB_WIDEBAND_SPEECH },
328 	{ USB_DEVICE(0x10ab, 0x9509), .driver_info = BTUSB_QCA_WCN6855 |
329 						     BTUSB_WIDEBAND_SPEECH },
330 	{ USB_DEVICE(0x10ab, 0x9608), .driver_info = BTUSB_QCA_WCN6855 |
331 						     BTUSB_WIDEBAND_SPEECH },
332 	{ USB_DEVICE(0x10ab, 0x9609), .driver_info = BTUSB_QCA_WCN6855 |
333 						     BTUSB_WIDEBAND_SPEECH },
334 	{ USB_DEVICE(0x10ab, 0x9f09), .driver_info = BTUSB_QCA_WCN6855 |
335 						     BTUSB_WIDEBAND_SPEECH },
336 	{ USB_DEVICE(0x04ca, 0x3022), .driver_info = BTUSB_QCA_WCN6855 |
337 						     BTUSB_WIDEBAND_SPEECH },
338 	{ USB_DEVICE(0x0489, 0xe0c7), .driver_info = BTUSB_QCA_WCN6855 |
339 						     BTUSB_WIDEBAND_SPEECH },
340 	{ USB_DEVICE(0x0489, 0xe0c9), .driver_info = BTUSB_QCA_WCN6855 |
341 						     BTUSB_WIDEBAND_SPEECH },
342 	{ USB_DEVICE(0x0489, 0xe0ca), .driver_info = BTUSB_QCA_WCN6855 |
343 						     BTUSB_WIDEBAND_SPEECH },
344 	{ USB_DEVICE(0x0489, 0xe0cb), .driver_info = BTUSB_QCA_WCN6855 |
345 						     BTUSB_WIDEBAND_SPEECH },
346 	{ USB_DEVICE(0x0489, 0xe0ce), .driver_info = BTUSB_QCA_WCN6855 |
347 						     BTUSB_WIDEBAND_SPEECH },
348 	{ USB_DEVICE(0x0489, 0xe0de), .driver_info = BTUSB_QCA_WCN6855 |
349 						     BTUSB_WIDEBAND_SPEECH },
350 	{ USB_DEVICE(0x0489, 0xe0df), .driver_info = BTUSB_QCA_WCN6855 |
351 						     BTUSB_WIDEBAND_SPEECH },
352 	{ USB_DEVICE(0x0489, 0xe0e1), .driver_info = BTUSB_QCA_WCN6855 |
353 						     BTUSB_WIDEBAND_SPEECH },
354 	{ USB_DEVICE(0x0489, 0xe0ea), .driver_info = BTUSB_QCA_WCN6855 |
355 						     BTUSB_WIDEBAND_SPEECH },
356 	{ USB_DEVICE(0x0489, 0xe0ec), .driver_info = BTUSB_QCA_WCN6855 |
357 						     BTUSB_WIDEBAND_SPEECH },
358 	{ USB_DEVICE(0x04ca, 0x3023), .driver_info = BTUSB_QCA_WCN6855 |
359 						     BTUSB_WIDEBAND_SPEECH },
360 	{ USB_DEVICE(0x04ca, 0x3024), .driver_info = BTUSB_QCA_WCN6855 |
361 						     BTUSB_WIDEBAND_SPEECH },
362 	{ USB_DEVICE(0x04ca, 0x3a22), .driver_info = BTUSB_QCA_WCN6855 |
363 						     BTUSB_WIDEBAND_SPEECH },
364 	{ USB_DEVICE(0x04ca, 0x3a24), .driver_info = BTUSB_QCA_WCN6855 |
365 						     BTUSB_WIDEBAND_SPEECH },
366 	{ USB_DEVICE(0x04ca, 0x3a26), .driver_info = BTUSB_QCA_WCN6855 |
367 						     BTUSB_WIDEBAND_SPEECH },
368 	{ USB_DEVICE(0x04ca, 0x3a27), .driver_info = BTUSB_QCA_WCN6855 |
369 						     BTUSB_WIDEBAND_SPEECH },
370 
371 	/* QCA WCN785x chipset */
372 	{ USB_DEVICE(0x0cf3, 0xe700), .driver_info = BTUSB_QCA_WCN6855 |
373 						     BTUSB_WIDEBAND_SPEECH },
374 	{ USB_DEVICE(0x0489, 0xe0fc), .driver_info = BTUSB_QCA_WCN6855 |
375 						     BTUSB_WIDEBAND_SPEECH },
376 	{ USB_DEVICE(0x0489, 0xe0f3), .driver_info = BTUSB_QCA_WCN6855 |
377 						     BTUSB_WIDEBAND_SPEECH },
378 	{ USB_DEVICE(0x13d3, 0x3623), .driver_info = BTUSB_QCA_WCN6855 |
379 						     BTUSB_WIDEBAND_SPEECH },
380 	{ USB_DEVICE(0x2c7c, 0x0130), .driver_info = BTUSB_QCA_WCN6855 |
381 						     BTUSB_WIDEBAND_SPEECH },
382 
383 	/* Broadcom BCM2035 */
384 	{ USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
385 	{ USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
386 	{ USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
387 
388 	/* Broadcom BCM2045 */
389 	{ USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
390 	{ USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
391 
392 	/* IBM/Lenovo ThinkPad with Broadcom chip */
393 	{ USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
394 	{ USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
395 
396 	/* HP laptop with Broadcom chip */
397 	{ USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
398 
399 	/* Dell laptop with Broadcom chip */
400 	{ USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
401 
402 	/* Dell Wireless 370 and 410 devices */
403 	{ USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
404 	{ USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
405 
406 	/* Belkin F8T012 and F8T013 devices */
407 	{ USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
408 	{ USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
409 
410 	/* Asus WL-BTD202 device */
411 	{ USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
412 
413 	/* Kensington Bluetooth USB adapter */
414 	{ USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
415 
416 	/* RTX Telecom based adapters with buggy SCO support */
417 	{ USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
418 	{ USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
419 
420 	/* CONWISE Technology based adapters with buggy SCO support */
421 	{ USB_DEVICE(0x0e5e, 0x6622),
422 	  .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
423 
424 	/* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
425 	{ USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
426 
427 	/* Digianswer devices */
428 	{ USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
429 	{ USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
430 
431 	/* CSR BlueCore Bluetooth Sniffer */
432 	{ USB_DEVICE(0x0a12, 0x0002),
433 	  .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
434 
435 	/* Frontline ComProbe Bluetooth Sniffer */
436 	{ USB_DEVICE(0x16d3, 0x0002),
437 	  .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
438 
439 	/* Marvell Bluetooth devices */
440 	{ USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
441 	{ USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
442 	{ USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
443 
444 	/* Intel Bluetooth devices */
445 	{ USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_COMBINED },
446 	{ USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_COMBINED },
447 	{ USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_COMBINED },
448 	{ USB_DEVICE(0x8087, 0x0032), .driver_info = BTUSB_INTEL_COMBINED },
449 	{ USB_DEVICE(0x8087, 0x0033), .driver_info = BTUSB_INTEL_COMBINED },
450 	{ USB_DEVICE(0x8087, 0x0035), .driver_info = BTUSB_INTEL_COMBINED },
451 	{ USB_DEVICE(0x8087, 0x0036), .driver_info = BTUSB_INTEL_COMBINED },
452 	{ USB_DEVICE(0x8087, 0x0037), .driver_info = BTUSB_INTEL_COMBINED },
453 	{ USB_DEVICE(0x8087, 0x0038), .driver_info = BTUSB_INTEL_COMBINED },
454 	{ USB_DEVICE(0x8087, 0x0039), .driver_info = BTUSB_INTEL_COMBINED },
455 	{ USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
456 	{ USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL_COMBINED |
457 						     BTUSB_INTEL_NO_WBS_SUPPORT |
458 						     BTUSB_INTEL_BROKEN_INITIAL_NCMD |
459 						     BTUSB_INTEL_BROKEN_SHUTDOWN_LED },
460 	{ USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL_COMBINED |
461 						     BTUSB_INTEL_NO_WBS_SUPPORT |
462 						     BTUSB_INTEL_BROKEN_SHUTDOWN_LED },
463 	{ USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_COMBINED },
464 	{ USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL_COMBINED |
465 						     BTUSB_INTEL_BROKEN_SHUTDOWN_LED },
466 	{ USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_COMBINED },
467 
468 	/* Other Intel Bluetooth devices */
469 	{ USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
470 	  .driver_info = BTUSB_IGNORE },
471 
472 	/* Realtek 8821CE Bluetooth devices */
473 	{ USB_DEVICE(0x13d3, 0x3529), .driver_info = BTUSB_REALTEK |
474 						     BTUSB_WIDEBAND_SPEECH },
475 
476 	/* Realtek 8822CE Bluetooth devices */
477 	{ USB_DEVICE(0x0bda, 0xb00c), .driver_info = BTUSB_REALTEK |
478 						     BTUSB_WIDEBAND_SPEECH },
479 	{ USB_DEVICE(0x0bda, 0xc822), .driver_info = BTUSB_REALTEK |
480 						     BTUSB_WIDEBAND_SPEECH },
481 
482 	/* Realtek 8822CU Bluetooth devices */
483 	{ USB_DEVICE(0x13d3, 0x3549), .driver_info = BTUSB_REALTEK |
484 						     BTUSB_WIDEBAND_SPEECH },
485 
486 	/* Realtek 8851BE Bluetooth devices */
487 	{ USB_DEVICE(0x13d3, 0x3600), .driver_info = BTUSB_REALTEK },
488 
489 	/* Realtek 8852AE Bluetooth devices */
490 	{ USB_DEVICE(0x0bda, 0x2852), .driver_info = BTUSB_REALTEK |
491 						     BTUSB_WIDEBAND_SPEECH },
492 	{ USB_DEVICE(0x0bda, 0xc852), .driver_info = BTUSB_REALTEK |
493 						     BTUSB_WIDEBAND_SPEECH },
494 	{ USB_DEVICE(0x0bda, 0x385a), .driver_info = BTUSB_REALTEK |
495 						     BTUSB_WIDEBAND_SPEECH },
496 	{ USB_DEVICE(0x0bda, 0x4852), .driver_info = BTUSB_REALTEK |
497 						     BTUSB_WIDEBAND_SPEECH },
498 	{ USB_DEVICE(0x04c5, 0x165c), .driver_info = BTUSB_REALTEK |
499 						     BTUSB_WIDEBAND_SPEECH },
500 	{ USB_DEVICE(0x04ca, 0x4006), .driver_info = BTUSB_REALTEK |
501 						     BTUSB_WIDEBAND_SPEECH },
502 	{ USB_DEVICE(0x0cb8, 0xc549), .driver_info = BTUSB_REALTEK |
503 						     BTUSB_WIDEBAND_SPEECH },
504 
505 	/* Realtek 8852CE Bluetooth devices */
506 	{ USB_DEVICE(0x04ca, 0x4007), .driver_info = BTUSB_REALTEK |
507 						     BTUSB_WIDEBAND_SPEECH },
508 	{ USB_DEVICE(0x04c5, 0x1675), .driver_info = BTUSB_REALTEK |
509 						     BTUSB_WIDEBAND_SPEECH },
510 	{ USB_DEVICE(0x0cb8, 0xc558), .driver_info = BTUSB_REALTEK |
511 						     BTUSB_WIDEBAND_SPEECH },
512 	{ USB_DEVICE(0x13d3, 0x3587), .driver_info = BTUSB_REALTEK |
513 						     BTUSB_WIDEBAND_SPEECH },
514 	{ USB_DEVICE(0x13d3, 0x3586), .driver_info = BTUSB_REALTEK |
515 						     BTUSB_WIDEBAND_SPEECH },
516 	{ USB_DEVICE(0x13d3, 0x3592), .driver_info = BTUSB_REALTEK |
517 						     BTUSB_WIDEBAND_SPEECH },
518 	{ USB_DEVICE(0x0489, 0xe122), .driver_info = BTUSB_REALTEK |
519 						     BTUSB_WIDEBAND_SPEECH },
520 
521 	/* Realtek 8852BE Bluetooth devices */
522 	{ USB_DEVICE(0x0cb8, 0xc559), .driver_info = BTUSB_REALTEK |
523 						     BTUSB_WIDEBAND_SPEECH },
524 	{ USB_DEVICE(0x0bda, 0x4853), .driver_info = BTUSB_REALTEK |
525 						     BTUSB_WIDEBAND_SPEECH },
526 	{ USB_DEVICE(0x0bda, 0x887b), .driver_info = BTUSB_REALTEK |
527 						     BTUSB_WIDEBAND_SPEECH },
528 	{ USB_DEVICE(0x0bda, 0xb85b), .driver_info = BTUSB_REALTEK |
529 						     BTUSB_WIDEBAND_SPEECH },
530 	{ USB_DEVICE(0x13d3, 0x3570), .driver_info = BTUSB_REALTEK |
531 						     BTUSB_WIDEBAND_SPEECH },
532 	{ USB_DEVICE(0x13d3, 0x3571), .driver_info = BTUSB_REALTEK |
533 						     BTUSB_WIDEBAND_SPEECH },
534 	{ USB_DEVICE(0x13d3, 0x3572), .driver_info = BTUSB_REALTEK |
535 						     BTUSB_WIDEBAND_SPEECH },
536 	{ USB_DEVICE(0x13d3, 0x3591), .driver_info = BTUSB_REALTEK |
537 						     BTUSB_WIDEBAND_SPEECH },
538 	{ USB_DEVICE(0x0489, 0xe123), .driver_info = BTUSB_REALTEK |
539 						     BTUSB_WIDEBAND_SPEECH },
540 	{ USB_DEVICE(0x0489, 0xe125), .driver_info = BTUSB_REALTEK |
541 						     BTUSB_WIDEBAND_SPEECH },
542 
543 	/* Realtek 8852BT/8852BE-VT Bluetooth devices */
544 	{ USB_DEVICE(0x0bda, 0x8520), .driver_info = BTUSB_REALTEK |
545 						     BTUSB_WIDEBAND_SPEECH },
546 
547 	/* Realtek 8922AE Bluetooth devices */
548 	{ USB_DEVICE(0x0bda, 0x8922), .driver_info = BTUSB_REALTEK |
549 						     BTUSB_WIDEBAND_SPEECH },
550 	{ USB_DEVICE(0x13d3, 0x3617), .driver_info = BTUSB_REALTEK |
551 						     BTUSB_WIDEBAND_SPEECH },
552 	{ USB_DEVICE(0x13d3, 0x3616), .driver_info = BTUSB_REALTEK |
553 						     BTUSB_WIDEBAND_SPEECH },
554 	{ USB_DEVICE(0x0489, 0xe130), .driver_info = BTUSB_REALTEK |
555 						     BTUSB_WIDEBAND_SPEECH },
556 
557 	/* Realtek Bluetooth devices */
558 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
559 	  .driver_info = BTUSB_REALTEK },
560 
561 	/* MediaTek Bluetooth devices */
562 	{ USB_VENDOR_AND_INTERFACE_INFO(0x0e8d, 0xe0, 0x01, 0x01),
563 	  .driver_info = BTUSB_MEDIATEK |
564 			 BTUSB_WIDEBAND_SPEECH },
565 
566 	/* Additional MediaTek MT7615E Bluetooth devices */
567 	{ USB_DEVICE(0x13d3, 0x3560), .driver_info = BTUSB_MEDIATEK},
568 
569 	/* Additional MediaTek MT7663 Bluetooth devices */
570 	{ USB_DEVICE(0x043e, 0x310c), .driver_info = BTUSB_MEDIATEK |
571 						     BTUSB_WIDEBAND_SPEECH },
572 	{ USB_DEVICE(0x04ca, 0x3801), .driver_info = BTUSB_MEDIATEK |
573 						     BTUSB_WIDEBAND_SPEECH },
574 
575 	/* Additional MediaTek MT7668 Bluetooth devices */
576 	{ USB_DEVICE(0x043e, 0x3109), .driver_info = BTUSB_MEDIATEK |
577 						     BTUSB_WIDEBAND_SPEECH },
578 
579 	/* Additional MediaTek MT7920 Bluetooth devices */
580 	{ USB_DEVICE(0x0489, 0xe134), .driver_info = BTUSB_MEDIATEK |
581 						     BTUSB_WIDEBAND_SPEECH },
582 	{ USB_DEVICE(0x13d3, 0x3620), .driver_info = BTUSB_MEDIATEK |
583 						     BTUSB_WIDEBAND_SPEECH },
584 	{ USB_DEVICE(0x13d3, 0x3621), .driver_info = BTUSB_MEDIATEK |
585 						     BTUSB_WIDEBAND_SPEECH },
586 	{ USB_DEVICE(0x13d3, 0x3622), .driver_info = BTUSB_MEDIATEK |
587 						     BTUSB_WIDEBAND_SPEECH },
588 
589 	/* Additional MediaTek MT7921 Bluetooth devices */
590 	{ USB_DEVICE(0x0489, 0xe0c8), .driver_info = BTUSB_MEDIATEK |
591 						     BTUSB_WIDEBAND_SPEECH },
592 	{ USB_DEVICE(0x0489, 0xe0cd), .driver_info = BTUSB_MEDIATEK |
593 						     BTUSB_WIDEBAND_SPEECH },
594 	{ USB_DEVICE(0x0489, 0xe0e0), .driver_info = BTUSB_MEDIATEK |
595 						     BTUSB_WIDEBAND_SPEECH },
596 	{ USB_DEVICE(0x0489, 0xe0f2), .driver_info = BTUSB_MEDIATEK |
597 						     BTUSB_WIDEBAND_SPEECH },
598 	{ USB_DEVICE(0x04ca, 0x3802), .driver_info = BTUSB_MEDIATEK |
599 						     BTUSB_WIDEBAND_SPEECH },
600 	{ USB_DEVICE(0x0e8d, 0x0608), .driver_info = BTUSB_MEDIATEK |
601 						     BTUSB_WIDEBAND_SPEECH },
602 	{ USB_DEVICE(0x13d3, 0x3563), .driver_info = BTUSB_MEDIATEK |
603 						     BTUSB_WIDEBAND_SPEECH },
604 	{ USB_DEVICE(0x13d3, 0x3564), .driver_info = BTUSB_MEDIATEK |
605 						     BTUSB_WIDEBAND_SPEECH },
606 	{ USB_DEVICE(0x13d3, 0x3567), .driver_info = BTUSB_MEDIATEK |
607 						     BTUSB_WIDEBAND_SPEECH },
608 	{ USB_DEVICE(0x13d3, 0x3576), .driver_info = BTUSB_MEDIATEK |
609 						     BTUSB_WIDEBAND_SPEECH },
610 	{ USB_DEVICE(0x13d3, 0x3578), .driver_info = BTUSB_MEDIATEK |
611 						     BTUSB_WIDEBAND_SPEECH },
612 	{ USB_DEVICE(0x13d3, 0x3583), .driver_info = BTUSB_MEDIATEK |
613 						     BTUSB_WIDEBAND_SPEECH },
614 	{ USB_DEVICE(0x13d3, 0x3606), .driver_info = BTUSB_MEDIATEK |
615 						     BTUSB_WIDEBAND_SPEECH },
616 
617 	/* MediaTek MT7922 Bluetooth devices */
618 	{ USB_DEVICE(0x13d3, 0x3585), .driver_info = BTUSB_MEDIATEK |
619 						     BTUSB_WIDEBAND_SPEECH },
620 	{ USB_DEVICE(0x13d3, 0x3610), .driver_info = BTUSB_MEDIATEK |
621 						     BTUSB_WIDEBAND_SPEECH },
622 
623 	/* MediaTek MT7922A Bluetooth devices */
624 	{ USB_DEVICE(0x0489, 0xe0d8), .driver_info = BTUSB_MEDIATEK |
625 						     BTUSB_WIDEBAND_SPEECH },
626 	{ USB_DEVICE(0x0489, 0xe0d9), .driver_info = BTUSB_MEDIATEK |
627 						     BTUSB_WIDEBAND_SPEECH },
628 	{ USB_DEVICE(0x0489, 0xe0e2), .driver_info = BTUSB_MEDIATEK |
629 						     BTUSB_WIDEBAND_SPEECH },
630 	{ USB_DEVICE(0x0489, 0xe0e4), .driver_info = BTUSB_MEDIATEK |
631 						     BTUSB_WIDEBAND_SPEECH },
632 	{ USB_DEVICE(0x0489, 0xe0f1), .driver_info = BTUSB_MEDIATEK |
633 						     BTUSB_WIDEBAND_SPEECH },
634 	{ USB_DEVICE(0x0489, 0xe0f2), .driver_info = BTUSB_MEDIATEK |
635 						     BTUSB_WIDEBAND_SPEECH },
636 	{ USB_DEVICE(0x0489, 0xe0f5), .driver_info = BTUSB_MEDIATEK |
637 						     BTUSB_WIDEBAND_SPEECH },
638 	{ USB_DEVICE(0x0489, 0xe0f6), .driver_info = BTUSB_MEDIATEK |
639 						     BTUSB_WIDEBAND_SPEECH },
640 	{ USB_DEVICE(0x0489, 0xe102), .driver_info = BTUSB_MEDIATEK |
641 						     BTUSB_WIDEBAND_SPEECH },
642 	{ USB_DEVICE(0x04ca, 0x3804), .driver_info = BTUSB_MEDIATEK |
643 						     BTUSB_WIDEBAND_SPEECH },
644 	{ USB_DEVICE(0x04ca, 0x38e4), .driver_info = BTUSB_MEDIATEK |
645 						     BTUSB_WIDEBAND_SPEECH },
646 	{ USB_DEVICE(0x13d3, 0x3568), .driver_info = BTUSB_MEDIATEK |
647 						     BTUSB_WIDEBAND_SPEECH },
648 	{ USB_DEVICE(0x13d3, 0x3605), .driver_info = BTUSB_MEDIATEK |
649 						     BTUSB_WIDEBAND_SPEECH },
650 	{ USB_DEVICE(0x13d3, 0x3607), .driver_info = BTUSB_MEDIATEK |
651 						     BTUSB_WIDEBAND_SPEECH },
652 	{ USB_DEVICE(0x13d3, 0x3614), .driver_info = BTUSB_MEDIATEK |
653 						     BTUSB_WIDEBAND_SPEECH },
654 	{ USB_DEVICE(0x13d3, 0x3615), .driver_info = BTUSB_MEDIATEK |
655 						     BTUSB_WIDEBAND_SPEECH },
656 	{ USB_DEVICE(0x35f5, 0x7922), .driver_info = BTUSB_MEDIATEK |
657 						     BTUSB_WIDEBAND_SPEECH },
658 
659 	/* Additional MediaTek MT7925 Bluetooth devices */
660 	{ USB_DEVICE(0x0489, 0xe111), .driver_info = BTUSB_MEDIATEK |
661 						     BTUSB_WIDEBAND_SPEECH },
662 	{ USB_DEVICE(0x0489, 0xe113), .driver_info = BTUSB_MEDIATEK |
663 						     BTUSB_WIDEBAND_SPEECH },
664 	{ USB_DEVICE(0x0489, 0xe118), .driver_info = BTUSB_MEDIATEK |
665 						     BTUSB_WIDEBAND_SPEECH },
666 	{ USB_DEVICE(0x0489, 0xe11e), .driver_info = BTUSB_MEDIATEK |
667 						     BTUSB_WIDEBAND_SPEECH },
668 	{ USB_DEVICE(0x0489, 0xe124), .driver_info = BTUSB_MEDIATEK |
669 						     BTUSB_WIDEBAND_SPEECH },
670 	{ USB_DEVICE(0x0489, 0xe139), .driver_info = BTUSB_MEDIATEK |
671 						     BTUSB_WIDEBAND_SPEECH },
672 	{ USB_DEVICE(0x0489, 0xe14f), .driver_info = BTUSB_MEDIATEK |
673 						     BTUSB_WIDEBAND_SPEECH },
674 	{ USB_DEVICE(0x0489, 0xe150), .driver_info = BTUSB_MEDIATEK |
675 						     BTUSB_WIDEBAND_SPEECH },
676 	{ USB_DEVICE(0x0489, 0xe151), .driver_info = BTUSB_MEDIATEK |
677 						     BTUSB_WIDEBAND_SPEECH },
678 	{ USB_DEVICE(0x13d3, 0x3602), .driver_info = BTUSB_MEDIATEK |
679 						     BTUSB_WIDEBAND_SPEECH },
680 	{ USB_DEVICE(0x13d3, 0x3603), .driver_info = BTUSB_MEDIATEK |
681 						     BTUSB_WIDEBAND_SPEECH },
682 	{ USB_DEVICE(0x13d3, 0x3604), .driver_info = BTUSB_MEDIATEK |
683 						     BTUSB_WIDEBAND_SPEECH },
684 	{ USB_DEVICE(0x13d3, 0x3608), .driver_info = BTUSB_MEDIATEK |
685 						     BTUSB_WIDEBAND_SPEECH },
686 	{ USB_DEVICE(0x13d3, 0x3628), .driver_info = BTUSB_MEDIATEK |
687 						     BTUSB_WIDEBAND_SPEECH },
688 
689 	/* Additional Realtek 8723AE Bluetooth devices */
690 	{ USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
691 	{ USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
692 
693 	/* Additional Realtek 8723BE Bluetooth devices */
694 	{ USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
695 	{ USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
696 	{ USB_DEVICE(0x04f2, 0xb49f), .driver_info = BTUSB_REALTEK },
697 	{ USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
698 	{ USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
699 	{ USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
700 	{ USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
701 
702 	/* Additional Realtek 8723BU Bluetooth devices */
703 	{ USB_DEVICE(0x7392, 0xa611), .driver_info = BTUSB_REALTEK },
704 
705 	/* Additional Realtek 8723DE Bluetooth devices */
706 	{ USB_DEVICE(0x0bda, 0xb009), .driver_info = BTUSB_REALTEK },
707 	{ USB_DEVICE(0x2ff8, 0xb011), .driver_info = BTUSB_REALTEK },
708 
709 	/* Additional Realtek 8761BUV Bluetooth devices */
710 	{ USB_DEVICE(0x2357, 0x0604), .driver_info = BTUSB_REALTEK |
711 						     BTUSB_WIDEBAND_SPEECH },
712 	{ USB_DEVICE(0x0b05, 0x190e), .driver_info = BTUSB_REALTEK |
713 	  					     BTUSB_WIDEBAND_SPEECH },
714 	{ USB_DEVICE(0x2550, 0x8761), .driver_info = BTUSB_REALTEK |
715 						     BTUSB_WIDEBAND_SPEECH },
716 	{ USB_DEVICE(0x0bda, 0x8771), .driver_info = BTUSB_REALTEK |
717 						     BTUSB_WIDEBAND_SPEECH },
718 	{ USB_DEVICE(0x6655, 0x8771), .driver_info = BTUSB_REALTEK |
719 						     BTUSB_WIDEBAND_SPEECH },
720 	{ USB_DEVICE(0x7392, 0xc611), .driver_info = BTUSB_REALTEK |
721 						     BTUSB_WIDEBAND_SPEECH },
722 	{ USB_DEVICE(0x2b89, 0x8761), .driver_info = BTUSB_REALTEK |
723 						     BTUSB_WIDEBAND_SPEECH },
724 
725 	/* Additional Realtek 8821AE Bluetooth devices */
726 	{ USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
727 	{ USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
728 	{ USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
729 	{ USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
730 	{ USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
731 
732 	/* Additional Realtek 8822BE Bluetooth devices */
733 	{ USB_DEVICE(0x13d3, 0x3526), .driver_info = BTUSB_REALTEK },
734 	{ USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK },
735 
736 	/* Additional Realtek 8822CE Bluetooth devices */
737 	{ USB_DEVICE(0x04ca, 0x4005), .driver_info = BTUSB_REALTEK |
738 						     BTUSB_WIDEBAND_SPEECH },
739 	{ USB_DEVICE(0x04c5, 0x161f), .driver_info = BTUSB_REALTEK |
740 						     BTUSB_WIDEBAND_SPEECH },
741 	{ USB_DEVICE(0x0b05, 0x18ef), .driver_info = BTUSB_REALTEK |
742 						     BTUSB_WIDEBAND_SPEECH },
743 	{ USB_DEVICE(0x13d3, 0x3548), .driver_info = BTUSB_REALTEK |
744 						     BTUSB_WIDEBAND_SPEECH },
745 	{ USB_DEVICE(0x13d3, 0x3549), .driver_info = BTUSB_REALTEK |
746 						     BTUSB_WIDEBAND_SPEECH },
747 	{ USB_DEVICE(0x13d3, 0x3553), .driver_info = BTUSB_REALTEK |
748 						     BTUSB_WIDEBAND_SPEECH },
749 	{ USB_DEVICE(0x13d3, 0x3555), .driver_info = BTUSB_REALTEK |
750 						     BTUSB_WIDEBAND_SPEECH },
751 	{ USB_DEVICE(0x2ff8, 0x3051), .driver_info = BTUSB_REALTEK |
752 						     BTUSB_WIDEBAND_SPEECH },
753 	{ USB_DEVICE(0x1358, 0xc123), .driver_info = BTUSB_REALTEK |
754 						     BTUSB_WIDEBAND_SPEECH },
755 	{ USB_DEVICE(0x0bda, 0xc123), .driver_info = BTUSB_REALTEK |
756 						     BTUSB_WIDEBAND_SPEECH },
757 	{ USB_DEVICE(0x0cb5, 0xc547), .driver_info = BTUSB_REALTEK |
758 						     BTUSB_WIDEBAND_SPEECH },
759 
760 	/* Actions Semiconductor ATS2851 based devices */
761 	{ USB_DEVICE(0x10d7, 0xb012), .driver_info = BTUSB_ACTIONS_SEMI },
762 
763 	/* Silicon Wave based devices */
764 	{ USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
765 
766 	{ }	/* Terminating entry */
767 };
768 
769 /* The Bluetooth USB module build into some devices needs to be reset on resume,
770  * this is a problem with the platform (likely shutting off all power) not with
771  * the module itself. So we use a DMI list to match known broken platforms.
772  */
773 static const struct dmi_system_id btusb_needs_reset_resume_table[] = {
774 	{
775 		/* Dell OptiPlex 3060 (QCA ROME device 0cf3:e007) */
776 		.matches = {
777 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
778 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 3060"),
779 		},
780 	},
781 	{
782 		/* Dell XPS 9360 (QCA ROME device 0cf3:e300) */
783 		.matches = {
784 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
785 			DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9360"),
786 		},
787 	},
788 	{
789 		/* Dell Inspiron 5565 (QCA ROME device 0cf3:e009) */
790 		.matches = {
791 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
792 			DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5565"),
793 		},
794 	},
795 	{}
796 };
797 
798 struct qca_dump_info {
799 	/* fields for dump collection */
800 	u16 id_vendor;
801 	u16 id_product;
802 	u32 fw_version;
803 	u32 controller_id;
804 	u32 ram_dump_size;
805 	u16 ram_dump_seqno;
806 };
807 
808 #define BTUSB_MAX_ISOC_FRAMES	10
809 
810 #define BTUSB_INTR_RUNNING	0
811 #define BTUSB_BULK_RUNNING	1
812 #define BTUSB_ISOC_RUNNING	2
813 #define BTUSB_SUSPENDING	3
814 #define BTUSB_DID_ISO_RESUME	4
815 #define BTUSB_BOOTLOADER	5
816 #define BTUSB_DOWNLOADING	6
817 #define BTUSB_FIRMWARE_LOADED	7
818 #define BTUSB_FIRMWARE_FAILED	8
819 #define BTUSB_BOOTING		9
820 #define BTUSB_DIAG_RUNNING	10
821 #define BTUSB_OOB_WAKE_ENABLED	11
822 #define BTUSB_HW_RESET_ACTIVE	12
823 #define BTUSB_TX_WAIT_VND_EVT	13
824 #define BTUSB_WAKEUP_AUTOSUSPEND	14
825 #define BTUSB_USE_ALT3_FOR_WBS	15
826 #define BTUSB_ALT6_CONTINUOUS_TX	16
827 #define BTUSB_HW_SSR_ACTIVE	17
828 
829 struct btusb_data {
830 	struct hci_dev       *hdev;
831 	struct usb_device    *udev;
832 	struct usb_interface *intf;
833 	struct usb_interface *isoc;
834 	struct usb_interface *diag;
835 	unsigned isoc_ifnum;
836 
837 	unsigned long flags;
838 
839 	bool poll_sync;
840 	int intr_interval;
841 	struct work_struct  work;
842 	struct work_struct  waker;
843 	struct delayed_work rx_work;
844 
845 	struct sk_buff_head acl_q;
846 
847 	struct usb_anchor deferred;
848 	struct usb_anchor tx_anchor;
849 	int tx_in_flight;
850 	spinlock_t txlock;
851 
852 	struct usb_anchor intr_anchor;
853 	struct usb_anchor bulk_anchor;
854 	struct usb_anchor isoc_anchor;
855 	struct usb_anchor diag_anchor;
856 	struct usb_anchor ctrl_anchor;
857 	spinlock_t rxlock;
858 
859 	struct sk_buff *evt_skb;
860 	struct sk_buff *acl_skb;
861 	struct sk_buff *sco_skb;
862 
863 	struct usb_endpoint_descriptor *intr_ep;
864 	struct usb_endpoint_descriptor *bulk_tx_ep;
865 	struct usb_endpoint_descriptor *bulk_rx_ep;
866 	struct usb_endpoint_descriptor *isoc_tx_ep;
867 	struct usb_endpoint_descriptor *isoc_rx_ep;
868 	struct usb_endpoint_descriptor *diag_tx_ep;
869 	struct usb_endpoint_descriptor *diag_rx_ep;
870 
871 	struct gpio_desc *reset_gpio;
872 
873 	__u8 cmdreq_type;
874 	__u8 cmdreq;
875 
876 	unsigned int sco_num;
877 	unsigned int air_mode;
878 	bool usb_alt6_packet_flow;
879 	int isoc_altsetting;
880 	int suspend_count;
881 
882 	int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
883 	int (*recv_acl)(struct hci_dev *hdev, struct sk_buff *skb);
884 	int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
885 
886 	int (*setup_on_usb)(struct hci_dev *hdev);
887 
888 	int (*suspend)(struct hci_dev *hdev);
889 	int (*resume)(struct hci_dev *hdev);
890 	int (*disconnect)(struct hci_dev *hdev);
891 
892 	int oob_wake_irq;   /* irq for out-of-band wake-on-bt */
893 
894 	struct qca_dump_info qca_dump;
895 };
896 
897 static void btusb_reset(struct hci_dev *hdev)
898 {
899 	struct btusb_data *data;
900 	int err;
901 
902 	if (hdev->reset) {
903 		hdev->reset(hdev);
904 		return;
905 	}
906 
907 	data = hci_get_drvdata(hdev);
908 	/* This is not an unbalanced PM reference since the device will reset */
909 	err = usb_autopm_get_interface(data->intf);
910 	if (err) {
911 		bt_dev_err(hdev, "Failed usb_autopm_get_interface: %d", err);
912 		return;
913 	}
914 
915 	bt_dev_err(hdev, "Resetting usb device.");
916 	usb_queue_reset_device(data->intf);
917 }
918 
919 static void btusb_intel_reset(struct hci_dev *hdev)
920 {
921 	struct btusb_data *data = hci_get_drvdata(hdev);
922 	struct gpio_desc *reset_gpio = data->reset_gpio;
923 	struct btintel_data *intel_data = hci_get_priv(hdev);
924 
925 	if (intel_data->acpi_reset_method) {
926 		if (test_and_set_bit(INTEL_ACPI_RESET_ACTIVE, intel_data->flags)) {
927 			bt_dev_err(hdev, "acpi: last reset failed ? Not resetting again");
928 			return;
929 		}
930 
931 		bt_dev_err(hdev, "Initiating acpi reset method");
932 		/* If ACPI reset method fails, lets try with legacy GPIO
933 		 * toggling
934 		 */
935 		if (!intel_data->acpi_reset_method(hdev)) {
936 			return;
937 		}
938 	}
939 
940 	if (!reset_gpio) {
941 		btusb_reset(hdev);
942 		return;
943 	}
944 
945 	/*
946 	 * Toggle the hard reset line if the platform provides one. The reset
947 	 * is going to yank the device off the USB and then replug. So doing
948 	 * once is enough. The cleanup is handled correctly on the way out
949 	 * (standard USB disconnect), and the new device is detected cleanly
950 	 * and bound to the driver again like it should be.
951 	 */
952 	if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
953 		bt_dev_err(hdev, "last reset failed? Not resetting again");
954 		return;
955 	}
956 
957 	bt_dev_err(hdev, "Initiating HW reset via gpio");
958 	gpiod_set_value_cansleep(reset_gpio, 1);
959 	msleep(100);
960 	gpiod_set_value_cansleep(reset_gpio, 0);
961 }
962 
963 #define RTK_DEVCOREDUMP_CODE_MEMDUMP		0x01
964 #define RTK_DEVCOREDUMP_CODE_HW_ERR		0x02
965 #define RTK_DEVCOREDUMP_CODE_CMD_TIMEOUT	0x03
966 
967 #define RTK_SUB_EVENT_CODE_COREDUMP		0x34
968 
969 struct rtk_dev_coredump_hdr {
970 	u8 type;
971 	u8 code;
972 	u8 reserved[2];
973 } __packed;
974 
975 static inline void btusb_rtl_alloc_devcoredump(struct hci_dev *hdev,
976 		struct rtk_dev_coredump_hdr *hdr, u8 *buf, u32 len)
977 {
978 	struct sk_buff *skb;
979 
980 	skb = alloc_skb(len + sizeof(*hdr), GFP_ATOMIC);
981 	if (!skb)
982 		return;
983 
984 	skb_put_data(skb, hdr, sizeof(*hdr));
985 	if (len)
986 		skb_put_data(skb, buf, len);
987 
988 	if (!hci_devcd_init(hdev, skb->len)) {
989 		hci_devcd_append(hdev, skb);
990 		hci_devcd_complete(hdev);
991 	} else {
992 		bt_dev_err(hdev, "RTL: Failed to generate devcoredump");
993 		kfree_skb(skb);
994 	}
995 }
996 
997 static void btusb_rtl_reset(struct hci_dev *hdev)
998 {
999 	struct btusb_data *data = hci_get_drvdata(hdev);
1000 	struct gpio_desc *reset_gpio = data->reset_gpio;
1001 	struct rtk_dev_coredump_hdr hdr = {
1002 		.type = RTK_DEVCOREDUMP_CODE_CMD_TIMEOUT,
1003 	};
1004 
1005 	btusb_rtl_alloc_devcoredump(hdev, &hdr, NULL, 0);
1006 
1007 	if (!reset_gpio) {
1008 		btusb_reset(hdev);
1009 		return;
1010 	}
1011 
1012 	/* Toggle the hard reset line. The Realtek device is going to
1013 	 * yank itself off the USB and then replug. The cleanup is handled
1014 	 * correctly on the way out (standard USB disconnect), and the new
1015 	 * device is detected cleanly and bound to the driver again like
1016 	 * it should be.
1017 	 */
1018 	if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
1019 		bt_dev_err(hdev, "last reset failed? Not resetting again");
1020 		return;
1021 	}
1022 
1023 	bt_dev_err(hdev, "Reset Realtek device via gpio");
1024 	gpiod_set_value_cansleep(reset_gpio, 1);
1025 	msleep(200);
1026 	gpiod_set_value_cansleep(reset_gpio, 0);
1027 }
1028 
1029 static void btusb_rtl_hw_error(struct hci_dev *hdev, u8 code)
1030 {
1031 	struct rtk_dev_coredump_hdr hdr = {
1032 		.type = RTK_DEVCOREDUMP_CODE_HW_ERR,
1033 		.code = code,
1034 	};
1035 
1036 	bt_dev_err(hdev, "RTL: hw err, trigger devcoredump (%d)", code);
1037 
1038 	btusb_rtl_alloc_devcoredump(hdev, &hdr, NULL, 0);
1039 }
1040 
1041 static void btusb_qca_reset(struct hci_dev *hdev)
1042 {
1043 	struct btusb_data *data = hci_get_drvdata(hdev);
1044 	struct gpio_desc *reset_gpio = data->reset_gpio;
1045 
1046 	if (test_bit(BTUSB_HW_SSR_ACTIVE, &data->flags)) {
1047 		bt_dev_info(hdev, "Ramdump in progress, defer reset");
1048 		return;
1049 	}
1050 
1051 	if (reset_gpio) {
1052 		bt_dev_err(hdev, "Reset qca device via bt_en gpio");
1053 
1054 		/* Toggle the hard reset line. The qca bt device is going to
1055 		 * yank itself off the USB and then replug. The cleanup is handled
1056 		 * correctly on the way out (standard USB disconnect), and the new
1057 		 * device is detected cleanly and bound to the driver again like
1058 		 * it should be.
1059 		 */
1060 		if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
1061 			bt_dev_err(hdev, "last reset failed? Not resetting again");
1062 			return;
1063 		}
1064 
1065 		gpiod_set_value_cansleep(reset_gpio, 0);
1066 		msleep(200);
1067 		gpiod_set_value_cansleep(reset_gpio, 1);
1068 
1069 		return;
1070 	}
1071 
1072 	btusb_reset(hdev);
1073 }
1074 
1075 static inline void btusb_free_frags(struct btusb_data *data)
1076 {
1077 	unsigned long flags;
1078 
1079 	spin_lock_irqsave(&data->rxlock, flags);
1080 
1081 	dev_kfree_skb_irq(data->evt_skb);
1082 	data->evt_skb = NULL;
1083 
1084 	dev_kfree_skb_irq(data->acl_skb);
1085 	data->acl_skb = NULL;
1086 
1087 	dev_kfree_skb_irq(data->sco_skb);
1088 	data->sco_skb = NULL;
1089 
1090 	spin_unlock_irqrestore(&data->rxlock, flags);
1091 }
1092 
1093 static int btusb_recv_event(struct btusb_data *data, struct sk_buff *skb)
1094 {
1095 	if (data->intr_interval) {
1096 		/* Trigger dequeue immediately if an event is received */
1097 		schedule_delayed_work(&data->rx_work, 0);
1098 	}
1099 
1100 	return data->recv_event(data->hdev, skb);
1101 }
1102 
1103 static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
1104 {
1105 	struct sk_buff *skb;
1106 	unsigned long flags;
1107 	int err = 0;
1108 
1109 	spin_lock_irqsave(&data->rxlock, flags);
1110 	skb = data->evt_skb;
1111 
1112 	while (count) {
1113 		int len;
1114 
1115 		if (!skb) {
1116 			skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
1117 			if (!skb) {
1118 				err = -ENOMEM;
1119 				break;
1120 			}
1121 
1122 			hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
1123 			hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
1124 		}
1125 
1126 		len = min_t(uint, hci_skb_expect(skb), count);
1127 		skb_put_data(skb, buffer, len);
1128 
1129 		count -= len;
1130 		buffer += len;
1131 		hci_skb_expect(skb) -= len;
1132 
1133 		if (skb->len == HCI_EVENT_HDR_SIZE) {
1134 			/* Complete event header */
1135 			hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
1136 
1137 			if (skb_tailroom(skb) < hci_skb_expect(skb)) {
1138 				kfree_skb(skb);
1139 				skb = NULL;
1140 
1141 				err = -EILSEQ;
1142 				break;
1143 			}
1144 		}
1145 
1146 		if (!hci_skb_expect(skb)) {
1147 			/* Complete frame */
1148 			btusb_recv_event(data, skb);
1149 			skb = NULL;
1150 		}
1151 	}
1152 
1153 	data->evt_skb = skb;
1154 	spin_unlock_irqrestore(&data->rxlock, flags);
1155 
1156 	return err;
1157 }
1158 
1159 static int btusb_recv_acl(struct btusb_data *data, struct sk_buff *skb)
1160 {
1161 	/* Only queue ACL packet if intr_interval is set as it means
1162 	 * force_poll_sync has been enabled.
1163 	 */
1164 	if (!data->intr_interval)
1165 		return data->recv_acl(data->hdev, skb);
1166 
1167 	skb_queue_tail(&data->acl_q, skb);
1168 	schedule_delayed_work(&data->rx_work, data->intr_interval);
1169 
1170 	return 0;
1171 }
1172 
1173 static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
1174 {
1175 	struct sk_buff *skb;
1176 	unsigned long flags;
1177 	int err = 0;
1178 
1179 	spin_lock_irqsave(&data->rxlock, flags);
1180 	skb = data->acl_skb;
1181 
1182 	while (count) {
1183 		int len;
1184 
1185 		if (!skb) {
1186 			skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
1187 			if (!skb) {
1188 				err = -ENOMEM;
1189 				break;
1190 			}
1191 
1192 			hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
1193 			hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
1194 		}
1195 
1196 		len = min_t(uint, hci_skb_expect(skb), count);
1197 		skb_put_data(skb, buffer, len);
1198 
1199 		count -= len;
1200 		buffer += len;
1201 		hci_skb_expect(skb) -= len;
1202 
1203 		if (skb->len == HCI_ACL_HDR_SIZE) {
1204 			__le16 dlen = hci_acl_hdr(skb)->dlen;
1205 
1206 			/* Complete ACL header */
1207 			hci_skb_expect(skb) = __le16_to_cpu(dlen);
1208 
1209 			if (skb_tailroom(skb) < hci_skb_expect(skb)) {
1210 				kfree_skb(skb);
1211 				skb = NULL;
1212 
1213 				err = -EILSEQ;
1214 				break;
1215 			}
1216 		}
1217 
1218 		if (!hci_skb_expect(skb)) {
1219 			/* Complete frame */
1220 			btusb_recv_acl(data, skb);
1221 			skb = NULL;
1222 		}
1223 	}
1224 
1225 	data->acl_skb = skb;
1226 	spin_unlock_irqrestore(&data->rxlock, flags);
1227 
1228 	return err;
1229 }
1230 
1231 static bool btusb_validate_sco_handle(struct hci_dev *hdev,
1232 				      struct hci_sco_hdr *hdr)
1233 {
1234 	__u16 handle;
1235 
1236 	if (hci_dev_test_flag(hdev, HCI_USER_CHANNEL))
1237 		// Can't validate, userspace controls everything.
1238 		return true;
1239 
1240 	/*
1241 	 * USB isochronous transfers are not designed to be reliable and may
1242 	 * lose fragments.  When this happens, the next first fragment
1243 	 * encountered might actually be a continuation fragment.
1244 	 * Validate the handle to detect it and drop it, or else the upper
1245 	 * layer will get garbage for a while.
1246 	 */
1247 
1248 	handle = hci_handle(__le16_to_cpu(hdr->handle));
1249 
1250 	switch (hci_conn_lookup_type(hdev, handle)) {
1251 	case SCO_LINK:
1252 	case ESCO_LINK:
1253 		return true;
1254 	default:
1255 		return false;
1256 	}
1257 }
1258 
1259 static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
1260 {
1261 	struct sk_buff *skb;
1262 	unsigned long flags;
1263 	int err = 0;
1264 
1265 	spin_lock_irqsave(&data->rxlock, flags);
1266 	skb = data->sco_skb;
1267 
1268 	while (count) {
1269 		int len;
1270 
1271 		if (!skb) {
1272 			skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
1273 			if (!skb) {
1274 				err = -ENOMEM;
1275 				break;
1276 			}
1277 
1278 			hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
1279 			hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
1280 		}
1281 
1282 		len = min_t(uint, hci_skb_expect(skb), count);
1283 		skb_put_data(skb, buffer, len);
1284 
1285 		count -= len;
1286 		buffer += len;
1287 		hci_skb_expect(skb) -= len;
1288 
1289 		if (skb->len == HCI_SCO_HDR_SIZE) {
1290 			/* Complete SCO header */
1291 			struct hci_sco_hdr *hdr = hci_sco_hdr(skb);
1292 
1293 			hci_skb_expect(skb) = hdr->dlen;
1294 
1295 			if (skb_tailroom(skb) < hci_skb_expect(skb) ||
1296 			    !btusb_validate_sco_handle(data->hdev, hdr)) {
1297 				kfree_skb(skb);
1298 				skb = NULL;
1299 
1300 				err = -EILSEQ;
1301 				break;
1302 			}
1303 		}
1304 
1305 		if (!hci_skb_expect(skb)) {
1306 			/* Complete frame */
1307 			hci_recv_frame(data->hdev, skb);
1308 			skb = NULL;
1309 		}
1310 	}
1311 
1312 	data->sco_skb = skb;
1313 	spin_unlock_irqrestore(&data->rxlock, flags);
1314 
1315 	return err;
1316 }
1317 
1318 static void btusb_intr_complete(struct urb *urb)
1319 {
1320 	struct hci_dev *hdev = urb->context;
1321 	struct btusb_data *data = hci_get_drvdata(hdev);
1322 	int err;
1323 
1324 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1325 	       urb->actual_length);
1326 
1327 	if (!test_bit(HCI_RUNNING, &hdev->flags))
1328 		return;
1329 
1330 	if (urb->status == 0) {
1331 		hdev->stat.byte_rx += urb->actual_length;
1332 
1333 		if (btusb_recv_intr(data, urb->transfer_buffer,
1334 				    urb->actual_length) < 0) {
1335 			bt_dev_err(hdev, "corrupted event packet");
1336 			hdev->stat.err_rx++;
1337 		}
1338 	} else if (urb->status == -ENOENT) {
1339 		/* Avoid suspend failed when usb_kill_urb */
1340 		return;
1341 	}
1342 
1343 	if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
1344 		return;
1345 
1346 	usb_mark_last_busy(data->udev);
1347 	usb_anchor_urb(urb, &data->intr_anchor);
1348 
1349 	err = usb_submit_urb(urb, GFP_ATOMIC);
1350 	if (err < 0) {
1351 		/* -EPERM: urb is being killed;
1352 		 * -ENODEV: device got disconnected
1353 		 */
1354 		if (err != -EPERM && err != -ENODEV)
1355 			bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1356 				   urb, -err);
1357 		if (err != -EPERM)
1358 			hci_cmd_sync_cancel(hdev, -err);
1359 		usb_unanchor_urb(urb);
1360 	}
1361 }
1362 
1363 static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
1364 {
1365 	struct btusb_data *data = hci_get_drvdata(hdev);
1366 	struct urb *urb;
1367 	unsigned char *buf;
1368 	unsigned int pipe;
1369 	int err, size;
1370 
1371 	BT_DBG("%s", hdev->name);
1372 
1373 	if (!data->intr_ep)
1374 		return -ENODEV;
1375 
1376 	urb = usb_alloc_urb(0, mem_flags);
1377 	if (!urb)
1378 		return -ENOMEM;
1379 
1380 	if (le16_to_cpu(data->udev->descriptor.idVendor)  == 0x0a12 &&
1381 	    le16_to_cpu(data->udev->descriptor.idProduct) == 0x0001)
1382 		/* Fake CSR devices don't seem to support sort-transter */
1383 		size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
1384 	else
1385 		/* Use maximum HCI Event size so the USB stack handles
1386 		 * ZPL/short-transfer automatically.
1387 		 */
1388 		size = HCI_MAX_EVENT_SIZE;
1389 
1390 	buf = kmalloc(size, mem_flags);
1391 	if (!buf) {
1392 		usb_free_urb(urb);
1393 		return -ENOMEM;
1394 	}
1395 
1396 	pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
1397 
1398 	usb_fill_int_urb(urb, data->udev, pipe, buf, size,
1399 			 btusb_intr_complete, hdev, data->intr_ep->bInterval);
1400 
1401 	urb->transfer_flags |= URB_FREE_BUFFER;
1402 
1403 	usb_anchor_urb(urb, &data->intr_anchor);
1404 
1405 	err = usb_submit_urb(urb, mem_flags);
1406 	if (err < 0) {
1407 		if (err != -EPERM && err != -ENODEV)
1408 			bt_dev_err(hdev, "urb %p submission failed (%d)",
1409 				   urb, -err);
1410 		if (err != -EPERM)
1411 			hci_cmd_sync_cancel(hdev, -err);
1412 		usb_unanchor_urb(urb);
1413 	}
1414 
1415 	/* Only initialize intr_interval if URB poll sync is enabled */
1416 	if (!data->poll_sync)
1417 		goto done;
1418 
1419 	/* The units are frames (milliseconds) for full and low speed devices,
1420 	 * and microframes (1/8 millisecond) for highspeed and SuperSpeed
1421 	 * devices.
1422 	 *
1423 	 * This is done once on open/resume so it shouldn't change even if
1424 	 * force_poll_sync changes.
1425 	 */
1426 	switch (urb->dev->speed) {
1427 	case USB_SPEED_SUPER_PLUS:
1428 	case USB_SPEED_SUPER:	/* units are 125us */
1429 		data->intr_interval = usecs_to_jiffies(urb->interval * 125);
1430 		break;
1431 	default:
1432 		data->intr_interval = msecs_to_jiffies(urb->interval);
1433 		break;
1434 	}
1435 
1436 done:
1437 	usb_free_urb(urb);
1438 
1439 	return err;
1440 }
1441 
1442 static void btusb_bulk_complete(struct urb *urb)
1443 {
1444 	struct hci_dev *hdev = urb->context;
1445 	struct btusb_data *data = hci_get_drvdata(hdev);
1446 	int err;
1447 
1448 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1449 	       urb->actual_length);
1450 
1451 	if (!test_bit(HCI_RUNNING, &hdev->flags))
1452 		return;
1453 
1454 	if (urb->status == 0) {
1455 		hdev->stat.byte_rx += urb->actual_length;
1456 
1457 		if (data->recv_bulk(data, urb->transfer_buffer,
1458 				    urb->actual_length) < 0) {
1459 			bt_dev_err(hdev, "corrupted ACL packet");
1460 			hdev->stat.err_rx++;
1461 		}
1462 	} else if (urb->status == -ENOENT) {
1463 		/* Avoid suspend failed when usb_kill_urb */
1464 		return;
1465 	}
1466 
1467 	if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
1468 		return;
1469 
1470 	usb_anchor_urb(urb, &data->bulk_anchor);
1471 	usb_mark_last_busy(data->udev);
1472 
1473 	err = usb_submit_urb(urb, GFP_ATOMIC);
1474 	if (err < 0) {
1475 		/* -EPERM: urb is being killed;
1476 		 * -ENODEV: device got disconnected
1477 		 */
1478 		if (err != -EPERM && err != -ENODEV)
1479 			bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1480 				   urb, -err);
1481 		usb_unanchor_urb(urb);
1482 	}
1483 }
1484 
1485 static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
1486 {
1487 	struct btusb_data *data = hci_get_drvdata(hdev);
1488 	struct urb *urb;
1489 	unsigned char *buf;
1490 	unsigned int pipe;
1491 	int err, size = HCI_MAX_FRAME_SIZE;
1492 
1493 	BT_DBG("%s", hdev->name);
1494 
1495 	if (!data->bulk_rx_ep)
1496 		return -ENODEV;
1497 
1498 	urb = usb_alloc_urb(0, mem_flags);
1499 	if (!urb)
1500 		return -ENOMEM;
1501 
1502 	buf = kmalloc(size, mem_flags);
1503 	if (!buf) {
1504 		usb_free_urb(urb);
1505 		return -ENOMEM;
1506 	}
1507 
1508 	pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
1509 
1510 	usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1511 			  btusb_bulk_complete, hdev);
1512 
1513 	urb->transfer_flags |= URB_FREE_BUFFER;
1514 
1515 	usb_mark_last_busy(data->udev);
1516 	usb_anchor_urb(urb, &data->bulk_anchor);
1517 
1518 	err = usb_submit_urb(urb, mem_flags);
1519 	if (err < 0) {
1520 		if (err != -EPERM && err != -ENODEV)
1521 			bt_dev_err(hdev, "urb %p submission failed (%d)",
1522 				   urb, -err);
1523 		usb_unanchor_urb(urb);
1524 	}
1525 
1526 	usb_free_urb(urb);
1527 
1528 	return err;
1529 }
1530 
1531 static void btusb_isoc_complete(struct urb *urb)
1532 {
1533 	struct hci_dev *hdev = urb->context;
1534 	struct btusb_data *data = hci_get_drvdata(hdev);
1535 	int i, err;
1536 
1537 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1538 	       urb->actual_length);
1539 
1540 	if (!test_bit(HCI_RUNNING, &hdev->flags))
1541 		return;
1542 
1543 	if (urb->status == 0) {
1544 		for (i = 0; i < urb->number_of_packets; i++) {
1545 			unsigned int offset = urb->iso_frame_desc[i].offset;
1546 			unsigned int length = urb->iso_frame_desc[i].actual_length;
1547 
1548 			if (urb->iso_frame_desc[i].status)
1549 				continue;
1550 
1551 			hdev->stat.byte_rx += length;
1552 
1553 			if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
1554 					    length) < 0) {
1555 				bt_dev_err(hdev, "corrupted SCO packet");
1556 				hdev->stat.err_rx++;
1557 			}
1558 		}
1559 	} else if (urb->status == -ENOENT) {
1560 		/* Avoid suspend failed when usb_kill_urb */
1561 		return;
1562 	}
1563 
1564 	if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
1565 		return;
1566 
1567 	usb_anchor_urb(urb, &data->isoc_anchor);
1568 
1569 	err = usb_submit_urb(urb, GFP_ATOMIC);
1570 	if (err < 0) {
1571 		/* -EPERM: urb is being killed;
1572 		 * -ENODEV: device got disconnected
1573 		 */
1574 		if (err != -EPERM && err != -ENODEV)
1575 			bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1576 				   urb, -err);
1577 		usb_unanchor_urb(urb);
1578 	}
1579 }
1580 
1581 static inline void __fill_isoc_descriptor_msbc(struct urb *urb, int len,
1582 					       int mtu, struct btusb_data *data)
1583 {
1584 	int i = 0, offset = 0;
1585 	unsigned int interval;
1586 
1587 	BT_DBG("len %d mtu %d", len, mtu);
1588 
1589 	/* For mSBC ALT 6 settings some chips need to transmit the data
1590 	 * continuously without the zero length of USB packets.
1591 	 */
1592 	if (test_bit(BTUSB_ALT6_CONTINUOUS_TX, &data->flags))
1593 		goto ignore_usb_alt6_packet_flow;
1594 
1595 	/* For mSBC ALT 6 setting the host will send the packet at continuous
1596 	 * flow. As per core spec 5, vol 4, part B, table 2.1. For ALT setting
1597 	 * 6 the HCI PACKET INTERVAL should be 7.5ms for every usb packets.
1598 	 * To maintain the rate we send 63bytes of usb packets alternatively for
1599 	 * 7ms and 8ms to maintain the rate as 7.5ms.
1600 	 */
1601 	if (data->usb_alt6_packet_flow) {
1602 		interval = 7;
1603 		data->usb_alt6_packet_flow = false;
1604 	} else {
1605 		interval = 6;
1606 		data->usb_alt6_packet_flow = true;
1607 	}
1608 
1609 	for (i = 0; i < interval; i++) {
1610 		urb->iso_frame_desc[i].offset = offset;
1611 		urb->iso_frame_desc[i].length = offset;
1612 	}
1613 
1614 ignore_usb_alt6_packet_flow:
1615 	if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1616 		urb->iso_frame_desc[i].offset = offset;
1617 		urb->iso_frame_desc[i].length = len;
1618 		i++;
1619 	}
1620 
1621 	urb->number_of_packets = i;
1622 }
1623 
1624 static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
1625 {
1626 	int i, offset = 0;
1627 
1628 	BT_DBG("len %d mtu %d", len, mtu);
1629 
1630 	for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
1631 					i++, offset += mtu, len -= mtu) {
1632 		urb->iso_frame_desc[i].offset = offset;
1633 		urb->iso_frame_desc[i].length = mtu;
1634 	}
1635 
1636 	if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1637 		urb->iso_frame_desc[i].offset = offset;
1638 		urb->iso_frame_desc[i].length = len;
1639 		i++;
1640 	}
1641 
1642 	urb->number_of_packets = i;
1643 }
1644 
1645 static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
1646 {
1647 	struct btusb_data *data = hci_get_drvdata(hdev);
1648 	struct urb *urb;
1649 	unsigned char *buf;
1650 	unsigned int pipe;
1651 	int err, size;
1652 
1653 	BT_DBG("%s", hdev->name);
1654 
1655 	if (!data->isoc_rx_ep)
1656 		return -ENODEV;
1657 
1658 	urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
1659 	if (!urb)
1660 		return -ENOMEM;
1661 
1662 	size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
1663 						BTUSB_MAX_ISOC_FRAMES;
1664 
1665 	buf = kmalloc(size, mem_flags);
1666 	if (!buf) {
1667 		usb_free_urb(urb);
1668 		return -ENOMEM;
1669 	}
1670 
1671 	pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
1672 
1673 	usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
1674 			 hdev, data->isoc_rx_ep->bInterval);
1675 
1676 	urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
1677 
1678 	__fill_isoc_descriptor(urb, size,
1679 			       le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
1680 
1681 	usb_anchor_urb(urb, &data->isoc_anchor);
1682 
1683 	err = usb_submit_urb(urb, mem_flags);
1684 	if (err < 0) {
1685 		if (err != -EPERM && err != -ENODEV)
1686 			bt_dev_err(hdev, "urb %p submission failed (%d)",
1687 				   urb, -err);
1688 		usb_unanchor_urb(urb);
1689 	}
1690 
1691 	usb_free_urb(urb);
1692 
1693 	return err;
1694 }
1695 
1696 static void btusb_diag_complete(struct urb *urb)
1697 {
1698 	struct hci_dev *hdev = urb->context;
1699 	struct btusb_data *data = hci_get_drvdata(hdev);
1700 	int err;
1701 
1702 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1703 	       urb->actual_length);
1704 
1705 	if (urb->status == 0) {
1706 		struct sk_buff *skb;
1707 
1708 		skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
1709 		if (skb) {
1710 			skb_put_data(skb, urb->transfer_buffer,
1711 				     urb->actual_length);
1712 			hci_recv_diag(hdev, skb);
1713 		}
1714 	} else if (urb->status == -ENOENT) {
1715 		/* Avoid suspend failed when usb_kill_urb */
1716 		return;
1717 	}
1718 
1719 	if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
1720 		return;
1721 
1722 	usb_anchor_urb(urb, &data->diag_anchor);
1723 	usb_mark_last_busy(data->udev);
1724 
1725 	err = usb_submit_urb(urb, GFP_ATOMIC);
1726 	if (err < 0) {
1727 		/* -EPERM: urb is being killed;
1728 		 * -ENODEV: device got disconnected
1729 		 */
1730 		if (err != -EPERM && err != -ENODEV)
1731 			bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1732 				   urb, -err);
1733 		usb_unanchor_urb(urb);
1734 	}
1735 }
1736 
1737 static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
1738 {
1739 	struct btusb_data *data = hci_get_drvdata(hdev);
1740 	struct urb *urb;
1741 	unsigned char *buf;
1742 	unsigned int pipe;
1743 	int err, size = HCI_MAX_FRAME_SIZE;
1744 
1745 	BT_DBG("%s", hdev->name);
1746 
1747 	if (!data->diag_rx_ep)
1748 		return -ENODEV;
1749 
1750 	urb = usb_alloc_urb(0, mem_flags);
1751 	if (!urb)
1752 		return -ENOMEM;
1753 
1754 	buf = kmalloc(size, mem_flags);
1755 	if (!buf) {
1756 		usb_free_urb(urb);
1757 		return -ENOMEM;
1758 	}
1759 
1760 	pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
1761 
1762 	usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1763 			  btusb_diag_complete, hdev);
1764 
1765 	urb->transfer_flags |= URB_FREE_BUFFER;
1766 
1767 	usb_mark_last_busy(data->udev);
1768 	usb_anchor_urb(urb, &data->diag_anchor);
1769 
1770 	err = usb_submit_urb(urb, mem_flags);
1771 	if (err < 0) {
1772 		if (err != -EPERM && err != -ENODEV)
1773 			bt_dev_err(hdev, "urb %p submission failed (%d)",
1774 				   urb, -err);
1775 		usb_unanchor_urb(urb);
1776 	}
1777 
1778 	usb_free_urb(urb);
1779 
1780 	return err;
1781 }
1782 
1783 static void btusb_tx_complete(struct urb *urb)
1784 {
1785 	struct sk_buff *skb = urb->context;
1786 	struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1787 	struct btusb_data *data = hci_get_drvdata(hdev);
1788 	unsigned long flags;
1789 
1790 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1791 	       urb->actual_length);
1792 
1793 	if (!test_bit(HCI_RUNNING, &hdev->flags))
1794 		goto done;
1795 
1796 	if (!urb->status) {
1797 		hdev->stat.byte_tx += urb->transfer_buffer_length;
1798 	} else {
1799 		if (hci_skb_pkt_type(skb) == HCI_COMMAND_PKT)
1800 			hci_cmd_sync_cancel(hdev, -urb->status);
1801 		hdev->stat.err_tx++;
1802 	}
1803 
1804 done:
1805 	spin_lock_irqsave(&data->txlock, flags);
1806 	data->tx_in_flight--;
1807 	spin_unlock_irqrestore(&data->txlock, flags);
1808 
1809 	kfree(urb->setup_packet);
1810 
1811 	kfree_skb(skb);
1812 }
1813 
1814 static void btusb_isoc_tx_complete(struct urb *urb)
1815 {
1816 	struct sk_buff *skb = urb->context;
1817 	struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1818 
1819 	BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1820 	       urb->actual_length);
1821 
1822 	if (!test_bit(HCI_RUNNING, &hdev->flags))
1823 		goto done;
1824 
1825 	if (!urb->status)
1826 		hdev->stat.byte_tx += urb->transfer_buffer_length;
1827 	else
1828 		hdev->stat.err_tx++;
1829 
1830 done:
1831 	kfree(urb->setup_packet);
1832 
1833 	kfree_skb(skb);
1834 }
1835 
1836 static int btusb_open(struct hci_dev *hdev)
1837 {
1838 	struct btusb_data *data = hci_get_drvdata(hdev);
1839 	int err;
1840 
1841 	BT_DBG("%s", hdev->name);
1842 
1843 	err = usb_autopm_get_interface(data->intf);
1844 	if (err < 0)
1845 		return err;
1846 
1847 	/* Patching USB firmware files prior to starting any URBs of HCI path
1848 	 * It is more safe to use USB bulk channel for downloading USB patch
1849 	 */
1850 	if (data->setup_on_usb) {
1851 		err = data->setup_on_usb(hdev);
1852 		if (err < 0)
1853 			goto setup_fail;
1854 	}
1855 
1856 	data->intf->needs_remote_wakeup = 1;
1857 
1858 	if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
1859 		goto done;
1860 
1861 	err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
1862 	if (err < 0)
1863 		goto failed;
1864 
1865 	err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1866 	if (err < 0) {
1867 		usb_kill_anchored_urbs(&data->intr_anchor);
1868 		goto failed;
1869 	}
1870 
1871 	set_bit(BTUSB_BULK_RUNNING, &data->flags);
1872 	btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1873 
1874 	if (data->diag) {
1875 		if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1876 			set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1877 	}
1878 
1879 done:
1880 	usb_autopm_put_interface(data->intf);
1881 	return 0;
1882 
1883 failed:
1884 	clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1885 setup_fail:
1886 	usb_autopm_put_interface(data->intf);
1887 	return err;
1888 }
1889 
1890 static void btusb_stop_traffic(struct btusb_data *data)
1891 {
1892 	usb_kill_anchored_urbs(&data->intr_anchor);
1893 	usb_kill_anchored_urbs(&data->bulk_anchor);
1894 	usb_kill_anchored_urbs(&data->isoc_anchor);
1895 	usb_kill_anchored_urbs(&data->diag_anchor);
1896 	usb_kill_anchored_urbs(&data->ctrl_anchor);
1897 }
1898 
1899 static int btusb_close(struct hci_dev *hdev)
1900 {
1901 	struct btusb_data *data = hci_get_drvdata(hdev);
1902 	int err;
1903 
1904 	BT_DBG("%s", hdev->name);
1905 
1906 	cancel_delayed_work(&data->rx_work);
1907 	cancel_work_sync(&data->work);
1908 	cancel_work_sync(&data->waker);
1909 
1910 	skb_queue_purge(&data->acl_q);
1911 
1912 	clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1913 	clear_bit(BTUSB_BULK_RUNNING, &data->flags);
1914 	clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1915 	clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
1916 
1917 	btusb_stop_traffic(data);
1918 	btusb_free_frags(data);
1919 
1920 	err = usb_autopm_get_interface(data->intf);
1921 	if (err < 0)
1922 		goto failed;
1923 
1924 	data->intf->needs_remote_wakeup = 0;
1925 
1926 	/* Enable remote wake up for auto-suspend */
1927 	if (test_bit(BTUSB_WAKEUP_AUTOSUSPEND, &data->flags))
1928 		data->intf->needs_remote_wakeup = 1;
1929 
1930 	usb_autopm_put_interface(data->intf);
1931 
1932 failed:
1933 	usb_scuttle_anchored_urbs(&data->deferred);
1934 	return 0;
1935 }
1936 
1937 static int btusb_flush(struct hci_dev *hdev)
1938 {
1939 	struct btusb_data *data = hci_get_drvdata(hdev);
1940 
1941 	BT_DBG("%s", hdev->name);
1942 
1943 	cancel_delayed_work(&data->rx_work);
1944 
1945 	skb_queue_purge(&data->acl_q);
1946 
1947 	usb_kill_anchored_urbs(&data->tx_anchor);
1948 	btusb_free_frags(data);
1949 
1950 	return 0;
1951 }
1952 
1953 static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
1954 {
1955 	struct btusb_data *data = hci_get_drvdata(hdev);
1956 	struct usb_ctrlrequest *dr;
1957 	struct urb *urb;
1958 	unsigned int pipe;
1959 
1960 	urb = usb_alloc_urb(0, GFP_KERNEL);
1961 	if (!urb)
1962 		return ERR_PTR(-ENOMEM);
1963 
1964 	dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1965 	if (!dr) {
1966 		usb_free_urb(urb);
1967 		return ERR_PTR(-ENOMEM);
1968 	}
1969 
1970 	dr->bRequestType = data->cmdreq_type;
1971 	dr->bRequest     = data->cmdreq;
1972 	dr->wIndex       = 0;
1973 	dr->wValue       = 0;
1974 	dr->wLength      = __cpu_to_le16(skb->len);
1975 
1976 	pipe = usb_sndctrlpipe(data->udev, 0x00);
1977 
1978 	usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
1979 			     skb->data, skb->len, btusb_tx_complete, skb);
1980 
1981 	skb->dev = (void *)hdev;
1982 
1983 	return urb;
1984 }
1985 
1986 static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1987 {
1988 	struct btusb_data *data = hci_get_drvdata(hdev);
1989 	struct urb *urb;
1990 	unsigned int pipe;
1991 
1992 	if (!data->bulk_tx_ep)
1993 		return ERR_PTR(-ENODEV);
1994 
1995 	urb = usb_alloc_urb(0, GFP_KERNEL);
1996 	if (!urb)
1997 		return ERR_PTR(-ENOMEM);
1998 
1999 	pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
2000 
2001 	usb_fill_bulk_urb(urb, data->udev, pipe,
2002 			  skb->data, skb->len, btusb_tx_complete, skb);
2003 
2004 	skb->dev = (void *)hdev;
2005 
2006 	return urb;
2007 }
2008 
2009 static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
2010 {
2011 	struct btusb_data *data = hci_get_drvdata(hdev);
2012 	struct urb *urb;
2013 	unsigned int pipe;
2014 
2015 	if (!data->isoc_tx_ep)
2016 		return ERR_PTR(-ENODEV);
2017 
2018 	urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
2019 	if (!urb)
2020 		return ERR_PTR(-ENOMEM);
2021 
2022 	pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
2023 
2024 	usb_fill_int_urb(urb, data->udev, pipe,
2025 			 skb->data, skb->len, btusb_isoc_tx_complete,
2026 			 skb, data->isoc_tx_ep->bInterval);
2027 
2028 	urb->transfer_flags  = URB_ISO_ASAP;
2029 
2030 	if (data->isoc_altsetting == 6)
2031 		__fill_isoc_descriptor_msbc(urb, skb->len,
2032 					    le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize),
2033 					    data);
2034 	else
2035 		__fill_isoc_descriptor(urb, skb->len,
2036 				       le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
2037 	skb->dev = (void *)hdev;
2038 
2039 	return urb;
2040 }
2041 
2042 static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
2043 {
2044 	struct btusb_data *data = hci_get_drvdata(hdev);
2045 	int err;
2046 
2047 	usb_anchor_urb(urb, &data->tx_anchor);
2048 
2049 	err = usb_submit_urb(urb, GFP_KERNEL);
2050 	if (err < 0) {
2051 		if (err != -EPERM && err != -ENODEV)
2052 			bt_dev_err(hdev, "urb %p submission failed (%d)",
2053 				   urb, -err);
2054 		kfree(urb->setup_packet);
2055 		usb_unanchor_urb(urb);
2056 	} else {
2057 		usb_mark_last_busy(data->udev);
2058 	}
2059 
2060 	usb_free_urb(urb);
2061 	return err;
2062 }
2063 
2064 static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
2065 {
2066 	struct btusb_data *data = hci_get_drvdata(hdev);
2067 	unsigned long flags;
2068 	bool suspending;
2069 
2070 	spin_lock_irqsave(&data->txlock, flags);
2071 	suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
2072 	if (!suspending)
2073 		data->tx_in_flight++;
2074 	spin_unlock_irqrestore(&data->txlock, flags);
2075 
2076 	if (!suspending)
2077 		return submit_tx_urb(hdev, urb);
2078 
2079 	usb_anchor_urb(urb, &data->deferred);
2080 	schedule_work(&data->waker);
2081 
2082 	usb_free_urb(urb);
2083 	return 0;
2084 }
2085 
2086 static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
2087 {
2088 	struct urb *urb;
2089 
2090 	BT_DBG("%s", hdev->name);
2091 
2092 	switch (hci_skb_pkt_type(skb)) {
2093 	case HCI_COMMAND_PKT:
2094 		urb = alloc_ctrl_urb(hdev, skb);
2095 		if (IS_ERR(urb))
2096 			return PTR_ERR(urb);
2097 
2098 		hdev->stat.cmd_tx++;
2099 		return submit_or_queue_tx_urb(hdev, urb);
2100 
2101 	case HCI_ACLDATA_PKT:
2102 		urb = alloc_bulk_urb(hdev, skb);
2103 		if (IS_ERR(urb))
2104 			return PTR_ERR(urb);
2105 
2106 		hdev->stat.acl_tx++;
2107 		return submit_or_queue_tx_urb(hdev, urb);
2108 
2109 	case HCI_SCODATA_PKT:
2110 		if (hci_conn_num(hdev, SCO_LINK) < 1)
2111 			return -ENODEV;
2112 
2113 		urb = alloc_isoc_urb(hdev, skb);
2114 		if (IS_ERR(urb))
2115 			return PTR_ERR(urb);
2116 
2117 		hdev->stat.sco_tx++;
2118 		return submit_tx_urb(hdev, urb);
2119 
2120 	case HCI_ISODATA_PKT:
2121 		urb = alloc_bulk_urb(hdev, skb);
2122 		if (IS_ERR(urb))
2123 			return PTR_ERR(urb);
2124 
2125 		return submit_or_queue_tx_urb(hdev, urb);
2126 	}
2127 
2128 	return -EILSEQ;
2129 }
2130 
2131 static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
2132 {
2133 	struct btusb_data *data = hci_get_drvdata(hdev);
2134 
2135 	BT_DBG("%s evt %d", hdev->name, evt);
2136 
2137 	if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
2138 		data->sco_num = hci_conn_num(hdev, SCO_LINK);
2139 		data->air_mode = evt;
2140 		schedule_work(&data->work);
2141 	}
2142 }
2143 
2144 static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
2145 {
2146 	struct btusb_data *data = hci_get_drvdata(hdev);
2147 	struct usb_interface *intf = data->isoc;
2148 	struct usb_endpoint_descriptor *ep_desc;
2149 	int i, err;
2150 
2151 	if (!data->isoc)
2152 		return -ENODEV;
2153 
2154 	err = usb_set_interface(data->udev, data->isoc_ifnum, altsetting);
2155 	if (err < 0) {
2156 		bt_dev_err(hdev, "setting interface failed (%d)", -err);
2157 		return err;
2158 	}
2159 
2160 	data->isoc_altsetting = altsetting;
2161 
2162 	data->isoc_tx_ep = NULL;
2163 	data->isoc_rx_ep = NULL;
2164 
2165 	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2166 		ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2167 
2168 		if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
2169 			data->isoc_tx_ep = ep_desc;
2170 			continue;
2171 		}
2172 
2173 		if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
2174 			data->isoc_rx_ep = ep_desc;
2175 			continue;
2176 		}
2177 	}
2178 
2179 	if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
2180 		bt_dev_err(hdev, "invalid SCO descriptors");
2181 		return -ENODEV;
2182 	}
2183 
2184 	return 0;
2185 }
2186 
2187 static int btusb_switch_alt_setting(struct hci_dev *hdev, int new_alts)
2188 {
2189 	struct btusb_data *data = hci_get_drvdata(hdev);
2190 	int err;
2191 
2192 	if (data->isoc_altsetting != new_alts) {
2193 		unsigned long flags;
2194 
2195 		clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2196 		usb_kill_anchored_urbs(&data->isoc_anchor);
2197 
2198 		/* When isochronous alternate setting needs to be
2199 		 * changed, because SCO connection has been added
2200 		 * or removed, a packet fragment may be left in the
2201 		 * reassembling state. This could lead to wrongly
2202 		 * assembled fragments.
2203 		 *
2204 		 * Clear outstanding fragment when selecting a new
2205 		 * alternate setting.
2206 		 */
2207 		spin_lock_irqsave(&data->rxlock, flags);
2208 		dev_kfree_skb_irq(data->sco_skb);
2209 		data->sco_skb = NULL;
2210 		spin_unlock_irqrestore(&data->rxlock, flags);
2211 
2212 		err = __set_isoc_interface(hdev, new_alts);
2213 		if (err < 0)
2214 			return err;
2215 	}
2216 
2217 	if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2218 		if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
2219 			clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2220 		else
2221 			btusb_submit_isoc_urb(hdev, GFP_KERNEL);
2222 	}
2223 
2224 	return 0;
2225 }
2226 
2227 static struct usb_host_interface *btusb_find_altsetting(struct btusb_data *data,
2228 							int alt)
2229 {
2230 	struct usb_interface *intf = data->isoc;
2231 	int i;
2232 
2233 	BT_DBG("Looking for Alt no :%d", alt);
2234 
2235 	if (!intf)
2236 		return NULL;
2237 
2238 	for (i = 0; i < intf->num_altsetting; i++) {
2239 		if (intf->altsetting[i].desc.bAlternateSetting == alt)
2240 			return &intf->altsetting[i];
2241 	}
2242 
2243 	return NULL;
2244 }
2245 
2246 static void btusb_work(struct work_struct *work)
2247 {
2248 	struct btusb_data *data = container_of(work, struct btusb_data, work);
2249 	struct hci_dev *hdev = data->hdev;
2250 	int new_alts = 0;
2251 	int err;
2252 
2253 	if (data->sco_num > 0) {
2254 		if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
2255 			err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
2256 			if (err < 0) {
2257 				clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2258 				usb_kill_anchored_urbs(&data->isoc_anchor);
2259 				return;
2260 			}
2261 
2262 			set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
2263 		}
2264 
2265 		if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_CVSD) {
2266 			if (hdev->voice_setting & 0x0020) {
2267 				static const int alts[3] = { 2, 4, 5 };
2268 
2269 				new_alts = alts[data->sco_num - 1];
2270 			} else {
2271 				new_alts = data->sco_num;
2272 			}
2273 		} else if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_TRANSP) {
2274 			/* Bluetooth USB spec recommends alt 6 (63 bytes), but
2275 			 * many adapters do not support it.  Alt 1 appears to
2276 			 * work for all adapters that do not have alt 6, and
2277 			 * which work with WBS at all.  Some devices prefer
2278 			 * alt 3 (HCI payload >= 60 Bytes let air packet
2279 			 * data satisfy 60 bytes), requiring
2280 			 * MTU >= 3 (packets) * 25 (size) - 3 (headers) = 72
2281 			 * see also Core spec 5, vol 4, B 2.1.1 & Table 2.1.
2282 			 */
2283 			if (btusb_find_altsetting(data, 6))
2284 				new_alts = 6;
2285 			else if (btusb_find_altsetting(data, 3) &&
2286 				 hdev->sco_mtu >= 72 &&
2287 				 test_bit(BTUSB_USE_ALT3_FOR_WBS, &data->flags))
2288 				new_alts = 3;
2289 			else
2290 				new_alts = 1;
2291 		}
2292 
2293 		if (btusb_switch_alt_setting(hdev, new_alts) < 0)
2294 			bt_dev_err(hdev, "set USB alt:(%d) failed!", new_alts);
2295 	} else {
2296 		usb_kill_anchored_urbs(&data->isoc_anchor);
2297 
2298 		if (test_and_clear_bit(BTUSB_ISOC_RUNNING, &data->flags))
2299 			__set_isoc_interface(hdev, 0);
2300 
2301 		if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
2302 			usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
2303 	}
2304 }
2305 
2306 static void btusb_waker(struct work_struct *work)
2307 {
2308 	struct btusb_data *data = container_of(work, struct btusb_data, waker);
2309 	int err;
2310 
2311 	err = usb_autopm_get_interface(data->intf);
2312 	if (err < 0)
2313 		return;
2314 
2315 	usb_autopm_put_interface(data->intf);
2316 }
2317 
2318 static void btusb_rx_work(struct work_struct *work)
2319 {
2320 	struct btusb_data *data = container_of(work, struct btusb_data,
2321 					       rx_work.work);
2322 	struct sk_buff *skb;
2323 
2324 	/* Dequeue ACL data received during the interval */
2325 	while ((skb = skb_dequeue(&data->acl_q)))
2326 		data->recv_acl(data->hdev, skb);
2327 }
2328 
2329 static int btusb_setup_bcm92035(struct hci_dev *hdev)
2330 {
2331 	struct sk_buff *skb;
2332 	u8 val = 0x00;
2333 
2334 	BT_DBG("%s", hdev->name);
2335 
2336 	skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
2337 	if (IS_ERR(skb))
2338 		bt_dev_err(hdev, "BCM92035 command failed (%ld)", PTR_ERR(skb));
2339 	else
2340 		kfree_skb(skb);
2341 
2342 	return 0;
2343 }
2344 
2345 static int btusb_setup_csr(struct hci_dev *hdev)
2346 {
2347 	struct btusb_data *data = hci_get_drvdata(hdev);
2348 	u16 bcdDevice = le16_to_cpu(data->udev->descriptor.bcdDevice);
2349 	struct hci_rp_read_local_version *rp;
2350 	struct sk_buff *skb;
2351 	bool is_fake = false;
2352 	int ret;
2353 
2354 	BT_DBG("%s", hdev->name);
2355 
2356 	skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
2357 			     HCI_INIT_TIMEOUT);
2358 	if (IS_ERR(skb)) {
2359 		int err = PTR_ERR(skb);
2360 		bt_dev_err(hdev, "CSR: Local version failed (%d)", err);
2361 		return err;
2362 	}
2363 
2364 	rp = skb_pull_data(skb, sizeof(*rp));
2365 	if (!rp) {
2366 		bt_dev_err(hdev, "CSR: Local version length mismatch");
2367 		kfree_skb(skb);
2368 		return -EIO;
2369 	}
2370 
2371 	bt_dev_info(hdev, "CSR: Setting up dongle with HCI ver=%u rev=%04x",
2372 		    rp->hci_ver, le16_to_cpu(rp->hci_rev));
2373 
2374 	bt_dev_info(hdev, "LMP ver=%u subver=%04x; manufacturer=%u",
2375 		    rp->lmp_ver, le16_to_cpu(rp->lmp_subver),
2376 		    le16_to_cpu(rp->manufacturer));
2377 
2378 	/* Detect a wide host of Chinese controllers that aren't CSR.
2379 	 *
2380 	 * Known fake bcdDevices: 0x0100, 0x0134, 0x1915, 0x2520, 0x7558, 0x8891
2381 	 *
2382 	 * The main thing they have in common is that these are really popular low-cost
2383 	 * options that support newer Bluetooth versions but rely on heavy VID/PID
2384 	 * squatting of this poor old Bluetooth 1.1 device. Even sold as such.
2385 	 *
2386 	 * We detect actual CSR devices by checking that the HCI manufacturer code
2387 	 * is Cambridge Silicon Radio (10) and ensuring that LMP sub-version and
2388 	 * HCI rev values always match. As they both store the firmware number.
2389 	 */
2390 	if (le16_to_cpu(rp->manufacturer) != 10 ||
2391 	    le16_to_cpu(rp->hci_rev) != le16_to_cpu(rp->lmp_subver))
2392 		is_fake = true;
2393 
2394 	/* Known legit CSR firmware build numbers and their supported BT versions:
2395 	 * - 1.1 (0x1) -> 0x0073, 0x020d, 0x033c, 0x034e
2396 	 * - 1.2 (0x2) ->                 0x04d9, 0x0529
2397 	 * - 2.0 (0x3) ->         0x07a6, 0x07ad, 0x0c5c
2398 	 * - 2.1 (0x4) ->         0x149c, 0x1735, 0x1899 (0x1899 is a BlueCore4-External)
2399 	 * - 4.0 (0x6) ->         0x1d86, 0x2031, 0x22bb
2400 	 *
2401 	 * e.g. Real CSR dongles with LMP subversion 0x73 are old enough that
2402 	 *      support BT 1.1 only; so it's a dead giveaway when some
2403 	 *      third-party BT 4.0 dongle reuses it.
2404 	 */
2405 	else if (le16_to_cpu(rp->lmp_subver) <= 0x034e &&
2406 		 rp->hci_ver > BLUETOOTH_VER_1_1)
2407 		is_fake = true;
2408 
2409 	else if (le16_to_cpu(rp->lmp_subver) <= 0x0529 &&
2410 		 rp->hci_ver > BLUETOOTH_VER_1_2)
2411 		is_fake = true;
2412 
2413 	else if (le16_to_cpu(rp->lmp_subver) <= 0x0c5c &&
2414 		 rp->hci_ver > BLUETOOTH_VER_2_0)
2415 		is_fake = true;
2416 
2417 	else if (le16_to_cpu(rp->lmp_subver) <= 0x1899 &&
2418 		 rp->hci_ver > BLUETOOTH_VER_2_1)
2419 		is_fake = true;
2420 
2421 	else if (le16_to_cpu(rp->lmp_subver) <= 0x22bb &&
2422 		 rp->hci_ver > BLUETOOTH_VER_4_0)
2423 		is_fake = true;
2424 
2425 	/* Other clones which beat all the above checks */
2426 	else if (bcdDevice == 0x0134 &&
2427 		 le16_to_cpu(rp->lmp_subver) == 0x0c5c &&
2428 		 rp->hci_ver == BLUETOOTH_VER_2_0)
2429 		is_fake = true;
2430 
2431 	if (is_fake) {
2432 		bt_dev_warn(hdev, "CSR: Unbranded CSR clone detected; adding workarounds and force-suspending once...");
2433 
2434 		/* Generally these clones have big discrepancies between
2435 		 * advertised features and what's actually supported.
2436 		 * Probably will need to be expanded in the future;
2437 		 * without these the controller will lock up.
2438 		 */
2439 		set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2440 		set_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks);
2441 		set_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks);
2442 		set_bit(HCI_QUIRK_NO_SUSPEND_NOTIFIER, &hdev->quirks);
2443 
2444 		/* Clear the reset quirk since this is not an actual
2445 		 * early Bluetooth 1.1 device from CSR.
2446 		 */
2447 		clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
2448 		clear_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
2449 
2450 		/*
2451 		 * Special workaround for these BT 4.0 chip clones, and potentially more:
2452 		 *
2453 		 * - 0x0134: a Barrot 8041a02                 (HCI rev: 0x0810 sub: 0x1012)
2454 		 * - 0x7558: IC markings FR3191AHAL 749H15143 (HCI rev/sub-version: 0x0709)
2455 		 *
2456 		 * These controllers are really messed-up.
2457 		 *
2458 		 * 1. Their bulk RX endpoint will never report any data unless
2459 		 *    the device was suspended at least once (yes, really).
2460 		 * 2. They will not wakeup when autosuspended and receiving data
2461 		 *    on their bulk RX endpoint from e.g. a keyboard or mouse
2462 		 *    (IOW remote-wakeup support is broken for the bulk endpoint).
2463 		 *
2464 		 * To fix 1. enable runtime-suspend, force-suspend the
2465 		 * HCI and then wake-it up by disabling runtime-suspend.
2466 		 *
2467 		 * To fix 2. clear the HCI's can_wake flag, this way the HCI
2468 		 * will still be autosuspended when it is not open.
2469 		 *
2470 		 * --
2471 		 *
2472 		 * Because these are widespread problems we prefer generic solutions; so
2473 		 * apply this initialization quirk to every controller that gets here,
2474 		 * it should be harmless. The alternative is to not work at all.
2475 		 */
2476 		pm_runtime_allow(&data->udev->dev);
2477 
2478 		ret = pm_runtime_suspend(&data->udev->dev);
2479 		if (ret >= 0)
2480 			msleep(200);
2481 		else
2482 			bt_dev_warn(hdev, "CSR: Couldn't suspend the device for our Barrot 8041a02 receive-issue workaround");
2483 
2484 		pm_runtime_forbid(&data->udev->dev);
2485 
2486 		device_set_wakeup_capable(&data->udev->dev, false);
2487 
2488 		/* Re-enable autosuspend if this was requested */
2489 		if (enable_autosuspend)
2490 			usb_enable_autosuspend(data->udev);
2491 	}
2492 
2493 	kfree_skb(skb);
2494 
2495 	return 0;
2496 }
2497 
2498 static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
2499 {
2500 	struct sk_buff *skb;
2501 	struct hci_event_hdr *hdr;
2502 	struct hci_ev_cmd_complete *evt;
2503 
2504 	skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_KERNEL);
2505 	if (!skb)
2506 		return -ENOMEM;
2507 
2508 	hdr = skb_put(skb, sizeof(*hdr));
2509 	hdr->evt = HCI_EV_CMD_COMPLETE;
2510 	hdr->plen = sizeof(*evt) + 1;
2511 
2512 	evt = skb_put(skb, sizeof(*evt));
2513 	evt->ncmd = 0x01;
2514 	evt->opcode = cpu_to_le16(opcode);
2515 
2516 	skb_put_u8(skb, 0x00);
2517 
2518 	hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
2519 
2520 	return hci_recv_frame(hdev, skb);
2521 }
2522 
2523 static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
2524 				 int count)
2525 {
2526 	struct hci_dev *hdev = data->hdev;
2527 
2528 	/* When the device is in bootloader mode, then it can send
2529 	 * events via the bulk endpoint. These events are treated the
2530 	 * same way as the ones received from the interrupt endpoint.
2531 	 */
2532 	if (btintel_test_flag(hdev, INTEL_BOOTLOADER))
2533 		return btusb_recv_intr(data, buffer, count);
2534 
2535 	return btusb_recv_bulk(data, buffer, count);
2536 }
2537 
2538 static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
2539 {
2540 	struct urb *urb;
2541 
2542 	BT_DBG("%s", hdev->name);
2543 
2544 	switch (hci_skb_pkt_type(skb)) {
2545 	case HCI_COMMAND_PKT:
2546 		if (btintel_test_flag(hdev, INTEL_BOOTLOADER)) {
2547 			struct hci_command_hdr *cmd = (void *)skb->data;
2548 			__u16 opcode = le16_to_cpu(cmd->opcode);
2549 
2550 			/* When in bootloader mode and the command 0xfc09
2551 			 * is received, it needs to be send down the
2552 			 * bulk endpoint. So allocate a bulk URB instead.
2553 			 */
2554 			if (opcode == 0xfc09)
2555 				urb = alloc_bulk_urb(hdev, skb);
2556 			else
2557 				urb = alloc_ctrl_urb(hdev, skb);
2558 
2559 			/* When the 0xfc01 command is issued to boot into
2560 			 * the operational firmware, it will actually not
2561 			 * send a command complete event. To keep the flow
2562 			 * control working inject that event here.
2563 			 */
2564 			if (opcode == 0xfc01)
2565 				inject_cmd_complete(hdev, opcode);
2566 		} else {
2567 			urb = alloc_ctrl_urb(hdev, skb);
2568 		}
2569 		if (IS_ERR(urb))
2570 			return PTR_ERR(urb);
2571 
2572 		hdev->stat.cmd_tx++;
2573 		return submit_or_queue_tx_urb(hdev, urb);
2574 
2575 	case HCI_ACLDATA_PKT:
2576 		urb = alloc_bulk_urb(hdev, skb);
2577 		if (IS_ERR(urb))
2578 			return PTR_ERR(urb);
2579 
2580 		hdev->stat.acl_tx++;
2581 		return submit_or_queue_tx_urb(hdev, urb);
2582 
2583 	case HCI_SCODATA_PKT:
2584 		if (hci_conn_num(hdev, SCO_LINK) < 1)
2585 			return -ENODEV;
2586 
2587 		urb = alloc_isoc_urb(hdev, skb);
2588 		if (IS_ERR(urb))
2589 			return PTR_ERR(urb);
2590 
2591 		hdev->stat.sco_tx++;
2592 		return submit_tx_urb(hdev, urb);
2593 
2594 	case HCI_ISODATA_PKT:
2595 		urb = alloc_bulk_urb(hdev, skb);
2596 		if (IS_ERR(urb))
2597 			return PTR_ERR(urb);
2598 
2599 		return submit_or_queue_tx_urb(hdev, urb);
2600 	}
2601 
2602 	return -EILSEQ;
2603 }
2604 
2605 static int btusb_setup_realtek(struct hci_dev *hdev)
2606 {
2607 	struct btusb_data *data = hci_get_drvdata(hdev);
2608 	int ret;
2609 
2610 	ret = btrtl_setup_realtek(hdev);
2611 
2612 	if (btrealtek_test_flag(data->hdev, REALTEK_ALT6_CONTINUOUS_TX_CHIP))
2613 		set_bit(BTUSB_ALT6_CONTINUOUS_TX, &data->flags);
2614 
2615 	return ret;
2616 }
2617 
2618 static int btusb_recv_event_realtek(struct hci_dev *hdev, struct sk_buff *skb)
2619 {
2620 	if (skb->data[0] == HCI_VENDOR_PKT && skb->data[2] == RTK_SUB_EVENT_CODE_COREDUMP) {
2621 		struct rtk_dev_coredump_hdr hdr = {
2622 			.code = RTK_DEVCOREDUMP_CODE_MEMDUMP,
2623 		};
2624 
2625 		bt_dev_dbg(hdev, "RTL: received coredump vendor evt, len %u",
2626 			skb->len);
2627 
2628 		btusb_rtl_alloc_devcoredump(hdev, &hdr, skb->data, skb->len);
2629 		kfree_skb(skb);
2630 
2631 		return 0;
2632 	}
2633 
2634 	return hci_recv_frame(hdev, skb);
2635 }
2636 
2637 static void btusb_mtk_claim_iso_intf(struct btusb_data *data)
2638 {
2639 	struct btmtk_data *btmtk_data = hci_get_priv(data->hdev);
2640 	int err;
2641 
2642 	err = usb_driver_claim_interface(&btusb_driver,
2643 					 btmtk_data->isopkt_intf, data);
2644 	if (err < 0) {
2645 		btmtk_data->isopkt_intf = NULL;
2646 		bt_dev_err(data->hdev, "Failed to claim iso interface");
2647 		return;
2648 	}
2649 
2650 	set_bit(BTMTK_ISOPKT_OVER_INTR, &btmtk_data->flags);
2651 	init_usb_anchor(&btmtk_data->isopkt_anchor);
2652 }
2653 
2654 static void btusb_mtk_release_iso_intf(struct hci_dev *hdev)
2655 {
2656 	struct btmtk_data *btmtk_data = hci_get_priv(hdev);
2657 
2658 	if (test_bit(BTMTK_ISOPKT_OVER_INTR, &btmtk_data->flags)) {
2659 		usb_kill_anchored_urbs(&btmtk_data->isopkt_anchor);
2660 		clear_bit(BTMTK_ISOPKT_RUNNING, &btmtk_data->flags);
2661 
2662 		dev_kfree_skb_irq(btmtk_data->isopkt_skb);
2663 		btmtk_data->isopkt_skb = NULL;
2664 		usb_set_intfdata(btmtk_data->isopkt_intf, NULL);
2665 		usb_driver_release_interface(&btusb_driver,
2666 					     btmtk_data->isopkt_intf);
2667 	}
2668 
2669 	clear_bit(BTMTK_ISOPKT_OVER_INTR, &btmtk_data->flags);
2670 }
2671 
2672 static int btusb_mtk_disconnect(struct hci_dev *hdev)
2673 {
2674 	/* This function describes the specific additional steps taken by MediaTek
2675 	 * when Bluetooth usb driver's resume function is called.
2676 	 */
2677 	btusb_mtk_release_iso_intf(hdev);
2678 
2679 	return 0;
2680 }
2681 
2682 static int btusb_mtk_reset(struct hci_dev *hdev, void *rst_data)
2683 {
2684 	struct btusb_data *data = hci_get_drvdata(hdev);
2685 	struct btmtk_data *btmtk_data = hci_get_priv(hdev);
2686 	int err;
2687 
2688 	/* It's MediaTek specific bluetooth reset mechanism via USB */
2689 	if (test_and_set_bit(BTMTK_HW_RESET_ACTIVE, &btmtk_data->flags)) {
2690 		bt_dev_err(hdev, "last reset failed? Not resetting again");
2691 		return -EBUSY;
2692 	}
2693 
2694 	err = usb_autopm_get_interface(data->intf);
2695 	if (err < 0)
2696 		return err;
2697 
2698 	/* Release MediaTek ISO data interface */
2699 	btusb_mtk_release_iso_intf(hdev);
2700 
2701 	btusb_stop_traffic(data);
2702 	usb_kill_anchored_urbs(&data->tx_anchor);
2703 
2704 	err = btmtk_usb_subsys_reset(hdev, btmtk_data->dev_id);
2705 
2706 	usb_queue_reset_device(data->intf);
2707 	clear_bit(BTMTK_HW_RESET_ACTIVE, &btmtk_data->flags);
2708 
2709 	return err;
2710 }
2711 
2712 static int btusb_send_frame_mtk(struct hci_dev *hdev, struct sk_buff *skb)
2713 {
2714 	struct urb *urb;
2715 
2716 	BT_DBG("%s", hdev->name);
2717 
2718 	if (hci_skb_pkt_type(skb) == HCI_ISODATA_PKT) {
2719 		urb = alloc_mtk_intr_urb(hdev, skb, btusb_tx_complete);
2720 		if (IS_ERR(urb))
2721 			return PTR_ERR(urb);
2722 
2723 		return submit_or_queue_tx_urb(hdev, urb);
2724 	} else {
2725 		return btusb_send_frame(hdev, skb);
2726 	}
2727 }
2728 
2729 static int btusb_mtk_setup(struct hci_dev *hdev)
2730 {
2731 	struct btusb_data *data = hci_get_drvdata(hdev);
2732 	struct btmtk_data *btmtk_data = hci_get_priv(hdev);
2733 
2734 	/* MediaTek WMT vendor cmd requiring below USB resources to
2735 	 * complete the handshake.
2736 	 */
2737 	btmtk_data->drv_name = btusb_driver.name;
2738 	btmtk_data->intf = data->intf;
2739 	btmtk_data->udev = data->udev;
2740 	btmtk_data->ctrl_anchor = &data->ctrl_anchor;
2741 	btmtk_data->reset_sync = btusb_mtk_reset;
2742 
2743 	/* Claim ISO data interface and endpoint */
2744 	if (!test_bit(BTMTK_ISOPKT_OVER_INTR, &btmtk_data->flags)) {
2745 		btmtk_data->isopkt_intf = usb_ifnum_to_if(data->udev, MTK_ISO_IFNUM);
2746 		btusb_mtk_claim_iso_intf(data);
2747 	}
2748 
2749 	return btmtk_usb_setup(hdev);
2750 }
2751 
2752 static int btusb_mtk_shutdown(struct hci_dev *hdev)
2753 {
2754 	int ret;
2755 
2756 	ret = btmtk_usb_shutdown(hdev);
2757 
2758 	/* Release MediaTek iso interface after shutdown */
2759 	btusb_mtk_release_iso_intf(hdev);
2760 
2761 	return ret;
2762 }
2763 
2764 #ifdef CONFIG_PM
2765 /* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
2766 static int marvell_config_oob_wake(struct hci_dev *hdev)
2767 {
2768 	struct sk_buff *skb;
2769 	struct btusb_data *data = hci_get_drvdata(hdev);
2770 	struct device *dev = &data->udev->dev;
2771 	u16 pin, gap, opcode;
2772 	int ret;
2773 	u8 cmd[5];
2774 
2775 	/* Move on if no wakeup pin specified */
2776 	if (of_property_read_u16(dev->of_node, "marvell,wakeup-pin", &pin) ||
2777 	    of_property_read_u16(dev->of_node, "marvell,wakeup-gap-ms", &gap))
2778 		return 0;
2779 
2780 	/* Vendor specific command to configure a GPIO as wake-up pin */
2781 	opcode = hci_opcode_pack(0x3F, 0x59);
2782 	cmd[0] = opcode & 0xFF;
2783 	cmd[1] = opcode >> 8;
2784 	cmd[2] = 2; /* length of parameters that follow */
2785 	cmd[3] = pin;
2786 	cmd[4] = gap; /* time in ms, for which wakeup pin should be asserted */
2787 
2788 	skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
2789 	if (!skb) {
2790 		bt_dev_err(hdev, "%s: No memory", __func__);
2791 		return -ENOMEM;
2792 	}
2793 
2794 	skb_put_data(skb, cmd, sizeof(cmd));
2795 	hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
2796 
2797 	ret = btusb_send_frame(hdev, skb);
2798 	if (ret) {
2799 		bt_dev_err(hdev, "%s: configuration failed", __func__);
2800 		kfree_skb(skb);
2801 		return ret;
2802 	}
2803 
2804 	return 0;
2805 }
2806 #endif
2807 
2808 static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2809 				    const bdaddr_t *bdaddr)
2810 {
2811 	struct sk_buff *skb;
2812 	u8 buf[8];
2813 	long ret;
2814 
2815 	buf[0] = 0xfe;
2816 	buf[1] = sizeof(bdaddr_t);
2817 	memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2818 
2819 	skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2820 	if (IS_ERR(skb)) {
2821 		ret = PTR_ERR(skb);
2822 		bt_dev_err(hdev, "changing Marvell device address failed (%ld)",
2823 			   ret);
2824 		return ret;
2825 	}
2826 	kfree_skb(skb);
2827 
2828 	return 0;
2829 }
2830 
2831 static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2832 				    const bdaddr_t *bdaddr)
2833 {
2834 	struct sk_buff *skb;
2835 	u8 buf[10];
2836 	long ret;
2837 
2838 	buf[0] = 0x01;
2839 	buf[1] = 0x01;
2840 	buf[2] = 0x00;
2841 	buf[3] = sizeof(bdaddr_t);
2842 	memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2843 
2844 	skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2845 	if (IS_ERR(skb)) {
2846 		ret = PTR_ERR(skb);
2847 		bt_dev_err(hdev, "Change address command failed (%ld)", ret);
2848 		return ret;
2849 	}
2850 	kfree_skb(skb);
2851 
2852 	return 0;
2853 }
2854 
2855 static int btusb_set_bdaddr_wcn6855(struct hci_dev *hdev,
2856 				const bdaddr_t *bdaddr)
2857 {
2858 	struct sk_buff *skb;
2859 	u8 buf[6];
2860 	long ret;
2861 
2862 	memcpy(buf, bdaddr, sizeof(bdaddr_t));
2863 
2864 	skb = __hci_cmd_sync_ev(hdev, 0xfc14, sizeof(buf), buf,
2865 				HCI_EV_CMD_COMPLETE, HCI_INIT_TIMEOUT);
2866 	if (IS_ERR(skb)) {
2867 		ret = PTR_ERR(skb);
2868 		bt_dev_err(hdev, "Change address command failed (%ld)", ret);
2869 		return ret;
2870 	}
2871 	kfree_skb(skb);
2872 
2873 	return 0;
2874 }
2875 
2876 #define QCA_MEMDUMP_ACL_HANDLE 0x2EDD
2877 #define QCA_MEMDUMP_SIZE_MAX  0x100000
2878 #define QCA_MEMDUMP_VSE_CLASS 0x01
2879 #define QCA_MEMDUMP_MSG_TYPE 0x08
2880 #define QCA_MEMDUMP_PKT_SIZE 248
2881 #define QCA_LAST_SEQUENCE_NUM 0xffff
2882 
2883 struct qca_dump_hdr {
2884 	u8 vse_class;
2885 	u8 msg_type;
2886 	__le16 seqno;
2887 	u8 reserved;
2888 	union {
2889 		u8 data[0];
2890 		struct {
2891 			__le32 ram_dump_size;
2892 			u8 data0[0];
2893 		} __packed;
2894 	};
2895 } __packed;
2896 
2897 
2898 static void btusb_dump_hdr_qca(struct hci_dev *hdev, struct sk_buff *skb)
2899 {
2900 	char buf[128];
2901 	struct btusb_data *btdata = hci_get_drvdata(hdev);
2902 
2903 	snprintf(buf, sizeof(buf), "Controller Name: 0x%x\n",
2904 			btdata->qca_dump.controller_id);
2905 	skb_put_data(skb, buf, strlen(buf));
2906 
2907 	snprintf(buf, sizeof(buf), "Firmware Version: 0x%x\n",
2908 			btdata->qca_dump.fw_version);
2909 	skb_put_data(skb, buf, strlen(buf));
2910 
2911 	snprintf(buf, sizeof(buf), "Driver: %s\nVendor: qca\n",
2912 			btusb_driver.name);
2913 	skb_put_data(skb, buf, strlen(buf));
2914 
2915 	snprintf(buf, sizeof(buf), "VID: 0x%x\nPID:0x%x\n",
2916 			btdata->qca_dump.id_vendor, btdata->qca_dump.id_product);
2917 	skb_put_data(skb, buf, strlen(buf));
2918 
2919 	snprintf(buf, sizeof(buf), "Lmp Subversion: 0x%x\n",
2920 			hdev->lmp_subver);
2921 	skb_put_data(skb, buf, strlen(buf));
2922 }
2923 
2924 static void btusb_coredump_qca(struct hci_dev *hdev)
2925 {
2926 	int err;
2927 	static const u8 param[] = { 0x26 };
2928 
2929 	err = __hci_cmd_send(hdev, 0xfc0c, 1, param);
2930 	if (err < 0)
2931 		bt_dev_err(hdev, "%s: triggle crash failed (%d)", __func__, err);
2932 }
2933 
2934 /*
2935  * ==0: not a dump pkt.
2936  * < 0: fails to handle a dump pkt
2937  * > 0: otherwise.
2938  */
2939 static int handle_dump_pkt_qca(struct hci_dev *hdev, struct sk_buff *skb)
2940 {
2941 	int ret = 1;
2942 	u8 pkt_type;
2943 	u8 *sk_ptr;
2944 	unsigned int sk_len;
2945 	u16 seqno;
2946 	u32 dump_size;
2947 
2948 	struct hci_event_hdr *event_hdr;
2949 	struct hci_acl_hdr *acl_hdr;
2950 	struct qca_dump_hdr *dump_hdr;
2951 	struct btusb_data *btdata = hci_get_drvdata(hdev);
2952 	struct usb_device *udev = btdata->udev;
2953 
2954 	pkt_type = hci_skb_pkt_type(skb);
2955 	sk_ptr = skb->data;
2956 	sk_len = skb->len;
2957 
2958 	if (pkt_type == HCI_ACLDATA_PKT) {
2959 		acl_hdr = hci_acl_hdr(skb);
2960 		if (le16_to_cpu(acl_hdr->handle) != QCA_MEMDUMP_ACL_HANDLE)
2961 			return 0;
2962 		sk_ptr += HCI_ACL_HDR_SIZE;
2963 		sk_len -= HCI_ACL_HDR_SIZE;
2964 		event_hdr = (struct hci_event_hdr *)sk_ptr;
2965 	} else {
2966 		event_hdr = hci_event_hdr(skb);
2967 	}
2968 
2969 	if ((event_hdr->evt != HCI_VENDOR_PKT)
2970 		|| (event_hdr->plen != (sk_len - HCI_EVENT_HDR_SIZE)))
2971 		return 0;
2972 
2973 	sk_ptr += HCI_EVENT_HDR_SIZE;
2974 	sk_len -= HCI_EVENT_HDR_SIZE;
2975 
2976 	dump_hdr = (struct qca_dump_hdr *)sk_ptr;
2977 	if ((sk_len < offsetof(struct qca_dump_hdr, data))
2978 		|| (dump_hdr->vse_class != QCA_MEMDUMP_VSE_CLASS)
2979 	    || (dump_hdr->msg_type != QCA_MEMDUMP_MSG_TYPE))
2980 		return 0;
2981 
2982 	/*it is dump pkt now*/
2983 	seqno = le16_to_cpu(dump_hdr->seqno);
2984 	if (seqno == 0) {
2985 		set_bit(BTUSB_HW_SSR_ACTIVE, &btdata->flags);
2986 		dump_size = le32_to_cpu(dump_hdr->ram_dump_size);
2987 		if (!dump_size || (dump_size > QCA_MEMDUMP_SIZE_MAX)) {
2988 			ret = -EILSEQ;
2989 			bt_dev_err(hdev, "Invalid memdump size(%u)",
2990 				   dump_size);
2991 			goto out;
2992 		}
2993 
2994 		ret = hci_devcd_init(hdev, dump_size);
2995 		if (ret < 0) {
2996 			bt_dev_err(hdev, "memdump init error(%d)", ret);
2997 			goto out;
2998 		}
2999 
3000 		btdata->qca_dump.ram_dump_size = dump_size;
3001 		btdata->qca_dump.ram_dump_seqno = 0;
3002 		sk_ptr += offsetof(struct qca_dump_hdr, data0);
3003 		sk_len -= offsetof(struct qca_dump_hdr, data0);
3004 
3005 		usb_disable_autosuspend(udev);
3006 		bt_dev_info(hdev, "%s memdump size(%u)\n",
3007 			    (pkt_type == HCI_ACLDATA_PKT) ? "ACL" : "event",
3008 			    dump_size);
3009 	} else {
3010 		sk_ptr += offsetof(struct qca_dump_hdr, data);
3011 		sk_len -= offsetof(struct qca_dump_hdr, data);
3012 	}
3013 
3014 	if (!btdata->qca_dump.ram_dump_size) {
3015 		ret = -EINVAL;
3016 		bt_dev_err(hdev, "memdump is not active");
3017 		goto out;
3018 	}
3019 
3020 	if ((seqno > btdata->qca_dump.ram_dump_seqno + 1) && (seqno != QCA_LAST_SEQUENCE_NUM)) {
3021 		dump_size = QCA_MEMDUMP_PKT_SIZE * (seqno - btdata->qca_dump.ram_dump_seqno - 1);
3022 		hci_devcd_append_pattern(hdev, 0x0, dump_size);
3023 		bt_dev_err(hdev,
3024 			   "expected memdump seqno(%u) is not received(%u)\n",
3025 			   btdata->qca_dump.ram_dump_seqno, seqno);
3026 		btdata->qca_dump.ram_dump_seqno = seqno;
3027 		kfree_skb(skb);
3028 		return ret;
3029 	}
3030 
3031 	skb_pull(skb, skb->len - sk_len);
3032 	hci_devcd_append(hdev, skb);
3033 	btdata->qca_dump.ram_dump_seqno++;
3034 	if (seqno == QCA_LAST_SEQUENCE_NUM) {
3035 		bt_dev_info(hdev,
3036 				"memdump done: pkts(%u), total(%u)\n",
3037 				btdata->qca_dump.ram_dump_seqno, btdata->qca_dump.ram_dump_size);
3038 
3039 		hci_devcd_complete(hdev);
3040 		goto out;
3041 	}
3042 	return ret;
3043 
3044 out:
3045 	if (btdata->qca_dump.ram_dump_size)
3046 		usb_enable_autosuspend(udev);
3047 	btdata->qca_dump.ram_dump_size = 0;
3048 	btdata->qca_dump.ram_dump_seqno = 0;
3049 	clear_bit(BTUSB_HW_SSR_ACTIVE, &btdata->flags);
3050 
3051 	if (ret < 0)
3052 		kfree_skb(skb);
3053 	return ret;
3054 }
3055 
3056 static int btusb_recv_acl_qca(struct hci_dev *hdev, struct sk_buff *skb)
3057 {
3058 	if (handle_dump_pkt_qca(hdev, skb))
3059 		return 0;
3060 	return hci_recv_frame(hdev, skb);
3061 }
3062 
3063 static int btusb_recv_evt_qca(struct hci_dev *hdev, struct sk_buff *skb)
3064 {
3065 	if (handle_dump_pkt_qca(hdev, skb))
3066 		return 0;
3067 	return hci_recv_frame(hdev, skb);
3068 }
3069 
3070 
3071 #define QCA_DFU_PACKET_LEN	4096
3072 
3073 #define QCA_GET_TARGET_VERSION	0x09
3074 #define QCA_CHECK_STATUS	0x05
3075 #define QCA_DFU_DOWNLOAD	0x01
3076 
3077 #define QCA_SYSCFG_UPDATED	0x40
3078 #define QCA_PATCH_UPDATED	0x80
3079 #define QCA_DFU_TIMEOUT		3000
3080 #define QCA_FLAG_MULTI_NVM      0x80
3081 #define QCA_BT_RESET_WAIT_MS    100
3082 
3083 #define WCN6855_2_0_RAM_VERSION_GF 0x400c1200
3084 #define WCN6855_2_1_RAM_VERSION_GF 0x400c1211
3085 
3086 struct qca_version {
3087 	__le32	rom_version;
3088 	__le32	patch_version;
3089 	__le32	ram_version;
3090 	__u8	chip_id;
3091 	__u8	platform_id;
3092 	__le16	flag;
3093 	__u8	reserved[4];
3094 } __packed;
3095 
3096 struct qca_rampatch_version {
3097 	__le16	rom_version_high;
3098 	__le16  rom_version_low;
3099 	__le16	patch_version;
3100 } __packed;
3101 
3102 struct qca_device_info {
3103 	u32	rom_version;
3104 	u8	rampatch_hdr;	/* length of header in rampatch */
3105 	u8	nvm_hdr;	/* length of header in NVM */
3106 	u8	ver_offset;	/* offset of version structure in rampatch */
3107 };
3108 
3109 static const struct qca_device_info qca_devices_table[] = {
3110 	{ 0x00000100, 20, 4,  8 }, /* Rome 1.0 */
3111 	{ 0x00000101, 20, 4,  8 }, /* Rome 1.1 */
3112 	{ 0x00000200, 28, 4, 16 }, /* Rome 2.0 */
3113 	{ 0x00000201, 28, 4, 16 }, /* Rome 2.1 */
3114 	{ 0x00000300, 28, 4, 16 }, /* Rome 3.0 */
3115 	{ 0x00000302, 28, 4, 16 }, /* Rome 3.2 */
3116 	{ 0x00130100, 40, 4, 16 }, /* WCN6855 1.0 */
3117 	{ 0x00130200, 40, 4, 16 }, /* WCN6855 2.0 */
3118 	{ 0x00130201, 40, 4, 16 }, /* WCN6855 2.1 */
3119 	{ 0x00190200, 40, 4, 16 }, /* WCN785x 2.0 */
3120 };
3121 
3122 static int btusb_qca_send_vendor_req(struct usb_device *udev, u8 request,
3123 				     void *data, u16 size)
3124 {
3125 	int pipe, err;
3126 	u8 *buf;
3127 
3128 	buf = kmalloc(size, GFP_KERNEL);
3129 	if (!buf)
3130 		return -ENOMEM;
3131 
3132 	/* Found some of USB hosts have IOT issues with ours so that we should
3133 	 * not wait until HCI layer is ready.
3134 	 */
3135 	pipe = usb_rcvctrlpipe(udev, 0);
3136 	err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
3137 			      0, 0, buf, size, USB_CTRL_GET_TIMEOUT);
3138 	if (err < 0) {
3139 		dev_err(&udev->dev, "Failed to access otp area (%d)", err);
3140 		goto done;
3141 	}
3142 
3143 	memcpy(data, buf, size);
3144 
3145 done:
3146 	kfree(buf);
3147 
3148 	return err;
3149 }
3150 
3151 static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
3152 				       const struct firmware *firmware,
3153 				       size_t hdr_size)
3154 {
3155 	struct btusb_data *btdata = hci_get_drvdata(hdev);
3156 	struct usb_device *udev = btdata->udev;
3157 	size_t count, size, sent = 0;
3158 	int pipe, len, err;
3159 	u8 *buf;
3160 
3161 	buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
3162 	if (!buf)
3163 		return -ENOMEM;
3164 
3165 	count = firmware->size;
3166 
3167 	size = min_t(size_t, count, hdr_size);
3168 	memcpy(buf, firmware->data, size);
3169 
3170 	/* USB patches should go down to controller through USB path
3171 	 * because binary format fits to go down through USB channel.
3172 	 * USB control path is for patching headers and USB bulk is for
3173 	 * patch body.
3174 	 */
3175 	pipe = usb_sndctrlpipe(udev, 0);
3176 	err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
3177 			      0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
3178 	if (err < 0) {
3179 		bt_dev_err(hdev, "Failed to send headers (%d)", err);
3180 		goto done;
3181 	}
3182 
3183 	sent += size;
3184 	count -= size;
3185 
3186 	/* ep2 need time to switch from function acl to function dfu,
3187 	 * so we add 20ms delay here.
3188 	 */
3189 	msleep(20);
3190 
3191 	while (count) {
3192 		size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
3193 
3194 		memcpy(buf, firmware->data + sent, size);
3195 
3196 		pipe = usb_sndbulkpipe(udev, 0x02);
3197 		err = usb_bulk_msg(udev, pipe, buf, size, &len,
3198 				   QCA_DFU_TIMEOUT);
3199 		if (err < 0) {
3200 			bt_dev_err(hdev, "Failed to send body at %zd of %zd (%d)",
3201 				   sent, firmware->size, err);
3202 			break;
3203 		}
3204 
3205 		if (size != len) {
3206 			bt_dev_err(hdev, "Failed to get bulk buffer");
3207 			err = -EILSEQ;
3208 			break;
3209 		}
3210 
3211 		sent  += size;
3212 		count -= size;
3213 	}
3214 
3215 done:
3216 	kfree(buf);
3217 	return err;
3218 }
3219 
3220 static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
3221 					 struct qca_version *ver,
3222 					 const struct qca_device_info *info)
3223 {
3224 	struct qca_rampatch_version *rver;
3225 	const struct firmware *fw;
3226 	u32 ver_rom, ver_patch, rver_rom;
3227 	u16 rver_rom_low, rver_rom_high, rver_patch;
3228 	char fwname[64];
3229 	int err;
3230 
3231 	ver_rom = le32_to_cpu(ver->rom_version);
3232 	ver_patch = le32_to_cpu(ver->patch_version);
3233 
3234 	snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
3235 
3236 	err = request_firmware(&fw, fwname, &hdev->dev);
3237 	if (err) {
3238 		bt_dev_err(hdev, "failed to request rampatch file: %s (%d)",
3239 			   fwname, err);
3240 		return err;
3241 	}
3242 
3243 	bt_dev_info(hdev, "using rampatch file: %s", fwname);
3244 
3245 	rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
3246 	rver_rom_low = le16_to_cpu(rver->rom_version_low);
3247 	rver_patch = le16_to_cpu(rver->patch_version);
3248 
3249 	if (ver_rom & ~0xffffU) {
3250 		rver_rom_high = le16_to_cpu(rver->rom_version_high);
3251 		rver_rom = rver_rom_high << 16 | rver_rom_low;
3252 	} else {
3253 		rver_rom = rver_rom_low;
3254 	}
3255 
3256 	bt_dev_info(hdev, "QCA: patch rome 0x%x build 0x%x, "
3257 		    "firmware rome 0x%x build 0x%x",
3258 		    rver_rom, rver_patch, ver_rom, ver_patch);
3259 
3260 	if (rver_rom != ver_rom || rver_patch <= ver_patch) {
3261 		bt_dev_err(hdev, "rampatch file version did not match with firmware");
3262 		err = -EINVAL;
3263 		goto done;
3264 	}
3265 
3266 	err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
3267 
3268 done:
3269 	release_firmware(fw);
3270 
3271 	return err;
3272 }
3273 
3274 static void btusb_generate_qca_nvm_name(char *fwname, size_t max_size,
3275 					const struct qca_version *ver)
3276 {
3277 	u32 rom_version = le32_to_cpu(ver->rom_version);
3278 	u16 flag = le16_to_cpu(ver->flag);
3279 
3280 	if (((flag >> 8) & 0xff) == QCA_FLAG_MULTI_NVM) {
3281 		/* The board_id should be split into two bytes
3282 		 * The 1st byte is chip ID, and the 2nd byte is platform ID
3283 		 * For example, board ID 0x010A, 0x01 is platform ID. 0x0A is chip ID
3284 		 * we have several platforms, and platform IDs are continuously added
3285 		 * Platform ID:
3286 		 * 0x00 is for Mobile
3287 		 * 0x01 is for X86
3288 		 * 0x02 is for Automotive
3289 		 * 0x03 is for Consumer electronic
3290 		 */
3291 		u16 board_id = (ver->chip_id << 8) + ver->platform_id;
3292 		const char *variant;
3293 
3294 		switch (le32_to_cpu(ver->ram_version)) {
3295 		case WCN6855_2_0_RAM_VERSION_GF:
3296 		case WCN6855_2_1_RAM_VERSION_GF:
3297 			variant = "_gf";
3298 			break;
3299 		default:
3300 			variant = "";
3301 			break;
3302 		}
3303 
3304 		if (board_id == 0) {
3305 			snprintf(fwname, max_size, "qca/nvm_usb_%08x%s.bin",
3306 				rom_version, variant);
3307 		} else {
3308 			snprintf(fwname, max_size, "qca/nvm_usb_%08x%s_%04x.bin",
3309 				rom_version, variant, board_id);
3310 		}
3311 	} else {
3312 		snprintf(fwname, max_size, "qca/nvm_usb_%08x.bin",
3313 			rom_version);
3314 	}
3315 
3316 }
3317 
3318 static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
3319 				    struct qca_version *ver,
3320 				    const struct qca_device_info *info)
3321 {
3322 	const struct firmware *fw;
3323 	char fwname[64];
3324 	int err;
3325 
3326 	btusb_generate_qca_nvm_name(fwname, sizeof(fwname), ver);
3327 
3328 	err = request_firmware(&fw, fwname, &hdev->dev);
3329 	if (err) {
3330 		bt_dev_err(hdev, "failed to request NVM file: %s (%d)",
3331 			   fwname, err);
3332 		return err;
3333 	}
3334 
3335 	bt_dev_info(hdev, "using NVM file: %s", fwname);
3336 
3337 	err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
3338 
3339 	release_firmware(fw);
3340 
3341 	return err;
3342 }
3343 
3344 /* identify the ROM version and check whether patches are needed */
3345 static bool btusb_qca_need_patch(struct usb_device *udev)
3346 {
3347 	struct qca_version ver;
3348 
3349 	if (btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
3350 				      sizeof(ver)) < 0)
3351 		return false;
3352 	/* only low ROM versions need patches */
3353 	return !(le32_to_cpu(ver.rom_version) & ~0xffffU);
3354 }
3355 
3356 static int btusb_setup_qca(struct hci_dev *hdev)
3357 {
3358 	struct btusb_data *btdata = hci_get_drvdata(hdev);
3359 	struct usb_device *udev = btdata->udev;
3360 	const struct qca_device_info *info = NULL;
3361 	struct qca_version ver;
3362 	u32 ver_rom;
3363 	u8 status;
3364 	int i, err;
3365 
3366 	err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
3367 					sizeof(ver));
3368 	if (err < 0)
3369 		return err;
3370 
3371 	ver_rom = le32_to_cpu(ver.rom_version);
3372 
3373 	for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
3374 		if (ver_rom == qca_devices_table[i].rom_version)
3375 			info = &qca_devices_table[i];
3376 	}
3377 	if (!info) {
3378 		/* If the rom_version is not matched in the qca_devices_table
3379 		 * and the high ROM version is not zero, we assume this chip no
3380 		 * need to load the rampatch and nvm.
3381 		 */
3382 		if (ver_rom & ~0xffffU)
3383 			return 0;
3384 
3385 		bt_dev_err(hdev, "don't support firmware rome 0x%x", ver_rom);
3386 		return -ENODEV;
3387 	}
3388 
3389 	err = btusb_qca_send_vendor_req(udev, QCA_CHECK_STATUS, &status,
3390 					sizeof(status));
3391 	if (err < 0)
3392 		return err;
3393 
3394 	if (!(status & QCA_PATCH_UPDATED)) {
3395 		err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
3396 		if (err < 0)
3397 			return err;
3398 	}
3399 
3400 	err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
3401 					sizeof(ver));
3402 	if (err < 0)
3403 		return err;
3404 
3405 	btdata->qca_dump.fw_version = le32_to_cpu(ver.patch_version);
3406 	btdata->qca_dump.controller_id = le32_to_cpu(ver.rom_version);
3407 
3408 	if (!(status & QCA_SYSCFG_UPDATED)) {
3409 		err = btusb_setup_qca_load_nvm(hdev, &ver, info);
3410 		if (err < 0)
3411 			return err;
3412 
3413 		/* WCN6855 2.1 and later will reset to apply firmware downloaded here, so
3414 		 * wait ~100ms for reset Done then go ahead, otherwise, it maybe
3415 		 * cause potential enable failure.
3416 		 */
3417 		if (info->rom_version >= 0x00130201)
3418 			msleep(QCA_BT_RESET_WAIT_MS);
3419 	}
3420 
3421 	/* Mark HCI_OP_ENHANCED_SETUP_SYNC_CONN as broken as it doesn't seem to
3422 	 * work with the likes of HSP/HFP mSBC.
3423 	 */
3424 	set_bit(HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN, &hdev->quirks);
3425 
3426 	return 0;
3427 }
3428 
3429 static inline int __set_diag_interface(struct hci_dev *hdev)
3430 {
3431 	struct btusb_data *data = hci_get_drvdata(hdev);
3432 	struct usb_interface *intf = data->diag;
3433 	int i;
3434 
3435 	if (!data->diag)
3436 		return -ENODEV;
3437 
3438 	data->diag_tx_ep = NULL;
3439 	data->diag_rx_ep = NULL;
3440 
3441 	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
3442 		struct usb_endpoint_descriptor *ep_desc;
3443 
3444 		ep_desc = &intf->cur_altsetting->endpoint[i].desc;
3445 
3446 		if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
3447 			data->diag_tx_ep = ep_desc;
3448 			continue;
3449 		}
3450 
3451 		if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
3452 			data->diag_rx_ep = ep_desc;
3453 			continue;
3454 		}
3455 	}
3456 
3457 	if (!data->diag_tx_ep || !data->diag_rx_ep) {
3458 		bt_dev_err(hdev, "invalid diagnostic descriptors");
3459 		return -ENODEV;
3460 	}
3461 
3462 	return 0;
3463 }
3464 
3465 static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
3466 {
3467 	struct btusb_data *data = hci_get_drvdata(hdev);
3468 	struct sk_buff *skb;
3469 	struct urb *urb;
3470 	unsigned int pipe;
3471 
3472 	if (!data->diag_tx_ep)
3473 		return ERR_PTR(-ENODEV);
3474 
3475 	urb = usb_alloc_urb(0, GFP_KERNEL);
3476 	if (!urb)
3477 		return ERR_PTR(-ENOMEM);
3478 
3479 	skb = bt_skb_alloc(2, GFP_KERNEL);
3480 	if (!skb) {
3481 		usb_free_urb(urb);
3482 		return ERR_PTR(-ENOMEM);
3483 	}
3484 
3485 	skb_put_u8(skb, 0xf0);
3486 	skb_put_u8(skb, enable);
3487 
3488 	pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
3489 
3490 	usb_fill_bulk_urb(urb, data->udev, pipe,
3491 			  skb->data, skb->len, btusb_tx_complete, skb);
3492 
3493 	skb->dev = (void *)hdev;
3494 
3495 	return urb;
3496 }
3497 
3498 static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
3499 {
3500 	struct btusb_data *data = hci_get_drvdata(hdev);
3501 	struct urb *urb;
3502 
3503 	if (!data->diag)
3504 		return -ENODEV;
3505 
3506 	if (!test_bit(HCI_RUNNING, &hdev->flags))
3507 		return -ENETDOWN;
3508 
3509 	urb = alloc_diag_urb(hdev, enable);
3510 	if (IS_ERR(urb))
3511 		return PTR_ERR(urb);
3512 
3513 	return submit_or_queue_tx_urb(hdev, urb);
3514 }
3515 
3516 #ifdef CONFIG_PM
3517 static irqreturn_t btusb_oob_wake_handler(int irq, void *priv)
3518 {
3519 	struct btusb_data *data = priv;
3520 
3521 	pm_wakeup_event(&data->udev->dev, 0);
3522 	pm_system_wakeup();
3523 
3524 	/* Disable only if not already disabled (keep it balanced) */
3525 	if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
3526 		disable_irq_nosync(irq);
3527 		disable_irq_wake(irq);
3528 	}
3529 	return IRQ_HANDLED;
3530 }
3531 
3532 static const struct of_device_id btusb_match_table[] = {
3533 	{ .compatible = "usb1286,204e" },
3534 	{ .compatible = "usbcf3,e300" }, /* QCA6174A */
3535 	{ .compatible = "usb4ca,301a" }, /* QCA6174A (Lite-On) */
3536 	{ }
3537 };
3538 MODULE_DEVICE_TABLE(of, btusb_match_table);
3539 
3540 /* Use an oob wakeup pin? */
3541 static int btusb_config_oob_wake(struct hci_dev *hdev)
3542 {
3543 	struct btusb_data *data = hci_get_drvdata(hdev);
3544 	struct device *dev = &data->udev->dev;
3545 	int irq, ret;
3546 
3547 	clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
3548 
3549 	if (!of_match_device(btusb_match_table, dev))
3550 		return 0;
3551 
3552 	/* Move on if no IRQ specified */
3553 	irq = of_irq_get_byname(dev->of_node, "wakeup");
3554 	if (irq <= 0) {
3555 		bt_dev_dbg(hdev, "%s: no OOB Wakeup IRQ in DT", __func__);
3556 		return 0;
3557 	}
3558 
3559 	irq_set_status_flags(irq, IRQ_NOAUTOEN);
3560 	ret = devm_request_irq(&hdev->dev, irq, btusb_oob_wake_handler,
3561 			       0, "OOB Wake-on-BT", data);
3562 	if (ret) {
3563 		bt_dev_err(hdev, "%s: IRQ request failed", __func__);
3564 		return ret;
3565 	}
3566 
3567 	ret = device_init_wakeup(dev, true);
3568 	if (ret) {
3569 		bt_dev_err(hdev, "%s: failed to init_wakeup", __func__);
3570 		return ret;
3571 	}
3572 
3573 	data->oob_wake_irq = irq;
3574 	bt_dev_info(hdev, "OOB Wake-on-BT configured at IRQ %u", irq);
3575 	return 0;
3576 }
3577 #endif
3578 
3579 static void btusb_check_needs_reset_resume(struct usb_interface *intf)
3580 {
3581 	if (dmi_check_system(btusb_needs_reset_resume_table))
3582 		interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
3583 }
3584 
3585 static bool btusb_wakeup(struct hci_dev *hdev)
3586 {
3587 	struct btusb_data *data = hci_get_drvdata(hdev);
3588 
3589 	return device_may_wakeup(&data->udev->dev);
3590 }
3591 
3592 static int btusb_shutdown_qca(struct hci_dev *hdev)
3593 {
3594 	struct sk_buff *skb;
3595 
3596 	skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
3597 	if (IS_ERR(skb)) {
3598 		bt_dev_err(hdev, "HCI reset during shutdown failed");
3599 		return PTR_ERR(skb);
3600 	}
3601 	kfree_skb(skb);
3602 
3603 	return 0;
3604 }
3605 
3606 static ssize_t force_poll_sync_read(struct file *file, char __user *user_buf,
3607 				    size_t count, loff_t *ppos)
3608 {
3609 	struct btusb_data *data = file->private_data;
3610 	char buf[3];
3611 
3612 	buf[0] = data->poll_sync ? 'Y' : 'N';
3613 	buf[1] = '\n';
3614 	buf[2] = '\0';
3615 	return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
3616 }
3617 
3618 static ssize_t force_poll_sync_write(struct file *file,
3619 				     const char __user *user_buf,
3620 				     size_t count, loff_t *ppos)
3621 {
3622 	struct btusb_data *data = file->private_data;
3623 	bool enable;
3624 	int err;
3625 
3626 	err = kstrtobool_from_user(user_buf, count, &enable);
3627 	if (err)
3628 		return err;
3629 
3630 	/* Only allow changes while the adapter is down */
3631 	if (test_bit(HCI_UP, &data->hdev->flags))
3632 		return -EPERM;
3633 
3634 	if (data->poll_sync == enable)
3635 		return -EALREADY;
3636 
3637 	data->poll_sync = enable;
3638 
3639 	return count;
3640 }
3641 
3642 static const struct file_operations force_poll_sync_fops = {
3643 	.open		= simple_open,
3644 	.read		= force_poll_sync_read,
3645 	.write		= force_poll_sync_write,
3646 	.llseek		= default_llseek,
3647 };
3648 
3649 static ssize_t isoc_alt_show(struct device *dev,
3650 			     struct device_attribute *attr,
3651 			     char *buf)
3652 {
3653 	struct btusb_data *data = dev_get_drvdata(dev);
3654 
3655 	return sysfs_emit(buf, "%d\n", data->isoc_altsetting);
3656 }
3657 
3658 static ssize_t isoc_alt_store(struct device *dev,
3659 			      struct device_attribute *attr,
3660 			      const char *buf, size_t count)
3661 {
3662 	struct btusb_data *data = dev_get_drvdata(dev);
3663 	int alt;
3664 	int ret;
3665 
3666 	if (kstrtoint(buf, 10, &alt))
3667 		return -EINVAL;
3668 
3669 	ret = btusb_switch_alt_setting(data->hdev, alt);
3670 	return ret < 0 ? ret : count;
3671 }
3672 
3673 static DEVICE_ATTR_RW(isoc_alt);
3674 
3675 static int btusb_probe(struct usb_interface *intf,
3676 		       const struct usb_device_id *id)
3677 {
3678 	struct usb_endpoint_descriptor *ep_desc;
3679 	struct gpio_desc *reset_gpio;
3680 	struct btusb_data *data;
3681 	struct hci_dev *hdev;
3682 	unsigned ifnum_base;
3683 	int i, err, priv_size;
3684 
3685 	BT_DBG("intf %p id %p", intf, id);
3686 
3687 	if ((id->driver_info & BTUSB_IFNUM_2) &&
3688 	    (intf->cur_altsetting->desc.bInterfaceNumber != 0) &&
3689 	    (intf->cur_altsetting->desc.bInterfaceNumber != 2))
3690 		return -ENODEV;
3691 
3692 	ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
3693 
3694 	if (!id->driver_info) {
3695 		const struct usb_device_id *match;
3696 
3697 		match = usb_match_id(intf, quirks_table);
3698 		if (match)
3699 			id = match;
3700 	}
3701 
3702 	if (id->driver_info == BTUSB_IGNORE)
3703 		return -ENODEV;
3704 
3705 	if (id->driver_info & BTUSB_ATH3012) {
3706 		struct usb_device *udev = interface_to_usbdev(intf);
3707 
3708 		/* Old firmware would otherwise let ath3k driver load
3709 		 * patch and sysconfig files
3710 		 */
3711 		if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001 &&
3712 		    !btusb_qca_need_patch(udev))
3713 			return -ENODEV;
3714 	}
3715 
3716 	data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
3717 	if (!data)
3718 		return -ENOMEM;
3719 
3720 	for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
3721 		ep_desc = &intf->cur_altsetting->endpoint[i].desc;
3722 
3723 		if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
3724 			data->intr_ep = ep_desc;
3725 			continue;
3726 		}
3727 
3728 		if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
3729 			data->bulk_tx_ep = ep_desc;
3730 			continue;
3731 		}
3732 
3733 		if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
3734 			data->bulk_rx_ep = ep_desc;
3735 			continue;
3736 		}
3737 	}
3738 
3739 	if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
3740 		return -ENODEV;
3741 
3742 	if (id->driver_info & BTUSB_AMP) {
3743 		data->cmdreq_type = USB_TYPE_CLASS | 0x01;
3744 		data->cmdreq = 0x2b;
3745 	} else {
3746 		data->cmdreq_type = USB_TYPE_CLASS;
3747 		data->cmdreq = 0x00;
3748 	}
3749 
3750 	data->udev = interface_to_usbdev(intf);
3751 	data->intf = intf;
3752 
3753 	INIT_WORK(&data->work, btusb_work);
3754 	INIT_WORK(&data->waker, btusb_waker);
3755 	INIT_DELAYED_WORK(&data->rx_work, btusb_rx_work);
3756 
3757 	skb_queue_head_init(&data->acl_q);
3758 
3759 	init_usb_anchor(&data->deferred);
3760 	init_usb_anchor(&data->tx_anchor);
3761 	spin_lock_init(&data->txlock);
3762 
3763 	init_usb_anchor(&data->intr_anchor);
3764 	init_usb_anchor(&data->bulk_anchor);
3765 	init_usb_anchor(&data->isoc_anchor);
3766 	init_usb_anchor(&data->diag_anchor);
3767 	init_usb_anchor(&data->ctrl_anchor);
3768 	spin_lock_init(&data->rxlock);
3769 
3770 	priv_size = 0;
3771 
3772 	data->recv_event = hci_recv_frame;
3773 	data->recv_bulk = btusb_recv_bulk;
3774 
3775 	if (id->driver_info & BTUSB_INTEL_COMBINED) {
3776 		/* Allocate extra space for Intel device */
3777 		priv_size += sizeof(struct btintel_data);
3778 
3779 		/* Override the rx handlers */
3780 		data->recv_event = btintel_recv_event;
3781 		data->recv_bulk = btusb_recv_bulk_intel;
3782 	} else if (id->driver_info & BTUSB_REALTEK) {
3783 		/* Allocate extra space for Realtek device */
3784 		priv_size += sizeof(struct btrealtek_data);
3785 
3786 		data->recv_event = btusb_recv_event_realtek;
3787 	} else if (id->driver_info & BTUSB_MEDIATEK) {
3788 		/* Allocate extra space for Mediatek device */
3789 		priv_size += sizeof(struct btmtk_data);
3790 	}
3791 
3792 	data->recv_acl = hci_recv_frame;
3793 
3794 	hdev = hci_alloc_dev_priv(priv_size);
3795 	if (!hdev)
3796 		return -ENOMEM;
3797 
3798 	hdev->bus = HCI_USB;
3799 	hci_set_drvdata(hdev, data);
3800 
3801 	data->hdev = hdev;
3802 
3803 	SET_HCIDEV_DEV(hdev, &intf->dev);
3804 
3805 	reset_gpio = gpiod_get_optional(&data->udev->dev, "reset",
3806 					GPIOD_OUT_LOW);
3807 	if (IS_ERR(reset_gpio)) {
3808 		err = PTR_ERR(reset_gpio);
3809 		goto out_free_dev;
3810 	} else if (reset_gpio) {
3811 		data->reset_gpio = reset_gpio;
3812 	}
3813 
3814 	hdev->open   = btusb_open;
3815 	hdev->close  = btusb_close;
3816 	hdev->flush  = btusb_flush;
3817 	hdev->send   = btusb_send_frame;
3818 	hdev->notify = btusb_notify;
3819 	hdev->wakeup = btusb_wakeup;
3820 
3821 #ifdef CONFIG_PM
3822 	err = btusb_config_oob_wake(hdev);
3823 	if (err)
3824 		goto out_free_dev;
3825 
3826 	/* Marvell devices may need a specific chip configuration */
3827 	if (id->driver_info & BTUSB_MARVELL && data->oob_wake_irq) {
3828 		err = marvell_config_oob_wake(hdev);
3829 		if (err)
3830 			goto out_free_dev;
3831 	}
3832 #endif
3833 	if (id->driver_info & BTUSB_CW6622)
3834 		set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3835 
3836 	if (id->driver_info & BTUSB_BCM2045)
3837 		set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3838 
3839 	if (id->driver_info & BTUSB_BCM92035)
3840 		hdev->setup = btusb_setup_bcm92035;
3841 
3842 	if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
3843 	    (id->driver_info & BTUSB_BCM_PATCHRAM)) {
3844 		hdev->manufacturer = 15;
3845 		hdev->setup = btbcm_setup_patchram;
3846 		hdev->set_diag = btusb_bcm_set_diag;
3847 		hdev->set_bdaddr = btbcm_set_bdaddr;
3848 
3849 		/* Broadcom LM_DIAG Interface numbers are hardcoded */
3850 		data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
3851 	}
3852 
3853 	if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
3854 	    (id->driver_info & BTUSB_BCM_APPLE)) {
3855 		hdev->manufacturer = 15;
3856 		hdev->setup = btbcm_setup_apple;
3857 		hdev->set_diag = btusb_bcm_set_diag;
3858 
3859 		/* Broadcom LM_DIAG Interface numbers are hardcoded */
3860 		data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
3861 	}
3862 
3863 	/* Combined Intel Device setup to support multiple setup routine */
3864 	if (id->driver_info & BTUSB_INTEL_COMBINED) {
3865 		err = btintel_configure_setup(hdev, btusb_driver.name);
3866 		if (err)
3867 			goto out_free_dev;
3868 
3869 		/* Transport specific configuration */
3870 		hdev->send = btusb_send_frame_intel;
3871 		hdev->reset = btusb_intel_reset;
3872 
3873 		if (id->driver_info & BTUSB_INTEL_NO_WBS_SUPPORT)
3874 			btintel_set_flag(hdev, INTEL_ROM_LEGACY_NO_WBS_SUPPORT);
3875 
3876 		if (id->driver_info & BTUSB_INTEL_BROKEN_INITIAL_NCMD)
3877 			btintel_set_flag(hdev, INTEL_BROKEN_INITIAL_NCMD);
3878 
3879 		if (id->driver_info & BTUSB_INTEL_BROKEN_SHUTDOWN_LED)
3880 			btintel_set_flag(hdev, INTEL_BROKEN_SHUTDOWN_LED);
3881 	}
3882 
3883 	if (id->driver_info & BTUSB_MARVELL)
3884 		hdev->set_bdaddr = btusb_set_bdaddr_marvell;
3885 
3886 	if (IS_ENABLED(CONFIG_BT_HCIBTUSB_MTK) &&
3887 	    (id->driver_info & BTUSB_MEDIATEK)) {
3888 		hdev->setup = btusb_mtk_setup;
3889 		hdev->shutdown = btusb_mtk_shutdown;
3890 		hdev->manufacturer = 70;
3891 		hdev->reset = btmtk_reset_sync;
3892 		hdev->set_bdaddr = btmtk_set_bdaddr;
3893 		hdev->send = btusb_send_frame_mtk;
3894 		set_bit(HCI_QUIRK_BROKEN_ENHANCED_SETUP_SYNC_CONN, &hdev->quirks);
3895 		set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
3896 		data->recv_acl = btmtk_usb_recv_acl;
3897 		data->suspend = btmtk_usb_suspend;
3898 		data->resume = btmtk_usb_resume;
3899 		data->disconnect = btusb_mtk_disconnect;
3900 	}
3901 
3902 	if (id->driver_info & BTUSB_SWAVE) {
3903 		set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
3904 		set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
3905 	}
3906 
3907 	if (id->driver_info & BTUSB_INTEL_BOOT) {
3908 		hdev->manufacturer = 2;
3909 		set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
3910 	}
3911 
3912 	if (id->driver_info & BTUSB_ATH3012) {
3913 		data->setup_on_usb = btusb_setup_qca;
3914 		hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
3915 		set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
3916 		set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
3917 	}
3918 
3919 	if (id->driver_info & BTUSB_QCA_ROME) {
3920 		data->setup_on_usb = btusb_setup_qca;
3921 		hdev->shutdown = btusb_shutdown_qca;
3922 		hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
3923 		hdev->reset = btusb_qca_reset;
3924 		set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
3925 		btusb_check_needs_reset_resume(intf);
3926 	}
3927 
3928 	if (id->driver_info & BTUSB_QCA_WCN6855) {
3929 		data->qca_dump.id_vendor = id->idVendor;
3930 		data->qca_dump.id_product = id->idProduct;
3931 		data->recv_event = btusb_recv_evt_qca;
3932 		data->recv_acl = btusb_recv_acl_qca;
3933 		hci_devcd_register(hdev, btusb_coredump_qca, btusb_dump_hdr_qca, NULL);
3934 		data->setup_on_usb = btusb_setup_qca;
3935 		hdev->shutdown = btusb_shutdown_qca;
3936 		hdev->set_bdaddr = btusb_set_bdaddr_wcn6855;
3937 		hdev->reset = btusb_qca_reset;
3938 		set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
3939 		hci_set_msft_opcode(hdev, 0xFD70);
3940 	}
3941 
3942 	if (id->driver_info & BTUSB_AMP) {
3943 		/* AMP controllers do not support SCO packets */
3944 		data->isoc = NULL;
3945 	} else {
3946 		/* Interface orders are hardcoded in the specification */
3947 		data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
3948 		data->isoc_ifnum = ifnum_base + 1;
3949 	}
3950 
3951 	if (IS_ENABLED(CONFIG_BT_HCIBTUSB_RTL) &&
3952 	    (id->driver_info & BTUSB_REALTEK)) {
3953 		btrtl_set_driver_name(hdev, btusb_driver.name);
3954 		hdev->setup = btusb_setup_realtek;
3955 		hdev->shutdown = btrtl_shutdown_realtek;
3956 		hdev->reset = btusb_rtl_reset;
3957 		hdev->hw_error = btusb_rtl_hw_error;
3958 
3959 		/* Realtek devices need to set remote wakeup on auto-suspend */
3960 		set_bit(BTUSB_WAKEUP_AUTOSUSPEND, &data->flags);
3961 		set_bit(BTUSB_USE_ALT3_FOR_WBS, &data->flags);
3962 	}
3963 
3964 	if (id->driver_info & BTUSB_ACTIONS_SEMI) {
3965 		/* Support is advertised, but not implemented */
3966 		set_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks);
3967 		set_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks);
3968 		set_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks);
3969 		set_bit(HCI_QUIRK_BROKEN_EXT_SCAN, &hdev->quirks);
3970 		set_bit(HCI_QUIRK_BROKEN_READ_ENC_KEY_SIZE, &hdev->quirks);
3971 		set_bit(HCI_QUIRK_BROKEN_EXT_CREATE_CONN, &hdev->quirks);
3972 		set_bit(HCI_QUIRK_BROKEN_WRITE_AUTH_PAYLOAD_TIMEOUT, &hdev->quirks);
3973 	}
3974 
3975 	if (!reset)
3976 		set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
3977 
3978 	if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
3979 		if (!disable_scofix)
3980 			set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
3981 	}
3982 
3983 	if (id->driver_info & BTUSB_BROKEN_ISOC)
3984 		data->isoc = NULL;
3985 
3986 	if (id->driver_info & BTUSB_WIDEBAND_SPEECH)
3987 		set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks);
3988 
3989 	if (id->driver_info & BTUSB_INVALID_LE_STATES)
3990 		set_bit(HCI_QUIRK_BROKEN_LE_STATES, &hdev->quirks);
3991 
3992 	if (id->driver_info & BTUSB_DIGIANSWER) {
3993 		data->cmdreq_type = USB_TYPE_VENDOR;
3994 		set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
3995 	}
3996 
3997 	if (id->driver_info & BTUSB_CSR) {
3998 		struct usb_device *udev = data->udev;
3999 		u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
4000 
4001 		/* Old firmware would otherwise execute USB reset */
4002 		if (bcdDevice < 0x117)
4003 			set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
4004 
4005 		/* This must be set first in case we disable it for fakes */
4006 		set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4007 
4008 		/* Fake CSR devices with broken commands */
4009 		if (le16_to_cpu(udev->descriptor.idVendor)  == 0x0a12 &&
4010 		    le16_to_cpu(udev->descriptor.idProduct) == 0x0001)
4011 			hdev->setup = btusb_setup_csr;
4012 	}
4013 
4014 	if (id->driver_info & BTUSB_SNIFFER) {
4015 		struct usb_device *udev = data->udev;
4016 
4017 		/* New sniffer firmware has crippled HCI interface */
4018 		if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
4019 			set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
4020 	}
4021 
4022 	if (id->driver_info & BTUSB_INTEL_BOOT) {
4023 		/* A bug in the bootloader causes that interrupt interface is
4024 		 * only enabled after receiving SetInterface(0, AltSetting=0).
4025 		 */
4026 		err = usb_set_interface(data->udev, 0, 0);
4027 		if (err < 0) {
4028 			BT_ERR("failed to set interface 0, alt 0 %d", err);
4029 			goto out_free_dev;
4030 		}
4031 	}
4032 
4033 	if (data->isoc) {
4034 		err = usb_driver_claim_interface(&btusb_driver,
4035 						 data->isoc, data);
4036 		if (err < 0)
4037 			goto out_free_dev;
4038 
4039 		err = device_create_file(&intf->dev, &dev_attr_isoc_alt);
4040 		if (err)
4041 			goto out_free_dev;
4042 	}
4043 
4044 	if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) && data->diag) {
4045 		if (!usb_driver_claim_interface(&btusb_driver,
4046 						data->diag, data))
4047 			__set_diag_interface(hdev);
4048 		else
4049 			data->diag = NULL;
4050 	}
4051 
4052 	if (enable_autosuspend)
4053 		usb_enable_autosuspend(data->udev);
4054 
4055 	data->poll_sync = enable_poll_sync;
4056 
4057 	err = hci_register_dev(hdev);
4058 	if (err < 0)
4059 		goto out_free_dev;
4060 
4061 	usb_set_intfdata(intf, data);
4062 
4063 	debugfs_create_file("force_poll_sync", 0644, hdev->debugfs, data,
4064 			    &force_poll_sync_fops);
4065 
4066 	return 0;
4067 
4068 out_free_dev:
4069 	if (data->reset_gpio)
4070 		gpiod_put(data->reset_gpio);
4071 	hci_free_dev(hdev);
4072 	return err;
4073 }
4074 
4075 static void btusb_disconnect(struct usb_interface *intf)
4076 {
4077 	struct btusb_data *data = usb_get_intfdata(intf);
4078 	struct hci_dev *hdev;
4079 
4080 	BT_DBG("intf %p", intf);
4081 
4082 	if (!data)
4083 		return;
4084 
4085 	hdev = data->hdev;
4086 	usb_set_intfdata(data->intf, NULL);
4087 
4088 	if (data->isoc) {
4089 		device_remove_file(&intf->dev, &dev_attr_isoc_alt);
4090 		usb_set_intfdata(data->isoc, NULL);
4091 	}
4092 
4093 	if (data->diag)
4094 		usb_set_intfdata(data->diag, NULL);
4095 
4096 	if (data->disconnect)
4097 		data->disconnect(hdev);
4098 
4099 	hci_unregister_dev(hdev);
4100 
4101 	if (intf == data->intf) {
4102 		if (data->isoc)
4103 			usb_driver_release_interface(&btusb_driver, data->isoc);
4104 		if (data->diag)
4105 			usb_driver_release_interface(&btusb_driver, data->diag);
4106 	} else if (intf == data->isoc) {
4107 		if (data->diag)
4108 			usb_driver_release_interface(&btusb_driver, data->diag);
4109 		usb_driver_release_interface(&btusb_driver, data->intf);
4110 	} else if (intf == data->diag) {
4111 		usb_driver_release_interface(&btusb_driver, data->intf);
4112 		if (data->isoc)
4113 			usb_driver_release_interface(&btusb_driver, data->isoc);
4114 	}
4115 
4116 	if (data->oob_wake_irq)
4117 		device_init_wakeup(&data->udev->dev, false);
4118 
4119 	if (data->reset_gpio)
4120 		gpiod_put(data->reset_gpio);
4121 
4122 	hci_free_dev(hdev);
4123 }
4124 
4125 #ifdef CONFIG_PM
4126 static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
4127 {
4128 	struct btusb_data *data = usb_get_intfdata(intf);
4129 
4130 	BT_DBG("intf %p", intf);
4131 
4132 	/* Don't auto-suspend if there are connections; external suspend calls
4133 	 * shall never fail.
4134 	 */
4135 	if (PMSG_IS_AUTO(message) && hci_conn_count(data->hdev))
4136 		return -EBUSY;
4137 
4138 	if (data->suspend_count++)
4139 		return 0;
4140 
4141 	spin_lock_irq(&data->txlock);
4142 	if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
4143 		set_bit(BTUSB_SUSPENDING, &data->flags);
4144 		spin_unlock_irq(&data->txlock);
4145 	} else {
4146 		spin_unlock_irq(&data->txlock);
4147 		data->suspend_count--;
4148 		return -EBUSY;
4149 	}
4150 
4151 	cancel_work_sync(&data->work);
4152 
4153 	if (data->suspend)
4154 		data->suspend(data->hdev);
4155 
4156 	btusb_stop_traffic(data);
4157 	usb_kill_anchored_urbs(&data->tx_anchor);
4158 
4159 	if (data->oob_wake_irq && device_may_wakeup(&data->udev->dev)) {
4160 		set_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
4161 		enable_irq_wake(data->oob_wake_irq);
4162 		enable_irq(data->oob_wake_irq);
4163 	}
4164 
4165 	/* For global suspend, Realtek devices lose the loaded fw
4166 	 * in them. But for autosuspend, firmware should remain.
4167 	 * Actually, it depends on whether the usb host sends
4168 	 * set feature (enable wakeup) or not.
4169 	 */
4170 	if (test_bit(BTUSB_WAKEUP_AUTOSUSPEND, &data->flags)) {
4171 		if (PMSG_IS_AUTO(message) &&
4172 		    device_can_wakeup(&data->udev->dev))
4173 			data->udev->do_remote_wakeup = 1;
4174 		else if (!PMSG_IS_AUTO(message) &&
4175 			 !device_may_wakeup(&data->udev->dev)) {
4176 			data->udev->do_remote_wakeup = 0;
4177 			data->udev->reset_resume = 1;
4178 		}
4179 	}
4180 
4181 	return 0;
4182 }
4183 
4184 static void play_deferred(struct btusb_data *data)
4185 {
4186 	struct urb *urb;
4187 	int err;
4188 
4189 	while ((urb = usb_get_from_anchor(&data->deferred))) {
4190 		usb_anchor_urb(urb, &data->tx_anchor);
4191 
4192 		err = usb_submit_urb(urb, GFP_ATOMIC);
4193 		if (err < 0) {
4194 			if (err != -EPERM && err != -ENODEV)
4195 				BT_ERR("%s urb %p submission failed (%d)",
4196 				       data->hdev->name, urb, -err);
4197 			kfree(urb->setup_packet);
4198 			usb_unanchor_urb(urb);
4199 			usb_free_urb(urb);
4200 			break;
4201 		}
4202 
4203 		data->tx_in_flight++;
4204 		usb_free_urb(urb);
4205 	}
4206 
4207 	/* Cleanup the rest deferred urbs. */
4208 	while ((urb = usb_get_from_anchor(&data->deferred))) {
4209 		kfree(urb->setup_packet);
4210 		usb_free_urb(urb);
4211 	}
4212 }
4213 
4214 static int btusb_resume(struct usb_interface *intf)
4215 {
4216 	struct btusb_data *data = usb_get_intfdata(intf);
4217 	struct hci_dev *hdev = data->hdev;
4218 	int err = 0;
4219 
4220 	BT_DBG("intf %p", intf);
4221 
4222 	if (--data->suspend_count)
4223 		return 0;
4224 
4225 	/* Disable only if not already disabled (keep it balanced) */
4226 	if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
4227 		disable_irq(data->oob_wake_irq);
4228 		disable_irq_wake(data->oob_wake_irq);
4229 	}
4230 
4231 	if (!test_bit(HCI_RUNNING, &hdev->flags))
4232 		goto done;
4233 
4234 	if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
4235 		err = btusb_submit_intr_urb(hdev, GFP_NOIO);
4236 		if (err < 0) {
4237 			clear_bit(BTUSB_INTR_RUNNING, &data->flags);
4238 			goto failed;
4239 		}
4240 	}
4241 
4242 	if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
4243 		err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
4244 		if (err < 0) {
4245 			clear_bit(BTUSB_BULK_RUNNING, &data->flags);
4246 			goto failed;
4247 		}
4248 
4249 		btusb_submit_bulk_urb(hdev, GFP_NOIO);
4250 	}
4251 
4252 	if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
4253 		if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
4254 			clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
4255 		else
4256 			btusb_submit_isoc_urb(hdev, GFP_NOIO);
4257 	}
4258 
4259 	if (data->resume)
4260 		data->resume(hdev);
4261 
4262 	spin_lock_irq(&data->txlock);
4263 	play_deferred(data);
4264 	clear_bit(BTUSB_SUSPENDING, &data->flags);
4265 	spin_unlock_irq(&data->txlock);
4266 	schedule_work(&data->work);
4267 
4268 	return 0;
4269 
4270 failed:
4271 	usb_scuttle_anchored_urbs(&data->deferred);
4272 done:
4273 	spin_lock_irq(&data->txlock);
4274 	clear_bit(BTUSB_SUSPENDING, &data->flags);
4275 	spin_unlock_irq(&data->txlock);
4276 
4277 	return err;
4278 }
4279 #endif
4280 
4281 #ifdef CONFIG_DEV_COREDUMP
4282 static void btusb_coredump(struct device *dev)
4283 {
4284 	struct btusb_data *data = dev_get_drvdata(dev);
4285 	struct hci_dev *hdev = data->hdev;
4286 
4287 	if (hdev->dump.coredump)
4288 		hdev->dump.coredump(hdev);
4289 }
4290 #endif
4291 
4292 static struct usb_driver btusb_driver = {
4293 	.name		= "btusb",
4294 	.probe		= btusb_probe,
4295 	.disconnect	= btusb_disconnect,
4296 #ifdef CONFIG_PM
4297 	.suspend	= btusb_suspend,
4298 	.resume		= btusb_resume,
4299 #endif
4300 	.id_table	= btusb_table,
4301 	.supports_autosuspend = 1,
4302 	.disable_hub_initiated_lpm = 1,
4303 
4304 #ifdef CONFIG_DEV_COREDUMP
4305 	.driver = {
4306 		.coredump = btusb_coredump,
4307 	},
4308 #endif
4309 };
4310 
4311 module_usb_driver(btusb_driver);
4312 
4313 module_param(disable_scofix, bool, 0644);
4314 MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
4315 
4316 module_param(force_scofix, bool, 0644);
4317 MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
4318 
4319 module_param(enable_autosuspend, bool, 0644);
4320 MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
4321 
4322 module_param(reset, bool, 0644);
4323 MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
4324 
4325 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
4326 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
4327 MODULE_VERSION(VERSION);
4328 MODULE_LICENSE("GPL");
4329