Bluetooth: btusb: support download nvm with different board id for wcn6855
[linux-2.6-microblaze.git] / drivers / bluetooth / btusb.c
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 <asm/unaligned.h>
20
21 #include <net/bluetooth/bluetooth.h>
22 #include <net/bluetooth/hci_core.h>
23
24 #include "btintel.h"
25 #include "btbcm.h"
26 #include "btrtl.h"
27
28 #define VERSION "0.8"
29
30 static bool disable_scofix;
31 static bool force_scofix;
32 static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
33
34 static bool reset = true;
35
36 static struct usb_driver btusb_driver;
37
38 #define BTUSB_IGNORE            0x01
39 #define BTUSB_DIGIANSWER        0x02
40 #define BTUSB_CSR               0x04
41 #define BTUSB_SNIFFER           0x08
42 #define BTUSB_BCM92035          0x10
43 #define BTUSB_BROKEN_ISOC       0x20
44 #define BTUSB_WRONG_SCO_MTU     0x40
45 #define BTUSB_ATH3012           0x80
46 #define BTUSB_INTEL             0x100
47 #define BTUSB_INTEL_BOOT        0x200
48 #define BTUSB_BCM_PATCHRAM      0x400
49 #define BTUSB_MARVELL           0x800
50 #define BTUSB_SWAVE             0x1000
51 #define BTUSB_INTEL_NEW         0x2000
52 #define BTUSB_AMP               0x4000
53 #define BTUSB_QCA_ROME          0x8000
54 #define BTUSB_BCM_APPLE         0x10000
55 #define BTUSB_REALTEK           0x20000
56 #define BTUSB_BCM2045           0x40000
57 #define BTUSB_IFNUM_2           0x80000
58 #define BTUSB_CW6622            0x100000
59 #define BTUSB_MEDIATEK          0x200000
60 #define BTUSB_WIDEBAND_SPEECH   0x400000
61 #define BTUSB_VALID_LE_STATES   0x800000
62 #define BTUSB_QCA_WCN6855       0x1000000
63 #define BTUSB_INTEL_NEWGEN      0x2000000
64
65 static const struct usb_device_id btusb_table[] = {
66         /* Generic Bluetooth USB device */
67         { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
68
69         /* Generic Bluetooth AMP device */
70         { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
71
72         /* Generic Bluetooth USB interface */
73         { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
74
75         /* Apple-specific (Broadcom) devices */
76         { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
77           .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
78
79         /* MediaTek MT76x0E */
80         { USB_DEVICE(0x0e8d, 0x763f) },
81
82         /* Broadcom SoftSailing reporting vendor specific */
83         { USB_DEVICE(0x0a5c, 0x21e1) },
84
85         /* Apple MacBookPro 7,1 */
86         { USB_DEVICE(0x05ac, 0x8213) },
87
88         /* Apple iMac11,1 */
89         { USB_DEVICE(0x05ac, 0x8215) },
90
91         /* Apple MacBookPro6,2 */
92         { USB_DEVICE(0x05ac, 0x8218) },
93
94         /* Apple MacBookAir3,1, MacBookAir3,2 */
95         { USB_DEVICE(0x05ac, 0x821b) },
96
97         /* Apple MacBookAir4,1 */
98         { USB_DEVICE(0x05ac, 0x821f) },
99
100         /* Apple MacBookPro8,2 */
101         { USB_DEVICE(0x05ac, 0x821a) },
102
103         /* Apple MacMini5,1 */
104         { USB_DEVICE(0x05ac, 0x8281) },
105
106         /* AVM BlueFRITZ! USB v2.0 */
107         { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
108
109         /* Bluetooth Ultraport Module from IBM */
110         { USB_DEVICE(0x04bf, 0x030a) },
111
112         /* ALPS Modules with non-standard id */
113         { USB_DEVICE(0x044e, 0x3001) },
114         { USB_DEVICE(0x044e, 0x3002) },
115
116         /* Ericsson with non-standard id */
117         { USB_DEVICE(0x0bdb, 0x1002) },
118
119         /* Canyon CN-BTU1 with HID interfaces */
120         { USB_DEVICE(0x0c10, 0x0000) },
121
122         /* Broadcom BCM20702A0 */
123         { USB_DEVICE(0x413c, 0x8197) },
124
125         /* Broadcom BCM20702B0 (Dynex/Insignia) */
126         { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
127
128         /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
129         { USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
130           .driver_info = BTUSB_BCM_PATCHRAM },
131
132         /* Broadcom BCM920703 (HTC Vive) */
133         { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
134           .driver_info = BTUSB_BCM_PATCHRAM },
135
136         /* Foxconn - Hon Hai */
137         { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
138           .driver_info = BTUSB_BCM_PATCHRAM },
139
140         /* Lite-On Technology - Broadcom based */
141         { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
142           .driver_info = BTUSB_BCM_PATCHRAM },
143
144         /* Broadcom devices with vendor specific id */
145         { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
146           .driver_info = BTUSB_BCM_PATCHRAM },
147
148         /* ASUSTek Computer - Broadcom based */
149         { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
150           .driver_info = BTUSB_BCM_PATCHRAM },
151
152         /* Belkin F8065bf - Broadcom based */
153         { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
154           .driver_info = BTUSB_BCM_PATCHRAM },
155
156         /* IMC Networks - Broadcom based */
157         { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
158           .driver_info = BTUSB_BCM_PATCHRAM },
159
160         /* Dell Computer - Broadcom based  */
161         { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
162           .driver_info = BTUSB_BCM_PATCHRAM },
163
164         /* Toshiba Corp - Broadcom based */
165         { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
166           .driver_info = BTUSB_BCM_PATCHRAM },
167
168         /* Intel Bluetooth USB Bootloader (RAM module) */
169         { USB_DEVICE(0x8087, 0x0a5a),
170           .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
171
172         { }     /* Terminating entry */
173 };
174
175 MODULE_DEVICE_TABLE(usb, btusb_table);
176
177 static const struct usb_device_id blacklist_table[] = {
178         /* CSR BlueCore devices */
179         { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
180
181         /* Broadcom BCM2033 without firmware */
182         { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
183
184         /* Broadcom BCM2045 devices */
185         { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
186
187         /* Atheros 3011 with sflash firmware */
188         { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
189         { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
190         { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
191         { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
192         { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
193         { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
194         { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
195
196         /* Atheros AR9285 Malbec with sflash firmware */
197         { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
198
199         /* Atheros 3012 with sflash firmware */
200         { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
201         { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
202         { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
203         { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
204         { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
205         { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
206         { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
207         { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
208         { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
209         { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
210         { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
211         { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
212         { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
213         { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
214         { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
215         { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
216         { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
217         { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
218         { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
219         { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
220         { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
221         { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
222         { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
223         { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
224         { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
225         { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
226         { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
227         { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
228         { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
229         { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
230         { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
231         { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
232         { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
233         { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
234         { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
235         { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
236         { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
237         { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
238         { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
239         { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
240         { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
241         { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
242         { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
243         { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
244         { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
245         { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
246         { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
247         { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
248         { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
249         { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
250
251         /* Atheros AR5BBU12 with sflash firmware */
252         { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
253
254         /* Atheros AR5BBU12 with sflash firmware */
255         { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
256         { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
257
258         /* QCA ROME chipset */
259         { USB_DEVICE(0x0cf3, 0x535b), .driver_info = BTUSB_QCA_ROME |
260                                                      BTUSB_WIDEBAND_SPEECH },
261         { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME |
262                                                      BTUSB_WIDEBAND_SPEECH },
263         { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME |
264                                                      BTUSB_WIDEBAND_SPEECH },
265         { USB_DEVICE(0x0cf3, 0xe010), .driver_info = BTUSB_QCA_ROME |
266                                                      BTUSB_WIDEBAND_SPEECH },
267         { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME |
268                                                      BTUSB_WIDEBAND_SPEECH },
269         { USB_DEVICE(0x0cf3, 0xe301), .driver_info = BTUSB_QCA_ROME |
270                                                      BTUSB_WIDEBAND_SPEECH },
271         { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME |
272                                                      BTUSB_WIDEBAND_SPEECH },
273         { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME |
274                                                      BTUSB_WIDEBAND_SPEECH },
275         { USB_DEVICE(0x0489, 0xe09f), .driver_info = BTUSB_QCA_ROME |
276                                                      BTUSB_WIDEBAND_SPEECH },
277         { USB_DEVICE(0x0489, 0xe0a2), .driver_info = BTUSB_QCA_ROME |
278                                                      BTUSB_WIDEBAND_SPEECH },
279         { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME |
280                                                      BTUSB_WIDEBAND_SPEECH },
281         { USB_DEVICE(0x04ca, 0x3015), .driver_info = BTUSB_QCA_ROME |
282                                                      BTUSB_WIDEBAND_SPEECH },
283         { USB_DEVICE(0x04ca, 0x3016), .driver_info = BTUSB_QCA_ROME |
284                                                      BTUSB_WIDEBAND_SPEECH },
285         { USB_DEVICE(0x04ca, 0x301a), .driver_info = BTUSB_QCA_ROME |
286                                                      BTUSB_WIDEBAND_SPEECH },
287         { USB_DEVICE(0x04ca, 0x3021), .driver_info = BTUSB_QCA_ROME |
288                                                      BTUSB_WIDEBAND_SPEECH },
289         { USB_DEVICE(0x13d3, 0x3491), .driver_info = BTUSB_QCA_ROME |
290                                                      BTUSB_WIDEBAND_SPEECH },
291         { USB_DEVICE(0x13d3, 0x3496), .driver_info = BTUSB_QCA_ROME |
292                                                      BTUSB_WIDEBAND_SPEECH },
293         { USB_DEVICE(0x13d3, 0x3501), .driver_info = BTUSB_QCA_ROME |
294                                                      BTUSB_WIDEBAND_SPEECH },
295
296         /* QCA WCN6855 chipset */
297         { USB_DEVICE(0x0cf3, 0xe600), .driver_info = BTUSB_QCA_WCN6855 |
298                                                      BTUSB_WIDEBAND_SPEECH },
299
300         /* Broadcom BCM2035 */
301         { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
302         { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
303         { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
304
305         /* Broadcom BCM2045 */
306         { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
307         { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
308
309         /* IBM/Lenovo ThinkPad with Broadcom chip */
310         { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
311         { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
312
313         /* HP laptop with Broadcom chip */
314         { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
315
316         /* Dell laptop with Broadcom chip */
317         { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
318
319         /* Dell Wireless 370 and 410 devices */
320         { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
321         { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
322
323         /* Belkin F8T012 and F8T013 devices */
324         { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
325         { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
326
327         /* Asus WL-BTD202 device */
328         { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
329
330         /* Kensington Bluetooth USB adapter */
331         { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
332
333         /* RTX Telecom based adapters with buggy SCO support */
334         { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
335         { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
336
337         /* CONWISE Technology based adapters with buggy SCO support */
338         { USB_DEVICE(0x0e5e, 0x6622),
339           .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
340
341         /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
342         { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
343
344         /* Digianswer devices */
345         { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
346         { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
347
348         /* CSR BlueCore Bluetooth Sniffer */
349         { USB_DEVICE(0x0a12, 0x0002),
350           .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
351
352         /* Frontline ComProbe Bluetooth Sniffer */
353         { USB_DEVICE(0x16d3, 0x0002),
354           .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
355
356         /* Marvell Bluetooth devices */
357         { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
358         { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
359         { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
360
361         /* Intel Bluetooth devices */
362         { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW |
363                                                      BTUSB_WIDEBAND_SPEECH |
364                                                      BTUSB_VALID_LE_STATES },
365         { USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_NEW |
366                                                      BTUSB_WIDEBAND_SPEECH },
367         { USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_NEW |
368                                                      BTUSB_WIDEBAND_SPEECH },
369         { USB_DEVICE(0x8087, 0x0032), .driver_info = BTUSB_INTEL_NEWGEN |
370                                                      BTUSB_WIDEBAND_SPEECH},
371         { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
372         { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
373         { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
374         { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW |
375                                                      BTUSB_WIDEBAND_SPEECH },
376         { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL |
377                                                      BTUSB_WIDEBAND_SPEECH },
378         { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW |
379                                                      BTUSB_WIDEBAND_SPEECH |
380                                                      BTUSB_VALID_LE_STATES },
381
382         /* Other Intel Bluetooth devices */
383         { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
384           .driver_info = BTUSB_IGNORE },
385
386         /* Realtek 8822CE Bluetooth devices */
387         { USB_DEVICE(0x0bda, 0xb00c), .driver_info = BTUSB_REALTEK |
388                                                      BTUSB_WIDEBAND_SPEECH },
389
390         /* Realtek 8852AE Bluetooth devices */
391         { USB_DEVICE(0x0bda, 0xc852), .driver_info = BTUSB_REALTEK |
392                                                      BTUSB_WIDEBAND_SPEECH },
393
394         /* Realtek Bluetooth devices */
395         { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
396           .driver_info = BTUSB_REALTEK },
397
398         /* MediaTek Bluetooth devices */
399         { USB_VENDOR_AND_INTERFACE_INFO(0x0e8d, 0xe0, 0x01, 0x01),
400           .driver_info = BTUSB_MEDIATEK },
401
402         /* Additional MediaTek MT7615E Bluetooth devices */
403         { USB_DEVICE(0x13d3, 0x3560), .driver_info = BTUSB_MEDIATEK},
404
405         /* Additional Realtek 8723AE Bluetooth devices */
406         { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
407         { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
408
409         /* Additional Realtek 8723BE Bluetooth devices */
410         { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
411         { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
412         { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
413         { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
414         { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
415         { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
416
417         /* Additional Realtek 8723BU Bluetooth devices */
418         { USB_DEVICE(0x7392, 0xa611), .driver_info = BTUSB_REALTEK },
419
420         /* Additional Realtek 8723DE Bluetooth devices */
421         { USB_DEVICE(0x0bda, 0xb009), .driver_info = BTUSB_REALTEK },
422         { USB_DEVICE(0x2ff8, 0xb011), .driver_info = BTUSB_REALTEK },
423
424         /* Additional Realtek 8821AE Bluetooth devices */
425         { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
426         { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
427         { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
428         { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
429         { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
430
431         /* Additional Realtek 8822BE Bluetooth devices */
432         { USB_DEVICE(0x13d3, 0x3526), .driver_info = BTUSB_REALTEK },
433         { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK },
434
435         /* Additional Realtek 8822CE Bluetooth devices */
436         { USB_DEVICE(0x04ca, 0x4005), .driver_info = BTUSB_REALTEK |
437                                                      BTUSB_WIDEBAND_SPEECH },
438         { USB_DEVICE(0x04c5, 0x161f), .driver_info = BTUSB_REALTEK |
439                                                      BTUSB_WIDEBAND_SPEECH },
440         { USB_DEVICE(0x0b05, 0x18ef), .driver_info = BTUSB_REALTEK |
441                                                      BTUSB_WIDEBAND_SPEECH },
442         { USB_DEVICE(0x13d3, 0x3548), .driver_info = BTUSB_REALTEK |
443                                                      BTUSB_WIDEBAND_SPEECH },
444         { USB_DEVICE(0x13d3, 0x3549), .driver_info = BTUSB_REALTEK |
445                                                      BTUSB_WIDEBAND_SPEECH },
446         { USB_DEVICE(0x13d3, 0x3553), .driver_info = BTUSB_REALTEK |
447                                                      BTUSB_WIDEBAND_SPEECH },
448         { USB_DEVICE(0x13d3, 0x3555), .driver_info = BTUSB_REALTEK |
449                                                      BTUSB_WIDEBAND_SPEECH },
450         { USB_DEVICE(0x2ff8, 0x3051), .driver_info = BTUSB_REALTEK |
451                                                      BTUSB_WIDEBAND_SPEECH },
452         { USB_DEVICE(0x1358, 0xc123), .driver_info = BTUSB_REALTEK |
453                                                      BTUSB_WIDEBAND_SPEECH },
454         { USB_DEVICE(0x0bda, 0xc123), .driver_info = BTUSB_REALTEK |
455                                                      BTUSB_WIDEBAND_SPEECH },
456
457         /* Silicon Wave based devices */
458         { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
459
460         { }     /* Terminating entry */
461 };
462
463 /* The Bluetooth USB module build into some devices needs to be reset on resume,
464  * this is a problem with the platform (likely shutting off all power) not with
465  * the module itself. So we use a DMI list to match known broken platforms.
466  */
467 static const struct dmi_system_id btusb_needs_reset_resume_table[] = {
468         {
469                 /* Dell OptiPlex 3060 (QCA ROME device 0cf3:e007) */
470                 .matches = {
471                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
472                         DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 3060"),
473                 },
474         },
475         {
476                 /* Dell XPS 9360 (QCA ROME device 0cf3:e300) */
477                 .matches = {
478                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
479                         DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9360"),
480                 },
481         },
482         {
483                 /* Dell Inspiron 5565 (QCA ROME device 0cf3:e009) */
484                 .matches = {
485                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
486                         DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5565"),
487                 },
488         },
489         {}
490 };
491
492 #define BTUSB_MAX_ISOC_FRAMES   10
493
494 #define BTUSB_INTR_RUNNING      0
495 #define BTUSB_BULK_RUNNING      1
496 #define BTUSB_ISOC_RUNNING      2
497 #define BTUSB_SUSPENDING        3
498 #define BTUSB_DID_ISO_RESUME    4
499 #define BTUSB_BOOTLOADER        5
500 #define BTUSB_DOWNLOADING       6
501 #define BTUSB_FIRMWARE_LOADED   7
502 #define BTUSB_FIRMWARE_FAILED   8
503 #define BTUSB_BOOTING           9
504 #define BTUSB_DIAG_RUNNING      10
505 #define BTUSB_OOB_WAKE_ENABLED  11
506 #define BTUSB_HW_RESET_ACTIVE   12
507 #define BTUSB_TX_WAIT_VND_EVT   13
508 #define BTUSB_WAKEUP_DISABLE    14
509 #define BTUSB_USE_ALT1_FOR_WBS  15
510
511 struct btusb_data {
512         struct hci_dev       *hdev;
513         struct usb_device    *udev;
514         struct usb_interface *intf;
515         struct usb_interface *isoc;
516         struct usb_interface *diag;
517         unsigned isoc_ifnum;
518
519         unsigned long flags;
520
521         struct work_struct work;
522         struct work_struct waker;
523
524         struct usb_anchor deferred;
525         struct usb_anchor tx_anchor;
526         int tx_in_flight;
527         spinlock_t txlock;
528
529         struct usb_anchor intr_anchor;
530         struct usb_anchor bulk_anchor;
531         struct usb_anchor isoc_anchor;
532         struct usb_anchor diag_anchor;
533         struct usb_anchor ctrl_anchor;
534         spinlock_t rxlock;
535
536         struct sk_buff *evt_skb;
537         struct sk_buff *acl_skb;
538         struct sk_buff *sco_skb;
539
540         struct usb_endpoint_descriptor *intr_ep;
541         struct usb_endpoint_descriptor *bulk_tx_ep;
542         struct usb_endpoint_descriptor *bulk_rx_ep;
543         struct usb_endpoint_descriptor *isoc_tx_ep;
544         struct usb_endpoint_descriptor *isoc_rx_ep;
545         struct usb_endpoint_descriptor *diag_tx_ep;
546         struct usb_endpoint_descriptor *diag_rx_ep;
547
548         struct gpio_desc *reset_gpio;
549
550         __u8 cmdreq_type;
551         __u8 cmdreq;
552
553         unsigned int sco_num;
554         unsigned int air_mode;
555         bool usb_alt6_packet_flow;
556         int isoc_altsetting;
557         int suspend_count;
558
559         int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
560         int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
561
562         int (*setup_on_usb)(struct hci_dev *hdev);
563
564         int oob_wake_irq;   /* irq for out-of-band wake-on-bt */
565         unsigned cmd_timeout_cnt;
566 };
567
568 static void btusb_intel_cmd_timeout(struct hci_dev *hdev)
569 {
570         struct btusb_data *data = hci_get_drvdata(hdev);
571         struct gpio_desc *reset_gpio = data->reset_gpio;
572
573         if (++data->cmd_timeout_cnt < 5)
574                 return;
575
576         if (!reset_gpio) {
577                 bt_dev_err(hdev, "No way to reset. Ignoring and continuing");
578                 return;
579         }
580
581         /*
582          * Toggle the hard reset line if the platform provides one. The reset
583          * is going to yank the device off the USB and then replug. So doing
584          * once is enough. The cleanup is handled correctly on the way out
585          * (standard USB disconnect), and the new device is detected cleanly
586          * and bound to the driver again like it should be.
587          */
588         if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
589                 bt_dev_err(hdev, "last reset failed? Not resetting again");
590                 return;
591         }
592
593         bt_dev_err(hdev, "Initiating HW reset via gpio");
594         gpiod_set_value_cansleep(reset_gpio, 1);
595         msleep(100);
596         gpiod_set_value_cansleep(reset_gpio, 0);
597 }
598
599 static void btusb_rtl_cmd_timeout(struct hci_dev *hdev)
600 {
601         struct btusb_data *data = hci_get_drvdata(hdev);
602         struct gpio_desc *reset_gpio = data->reset_gpio;
603
604         if (++data->cmd_timeout_cnt < 5)
605                 return;
606
607         if (!reset_gpio) {
608                 bt_dev_err(hdev, "No gpio to reset Realtek device, ignoring");
609                 return;
610         }
611
612         /* Toggle the hard reset line. The Realtek device is going to
613          * yank itself off the USB and then replug. The cleanup is handled
614          * correctly on the way out (standard USB disconnect), and the new
615          * device is detected cleanly and bound to the driver again like
616          * it should be.
617          */
618         if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
619                 bt_dev_err(hdev, "last reset failed? Not resetting again");
620                 return;
621         }
622
623         bt_dev_err(hdev, "Reset Realtek device via gpio");
624         gpiod_set_value_cansleep(reset_gpio, 1);
625         msleep(200);
626         gpiod_set_value_cansleep(reset_gpio, 0);
627 }
628
629 static void btusb_qca_cmd_timeout(struct hci_dev *hdev)
630 {
631         struct btusb_data *data = hci_get_drvdata(hdev);
632         int err;
633
634         if (++data->cmd_timeout_cnt < 5)
635                 return;
636
637         bt_dev_err(hdev, "Multiple cmd timeouts seen. Resetting usb device.");
638         /* This is not an unbalanced PM reference since the device will reset */
639         err = usb_autopm_get_interface(data->intf);
640         if (!err)
641                 usb_queue_reset_device(data->intf);
642         else
643                 bt_dev_err(hdev, "Failed usb_autopm_get_interface with %d", err);
644 }
645
646 static inline void btusb_free_frags(struct btusb_data *data)
647 {
648         unsigned long flags;
649
650         spin_lock_irqsave(&data->rxlock, flags);
651
652         kfree_skb(data->evt_skb);
653         data->evt_skb = NULL;
654
655         kfree_skb(data->acl_skb);
656         data->acl_skb = NULL;
657
658         kfree_skb(data->sco_skb);
659         data->sco_skb = NULL;
660
661         spin_unlock_irqrestore(&data->rxlock, flags);
662 }
663
664 static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
665 {
666         struct sk_buff *skb;
667         unsigned long flags;
668         int err = 0;
669
670         spin_lock_irqsave(&data->rxlock, flags);
671         skb = data->evt_skb;
672
673         while (count) {
674                 int len;
675
676                 if (!skb) {
677                         skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
678                         if (!skb) {
679                                 err = -ENOMEM;
680                                 break;
681                         }
682
683                         hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
684                         hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
685                 }
686
687                 len = min_t(uint, hci_skb_expect(skb), count);
688                 skb_put_data(skb, buffer, len);
689
690                 count -= len;
691                 buffer += len;
692                 hci_skb_expect(skb) -= len;
693
694                 if (skb->len == HCI_EVENT_HDR_SIZE) {
695                         /* Complete event header */
696                         hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
697
698                         if (skb_tailroom(skb) < hci_skb_expect(skb)) {
699                                 kfree_skb(skb);
700                                 skb = NULL;
701
702                                 err = -EILSEQ;
703                                 break;
704                         }
705                 }
706
707                 if (!hci_skb_expect(skb)) {
708                         /* Complete frame */
709                         data->recv_event(data->hdev, skb);
710                         skb = NULL;
711                 }
712         }
713
714         data->evt_skb = skb;
715         spin_unlock_irqrestore(&data->rxlock, flags);
716
717         return err;
718 }
719
720 static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
721 {
722         struct sk_buff *skb;
723         unsigned long flags;
724         int err = 0;
725
726         spin_lock_irqsave(&data->rxlock, flags);
727         skb = data->acl_skb;
728
729         while (count) {
730                 int len;
731
732                 if (!skb) {
733                         skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
734                         if (!skb) {
735                                 err = -ENOMEM;
736                                 break;
737                         }
738
739                         hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
740                         hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
741                 }
742
743                 len = min_t(uint, hci_skb_expect(skb), count);
744                 skb_put_data(skb, buffer, len);
745
746                 count -= len;
747                 buffer += len;
748                 hci_skb_expect(skb) -= len;
749
750                 if (skb->len == HCI_ACL_HDR_SIZE) {
751                         __le16 dlen = hci_acl_hdr(skb)->dlen;
752
753                         /* Complete ACL header */
754                         hci_skb_expect(skb) = __le16_to_cpu(dlen);
755
756                         if (skb_tailroom(skb) < hci_skb_expect(skb)) {
757                                 kfree_skb(skb);
758                                 skb = NULL;
759
760                                 err = -EILSEQ;
761                                 break;
762                         }
763                 }
764
765                 if (!hci_skb_expect(skb)) {
766                         /* Complete frame */
767                         hci_recv_frame(data->hdev, skb);
768                         skb = NULL;
769                 }
770         }
771
772         data->acl_skb = skb;
773         spin_unlock_irqrestore(&data->rxlock, flags);
774
775         return err;
776 }
777
778 static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
779 {
780         struct sk_buff *skb;
781         unsigned long flags;
782         int err = 0;
783
784         spin_lock_irqsave(&data->rxlock, flags);
785         skb = data->sco_skb;
786
787         while (count) {
788                 int len;
789
790                 if (!skb) {
791                         skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
792                         if (!skb) {
793                                 err = -ENOMEM;
794                                 break;
795                         }
796
797                         hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
798                         hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
799                 }
800
801                 len = min_t(uint, hci_skb_expect(skb), count);
802                 skb_put_data(skb, buffer, len);
803
804                 count -= len;
805                 buffer += len;
806                 hci_skb_expect(skb) -= len;
807
808                 if (skb->len == HCI_SCO_HDR_SIZE) {
809                         /* Complete SCO header */
810                         hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
811
812                         if (skb_tailroom(skb) < hci_skb_expect(skb)) {
813                                 kfree_skb(skb);
814                                 skb = NULL;
815
816                                 err = -EILSEQ;
817                                 break;
818                         }
819                 }
820
821                 if (!hci_skb_expect(skb)) {
822                         /* Complete frame */
823                         hci_recv_frame(data->hdev, skb);
824                         skb = NULL;
825                 }
826         }
827
828         data->sco_skb = skb;
829         spin_unlock_irqrestore(&data->rxlock, flags);
830
831         return err;
832 }
833
834 static void btusb_intr_complete(struct urb *urb)
835 {
836         struct hci_dev *hdev = urb->context;
837         struct btusb_data *data = hci_get_drvdata(hdev);
838         int err;
839
840         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
841                urb->actual_length);
842
843         if (!test_bit(HCI_RUNNING, &hdev->flags))
844                 return;
845
846         if (urb->status == 0) {
847                 hdev->stat.byte_rx += urb->actual_length;
848
849                 if (btusb_recv_intr(data, urb->transfer_buffer,
850                                     urb->actual_length) < 0) {
851                         bt_dev_err(hdev, "corrupted event packet");
852                         hdev->stat.err_rx++;
853                 }
854         } else if (urb->status == -ENOENT) {
855                 /* Avoid suspend failed when usb_kill_urb */
856                 return;
857         }
858
859         if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
860                 return;
861
862         usb_mark_last_busy(data->udev);
863         usb_anchor_urb(urb, &data->intr_anchor);
864
865         err = usb_submit_urb(urb, GFP_ATOMIC);
866         if (err < 0) {
867                 /* -EPERM: urb is being killed;
868                  * -ENODEV: device got disconnected
869                  */
870                 if (err != -EPERM && err != -ENODEV)
871                         bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
872                                    urb, -err);
873                 usb_unanchor_urb(urb);
874         }
875 }
876
877 static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
878 {
879         struct btusb_data *data = hci_get_drvdata(hdev);
880         struct urb *urb;
881         unsigned char *buf;
882         unsigned int pipe;
883         int err, size;
884
885         BT_DBG("%s", hdev->name);
886
887         if (!data->intr_ep)
888                 return -ENODEV;
889
890         urb = usb_alloc_urb(0, mem_flags);
891         if (!urb)
892                 return -ENOMEM;
893
894         size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
895
896         buf = kmalloc(size, mem_flags);
897         if (!buf) {
898                 usb_free_urb(urb);
899                 return -ENOMEM;
900         }
901
902         pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
903
904         usb_fill_int_urb(urb, data->udev, pipe, buf, size,
905                          btusb_intr_complete, hdev, data->intr_ep->bInterval);
906
907         urb->transfer_flags |= URB_FREE_BUFFER;
908
909         usb_anchor_urb(urb, &data->intr_anchor);
910
911         err = usb_submit_urb(urb, mem_flags);
912         if (err < 0) {
913                 if (err != -EPERM && err != -ENODEV)
914                         bt_dev_err(hdev, "urb %p submission failed (%d)",
915                                    urb, -err);
916                 usb_unanchor_urb(urb);
917         }
918
919         usb_free_urb(urb);
920
921         return err;
922 }
923
924 static void btusb_bulk_complete(struct urb *urb)
925 {
926         struct hci_dev *hdev = urb->context;
927         struct btusb_data *data = hci_get_drvdata(hdev);
928         int err;
929
930         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
931                urb->actual_length);
932
933         if (!test_bit(HCI_RUNNING, &hdev->flags))
934                 return;
935
936         if (urb->status == 0) {
937                 hdev->stat.byte_rx += urb->actual_length;
938
939                 if (data->recv_bulk(data, urb->transfer_buffer,
940                                     urb->actual_length) < 0) {
941                         bt_dev_err(hdev, "corrupted ACL packet");
942                         hdev->stat.err_rx++;
943                 }
944         } else if (urb->status == -ENOENT) {
945                 /* Avoid suspend failed when usb_kill_urb */
946                 return;
947         }
948
949         if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
950                 return;
951
952         usb_anchor_urb(urb, &data->bulk_anchor);
953         usb_mark_last_busy(data->udev);
954
955         err = usb_submit_urb(urb, GFP_ATOMIC);
956         if (err < 0) {
957                 /* -EPERM: urb is being killed;
958                  * -ENODEV: device got disconnected
959                  */
960                 if (err != -EPERM && err != -ENODEV)
961                         bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
962                                    urb, -err);
963                 usb_unanchor_urb(urb);
964         }
965 }
966
967 static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
968 {
969         struct btusb_data *data = hci_get_drvdata(hdev);
970         struct urb *urb;
971         unsigned char *buf;
972         unsigned int pipe;
973         int err, size = HCI_MAX_FRAME_SIZE;
974
975         BT_DBG("%s", hdev->name);
976
977         if (!data->bulk_rx_ep)
978                 return -ENODEV;
979
980         urb = usb_alloc_urb(0, mem_flags);
981         if (!urb)
982                 return -ENOMEM;
983
984         buf = kmalloc(size, mem_flags);
985         if (!buf) {
986                 usb_free_urb(urb);
987                 return -ENOMEM;
988         }
989
990         pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
991
992         usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
993                           btusb_bulk_complete, hdev);
994
995         urb->transfer_flags |= URB_FREE_BUFFER;
996
997         usb_mark_last_busy(data->udev);
998         usb_anchor_urb(urb, &data->bulk_anchor);
999
1000         err = usb_submit_urb(urb, mem_flags);
1001         if (err < 0) {
1002                 if (err != -EPERM && err != -ENODEV)
1003                         bt_dev_err(hdev, "urb %p submission failed (%d)",
1004                                    urb, -err);
1005                 usb_unanchor_urb(urb);
1006         }
1007
1008         usb_free_urb(urb);
1009
1010         return err;
1011 }
1012
1013 static void btusb_isoc_complete(struct urb *urb)
1014 {
1015         struct hci_dev *hdev = urb->context;
1016         struct btusb_data *data = hci_get_drvdata(hdev);
1017         int i, err;
1018
1019         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1020                urb->actual_length);
1021
1022         if (!test_bit(HCI_RUNNING, &hdev->flags))
1023                 return;
1024
1025         if (urb->status == 0) {
1026                 for (i = 0; i < urb->number_of_packets; i++) {
1027                         unsigned int offset = urb->iso_frame_desc[i].offset;
1028                         unsigned int length = urb->iso_frame_desc[i].actual_length;
1029
1030                         if (urb->iso_frame_desc[i].status)
1031                                 continue;
1032
1033                         hdev->stat.byte_rx += length;
1034
1035                         if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
1036                                             length) < 0) {
1037                                 bt_dev_err(hdev, "corrupted SCO packet");
1038                                 hdev->stat.err_rx++;
1039                         }
1040                 }
1041         } else if (urb->status == -ENOENT) {
1042                 /* Avoid suspend failed when usb_kill_urb */
1043                 return;
1044         }
1045
1046         if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
1047                 return;
1048
1049         usb_anchor_urb(urb, &data->isoc_anchor);
1050
1051         err = usb_submit_urb(urb, GFP_ATOMIC);
1052         if (err < 0) {
1053                 /* -EPERM: urb is being killed;
1054                  * -ENODEV: device got disconnected
1055                  */
1056                 if (err != -EPERM && err != -ENODEV)
1057                         bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1058                                    urb, -err);
1059                 usb_unanchor_urb(urb);
1060         }
1061 }
1062
1063 static inline void __fill_isoc_descriptor_msbc(struct urb *urb, int len,
1064                                                int mtu, struct btusb_data *data)
1065 {
1066         int i, offset = 0;
1067         unsigned int interval;
1068
1069         BT_DBG("len %d mtu %d", len, mtu);
1070
1071         /* For mSBC ALT 6 setting the host will send the packet at continuous
1072          * flow. As per core spec 5, vol 4, part B, table 2.1. For ALT setting
1073          * 6 the HCI PACKET INTERVAL should be 7.5ms for every usb packets.
1074          * To maintain the rate we send 63bytes of usb packets alternatively for
1075          * 7ms and 8ms to maintain the rate as 7.5ms.
1076          */
1077         if (data->usb_alt6_packet_flow) {
1078                 interval = 7;
1079                 data->usb_alt6_packet_flow = false;
1080         } else {
1081                 interval = 6;
1082                 data->usb_alt6_packet_flow = true;
1083         }
1084
1085         for (i = 0; i < interval; i++) {
1086                 urb->iso_frame_desc[i].offset = offset;
1087                 urb->iso_frame_desc[i].length = offset;
1088         }
1089
1090         if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1091                 urb->iso_frame_desc[i].offset = offset;
1092                 urb->iso_frame_desc[i].length = len;
1093                 i++;
1094         }
1095
1096         urb->number_of_packets = i;
1097 }
1098
1099 static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
1100 {
1101         int i, offset = 0;
1102
1103         BT_DBG("len %d mtu %d", len, mtu);
1104
1105         for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
1106                                         i++, offset += mtu, len -= mtu) {
1107                 urb->iso_frame_desc[i].offset = offset;
1108                 urb->iso_frame_desc[i].length = mtu;
1109         }
1110
1111         if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1112                 urb->iso_frame_desc[i].offset = offset;
1113                 urb->iso_frame_desc[i].length = len;
1114                 i++;
1115         }
1116
1117         urb->number_of_packets = i;
1118 }
1119
1120 static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
1121 {
1122         struct btusb_data *data = hci_get_drvdata(hdev);
1123         struct urb *urb;
1124         unsigned char *buf;
1125         unsigned int pipe;
1126         int err, size;
1127
1128         BT_DBG("%s", hdev->name);
1129
1130         if (!data->isoc_rx_ep)
1131                 return -ENODEV;
1132
1133         urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
1134         if (!urb)
1135                 return -ENOMEM;
1136
1137         size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
1138                                                 BTUSB_MAX_ISOC_FRAMES;
1139
1140         buf = kmalloc(size, mem_flags);
1141         if (!buf) {
1142                 usb_free_urb(urb);
1143                 return -ENOMEM;
1144         }
1145
1146         pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
1147
1148         usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
1149                          hdev, data->isoc_rx_ep->bInterval);
1150
1151         urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
1152
1153         __fill_isoc_descriptor(urb, size,
1154                                le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
1155
1156         usb_anchor_urb(urb, &data->isoc_anchor);
1157
1158         err = usb_submit_urb(urb, mem_flags);
1159         if (err < 0) {
1160                 if (err != -EPERM && err != -ENODEV)
1161                         bt_dev_err(hdev, "urb %p submission failed (%d)",
1162                                    urb, -err);
1163                 usb_unanchor_urb(urb);
1164         }
1165
1166         usb_free_urb(urb);
1167
1168         return err;
1169 }
1170
1171 static void btusb_diag_complete(struct urb *urb)
1172 {
1173         struct hci_dev *hdev = urb->context;
1174         struct btusb_data *data = hci_get_drvdata(hdev);
1175         int err;
1176
1177         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1178                urb->actual_length);
1179
1180         if (urb->status == 0) {
1181                 struct sk_buff *skb;
1182
1183                 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
1184                 if (skb) {
1185                         skb_put_data(skb, urb->transfer_buffer,
1186                                      urb->actual_length);
1187                         hci_recv_diag(hdev, skb);
1188                 }
1189         } else if (urb->status == -ENOENT) {
1190                 /* Avoid suspend failed when usb_kill_urb */
1191                 return;
1192         }
1193
1194         if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
1195                 return;
1196
1197         usb_anchor_urb(urb, &data->diag_anchor);
1198         usb_mark_last_busy(data->udev);
1199
1200         err = usb_submit_urb(urb, GFP_ATOMIC);
1201         if (err < 0) {
1202                 /* -EPERM: urb is being killed;
1203                  * -ENODEV: device got disconnected
1204                  */
1205                 if (err != -EPERM && err != -ENODEV)
1206                         bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1207                                    urb, -err);
1208                 usb_unanchor_urb(urb);
1209         }
1210 }
1211
1212 static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
1213 {
1214         struct btusb_data *data = hci_get_drvdata(hdev);
1215         struct urb *urb;
1216         unsigned char *buf;
1217         unsigned int pipe;
1218         int err, size = HCI_MAX_FRAME_SIZE;
1219
1220         BT_DBG("%s", hdev->name);
1221
1222         if (!data->diag_rx_ep)
1223                 return -ENODEV;
1224
1225         urb = usb_alloc_urb(0, mem_flags);
1226         if (!urb)
1227                 return -ENOMEM;
1228
1229         buf = kmalloc(size, mem_flags);
1230         if (!buf) {
1231                 usb_free_urb(urb);
1232                 return -ENOMEM;
1233         }
1234
1235         pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
1236
1237         usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1238                           btusb_diag_complete, hdev);
1239
1240         urb->transfer_flags |= URB_FREE_BUFFER;
1241
1242         usb_mark_last_busy(data->udev);
1243         usb_anchor_urb(urb, &data->diag_anchor);
1244
1245         err = usb_submit_urb(urb, mem_flags);
1246         if (err < 0) {
1247                 if (err != -EPERM && err != -ENODEV)
1248                         bt_dev_err(hdev, "urb %p submission failed (%d)",
1249                                    urb, -err);
1250                 usb_unanchor_urb(urb);
1251         }
1252
1253         usb_free_urb(urb);
1254
1255         return err;
1256 }
1257
1258 static void btusb_tx_complete(struct urb *urb)
1259 {
1260         struct sk_buff *skb = urb->context;
1261         struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1262         struct btusb_data *data = hci_get_drvdata(hdev);
1263         unsigned long flags;
1264
1265         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1266                urb->actual_length);
1267
1268         if (!test_bit(HCI_RUNNING, &hdev->flags))
1269                 goto done;
1270
1271         if (!urb->status)
1272                 hdev->stat.byte_tx += urb->transfer_buffer_length;
1273         else
1274                 hdev->stat.err_tx++;
1275
1276 done:
1277         spin_lock_irqsave(&data->txlock, flags);
1278         data->tx_in_flight--;
1279         spin_unlock_irqrestore(&data->txlock, flags);
1280
1281         kfree(urb->setup_packet);
1282
1283         kfree_skb(skb);
1284 }
1285
1286 static void btusb_isoc_tx_complete(struct urb *urb)
1287 {
1288         struct sk_buff *skb = urb->context;
1289         struct hci_dev *hdev = (struct hci_dev *)skb->dev;
1290
1291         BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1292                urb->actual_length);
1293
1294         if (!test_bit(HCI_RUNNING, &hdev->flags))
1295                 goto done;
1296
1297         if (!urb->status)
1298                 hdev->stat.byte_tx += urb->transfer_buffer_length;
1299         else
1300                 hdev->stat.err_tx++;
1301
1302 done:
1303         kfree(urb->setup_packet);
1304
1305         kfree_skb(skb);
1306 }
1307
1308 static int btusb_open(struct hci_dev *hdev)
1309 {
1310         struct btusb_data *data = hci_get_drvdata(hdev);
1311         int err;
1312
1313         BT_DBG("%s", hdev->name);
1314
1315         err = usb_autopm_get_interface(data->intf);
1316         if (err < 0)
1317                 return err;
1318
1319         /* Patching USB firmware files prior to starting any URBs of HCI path
1320          * It is more safe to use USB bulk channel for downloading USB patch
1321          */
1322         if (data->setup_on_usb) {
1323                 err = data->setup_on_usb(hdev);
1324                 if (err < 0)
1325                         goto setup_fail;
1326         }
1327
1328         data->intf->needs_remote_wakeup = 1;
1329
1330         /* Disable device remote wakeup when host is suspended
1331          * For Realtek chips, global suspend without
1332          * SET_FEATURE (DEVICE_REMOTE_WAKEUP) can save more power in device.
1333          */
1334         if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags))
1335                 device_wakeup_disable(&data->udev->dev);
1336
1337         if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
1338                 goto done;
1339
1340         err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
1341         if (err < 0)
1342                 goto failed;
1343
1344         err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1345         if (err < 0) {
1346                 usb_kill_anchored_urbs(&data->intr_anchor);
1347                 goto failed;
1348         }
1349
1350         set_bit(BTUSB_BULK_RUNNING, &data->flags);
1351         btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1352
1353         if (data->diag) {
1354                 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1355                         set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1356         }
1357
1358 done:
1359         usb_autopm_put_interface(data->intf);
1360         return 0;
1361
1362 failed:
1363         clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1364 setup_fail:
1365         usb_autopm_put_interface(data->intf);
1366         return err;
1367 }
1368
1369 static void btusb_stop_traffic(struct btusb_data *data)
1370 {
1371         usb_kill_anchored_urbs(&data->intr_anchor);
1372         usb_kill_anchored_urbs(&data->bulk_anchor);
1373         usb_kill_anchored_urbs(&data->isoc_anchor);
1374         usb_kill_anchored_urbs(&data->diag_anchor);
1375         usb_kill_anchored_urbs(&data->ctrl_anchor);
1376 }
1377
1378 static int btusb_close(struct hci_dev *hdev)
1379 {
1380         struct btusb_data *data = hci_get_drvdata(hdev);
1381         int err;
1382
1383         BT_DBG("%s", hdev->name);
1384
1385         cancel_work_sync(&data->work);
1386         cancel_work_sync(&data->waker);
1387
1388         clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1389         clear_bit(BTUSB_BULK_RUNNING, &data->flags);
1390         clear_bit(BTUSB_INTR_RUNNING, &data->flags);
1391         clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
1392
1393         btusb_stop_traffic(data);
1394         btusb_free_frags(data);
1395
1396         err = usb_autopm_get_interface(data->intf);
1397         if (err < 0)
1398                 goto failed;
1399
1400         data->intf->needs_remote_wakeup = 0;
1401
1402         /* Enable remote wake up for auto-suspend */
1403         if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags))
1404                 data->intf->needs_remote_wakeup = 1;
1405
1406         usb_autopm_put_interface(data->intf);
1407
1408 failed:
1409         usb_scuttle_anchored_urbs(&data->deferred);
1410         return 0;
1411 }
1412
1413 static int btusb_flush(struct hci_dev *hdev)
1414 {
1415         struct btusb_data *data = hci_get_drvdata(hdev);
1416
1417         BT_DBG("%s", hdev->name);
1418
1419         usb_kill_anchored_urbs(&data->tx_anchor);
1420         btusb_free_frags(data);
1421
1422         return 0;
1423 }
1424
1425 static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
1426 {
1427         struct btusb_data *data = hci_get_drvdata(hdev);
1428         struct usb_ctrlrequest *dr;
1429         struct urb *urb;
1430         unsigned int pipe;
1431
1432         urb = usb_alloc_urb(0, GFP_KERNEL);
1433         if (!urb)
1434                 return ERR_PTR(-ENOMEM);
1435
1436         dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1437         if (!dr) {
1438                 usb_free_urb(urb);
1439                 return ERR_PTR(-ENOMEM);
1440         }
1441
1442         dr->bRequestType = data->cmdreq_type;
1443         dr->bRequest     = data->cmdreq;
1444         dr->wIndex       = 0;
1445         dr->wValue       = 0;
1446         dr->wLength      = __cpu_to_le16(skb->len);
1447
1448         pipe = usb_sndctrlpipe(data->udev, 0x00);
1449
1450         usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
1451                              skb->data, skb->len, btusb_tx_complete, skb);
1452
1453         skb->dev = (void *)hdev;
1454
1455         return urb;
1456 }
1457
1458 static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1459 {
1460         struct btusb_data *data = hci_get_drvdata(hdev);
1461         struct urb *urb;
1462         unsigned int pipe;
1463
1464         if (!data->bulk_tx_ep)
1465                 return ERR_PTR(-ENODEV);
1466
1467         urb = usb_alloc_urb(0, GFP_KERNEL);
1468         if (!urb)
1469                 return ERR_PTR(-ENOMEM);
1470
1471         pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
1472
1473         usb_fill_bulk_urb(urb, data->udev, pipe,
1474                           skb->data, skb->len, btusb_tx_complete, skb);
1475
1476         skb->dev = (void *)hdev;
1477
1478         return urb;
1479 }
1480
1481 static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1482 {
1483         struct btusb_data *data = hci_get_drvdata(hdev);
1484         struct urb *urb;
1485         unsigned int pipe;
1486
1487         if (!data->isoc_tx_ep)
1488                 return ERR_PTR(-ENODEV);
1489
1490         urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1491         if (!urb)
1492                 return ERR_PTR(-ENOMEM);
1493
1494         pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
1495
1496         usb_fill_int_urb(urb, data->udev, pipe,
1497                          skb->data, skb->len, btusb_isoc_tx_complete,
1498                          skb, data->isoc_tx_ep->bInterval);
1499
1500         urb->transfer_flags  = URB_ISO_ASAP;
1501
1502         if (data->isoc_altsetting == 6)
1503                 __fill_isoc_descriptor_msbc(urb, skb->len,
1504                                             le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize),
1505                                             data);
1506         else
1507                 __fill_isoc_descriptor(urb, skb->len,
1508                                        le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
1509         skb->dev = (void *)hdev;
1510
1511         return urb;
1512 }
1513
1514 static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1515 {
1516         struct btusb_data *data = hci_get_drvdata(hdev);
1517         int err;
1518
1519         usb_anchor_urb(urb, &data->tx_anchor);
1520
1521         err = usb_submit_urb(urb, GFP_KERNEL);
1522         if (err < 0) {
1523                 if (err != -EPERM && err != -ENODEV)
1524                         bt_dev_err(hdev, "urb %p submission failed (%d)",
1525                                    urb, -err);
1526                 kfree(urb->setup_packet);
1527                 usb_unanchor_urb(urb);
1528         } else {
1529                 usb_mark_last_busy(data->udev);
1530         }
1531
1532         usb_free_urb(urb);
1533         return err;
1534 }
1535
1536 static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1537 {
1538         struct btusb_data *data = hci_get_drvdata(hdev);
1539         unsigned long flags;
1540         bool suspending;
1541
1542         spin_lock_irqsave(&data->txlock, flags);
1543         suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1544         if (!suspending)
1545                 data->tx_in_flight++;
1546         spin_unlock_irqrestore(&data->txlock, flags);
1547
1548         if (!suspending)
1549                 return submit_tx_urb(hdev, urb);
1550
1551         usb_anchor_urb(urb, &data->deferred);
1552         schedule_work(&data->waker);
1553
1554         usb_free_urb(urb);
1555         return 0;
1556 }
1557
1558 static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1559 {
1560         struct urb *urb;
1561
1562         BT_DBG("%s", hdev->name);
1563
1564         switch (hci_skb_pkt_type(skb)) {
1565         case HCI_COMMAND_PKT:
1566                 urb = alloc_ctrl_urb(hdev, skb);
1567                 if (IS_ERR(urb))
1568                         return PTR_ERR(urb);
1569
1570                 hdev->stat.cmd_tx++;
1571                 return submit_or_queue_tx_urb(hdev, urb);
1572
1573         case HCI_ACLDATA_PKT:
1574                 urb = alloc_bulk_urb(hdev, skb);
1575                 if (IS_ERR(urb))
1576                         return PTR_ERR(urb);
1577
1578                 hdev->stat.acl_tx++;
1579                 return submit_or_queue_tx_urb(hdev, urb);
1580
1581         case HCI_SCODATA_PKT:
1582                 if (hci_conn_num(hdev, SCO_LINK) < 1)
1583                         return -ENODEV;
1584
1585                 urb = alloc_isoc_urb(hdev, skb);
1586                 if (IS_ERR(urb))
1587                         return PTR_ERR(urb);
1588
1589                 hdev->stat.sco_tx++;
1590                 return submit_tx_urb(hdev, urb);
1591         }
1592
1593         return -EILSEQ;
1594 }
1595
1596 static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1597 {
1598         struct btusb_data *data = hci_get_drvdata(hdev);
1599
1600         BT_DBG("%s evt %d", hdev->name, evt);
1601
1602         if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1603                 data->sco_num = hci_conn_num(hdev, SCO_LINK);
1604                 data->air_mode = evt;
1605                 schedule_work(&data->work);
1606         }
1607 }
1608
1609 static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
1610 {
1611         struct btusb_data *data = hci_get_drvdata(hdev);
1612         struct usb_interface *intf = data->isoc;
1613         struct usb_endpoint_descriptor *ep_desc;
1614         int i, err;
1615
1616         if (!data->isoc)
1617                 return -ENODEV;
1618
1619         err = usb_set_interface(data->udev, data->isoc_ifnum, altsetting);
1620         if (err < 0) {
1621                 bt_dev_err(hdev, "setting interface failed (%d)", -err);
1622                 return err;
1623         }
1624
1625         data->isoc_altsetting = altsetting;
1626
1627         data->isoc_tx_ep = NULL;
1628         data->isoc_rx_ep = NULL;
1629
1630         for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1631                 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1632
1633                 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1634                         data->isoc_tx_ep = ep_desc;
1635                         continue;
1636                 }
1637
1638                 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1639                         data->isoc_rx_ep = ep_desc;
1640                         continue;
1641                 }
1642         }
1643
1644         if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1645                 bt_dev_err(hdev, "invalid SCO descriptors");
1646                 return -ENODEV;
1647         }
1648
1649         return 0;
1650 }
1651
1652 static int btusb_switch_alt_setting(struct hci_dev *hdev, int new_alts)
1653 {
1654         struct btusb_data *data = hci_get_drvdata(hdev);
1655         int err;
1656
1657         if (data->isoc_altsetting != new_alts) {
1658                 unsigned long flags;
1659
1660                 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1661                 usb_kill_anchored_urbs(&data->isoc_anchor);
1662
1663                 /* When isochronous alternate setting needs to be
1664                  * changed, because SCO connection has been added
1665                  * or removed, a packet fragment may be left in the
1666                  * reassembling state. This could lead to wrongly
1667                  * assembled fragments.
1668                  *
1669                  * Clear outstanding fragment when selecting a new
1670                  * alternate setting.
1671                  */
1672                 spin_lock_irqsave(&data->rxlock, flags);
1673                 kfree_skb(data->sco_skb);
1674                 data->sco_skb = NULL;
1675                 spin_unlock_irqrestore(&data->rxlock, flags);
1676
1677                 err = __set_isoc_interface(hdev, new_alts);
1678                 if (err < 0)
1679                         return err;
1680         }
1681
1682         if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1683                 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
1684                         clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1685                 else
1686                         btusb_submit_isoc_urb(hdev, GFP_KERNEL);
1687         }
1688
1689         return 0;
1690 }
1691
1692 static struct usb_host_interface *btusb_find_altsetting(struct btusb_data *data,
1693                                                         int alt)
1694 {
1695         struct usb_interface *intf = data->isoc;
1696         int i;
1697
1698         BT_DBG("Looking for Alt no :%d", alt);
1699
1700         if (!intf)
1701                 return NULL;
1702
1703         for (i = 0; i < intf->num_altsetting; i++) {
1704                 if (intf->altsetting[i].desc.bAlternateSetting == alt)
1705                         return &intf->altsetting[i];
1706         }
1707
1708         return NULL;
1709 }
1710
1711 static void btusb_work(struct work_struct *work)
1712 {
1713         struct btusb_data *data = container_of(work, struct btusb_data, work);
1714         struct hci_dev *hdev = data->hdev;
1715         int new_alts = 0;
1716         int err;
1717
1718         if (data->sco_num > 0) {
1719                 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
1720                         err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
1721                         if (err < 0) {
1722                                 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1723                                 usb_kill_anchored_urbs(&data->isoc_anchor);
1724                                 return;
1725                         }
1726
1727                         set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
1728                 }
1729
1730                 if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_CVSD) {
1731                         if (hdev->voice_setting & 0x0020) {
1732                                 static const int alts[3] = { 2, 4, 5 };
1733
1734                                 new_alts = alts[data->sco_num - 1];
1735                         } else {
1736                                 new_alts = data->sco_num;
1737                         }
1738                 } else if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_TRANSP) {
1739                         /* Check if Alt 6 is supported for Transparent audio */
1740                         if (btusb_find_altsetting(data, 6)) {
1741                                 data->usb_alt6_packet_flow = true;
1742                                 new_alts = 6;
1743                         } else if (test_bit(BTUSB_USE_ALT1_FOR_WBS, &data->flags)) {
1744                                 new_alts = 1;
1745                         } else {
1746                                 bt_dev_err(hdev, "Device does not support ALT setting 6");
1747                         }
1748                 }
1749
1750                 if (btusb_switch_alt_setting(hdev, new_alts) < 0)
1751                         bt_dev_err(hdev, "set USB alt:(%d) failed!", new_alts);
1752         } else {
1753                 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1754                 usb_kill_anchored_urbs(&data->isoc_anchor);
1755
1756                 __set_isoc_interface(hdev, 0);
1757                 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
1758                         usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
1759         }
1760 }
1761
1762 static void btusb_waker(struct work_struct *work)
1763 {
1764         struct btusb_data *data = container_of(work, struct btusb_data, waker);
1765         int err;
1766
1767         err = usb_autopm_get_interface(data->intf);
1768         if (err < 0)
1769                 return;
1770
1771         usb_autopm_put_interface(data->intf);
1772 }
1773
1774 static int btusb_setup_bcm92035(struct hci_dev *hdev)
1775 {
1776         struct sk_buff *skb;
1777         u8 val = 0x00;
1778
1779         BT_DBG("%s", hdev->name);
1780
1781         skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1782         if (IS_ERR(skb))
1783                 bt_dev_err(hdev, "BCM92035 command failed (%ld)", PTR_ERR(skb));
1784         else
1785                 kfree_skb(skb);
1786
1787         return 0;
1788 }
1789
1790 static int btusb_setup_csr(struct hci_dev *hdev)
1791 {
1792         struct hci_rp_read_local_version *rp;
1793         struct sk_buff *skb;
1794         bool is_fake = false;
1795
1796         BT_DBG("%s", hdev->name);
1797
1798         skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1799                              HCI_INIT_TIMEOUT);
1800         if (IS_ERR(skb)) {
1801                 int err = PTR_ERR(skb);
1802                 bt_dev_err(hdev, "CSR: Local version failed (%d)", err);
1803                 return err;
1804         }
1805
1806         if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1807                 bt_dev_err(hdev, "CSR: Local version length mismatch");
1808                 kfree_skb(skb);
1809                 return -EIO;
1810         }
1811
1812         rp = (struct hci_rp_read_local_version *)skb->data;
1813
1814         /* Detect a wide host of Chinese controllers that aren't CSR.
1815          *
1816          * Known fake bcdDevices: 0x0100, 0x0134, 0x1915, 0x2520, 0x7558, 0x8891
1817          *
1818          * The main thing they have in common is that these are really popular low-cost
1819          * options that support newer Bluetooth versions but rely on heavy VID/PID
1820          * squatting of this poor old Bluetooth 1.1 device. Even sold as such.
1821          *
1822          * We detect actual CSR devices by checking that the HCI manufacturer code
1823          * is Cambridge Silicon Radio (10) and ensuring that LMP sub-version and
1824          * HCI rev values always match. As they both store the firmware number.
1825          */
1826         if (le16_to_cpu(rp->manufacturer) != 10 ||
1827             le16_to_cpu(rp->hci_rev) != le16_to_cpu(rp->lmp_subver))
1828                 is_fake = true;
1829
1830         /* Known legit CSR firmware build numbers and their supported BT versions:
1831          * - 1.1 (0x1) -> 0x0073, 0x020d, 0x033c, 0x034e
1832          * - 1.2 (0x2) ->                 0x04d9, 0x0529
1833          * - 2.0 (0x3) ->         0x07a6, 0x07ad, 0x0c5c
1834          * - 2.1 (0x4) ->         0x149c, 0x1735, 0x1899 (0x1899 is a BlueCore4-External)
1835          * - 4.0 (0x6) ->         0x1d86, 0x2031, 0x22bb
1836          *
1837          * e.g. Real CSR dongles with LMP subversion 0x73 are old enough that
1838          *      support BT 1.1 only; so it's a dead giveaway when some
1839          *      third-party BT 4.0 dongle reuses it.
1840          */
1841         else if (le16_to_cpu(rp->lmp_subver) <= 0x034e &&
1842                  le16_to_cpu(rp->hci_ver) > BLUETOOTH_VER_1_1)
1843                 is_fake = true;
1844
1845         else if (le16_to_cpu(rp->lmp_subver) <= 0x0529 &&
1846                  le16_to_cpu(rp->hci_ver) > BLUETOOTH_VER_1_2)
1847                 is_fake = true;
1848
1849         else if (le16_to_cpu(rp->lmp_subver) <= 0x0c5c &&
1850                  le16_to_cpu(rp->hci_ver) > BLUETOOTH_VER_2_0)
1851                 is_fake = true;
1852
1853         else if (le16_to_cpu(rp->lmp_subver) <= 0x1899 &&
1854                  le16_to_cpu(rp->hci_ver) > BLUETOOTH_VER_2_1)
1855                 is_fake = true;
1856
1857         else if (le16_to_cpu(rp->lmp_subver) <= 0x22bb &&
1858                  le16_to_cpu(rp->hci_ver) > BLUETOOTH_VER_4_0)
1859                 is_fake = true;
1860
1861         if (is_fake) {
1862                 bt_dev_warn(hdev, "CSR: Unbranded CSR clone detected; adding workarounds...");
1863
1864                 /* Generally these clones have big discrepancies between
1865                  * advertised features and what's actually supported.
1866                  * Probably will need to be expanded in the future;
1867                  * without these the controller will lock up.
1868                  */
1869                 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
1870                 set_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks);
1871
1872                 /* Clear the reset quirk since this is not an actual
1873                  * early Bluetooth 1.1 device from CSR.
1874                  */
1875                 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1876                 clear_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
1877         }
1878
1879         kfree_skb(skb);
1880
1881         return 0;
1882 }
1883
1884 static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
1885                                                        struct intel_version *ver)
1886 {
1887         const struct firmware *fw;
1888         char fwname[64];
1889         int ret;
1890
1891         snprintf(fwname, sizeof(fwname),
1892                  "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1893                  ver->hw_platform, ver->hw_variant, ver->hw_revision,
1894                  ver->fw_variant,  ver->fw_revision, ver->fw_build_num,
1895                  ver->fw_build_ww, ver->fw_build_yy);
1896
1897         ret = request_firmware(&fw, fwname, &hdev->dev);
1898         if (ret < 0) {
1899                 if (ret == -EINVAL) {
1900                         bt_dev_err(hdev, "Intel firmware file request failed (%d)",
1901                                    ret);
1902                         return NULL;
1903                 }
1904
1905                 bt_dev_err(hdev, "failed to open Intel firmware file: %s (%d)",
1906                            fwname, ret);
1907
1908                 /* If the correct firmware patch file is not found, use the
1909                  * default firmware patch file instead
1910                  */
1911                 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1912                          ver->hw_platform, ver->hw_variant);
1913                 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1914                         bt_dev_err(hdev, "failed to open default fw file: %s",
1915                                    fwname);
1916                         return NULL;
1917                 }
1918         }
1919
1920         bt_dev_info(hdev, "Intel Bluetooth firmware file: %s", fwname);
1921
1922         return fw;
1923 }
1924
1925 static int btusb_setup_intel_patching(struct hci_dev *hdev,
1926                                       const struct firmware *fw,
1927                                       const u8 **fw_ptr, int *disable_patch)
1928 {
1929         struct sk_buff *skb;
1930         struct hci_command_hdr *cmd;
1931         const u8 *cmd_param;
1932         struct hci_event_hdr *evt = NULL;
1933         const u8 *evt_param = NULL;
1934         int remain = fw->size - (*fw_ptr - fw->data);
1935
1936         /* The first byte indicates the types of the patch command or event.
1937          * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1938          * in the current firmware buffer doesn't start with 0x01 or
1939          * the size of remain buffer is smaller than HCI command header,
1940          * the firmware file is corrupted and it should stop the patching
1941          * process.
1942          */
1943         if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1944                 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd read");
1945                 return -EINVAL;
1946         }
1947         (*fw_ptr)++;
1948         remain--;
1949
1950         cmd = (struct hci_command_hdr *)(*fw_ptr);
1951         *fw_ptr += sizeof(*cmd);
1952         remain -= sizeof(*cmd);
1953
1954         /* Ensure that the remain firmware data is long enough than the length
1955          * of command parameter. If not, the firmware file is corrupted.
1956          */
1957         if (remain < cmd->plen) {
1958                 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd len");
1959                 return -EFAULT;
1960         }
1961
1962         /* If there is a command that loads a patch in the firmware
1963          * file, then enable the patch upon success, otherwise just
1964          * disable the manufacturer mode, for example patch activation
1965          * is not required when the default firmware patch file is used
1966          * because there are no patch data to load.
1967          */
1968         if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1969                 *disable_patch = 0;
1970
1971         cmd_param = *fw_ptr;
1972         *fw_ptr += cmd->plen;
1973         remain -= cmd->plen;
1974
1975         /* This reads the expected events when the above command is sent to the
1976          * device. Some vendor commands expects more than one events, for
1977          * example command status event followed by vendor specific event.
1978          * For this case, it only keeps the last expected event. so the command
1979          * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1980          * last expected event.
1981          */
1982         while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1983                 (*fw_ptr)++;
1984                 remain--;
1985
1986                 evt = (struct hci_event_hdr *)(*fw_ptr);
1987                 *fw_ptr += sizeof(*evt);
1988                 remain -= sizeof(*evt);
1989
1990                 if (remain < evt->plen) {
1991                         bt_dev_err(hdev, "Intel fw corrupted: invalid evt len");
1992                         return -EFAULT;
1993                 }
1994
1995                 evt_param = *fw_ptr;
1996                 *fw_ptr += evt->plen;
1997                 remain -= evt->plen;
1998         }
1999
2000         /* Every HCI commands in the firmware file has its correspond event.
2001          * If event is not found or remain is smaller than zero, the firmware
2002          * file is corrupted.
2003          */
2004         if (!evt || !evt_param || remain < 0) {
2005                 bt_dev_err(hdev, "Intel fw corrupted: invalid evt read");
2006                 return -EFAULT;
2007         }
2008
2009         skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
2010                                 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
2011         if (IS_ERR(skb)) {
2012                 bt_dev_err(hdev, "sending Intel patch command (0x%4.4x) failed (%ld)",
2013                            cmd->opcode, PTR_ERR(skb));
2014                 return PTR_ERR(skb);
2015         }
2016
2017         /* It ensures that the returned event matches the event data read from
2018          * the firmware file. At fist, it checks the length and then
2019          * the contents of the event.
2020          */
2021         if (skb->len != evt->plen) {
2022                 bt_dev_err(hdev, "mismatch event length (opcode 0x%4.4x)",
2023                            le16_to_cpu(cmd->opcode));
2024                 kfree_skb(skb);
2025                 return -EFAULT;
2026         }
2027
2028         if (memcmp(skb->data, evt_param, evt->plen)) {
2029                 bt_dev_err(hdev, "mismatch event parameter (opcode 0x%4.4x)",
2030                            le16_to_cpu(cmd->opcode));
2031                 kfree_skb(skb);
2032                 return -EFAULT;
2033         }
2034         kfree_skb(skb);
2035
2036         return 0;
2037 }
2038
2039 static int btusb_setup_intel(struct hci_dev *hdev)
2040 {
2041         struct sk_buff *skb;
2042         const struct firmware *fw;
2043         const u8 *fw_ptr;
2044         int disable_patch, err;
2045         struct intel_version ver;
2046
2047         BT_DBG("%s", hdev->name);
2048
2049         /* The controller has a bug with the first HCI command sent to it
2050          * returning number of completed commands as zero. This would stall the
2051          * command processing in the Bluetooth core.
2052          *
2053          * As a workaround, send HCI Reset command first which will reset the
2054          * number of completed commands and allow normal command processing
2055          * from now on.
2056          */
2057         skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2058         if (IS_ERR(skb)) {
2059                 bt_dev_err(hdev, "sending initial HCI reset command failed (%ld)",
2060                            PTR_ERR(skb));
2061                 return PTR_ERR(skb);
2062         }
2063         kfree_skb(skb);
2064
2065         /* Read Intel specific controller version first to allow selection of
2066          * which firmware file to load.
2067          *
2068          * The returned information are hardware variant and revision plus
2069          * firmware variant, revision and build number.
2070          */
2071         err = btintel_read_version(hdev, &ver);
2072         if (err)
2073                 return err;
2074
2075         bt_dev_info(hdev, "read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
2076                     ver.hw_platform, ver.hw_variant, ver.hw_revision,
2077                     ver.fw_variant,  ver.fw_revision, ver.fw_build_num,
2078                     ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
2079
2080         /* fw_patch_num indicates the version of patch the device currently
2081          * have. If there is no patch data in the device, it is always 0x00.
2082          * So, if it is other than 0x00, no need to patch the device again.
2083          */
2084         if (ver.fw_patch_num) {
2085                 bt_dev_info(hdev, "Intel device is already patched. "
2086                             "patch num: %02x", ver.fw_patch_num);
2087                 goto complete;
2088         }
2089
2090         /* Opens the firmware patch file based on the firmware version read
2091          * from the controller. If it fails to open the matching firmware
2092          * patch file, it tries to open the default firmware patch file.
2093          * If no patch file is found, allow the device to operate without
2094          * a patch.
2095          */
2096         fw = btusb_setup_intel_get_fw(hdev, &ver);
2097         if (!fw)
2098                 goto complete;
2099         fw_ptr = fw->data;
2100
2101         /* Enable the manufacturer mode of the controller.
2102          * Only while this mode is enabled, the driver can download the
2103          * firmware patch data and configuration parameters.
2104          */
2105         err = btintel_enter_mfg(hdev);
2106         if (err) {
2107                 release_firmware(fw);
2108                 return err;
2109         }
2110
2111         disable_patch = 1;
2112
2113         /* The firmware data file consists of list of Intel specific HCI
2114          * commands and its expected events. The first byte indicates the
2115          * type of the message, either HCI command or HCI event.
2116          *
2117          * It reads the command and its expected event from the firmware file,
2118          * and send to the controller. Once __hci_cmd_sync_ev() returns,
2119          * the returned event is compared with the event read from the firmware
2120          * file and it will continue until all the messages are downloaded to
2121          * the controller.
2122          *
2123          * Once the firmware patching is completed successfully,
2124          * the manufacturer mode is disabled with reset and activating the
2125          * downloaded patch.
2126          *
2127          * If the firmware patching fails, the manufacturer mode is
2128          * disabled with reset and deactivating the patch.
2129          *
2130          * If the default patch file is used, no reset is done when disabling
2131          * the manufacturer.
2132          */
2133         while (fw->size > fw_ptr - fw->data) {
2134                 int ret;
2135
2136                 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
2137                                                  &disable_patch);
2138                 if (ret < 0)
2139                         goto exit_mfg_deactivate;
2140         }
2141
2142         release_firmware(fw);
2143
2144         if (disable_patch)
2145                 goto exit_mfg_disable;
2146
2147         /* Patching completed successfully and disable the manufacturer mode
2148          * with reset and activate the downloaded firmware patches.
2149          */
2150         err = btintel_exit_mfg(hdev, true, true);
2151         if (err)
2152                 return err;
2153
2154         /* Need build number for downloaded fw patches in
2155          * every power-on boot
2156          */
2157        err = btintel_read_version(hdev, &ver);
2158        if (err)
2159                return err;
2160        bt_dev_info(hdev, "Intel BT fw patch 0x%02x completed & activated",
2161                    ver.fw_patch_num);
2162
2163         goto complete;
2164
2165 exit_mfg_disable:
2166         /* Disable the manufacturer mode without reset */
2167         err = btintel_exit_mfg(hdev, false, false);
2168         if (err)
2169                 return err;
2170
2171         bt_dev_info(hdev, "Intel firmware patch completed");
2172
2173         goto complete;
2174
2175 exit_mfg_deactivate:
2176         release_firmware(fw);
2177
2178         /* Patching failed. Disable the manufacturer mode with reset and
2179          * deactivate the downloaded firmware patches.
2180          */
2181         err = btintel_exit_mfg(hdev, true, false);
2182         if (err)
2183                 return err;
2184
2185         bt_dev_info(hdev, "Intel firmware patch completed and deactivated");
2186
2187 complete:
2188         /* Set the event mask for Intel specific vendor events. This enables
2189          * a few extra events that are useful during general operation.
2190          */
2191         btintel_set_event_mask_mfg(hdev, false);
2192
2193         btintel_check_bdaddr(hdev);
2194         return 0;
2195 }
2196
2197 static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
2198 {
2199         struct sk_buff *skb;
2200         struct hci_event_hdr *hdr;
2201         struct hci_ev_cmd_complete *evt;
2202
2203         skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_KERNEL);
2204         if (!skb)
2205                 return -ENOMEM;
2206
2207         hdr = skb_put(skb, sizeof(*hdr));
2208         hdr->evt = HCI_EV_CMD_COMPLETE;
2209         hdr->plen = sizeof(*evt) + 1;
2210
2211         evt = skb_put(skb, sizeof(*evt));
2212         evt->ncmd = 0x01;
2213         evt->opcode = cpu_to_le16(opcode);
2214
2215         skb_put_u8(skb, 0x00);
2216
2217         hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
2218
2219         return hci_recv_frame(hdev, skb);
2220 }
2221
2222 static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
2223                                  int count)
2224 {
2225         /* When the device is in bootloader mode, then it can send
2226          * events via the bulk endpoint. These events are treated the
2227          * same way as the ones received from the interrupt endpoint.
2228          */
2229         if (test_bit(BTUSB_BOOTLOADER, &data->flags))
2230                 return btusb_recv_intr(data, buffer, count);
2231
2232         return btusb_recv_bulk(data, buffer, count);
2233 }
2234
2235 static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
2236                                unsigned int len)
2237 {
2238         const struct intel_bootup *evt = ptr;
2239
2240         if (len != sizeof(*evt))
2241                 return;
2242
2243         if (test_and_clear_bit(BTUSB_BOOTING, &data->flags))
2244                 wake_up_bit(&data->flags, BTUSB_BOOTING);
2245 }
2246
2247 static void btusb_intel_secure_send_result(struct btusb_data *data,
2248                                            const void *ptr, unsigned int len)
2249 {
2250         const struct intel_secure_send_result *evt = ptr;
2251
2252         if (len != sizeof(*evt))
2253                 return;
2254
2255         if (evt->result)
2256                 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
2257
2258         if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
2259             test_bit(BTUSB_FIRMWARE_LOADED, &data->flags))
2260                 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
2261 }
2262
2263 static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
2264 {
2265         struct btusb_data *data = hci_get_drvdata(hdev);
2266
2267         if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2268                 struct hci_event_hdr *hdr = (void *)skb->data;
2269
2270                 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
2271                     hdr->plen > 0) {
2272                         const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
2273                         unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
2274
2275                         switch (skb->data[2]) {
2276                         case 0x02:
2277                                 /* When switching to the operational firmware
2278                                  * the device sends a vendor specific event
2279                                  * indicating that the bootup completed.
2280                                  */
2281                                 btusb_intel_bootup(data, ptr, len);
2282                                 break;
2283                         case 0x06:
2284                                 /* When the firmware loading completes the
2285                                  * device sends out a vendor specific event
2286                                  * indicating the result of the firmware
2287                                  * loading.
2288                                  */
2289                                 btusb_intel_secure_send_result(data, ptr, len);
2290                                 break;
2291                         }
2292                 }
2293         }
2294
2295         return hci_recv_frame(hdev, skb);
2296 }
2297
2298 static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
2299 {
2300         struct btusb_data *data = hci_get_drvdata(hdev);
2301         struct urb *urb;
2302
2303         BT_DBG("%s", hdev->name);
2304
2305         switch (hci_skb_pkt_type(skb)) {
2306         case HCI_COMMAND_PKT:
2307                 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2308                         struct hci_command_hdr *cmd = (void *)skb->data;
2309                         __u16 opcode = le16_to_cpu(cmd->opcode);
2310
2311                         /* When in bootloader mode and the command 0xfc09
2312                          * is received, it needs to be send down the
2313                          * bulk endpoint. So allocate a bulk URB instead.
2314                          */
2315                         if (opcode == 0xfc09)
2316                                 urb = alloc_bulk_urb(hdev, skb);
2317                         else
2318                                 urb = alloc_ctrl_urb(hdev, skb);
2319
2320                         /* When the 0xfc01 command is issued to boot into
2321                          * the operational firmware, it will actually not
2322                          * send a command complete event. To keep the flow
2323                          * control working inject that event here.
2324                          */
2325                         if (opcode == 0xfc01)
2326                                 inject_cmd_complete(hdev, opcode);
2327                 } else {
2328                         urb = alloc_ctrl_urb(hdev, skb);
2329                 }
2330                 if (IS_ERR(urb))
2331                         return PTR_ERR(urb);
2332
2333                 hdev->stat.cmd_tx++;
2334                 return submit_or_queue_tx_urb(hdev, urb);
2335
2336         case HCI_ACLDATA_PKT:
2337                 urb = alloc_bulk_urb(hdev, skb);
2338                 if (IS_ERR(urb))
2339                         return PTR_ERR(urb);
2340
2341                 hdev->stat.acl_tx++;
2342                 return submit_or_queue_tx_urb(hdev, urb);
2343
2344         case HCI_SCODATA_PKT:
2345                 if (hci_conn_num(hdev, SCO_LINK) < 1)
2346                         return -ENODEV;
2347
2348                 urb = alloc_isoc_urb(hdev, skb);
2349                 if (IS_ERR(urb))
2350                         return PTR_ERR(urb);
2351
2352                 hdev->stat.sco_tx++;
2353                 return submit_tx_urb(hdev, urb);
2354         }
2355
2356         return -EILSEQ;
2357 }
2358
2359 static bool btusb_setup_intel_new_get_fw_name(struct intel_version *ver,
2360                                              struct intel_boot_params *params,
2361                                              char *fw_name, size_t len,
2362                                              const char *suffix)
2363 {
2364         switch (ver->hw_variant) {
2365         case 0x0b:      /* SfP */
2366         case 0x0c:      /* WsP */
2367                 snprintf(fw_name, len, "intel/ibt-%u-%u.%s",
2368                         le16_to_cpu(ver->hw_variant),
2369                         le16_to_cpu(params->dev_revid),
2370                         suffix);
2371                 break;
2372         case 0x11:      /* JfP */
2373         case 0x12:      /* ThP */
2374         case 0x13:      /* HrP */
2375         case 0x14:      /* CcP */
2376                 snprintf(fw_name, len, "intel/ibt-%u-%u-%u.%s",
2377                         le16_to_cpu(ver->hw_variant),
2378                         le16_to_cpu(ver->hw_revision),
2379                         le16_to_cpu(ver->fw_revision),
2380                         suffix);
2381                 break;
2382         default:
2383                 return false;
2384         }
2385         return true;
2386 }
2387
2388 static void btusb_setup_intel_newgen_get_fw_name(const struct intel_version_tlv *ver_tlv,
2389                                                  char *fw_name, size_t len,
2390                                                  const char *suffix)
2391 {
2392         /* The firmware file name for new generation controllers will be
2393          * ibt-<cnvi_top type+cnvi_top step>-<cnvr_top type+cnvr_top step>
2394          */
2395         snprintf(fw_name, len, "intel/ibt-%04x-%04x.%s",
2396                  INTEL_CNVX_TOP_PACK_SWAB(INTEL_CNVX_TOP_TYPE(ver_tlv->cnvi_top),
2397                                           INTEL_CNVX_TOP_STEP(ver_tlv->cnvi_top)),
2398                  INTEL_CNVX_TOP_PACK_SWAB(INTEL_CNVX_TOP_TYPE(ver_tlv->cnvr_top),
2399                                           INTEL_CNVX_TOP_STEP(ver_tlv->cnvr_top)),
2400                  suffix);
2401 }
2402
2403 static int btusb_intel_download_firmware_newgen(struct hci_dev *hdev,
2404                                                 struct intel_version_tlv *ver,
2405                                                 u32 *boot_param)
2406 {
2407         const struct firmware *fw;
2408         char fwname[64];
2409         int err;
2410         struct btusb_data *data = hci_get_drvdata(hdev);
2411
2412         if (!ver || !boot_param)
2413                 return -EINVAL;
2414
2415         /* The hardware platform number has a fixed value of 0x37 and
2416          * for now only accept this single value.
2417          */
2418         if (INTEL_HW_PLATFORM(ver->cnvi_bt) != 0x37) {
2419                 bt_dev_err(hdev, "Unsupported Intel hardware platform (0x%2x)",
2420                            INTEL_HW_PLATFORM(ver->cnvi_bt));
2421                 return -EINVAL;
2422         }
2423
2424         /* The firmware variant determines if the device is in bootloader
2425          * mode or is running operational firmware. The value 0x03 identifies
2426          * the bootloader and the value 0x23 identifies the operational
2427          * firmware.
2428          *
2429          * When the operational firmware is already present, then only
2430          * the check for valid Bluetooth device address is needed. This
2431          * determines if the device will be added as configured or
2432          * unconfigured controller.
2433          *
2434          * It is not possible to use the Secure Boot Parameters in this
2435          * case since that command is only available in bootloader mode.
2436          */
2437         if (ver->img_type == 0x03) {
2438                 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2439                 btintel_check_bdaddr(hdev);
2440                 return 0;
2441         }
2442
2443         /* Check for supported iBT hardware variants of this firmware
2444          * loading method.
2445          *
2446          * This check has been put in place to ensure correct forward
2447          * compatibility options when newer hardware variants come along.
2448          */
2449         switch (INTEL_HW_VARIANT(ver->cnvi_bt)) {
2450         case 0x17:      /* TyP */
2451         case 0x18:      /* Slr */
2452         case 0x19:      /* Slr-F */
2453                 break;
2454         default:
2455                 bt_dev_err(hdev, "Unsupported Intel hardware variant (0x%x)",
2456                            INTEL_HW_VARIANT(ver->cnvi_bt));
2457                 return -EINVAL;
2458         }
2459
2460         /* If the device is not in bootloader mode, then the only possible
2461          * choice is to return an error and abort the device initialization.
2462          */
2463         if (ver->img_type != 0x01) {
2464                 bt_dev_err(hdev, "Unsupported Intel firmware variant (0x%x)",
2465                            ver->img_type);
2466                 return -ENODEV;
2467         }
2468
2469         /* It is required that every single firmware fragment is acknowledged
2470          * with a command complete event. If the boot parameters indicate
2471          * that this bootloader does not send them, then abort the setup.
2472          */
2473         if (ver->limited_cce != 0x00) {
2474                 bt_dev_err(hdev, "Unsupported Intel firmware loading method (0x%x)",
2475                            ver->limited_cce);
2476                 return -EINVAL;
2477         }
2478
2479         /* Secure boot engine type should be either 1 (ECDSA) or 0 (RSA) */
2480         if (ver->sbe_type > 0x01) {
2481                 bt_dev_err(hdev, "Unsupported Intel secure boot engine type (0x%x)",
2482                            ver->sbe_type);
2483                 return -EINVAL;
2484         }
2485
2486         /* If the OTP has no valid Bluetooth device address, then there will
2487          * also be no valid address for the operational firmware.
2488          */
2489         if (!bacmp(&ver->otp_bd_addr, BDADDR_ANY)) {
2490                 bt_dev_info(hdev, "No device address configured");
2491                 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2492         }
2493
2494         btusb_setup_intel_newgen_get_fw_name(ver, fwname, sizeof(fwname), "sfi");
2495         err = request_firmware(&fw, fwname, &hdev->dev);
2496         if (err < 0) {
2497                 bt_dev_err(hdev, "Failed to load Intel firmware file (%d)", err);
2498                 return err;
2499         }
2500
2501         bt_dev_info(hdev, "Found device firmware: %s", fwname);
2502
2503         if (fw->size < 644) {
2504                 bt_dev_err(hdev, "Invalid size of firmware file (%zu)",
2505                            fw->size);
2506                 err = -EBADF;
2507                 goto done;
2508         }
2509
2510         set_bit(BTUSB_DOWNLOADING, &data->flags);
2511
2512         /* Start firmware downloading and get boot parameter */
2513         err = btintel_download_firmware_newgen(hdev, fw, boot_param,
2514                                                INTEL_HW_VARIANT(ver->cnvi_bt),
2515                                                ver->sbe_type);
2516         if (err < 0) {
2517                 /* When FW download fails, send Intel Reset to retry
2518                  * FW download.
2519                  */
2520                 btintel_reset_to_bootloader(hdev);
2521                 goto done;
2522         }
2523         set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2524
2525         bt_dev_info(hdev, "Waiting for firmware download to complete");
2526
2527         /* Before switching the device into operational mode and with that
2528          * booting the loaded firmware, wait for the bootloader notification
2529          * that all fragments have been successfully received.
2530          *
2531          * When the event processing receives the notification, then the
2532          * BTUSB_DOWNLOADING flag will be cleared.
2533          *
2534          * The firmware loading should not take longer than 5 seconds
2535          * and thus just timeout if that happens and fail the setup
2536          * of this device.
2537          */
2538         err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2539                                   TASK_INTERRUPTIBLE,
2540                                   msecs_to_jiffies(5000));
2541         if (err == -EINTR) {
2542                 bt_dev_err(hdev, "Firmware loading interrupted");
2543                 goto done;
2544         }
2545
2546         if (err) {
2547                 bt_dev_err(hdev, "Firmware loading timeout");
2548                 err = -ETIMEDOUT;
2549                 btintel_reset_to_bootloader(hdev);
2550                 goto done;
2551         }
2552
2553         if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2554                 bt_dev_err(hdev, "Firmware loading failed");
2555                 err = -ENOEXEC;
2556                 goto done;
2557         }
2558
2559 done:
2560         release_firmware(fw);
2561         return err;
2562 }
2563
2564 static int btusb_intel_download_firmware(struct hci_dev *hdev,
2565                                          struct intel_version *ver,
2566                                          struct intel_boot_params *params,
2567                                          u32 *boot_param)
2568 {
2569         const struct firmware *fw;
2570         char fwname[64];
2571         int err;
2572         struct btusb_data *data = hci_get_drvdata(hdev);
2573
2574         if (!ver || !params)
2575                 return -EINVAL;
2576
2577         /* The hardware platform number has a fixed value of 0x37 and
2578          * for now only accept this single value.
2579          */
2580         if (ver->hw_platform != 0x37) {
2581                 bt_dev_err(hdev, "Unsupported Intel hardware platform (%u)",
2582                            ver->hw_platform);
2583                 return -EINVAL;
2584         }
2585
2586         /* Check for supported iBT hardware variants of this firmware
2587          * loading method.
2588          *
2589          * This check has been put in place to ensure correct forward
2590          * compatibility options when newer hardware variants come along.
2591          */
2592         switch (ver->hw_variant) {
2593         case 0x0b:      /* SfP */
2594         case 0x0c:      /* WsP */
2595         case 0x11:      /* JfP */
2596         case 0x12:      /* ThP */
2597         case 0x13:      /* HrP */
2598         case 0x14:      /* CcP */
2599                 break;
2600         default:
2601                 bt_dev_err(hdev, "Unsupported Intel hardware variant (%u)",
2602                            ver->hw_variant);
2603                 return -EINVAL;
2604         }
2605
2606         btintel_version_info(hdev, ver);
2607
2608         /* The firmware variant determines if the device is in bootloader
2609          * mode or is running operational firmware. The value 0x06 identifies
2610          * the bootloader and the value 0x23 identifies the operational
2611          * firmware.
2612          *
2613          * When the operational firmware is already present, then only
2614          * the check for valid Bluetooth device address is needed. This
2615          * determines if the device will be added as configured or
2616          * unconfigured controller.
2617          *
2618          * It is not possible to use the Secure Boot Parameters in this
2619          * case since that command is only available in bootloader mode.
2620          */
2621         if (ver->fw_variant == 0x23) {
2622                 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2623                 btintel_check_bdaddr(hdev);
2624                 return 0;
2625         }
2626
2627         /* If the device is not in bootloader mode, then the only possible
2628          * choice is to return an error and abort the device initialization.
2629          */
2630         if (ver->fw_variant != 0x06) {
2631                 bt_dev_err(hdev, "Unsupported Intel firmware variant (%u)",
2632                            ver->fw_variant);
2633                 return -ENODEV;
2634         }
2635
2636         /* Read the secure boot parameters to identify the operating
2637          * details of the bootloader.
2638          */
2639         err = btintel_read_boot_params(hdev, params);
2640         if (err)
2641                 return err;
2642
2643         /* It is required that every single firmware fragment is acknowledged
2644          * with a command complete event. If the boot parameters indicate
2645          * that this bootloader does not send them, then abort the setup.
2646          */
2647         if (params->limited_cce != 0x00) {
2648                 bt_dev_err(hdev, "Unsupported Intel firmware loading method (%u)",
2649                            params->limited_cce);
2650                 return -EINVAL;
2651         }
2652
2653         /* If the OTP has no valid Bluetooth device address, then there will
2654          * also be no valid address for the operational firmware.
2655          */
2656         if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2657                 bt_dev_info(hdev, "No device address configured");
2658                 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2659         }
2660
2661         /* With this Intel bootloader only the hardware variant and device
2662          * revision information are used to select the right firmware for SfP
2663          * and WsP.
2664          *
2665          * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2666          *
2667          * Currently the supported hardware variants are:
2668          *   11 (0x0b) for iBT3.0 (LnP/SfP)
2669          *   12 (0x0c) for iBT3.5 (WsP)
2670          *
2671          * For ThP/JfP and for future SKU's, the FW name varies based on HW
2672          * variant, HW revision and FW revision, as these are dependent on CNVi
2673          * and RF Combination.
2674          *
2675          *   17 (0x11) for iBT3.5 (JfP)
2676          *   18 (0x12) for iBT3.5 (ThP)
2677          *
2678          * The firmware file name for these will be
2679          * ibt-<hw_variant>-<hw_revision>-<fw_revision>.sfi.
2680          *
2681          */
2682         err = btusb_setup_intel_new_get_fw_name(ver, params, fwname,
2683                                                 sizeof(fwname), "sfi");
2684         if (!err) {
2685                 bt_dev_err(hdev, "Unsupported Intel firmware naming");
2686                 return -EINVAL;
2687         }
2688
2689         err = request_firmware(&fw, fwname, &hdev->dev);
2690         if (err < 0) {
2691                 bt_dev_err(hdev, "Failed to load Intel firmware file (%d)", err);
2692                 return err;
2693         }
2694
2695         bt_dev_info(hdev, "Found device firmware: %s", fwname);
2696
2697         if (fw->size < 644) {
2698                 bt_dev_err(hdev, "Invalid size of firmware file (%zu)",
2699                            fw->size);
2700                 err = -EBADF;
2701                 goto done;
2702         }
2703
2704         set_bit(BTUSB_DOWNLOADING, &data->flags);
2705
2706         /* Start firmware downloading and get boot parameter */
2707         err = btintel_download_firmware(hdev, fw, boot_param);
2708         if (err < 0) {
2709                 /* When FW download fails, send Intel Reset to retry
2710                  * FW download.
2711                  */
2712                 btintel_reset_to_bootloader(hdev);
2713                 goto done;
2714         }
2715         set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2716
2717         bt_dev_info(hdev, "Waiting for firmware download to complete");
2718
2719         /* Before switching the device into operational mode and with that
2720          * booting the loaded firmware, wait for the bootloader notification
2721          * that all fragments have been successfully received.
2722          *
2723          * When the event processing receives the notification, then the
2724          * BTUSB_DOWNLOADING flag will be cleared.
2725          *
2726          * The firmware loading should not take longer than 5 seconds
2727          * and thus just timeout if that happens and fail the setup
2728          * of this device.
2729          */
2730         err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2731                                   TASK_INTERRUPTIBLE,
2732                                   msecs_to_jiffies(5000));
2733         if (err == -EINTR) {
2734                 bt_dev_err(hdev, "Firmware loading interrupted");
2735                 goto done;
2736         }
2737
2738         if (err) {
2739                 bt_dev_err(hdev, "Firmware loading timeout");
2740                 err = -ETIMEDOUT;
2741                 btintel_reset_to_bootloader(hdev);
2742                 goto done;
2743         }
2744
2745         if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2746                 bt_dev_err(hdev, "Firmware loading failed");
2747                 err = -ENOEXEC;
2748                 goto done;
2749         }
2750
2751 done:
2752         release_firmware(fw);
2753         return err;
2754 }
2755
2756 static int btusb_setup_intel_new(struct hci_dev *hdev)
2757 {
2758         struct btusb_data *data = hci_get_drvdata(hdev);
2759         struct intel_version ver;
2760         struct intel_boot_params params;
2761         u32 boot_param;
2762         char ddcname[64];
2763         ktime_t calltime, delta, rettime;
2764         unsigned long long duration;
2765         int err;
2766         struct intel_debug_features features;
2767
2768         BT_DBG("%s", hdev->name);
2769
2770         /* Set the default boot parameter to 0x0 and it is updated to
2771          * SKU specific boot parameter after reading Intel_Write_Boot_Params
2772          * command while downloading the firmware.
2773          */
2774         boot_param = 0x00000000;
2775
2776         calltime = ktime_get();
2777
2778         /* Read the Intel version information to determine if the device
2779          * is in bootloader mode or if it already has operational firmware
2780          * loaded.
2781          */
2782         err = btintel_read_version(hdev, &ver);
2783         if (err) {
2784                 bt_dev_err(hdev, "Intel Read version failed (%d)", err);
2785                 btintel_reset_to_bootloader(hdev);
2786                 return err;
2787         }
2788
2789         err = btusb_intel_download_firmware(hdev, &ver, &params, &boot_param);
2790         if (err)
2791                 return err;
2792
2793         /* controller is already having an operational firmware */
2794         if (ver.fw_variant == 0x23)
2795                 goto finish;
2796
2797         rettime = ktime_get();
2798         delta = ktime_sub(rettime, calltime);
2799         duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2800
2801         bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
2802
2803         calltime = ktime_get();
2804
2805         set_bit(BTUSB_BOOTING, &data->flags);
2806
2807         err = btintel_send_intel_reset(hdev, boot_param);
2808         if (err) {
2809                 bt_dev_err(hdev, "Intel Soft Reset failed (%d)", err);
2810                 btintel_reset_to_bootloader(hdev);
2811                 return err;
2812         }
2813
2814         /* The bootloader will not indicate when the device is ready. This
2815          * is done by the operational firmware sending bootup notification.
2816          *
2817          * Booting into operational firmware should not take longer than
2818          * 1 second. However if that happens, then just fail the setup
2819          * since something went wrong.
2820          */
2821         bt_dev_info(hdev, "Waiting for device to boot");
2822
2823         err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2824                                   TASK_INTERRUPTIBLE,
2825                                   msecs_to_jiffies(1000));
2826
2827         if (err == -EINTR) {
2828                 bt_dev_err(hdev, "Device boot interrupted");
2829                 return -EINTR;
2830         }
2831
2832         if (err) {
2833                 bt_dev_err(hdev, "Device boot timeout");
2834                 btintel_reset_to_bootloader(hdev);
2835                 return -ETIMEDOUT;
2836         }
2837
2838         rettime = ktime_get();
2839         delta = ktime_sub(rettime, calltime);
2840         duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2841
2842         bt_dev_info(hdev, "Device booted in %llu usecs", duration);
2843
2844         clear_bit(BTUSB_BOOTLOADER, &data->flags);
2845
2846         err = btusb_setup_intel_new_get_fw_name(&ver, &params, ddcname,
2847                                                 sizeof(ddcname), "ddc");
2848
2849         if (!err) {
2850                 bt_dev_err(hdev, "Unsupported Intel firmware naming");
2851         } else {
2852                 /* Once the device is running in operational mode, it needs to
2853                  * apply the device configuration (DDC) parameters.
2854                  *
2855                  * The device can work without DDC parameters, so even if it
2856                  * fails to load the file, no need to fail the setup.
2857                  */
2858                 btintel_load_ddc_config(hdev, ddcname);
2859         }
2860
2861         /* Read the Intel supported features and if new exception formats
2862          * supported, need to load the additional DDC config to enable.
2863          */
2864         btintel_read_debug_features(hdev, &features);
2865
2866         /* Set DDC mask for available debug features */
2867         btintel_set_debug_features(hdev, &features);
2868
2869         /* Read the Intel version information after loading the FW  */
2870         err = btintel_read_version(hdev, &ver);
2871         if (err)
2872                 return err;
2873
2874         btintel_version_info(hdev, &ver);
2875
2876 finish:
2877         /* All Intel controllers that support the Microsoft vendor
2878          * extension are using 0xFC1E for VsMsftOpCode.
2879          */
2880         switch (ver.hw_variant) {
2881         case 0x12:      /* ThP */
2882                 hci_set_msft_opcode(hdev, 0xFC1E);
2883                 break;
2884         }
2885
2886         /* Set the event mask for Intel specific vendor events. This enables
2887          * a few extra events that are useful during general operation. It
2888          * does not enable any debugging related events.
2889          *
2890          * The device will function correctly without these events enabled
2891          * and thus no need to fail the setup.
2892          */
2893         btintel_set_event_mask(hdev, false);
2894
2895         return 0;
2896 }
2897
2898 static int btusb_setup_intel_newgen(struct hci_dev *hdev)
2899 {
2900         struct btusb_data *data = hci_get_drvdata(hdev);
2901         u32 boot_param;
2902         char ddcname[64];
2903         ktime_t calltime, delta, rettime;
2904         unsigned long long duration;
2905         int err;
2906         struct intel_debug_features features;
2907         struct intel_version_tlv version;
2908
2909         bt_dev_dbg(hdev, "");
2910
2911         /* Set the default boot parameter to 0x0 and it is updated to
2912          * SKU specific boot parameter after reading Intel_Write_Boot_Params
2913          * command while downloading the firmware.
2914          */
2915         boot_param = 0x00000000;
2916
2917         calltime = ktime_get();
2918
2919         /* Read the Intel version information to determine if the device
2920          * is in bootloader mode or if it already has operational firmware
2921          * loaded.
2922          */
2923         err = btintel_read_version_tlv(hdev, &version);
2924         if (err) {
2925                 bt_dev_err(hdev, "Intel Read version failed (%d)", err);
2926                 btintel_reset_to_bootloader(hdev);
2927                 return err;
2928         }
2929
2930         btintel_version_info_tlv(hdev, &version);
2931
2932         err = btusb_intel_download_firmware_newgen(hdev, &version, &boot_param);
2933         if (err)
2934                 return err;
2935
2936         /* check if controller is already having an operational firmware */
2937         if (version.img_type == 0x03)
2938                 goto finish;
2939
2940         rettime = ktime_get();
2941         delta = ktime_sub(rettime, calltime);
2942         duration = (unsigned long long)ktime_to_ns(delta) >> 10;
2943
2944         bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
2945
2946         calltime = ktime_get();
2947
2948         set_bit(BTUSB_BOOTING, &data->flags);
2949
2950         err = btintel_send_intel_reset(hdev, boot_param);
2951         if (err) {
2952                 bt_dev_err(hdev, "Intel Soft Reset failed (%d)", err);
2953                 btintel_reset_to_bootloader(hdev);
2954                 return err;
2955         }
2956
2957         /* The bootloader will not indicate when the device is ready. This
2958          * is done by the operational firmware sending bootup notification.
2959          *
2960          * Booting into operational firmware should not take longer than
2961          * 1 second. However if that happens, then just fail the setup
2962          * since something went wrong.
2963          */
2964         bt_dev_info(hdev, "Waiting for device to boot");
2965
2966         err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2967                                   TASK_INTERRUPTIBLE,
2968                                   msecs_to_jiffies(1000));
2969
2970         if (err == -EINTR) {
2971                 bt_dev_err(hdev, "Device boot interrupted");
2972                 return -EINTR;
2973         }
2974
2975         if (err) {
2976                 bt_dev_err(hdev, "Device boot timeout");
2977                 btintel_reset_to_bootloader(hdev);
2978                 return -ETIMEDOUT;
2979         }
2980
2981         rettime = ktime_get();
2982         delta = ktime_sub(rettime, calltime);
2983         duration = (unsigned long long)ktime_to_ns(delta) >> 10;
2984
2985         bt_dev_info(hdev, "Device booted in %llu usecs", duration);
2986
2987         clear_bit(BTUSB_BOOTLOADER, &data->flags);
2988
2989         btusb_setup_intel_newgen_get_fw_name(&version, ddcname, sizeof(ddcname),
2990                                              "ddc");
2991         /* Once the device is running in operational mode, it needs to
2992          * apply the device configuration (DDC) parameters.
2993          *
2994          * The device can work without DDC parameters, so even if it
2995          * fails to load the file, no need to fail the setup.
2996          */
2997         btintel_load_ddc_config(hdev, ddcname);
2998
2999         /* Read the Intel supported features and if new exception formats
3000          * supported, need to load the additional DDC config to enable.
3001          */
3002         btintel_read_debug_features(hdev, &features);
3003
3004         /* Set DDC mask for available debug features */
3005         btintel_set_debug_features(hdev, &features);
3006
3007         /* Read the Intel version information after loading the FW  */
3008         err = btintel_read_version_tlv(hdev, &version);
3009         if (err)
3010                 return err;
3011
3012         btintel_version_info_tlv(hdev, &version);
3013
3014 finish:
3015         /* Set the event mask for Intel specific vendor events. This enables
3016          * a few extra events that are useful during general operation. It
3017          * does not enable any debugging related events.
3018          *
3019          * The device will function correctly without these events enabled
3020          * and thus no need to fail the setup.
3021          */
3022         btintel_set_event_mask(hdev, false);
3023
3024         return 0;
3025 }
3026 static int btusb_shutdown_intel(struct hci_dev *hdev)
3027 {
3028         struct sk_buff *skb;
3029         long ret;
3030
3031         /* In the shutdown sequence where Bluetooth is turned off followed
3032          * by WiFi being turned off, turning WiFi back on causes issue with
3033          * the RF calibration.
3034          *
3035          * To ensure that any RF activity has been stopped, issue HCI Reset
3036          * command to clear all ongoing activity including advertising,
3037          * scanning etc.
3038          */
3039         skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
3040         if (IS_ERR(skb)) {
3041                 ret = PTR_ERR(skb);
3042                 bt_dev_err(hdev, "HCI reset during shutdown failed");
3043                 return ret;
3044         }
3045         kfree_skb(skb);
3046
3047         /* Some platforms have an issue with BT LED when the interface is
3048          * down or BT radio is turned off, which takes 5 seconds to BT LED
3049          * goes off. This command turns off the BT LED immediately.
3050          */
3051         skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
3052         if (IS_ERR(skb)) {
3053                 ret = PTR_ERR(skb);
3054                 bt_dev_err(hdev, "turning off Intel device LED failed");
3055                 return ret;
3056         }
3057         kfree_skb(skb);
3058
3059         return 0;
3060 }
3061
3062 static int btusb_shutdown_intel_new(struct hci_dev *hdev)
3063 {
3064         struct sk_buff *skb;
3065
3066         /* Send HCI Reset to the controller to stop any BT activity which
3067          * were triggered. This will help to save power and maintain the
3068          * sync b/w Host and controller
3069          */
3070         skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
3071         if (IS_ERR(skb)) {
3072                 bt_dev_err(hdev, "HCI reset during shutdown failed");
3073                 return PTR_ERR(skb);
3074         }
3075         kfree_skb(skb);
3076
3077         return 0;
3078 }
3079
3080 #define FIRMWARE_MT7663         "mediatek/mt7663pr2h.bin"
3081 #define FIRMWARE_MT7668         "mediatek/mt7668pr2h.bin"
3082
3083 #define HCI_WMT_MAX_EVENT_SIZE          64
3084
3085 enum {
3086         BTMTK_WMT_PATCH_DWNLD = 0x1,
3087         BTMTK_WMT_FUNC_CTRL = 0x6,
3088         BTMTK_WMT_RST = 0x7,
3089         BTMTK_WMT_SEMAPHORE = 0x17,
3090 };
3091
3092 enum {
3093         BTMTK_WMT_INVALID,
3094         BTMTK_WMT_PATCH_UNDONE,
3095         BTMTK_WMT_PATCH_DONE,
3096         BTMTK_WMT_ON_UNDONE,
3097         BTMTK_WMT_ON_DONE,
3098         BTMTK_WMT_ON_PROGRESS,
3099 };
3100
3101 struct btmtk_wmt_hdr {
3102         u8      dir;
3103         u8      op;
3104         __le16  dlen;
3105         u8      flag;
3106 } __packed;
3107
3108 struct btmtk_hci_wmt_cmd {
3109         struct btmtk_wmt_hdr hdr;
3110         u8 data[256];
3111 } __packed;
3112
3113 struct btmtk_hci_wmt_evt {
3114         struct hci_event_hdr hhdr;
3115         struct btmtk_wmt_hdr whdr;
3116 } __packed;
3117
3118 struct btmtk_hci_wmt_evt_funcc {
3119         struct btmtk_hci_wmt_evt hwhdr;
3120         __be16 status;
3121 } __packed;
3122
3123 struct btmtk_tci_sleep {
3124         u8 mode;
3125         __le16 duration;
3126         __le16 host_duration;
3127         u8 host_wakeup_pin;
3128         u8 time_compensation;
3129 } __packed;
3130
3131 struct btmtk_hci_wmt_params {
3132         u8 op;
3133         u8 flag;
3134         u16 dlen;
3135         const void *data;
3136         u32 *status;
3137 };
3138
3139 static void btusb_mtk_wmt_recv(struct urb *urb)
3140 {
3141         struct hci_dev *hdev = urb->context;
3142         struct btusb_data *data = hci_get_drvdata(hdev);
3143         struct hci_event_hdr *hdr;
3144         struct sk_buff *skb;
3145         int err;
3146
3147         if (urb->status == 0 && urb->actual_length > 0) {
3148                 hdev->stat.byte_rx += urb->actual_length;
3149
3150                 /* WMT event shouldn't be fragmented and the size should be
3151                  * less than HCI_WMT_MAX_EVENT_SIZE.
3152                  */
3153                 skb = bt_skb_alloc(HCI_WMT_MAX_EVENT_SIZE, GFP_ATOMIC);
3154                 if (!skb) {
3155                         hdev->stat.err_rx++;
3156                         goto err_out;
3157                 }
3158
3159                 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
3160                 skb_put_data(skb, urb->transfer_buffer, urb->actual_length);
3161
3162                 hdr = (void *)skb->data;
3163                 /* Fix up the vendor event id with 0xff for vendor specific
3164                  * instead of 0xe4 so that event send via monitoring socket can
3165                  * be parsed properly.
3166                  */
3167                 hdr->evt = 0xff;
3168
3169                 /* When someone waits for the WMT event, the skb is being cloned
3170                  * and being processed the events from there then.
3171                  */
3172                 if (test_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags)) {
3173                         data->evt_skb = skb_clone(skb, GFP_ATOMIC);
3174                         if (!data->evt_skb)
3175                                 goto err_out;
3176                 }
3177
3178                 err = hci_recv_frame(hdev, skb);
3179                 if (err < 0)
3180                         goto err_free_skb;
3181
3182                 if (test_and_clear_bit(BTUSB_TX_WAIT_VND_EVT,
3183                                        &data->flags)) {
3184                         /* Barrier to sync with other CPUs */
3185                         smp_mb__after_atomic();
3186                         wake_up_bit(&data->flags,
3187                                     BTUSB_TX_WAIT_VND_EVT);
3188                 }
3189 err_out:
3190                 return;
3191 err_free_skb:
3192                 kfree_skb(data->evt_skb);
3193                 data->evt_skb = NULL;
3194                 return;
3195         } else if (urb->status == -ENOENT) {
3196                 /* Avoid suspend failed when usb_kill_urb */
3197                 return;
3198         }
3199
3200         usb_mark_last_busy(data->udev);
3201
3202         /* The URB complete handler is still called with urb->actual_length = 0
3203          * when the event is not available, so we should keep re-submitting
3204          * URB until WMT event returns, Also, It's necessary to wait some time
3205          * between the two consecutive control URBs to relax the target device
3206          * to generate the event. Otherwise, the WMT event cannot return from
3207          * the device successfully.
3208          */
3209         udelay(100);
3210
3211         usb_anchor_urb(urb, &data->ctrl_anchor);
3212         err = usb_submit_urb(urb, GFP_ATOMIC);
3213         if (err < 0) {
3214                 /* -EPERM: urb is being killed;
3215                  * -ENODEV: device got disconnected
3216                  */
3217                 if (err != -EPERM && err != -ENODEV)
3218                         bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
3219                                    urb, -err);
3220                 usb_unanchor_urb(urb);
3221         }
3222 }
3223
3224 static int btusb_mtk_submit_wmt_recv_urb(struct hci_dev *hdev)
3225 {
3226         struct btusb_data *data = hci_get_drvdata(hdev);
3227         struct usb_ctrlrequest *dr;
3228         unsigned char *buf;
3229         int err, size = 64;
3230         unsigned int pipe;
3231         struct urb *urb;
3232
3233         urb = usb_alloc_urb(0, GFP_KERNEL);
3234         if (!urb)
3235                 return -ENOMEM;
3236
3237         dr = kmalloc(sizeof(*dr), GFP_KERNEL);
3238         if (!dr) {
3239                 usb_free_urb(urb);
3240                 return -ENOMEM;
3241         }
3242
3243         dr->bRequestType = USB_TYPE_VENDOR | USB_DIR_IN;
3244         dr->bRequest     = 1;
3245         dr->wIndex       = cpu_to_le16(0);
3246         dr->wValue       = cpu_to_le16(48);
3247         dr->wLength      = cpu_to_le16(size);
3248
3249         buf = kmalloc(size, GFP_KERNEL);
3250         if (!buf) {
3251                 kfree(dr);
3252                 usb_free_urb(urb);
3253                 return -ENOMEM;
3254         }
3255
3256         pipe = usb_rcvctrlpipe(data->udev, 0);
3257
3258         usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
3259                              buf, size, btusb_mtk_wmt_recv, hdev);
3260
3261         urb->transfer_flags |= URB_FREE_BUFFER;
3262
3263         usb_anchor_urb(urb, &data->ctrl_anchor);
3264         err = usb_submit_urb(urb, GFP_KERNEL);
3265         if (err < 0) {
3266                 if (err != -EPERM && err != -ENODEV)
3267                         bt_dev_err(hdev, "urb %p submission failed (%d)",
3268                                    urb, -err);
3269                 usb_unanchor_urb(urb);
3270         }
3271
3272         usb_free_urb(urb);
3273
3274         return err;
3275 }
3276
3277 static int btusb_mtk_hci_wmt_sync(struct hci_dev *hdev,
3278                                   struct btmtk_hci_wmt_params *wmt_params)
3279 {
3280         struct btusb_data *data = hci_get_drvdata(hdev);
3281         struct btmtk_hci_wmt_evt_funcc *wmt_evt_funcc;
3282         u32 hlen, status = BTMTK_WMT_INVALID;
3283         struct btmtk_hci_wmt_evt *wmt_evt;
3284         struct btmtk_hci_wmt_cmd wc;
3285         struct btmtk_wmt_hdr *hdr;
3286         int err;
3287
3288         /* Submit control IN URB on demand to process the WMT event */
3289         err = btusb_mtk_submit_wmt_recv_urb(hdev);
3290         if (err < 0)
3291                 return err;
3292
3293         /* Send the WMT command and wait until the WMT event returns */
3294         hlen = sizeof(*hdr) + wmt_params->dlen;
3295         if (hlen > 255)
3296                 return -EINVAL;
3297
3298         hdr = (struct btmtk_wmt_hdr *)&wc;
3299         hdr->dir = 1;
3300         hdr->op = wmt_params->op;
3301         hdr->dlen = cpu_to_le16(wmt_params->dlen + 1);
3302         hdr->flag = wmt_params->flag;
3303         memcpy(wc.data, wmt_params->data, wmt_params->dlen);
3304
3305         set_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
3306
3307         err = __hci_cmd_send(hdev, 0xfc6f, hlen, &wc);
3308
3309         if (err < 0) {
3310                 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
3311                 return err;
3312         }
3313
3314         /* The vendor specific WMT commands are all answered by a vendor
3315          * specific event and will have the Command Status or Command
3316          * Complete as with usual HCI command flow control.
3317          *
3318          * After sending the command, wait for BTUSB_TX_WAIT_VND_EVT
3319          * state to be cleared. The driver specific event receive routine
3320          * will clear that state and with that indicate completion of the
3321          * WMT command.
3322          */
3323         err = wait_on_bit_timeout(&data->flags, BTUSB_TX_WAIT_VND_EVT,
3324                                   TASK_INTERRUPTIBLE, HCI_INIT_TIMEOUT);
3325         if (err == -EINTR) {
3326                 bt_dev_err(hdev, "Execution of wmt command interrupted");
3327                 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
3328                 return err;
3329         }
3330
3331         if (err) {
3332                 bt_dev_err(hdev, "Execution of wmt command timed out");
3333                 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
3334                 return -ETIMEDOUT;
3335         }
3336
3337         /* Parse and handle the return WMT event */
3338         wmt_evt = (struct btmtk_hci_wmt_evt *)data->evt_skb->data;
3339         if (wmt_evt->whdr.op != hdr->op) {
3340                 bt_dev_err(hdev, "Wrong op received %d expected %d",
3341                            wmt_evt->whdr.op, hdr->op);
3342                 err = -EIO;
3343                 goto err_free_skb;
3344         }
3345
3346         switch (wmt_evt->whdr.op) {
3347         case BTMTK_WMT_SEMAPHORE:
3348                 if (wmt_evt->whdr.flag == 2)
3349                         status = BTMTK_WMT_PATCH_UNDONE;
3350                 else
3351                         status = BTMTK_WMT_PATCH_DONE;
3352                 break;
3353         case BTMTK_WMT_FUNC_CTRL:
3354                 wmt_evt_funcc = (struct btmtk_hci_wmt_evt_funcc *)wmt_evt;
3355                 if (be16_to_cpu(wmt_evt_funcc->status) == 0x404)
3356                         status = BTMTK_WMT_ON_DONE;
3357                 else if (be16_to_cpu(wmt_evt_funcc->status) == 0x420)
3358                         status = BTMTK_WMT_ON_PROGRESS;
3359                 else
3360                         status = BTMTK_WMT_ON_UNDONE;
3361                 break;
3362         }
3363
3364         if (wmt_params->status)
3365                 *wmt_params->status = status;
3366
3367 err_free_skb:
3368         kfree_skb(data->evt_skb);
3369         data->evt_skb = NULL;
3370
3371         return err;
3372 }
3373
3374 static int btusb_mtk_setup_firmware(struct hci_dev *hdev, const char *fwname)
3375 {
3376         struct btmtk_hci_wmt_params wmt_params;
3377         const struct firmware *fw;
3378         const u8 *fw_ptr;
3379         size_t fw_size;
3380         int err, dlen;
3381         u8 flag, param;
3382
3383         err = request_firmware(&fw, fwname, &hdev->dev);
3384         if (err < 0) {
3385                 bt_dev_err(hdev, "Failed to load firmware file (%d)", err);
3386                 return err;
3387         }
3388
3389         /* Power on data RAM the firmware relies on. */
3390         param = 1;
3391         wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3392         wmt_params.flag = 3;
3393         wmt_params.dlen = sizeof(param);
3394         wmt_params.data = &param;
3395         wmt_params.status = NULL;
3396
3397         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3398         if (err < 0) {
3399                 bt_dev_err(hdev, "Failed to power on data RAM (%d)", err);
3400                 goto err_release_fw;
3401         }
3402
3403         fw_ptr = fw->data;
3404         fw_size = fw->size;
3405
3406         /* The size of patch header is 30 bytes, should be skip */
3407         if (fw_size < 30) {
3408                 err = -EINVAL;
3409                 goto err_release_fw;
3410         }
3411
3412         fw_size -= 30;
3413         fw_ptr += 30;
3414         flag = 1;
3415
3416         wmt_params.op = BTMTK_WMT_PATCH_DWNLD;
3417         wmt_params.status = NULL;
3418
3419         while (fw_size > 0) {
3420                 dlen = min_t(int, 250, fw_size);
3421
3422                 /* Tell deivice the position in sequence */
3423                 if (fw_size - dlen <= 0)
3424                         flag = 3;
3425                 else if (fw_size < fw->size - 30)
3426                         flag = 2;
3427
3428                 wmt_params.flag = flag;
3429                 wmt_params.dlen = dlen;
3430                 wmt_params.data = fw_ptr;
3431
3432                 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3433                 if (err < 0) {
3434                         bt_dev_err(hdev, "Failed to send wmt patch dwnld (%d)",
3435                                    err);
3436                         goto err_release_fw;
3437                 }
3438
3439                 fw_size -= dlen;
3440                 fw_ptr += dlen;
3441         }
3442
3443         wmt_params.op = BTMTK_WMT_RST;
3444         wmt_params.flag = 4;
3445         wmt_params.dlen = 0;
3446         wmt_params.data = NULL;
3447         wmt_params.status = NULL;
3448
3449         /* Activate funciton the firmware providing to */
3450         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3451         if (err < 0) {
3452                 bt_dev_err(hdev, "Failed to send wmt rst (%d)", err);
3453                 goto err_release_fw;
3454         }
3455
3456         /* Wait a few moments for firmware activation done */
3457         usleep_range(10000, 12000);
3458
3459 err_release_fw:
3460         release_firmware(fw);
3461
3462         return err;
3463 }
3464
3465 static int btusb_mtk_func_query(struct hci_dev *hdev)
3466 {
3467         struct btmtk_hci_wmt_params wmt_params;
3468         int status, err;
3469         u8 param = 0;
3470
3471         /* Query whether the function is enabled */
3472         wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3473         wmt_params.flag = 4;
3474         wmt_params.dlen = sizeof(param);
3475         wmt_params.data = &param;
3476         wmt_params.status = &status;
3477
3478         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3479         if (err < 0) {
3480                 bt_dev_err(hdev, "Failed to query function status (%d)", err);
3481                 return err;
3482         }
3483
3484         return status;
3485 }
3486
3487 static int btusb_mtk_reg_read(struct btusb_data *data, u32 reg, u32 *val)
3488 {
3489         int pipe, err, size = sizeof(u32);
3490         void *buf;
3491
3492         buf = kzalloc(size, GFP_KERNEL);
3493         if (!buf)
3494                 return -ENOMEM;
3495
3496         pipe = usb_rcvctrlpipe(data->udev, 0);
3497         err = usb_control_msg(data->udev, pipe, 0x63,
3498                               USB_TYPE_VENDOR | USB_DIR_IN,
3499                               reg >> 16, reg & 0xffff,
3500                               buf, size, USB_CTRL_SET_TIMEOUT);
3501         if (err < 0)
3502                 goto err_free_buf;
3503
3504         *val = get_unaligned_le32(buf);
3505
3506 err_free_buf:
3507         kfree(buf);
3508
3509         return err;
3510 }
3511
3512 static int btusb_mtk_id_get(struct btusb_data *data, u32 *id)
3513 {
3514         return btusb_mtk_reg_read(data, 0x80000008, id);
3515 }
3516
3517 static int btusb_mtk_setup(struct hci_dev *hdev)
3518 {
3519         struct btusb_data *data = hci_get_drvdata(hdev);
3520         struct btmtk_hci_wmt_params wmt_params;
3521         ktime_t calltime, delta, rettime;
3522         struct btmtk_tci_sleep tci_sleep;
3523         unsigned long long duration;
3524         struct sk_buff *skb;
3525         const char *fwname;
3526         int err, status;
3527         u32 dev_id;
3528         u8 param;
3529
3530         calltime = ktime_get();
3531
3532         err = btusb_mtk_id_get(data, &dev_id);
3533         if (err < 0) {
3534                 bt_dev_err(hdev, "Failed to get device id (%d)", err);
3535                 return err;
3536         }
3537
3538         switch (dev_id) {
3539         case 0x7663:
3540                 fwname = FIRMWARE_MT7663;
3541                 break;
3542         case 0x7668:
3543                 fwname = FIRMWARE_MT7668;
3544                 break;
3545         default:
3546                 bt_dev_err(hdev, "Unsupported support hardware variant (%08x)",
3547                            dev_id);
3548                 return -ENODEV;
3549         }
3550
3551         /* Query whether the firmware is already download */
3552         wmt_params.op = BTMTK_WMT_SEMAPHORE;
3553         wmt_params.flag = 1;
3554         wmt_params.dlen = 0;
3555         wmt_params.data = NULL;
3556         wmt_params.status = &status;
3557
3558         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3559         if (err < 0) {
3560                 bt_dev_err(hdev, "Failed to query firmware status (%d)", err);
3561                 return err;
3562         }
3563
3564         if (status == BTMTK_WMT_PATCH_DONE) {
3565                 bt_dev_info(hdev, "firmware already downloaded");
3566                 goto ignore_setup_fw;
3567         }
3568
3569         /* Setup a firmware which the device definitely requires */
3570         err = btusb_mtk_setup_firmware(hdev, fwname);
3571         if (err < 0)
3572                 return err;
3573
3574 ignore_setup_fw:
3575         err = readx_poll_timeout(btusb_mtk_func_query, hdev, status,
3576                                  status < 0 || status != BTMTK_WMT_ON_PROGRESS,
3577                                  2000, 5000000);
3578         /* -ETIMEDOUT happens */
3579         if (err < 0)
3580                 return err;
3581
3582         /* The other errors happen in btusb_mtk_func_query */
3583         if (status < 0)
3584                 return status;
3585
3586         if (status == BTMTK_WMT_ON_DONE) {
3587                 bt_dev_info(hdev, "function already on");
3588                 goto ignore_func_on;
3589         }
3590
3591         /* Enable Bluetooth protocol */
3592         param = 1;
3593         wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3594         wmt_params.flag = 0;
3595         wmt_params.dlen = sizeof(param);
3596         wmt_params.data = &param;
3597         wmt_params.status = NULL;
3598
3599         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3600         if (err < 0) {
3601                 bt_dev_err(hdev, "Failed to send wmt func ctrl (%d)", err);
3602                 return err;
3603         }
3604
3605 ignore_func_on:
3606         /* Apply the low power environment setup */
3607         tci_sleep.mode = 0x5;
3608         tci_sleep.duration = cpu_to_le16(0x640);
3609         tci_sleep.host_duration = cpu_to_le16(0x640);
3610         tci_sleep.host_wakeup_pin = 0;
3611         tci_sleep.time_compensation = 0;
3612
3613         skb = __hci_cmd_sync(hdev, 0xfc7a, sizeof(tci_sleep), &tci_sleep,
3614                              HCI_INIT_TIMEOUT);
3615         if (IS_ERR(skb)) {
3616                 err = PTR_ERR(skb);
3617                 bt_dev_err(hdev, "Failed to apply low power setting (%d)", err);
3618                 return err;
3619         }
3620         kfree_skb(skb);
3621
3622         rettime = ktime_get();
3623         delta = ktime_sub(rettime, calltime);
3624         duration = (unsigned long long)ktime_to_ns(delta) >> 10;
3625
3626         bt_dev_info(hdev, "Device setup in %llu usecs", duration);
3627
3628         return 0;
3629 }
3630
3631 static int btusb_mtk_shutdown(struct hci_dev *hdev)
3632 {
3633         struct btmtk_hci_wmt_params wmt_params;
3634         u8 param = 0;
3635         int err;
3636
3637         /* Disable the device */
3638         wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3639         wmt_params.flag = 0;
3640         wmt_params.dlen = sizeof(param);
3641         wmt_params.data = &param;
3642         wmt_params.status = NULL;
3643
3644         err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3645         if (err < 0) {
3646                 bt_dev_err(hdev, "Failed to send wmt func ctrl (%d)", err);
3647                 return err;
3648         }
3649
3650         return 0;
3651 }
3652
3653 MODULE_FIRMWARE(FIRMWARE_MT7663);
3654 MODULE_FIRMWARE(FIRMWARE_MT7668);
3655
3656 #ifdef CONFIG_PM
3657 /* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
3658 static int marvell_config_oob_wake(struct hci_dev *hdev)
3659 {
3660         struct sk_buff *skb;
3661         struct btusb_data *data = hci_get_drvdata(hdev);
3662         struct device *dev = &data->udev->dev;
3663         u16 pin, gap, opcode;
3664         int ret;
3665         u8 cmd[5];
3666
3667         /* Move on if no wakeup pin specified */
3668         if (of_property_read_u16(dev->of_node, "marvell,wakeup-pin", &pin) ||
3669             of_property_read_u16(dev->of_node, "marvell,wakeup-gap-ms", &gap))
3670                 return 0;
3671
3672         /* Vendor specific command to configure a GPIO as wake-up pin */
3673         opcode = hci_opcode_pack(0x3F, 0x59);
3674         cmd[0] = opcode & 0xFF;
3675         cmd[1] = opcode >> 8;
3676         cmd[2] = 2; /* length of parameters that follow */
3677         cmd[3] = pin;
3678         cmd[4] = gap; /* time in ms, for which wakeup pin should be asserted */
3679
3680         skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
3681         if (!skb) {
3682                 bt_dev_err(hdev, "%s: No memory\n", __func__);
3683                 return -ENOMEM;
3684         }
3685
3686         skb_put_data(skb, cmd, sizeof(cmd));
3687         hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
3688
3689         ret = btusb_send_frame(hdev, skb);
3690         if (ret) {
3691                 bt_dev_err(hdev, "%s: configuration failed\n", __func__);
3692                 kfree_skb(skb);
3693                 return ret;
3694         }
3695
3696         return 0;
3697 }
3698 #endif
3699
3700 static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
3701                                     const bdaddr_t *bdaddr)
3702 {
3703         struct sk_buff *skb;
3704         u8 buf[8];
3705         long ret;
3706
3707         buf[0] = 0xfe;
3708         buf[1] = sizeof(bdaddr_t);
3709         memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
3710
3711         skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
3712         if (IS_ERR(skb)) {
3713                 ret = PTR_ERR(skb);
3714                 bt_dev_err(hdev, "changing Marvell device address failed (%ld)",
3715                            ret);
3716                 return ret;
3717         }
3718         kfree_skb(skb);
3719
3720         return 0;
3721 }
3722
3723 static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
3724                                     const bdaddr_t *bdaddr)
3725 {
3726         struct sk_buff *skb;
3727         u8 buf[10];
3728         long ret;
3729
3730         buf[0] = 0x01;
3731         buf[1] = 0x01;
3732         buf[2] = 0x00;
3733         buf[3] = sizeof(bdaddr_t);
3734         memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
3735
3736         skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
3737         if (IS_ERR(skb)) {
3738                 ret = PTR_ERR(skb);
3739                 bt_dev_err(hdev, "Change address command failed (%ld)", ret);
3740                 return ret;
3741         }
3742         kfree_skb(skb);
3743
3744         return 0;
3745 }
3746
3747 static int btusb_set_bdaddr_wcn6855(struct hci_dev *hdev,
3748                                 const bdaddr_t *bdaddr)
3749 {
3750         struct sk_buff *skb;
3751         u8 buf[6];
3752         long ret;
3753
3754         memcpy(buf, bdaddr, sizeof(bdaddr_t));
3755
3756         skb = __hci_cmd_sync_ev(hdev, 0xfc14, sizeof(buf), buf,
3757                                 HCI_EV_CMD_COMPLETE, HCI_INIT_TIMEOUT);
3758         if (IS_ERR(skb)) {
3759                 ret = PTR_ERR(skb);
3760                 bt_dev_err(hdev, "Change address command failed (%ld)", ret);
3761                 return ret;
3762         }
3763         kfree_skb(skb);
3764
3765         return 0;
3766 }
3767
3768 #define QCA_DFU_PACKET_LEN      4096
3769
3770 #define QCA_GET_TARGET_VERSION  0x09
3771 #define QCA_CHECK_STATUS        0x05
3772 #define QCA_DFU_DOWNLOAD        0x01
3773
3774 #define QCA_SYSCFG_UPDATED      0x40
3775 #define QCA_PATCH_UPDATED       0x80
3776 #define QCA_DFU_TIMEOUT         3000
3777 #define QCA_FLAG_MULTI_NVM      0x80
3778
3779 struct qca_version {
3780         __le32  rom_version;
3781         __le32  patch_version;
3782         __le32  ram_version;
3783         __le16  board_id;
3784         __le16  flag;
3785         __u8    reserved[4];
3786 } __packed;
3787
3788 struct qca_rampatch_version {
3789         __le16  rom_version_high;
3790         __le16  rom_version_low;
3791         __le16  patch_version;
3792 } __packed;
3793
3794 struct qca_device_info {
3795         u32     rom_version;
3796         u8      rampatch_hdr;   /* length of header in rampatch */
3797         u8      nvm_hdr;        /* length of header in NVM */
3798         u8      ver_offset;     /* offset of version structure in rampatch */
3799 };
3800
3801 static const struct qca_device_info qca_devices_table[] = {
3802         { 0x00000100, 20, 4,  8 }, /* Rome 1.0 */
3803         { 0x00000101, 20, 4,  8 }, /* Rome 1.1 */
3804         { 0x00000200, 28, 4, 16 }, /* Rome 2.0 */
3805         { 0x00000201, 28, 4, 16 }, /* Rome 2.1 */
3806         { 0x00000300, 28, 4, 16 }, /* Rome 3.0 */
3807         { 0x00000302, 28, 4, 16 }, /* Rome 3.2 */
3808         { 0x00130100, 40, 4, 16 }, /* WCN6855 1.0 */
3809         { 0x00130200, 40, 4, 16 }, /* WCN6855 2.0 */
3810 };
3811
3812 static int btusb_qca_send_vendor_req(struct usb_device *udev, u8 request,
3813                                      void *data, u16 size)
3814 {
3815         int pipe, err;
3816         u8 *buf;
3817
3818         buf = kmalloc(size, GFP_KERNEL);
3819         if (!buf)
3820                 return -ENOMEM;
3821
3822         /* Found some of USB hosts have IOT issues with ours so that we should
3823          * not wait until HCI layer is ready.
3824          */
3825         pipe = usb_rcvctrlpipe(udev, 0);
3826         err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
3827                               0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
3828         if (err < 0) {
3829                 dev_err(&udev->dev, "Failed to access otp area (%d)", err);
3830                 goto done;
3831         }
3832
3833         memcpy(data, buf, size);
3834
3835 done:
3836         kfree(buf);
3837
3838         return err;
3839 }
3840
3841 static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
3842                                        const struct firmware *firmware,
3843                                        size_t hdr_size)
3844 {
3845         struct btusb_data *btdata = hci_get_drvdata(hdev);
3846         struct usb_device *udev = btdata->udev;
3847         size_t count, size, sent = 0;
3848         int pipe, len, err;
3849         u8 *buf;
3850
3851         buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
3852         if (!buf)
3853                 return -ENOMEM;
3854
3855         count = firmware->size;
3856
3857         size = min_t(size_t, count, hdr_size);
3858         memcpy(buf, firmware->data, size);
3859
3860         /* USB patches should go down to controller through USB path
3861          * because binary format fits to go down through USB channel.
3862          * USB control path is for patching headers and USB bulk is for
3863          * patch body.
3864          */
3865         pipe = usb_sndctrlpipe(udev, 0);
3866         err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
3867                               0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
3868         if (err < 0) {
3869                 bt_dev_err(hdev, "Failed to send headers (%d)", err);
3870                 goto done;
3871         }
3872
3873         sent += size;
3874         count -= size;
3875
3876         while (count) {
3877                 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
3878
3879                 memcpy(buf, firmware->data + sent, size);
3880
3881                 pipe = usb_sndbulkpipe(udev, 0x02);
3882                 err = usb_bulk_msg(udev, pipe, buf, size, &len,
3883                                    QCA_DFU_TIMEOUT);
3884                 if (err < 0) {
3885                         bt_dev_err(hdev, "Failed to send body at %zd of %zd (%d)",
3886                                    sent, firmware->size, err);
3887                         break;
3888                 }
3889
3890                 if (size != len) {
3891                         bt_dev_err(hdev, "Failed to get bulk buffer");
3892                         err = -EILSEQ;
3893                         break;
3894                 }
3895
3896                 sent  += size;
3897                 count -= size;
3898         }
3899
3900 done:
3901         kfree(buf);
3902         return err;
3903 }
3904
3905 static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
3906                                          struct qca_version *ver,
3907                                          const struct qca_device_info *info)
3908 {
3909         struct qca_rampatch_version *rver;
3910         const struct firmware *fw;
3911         u32 ver_rom, ver_patch, rver_rom;
3912         u16 rver_rom_low, rver_rom_high, rver_patch;
3913         char fwname[64];
3914         int err;
3915
3916         ver_rom = le32_to_cpu(ver->rom_version);
3917         ver_patch = le32_to_cpu(ver->patch_version);
3918
3919         snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
3920
3921         err = request_firmware(&fw, fwname, &hdev->dev);
3922         if (err) {
3923                 bt_dev_err(hdev, "failed to request rampatch file: %s (%d)",
3924                            fwname, err);
3925                 return err;
3926         }
3927
3928         bt_dev_info(hdev, "using rampatch file: %s", fwname);
3929
3930         rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
3931         rver_rom_low = le16_to_cpu(rver->rom_version_low);
3932         rver_patch = le16_to_cpu(rver->patch_version);
3933
3934         if (ver_rom & ~0xffffU) {
3935                 rver_rom_high = le16_to_cpu(rver->rom_version_high);
3936                 rver_rom = le32_to_cpu(rver_rom_high << 16 | rver_rom_low);
3937         } else {
3938                 rver_rom = rver_rom_low;
3939         }
3940
3941         bt_dev_info(hdev, "QCA: patch rome 0x%x build 0x%x, "
3942                     "firmware rome 0x%x build 0x%x",
3943                     rver_rom, rver_patch, ver_rom, ver_patch);
3944
3945         if (rver_rom != ver_rom || rver_patch <= ver_patch) {
3946                 bt_dev_err(hdev, "rampatch file version did not match with firmware");
3947                 err = -EINVAL;
3948                 goto done;
3949         }
3950
3951         err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
3952
3953 done:
3954         release_firmware(fw);
3955
3956         return err;
3957 }
3958
3959 static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
3960                                     struct qca_version *ver,
3961                                     const struct qca_device_info *info)
3962 {
3963         const struct firmware *fw;
3964         char fwname[64];
3965         int err;
3966
3967         if (((ver->flag >> 8) & 0xff) == QCA_FLAG_MULTI_NVM) {
3968                 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x_%04x.bin",
3969                          le32_to_cpu(ver->rom_version),
3970                          le16_to_cpu(ver->board_id));
3971         } else {
3972                 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
3973                          le32_to_cpu(ver->rom_version));
3974         }
3975
3976         err = request_firmware(&fw, fwname, &hdev->dev);
3977         if (err) {
3978                 bt_dev_err(hdev, "failed to request NVM file: %s (%d)",
3979                            fwname, err);
3980                 return err;
3981         }
3982
3983         bt_dev_info(hdev, "using NVM file: %s", fwname);
3984
3985         err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
3986
3987         release_firmware(fw);
3988
3989         return err;
3990 }
3991
3992 /* identify the ROM version and check whether patches are needed */
3993 static bool btusb_qca_need_patch(struct usb_device *udev)
3994 {
3995         struct qca_version ver;
3996
3997         if (btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
3998                                       sizeof(ver)) < 0)
3999                 return false;
4000         /* only low ROM versions need patches */
4001         return !(le32_to_cpu(ver.rom_version) & ~0xffffU);
4002 }
4003
4004 static int btusb_setup_qca(struct hci_dev *hdev)
4005 {
4006         struct btusb_data *btdata = hci_get_drvdata(hdev);
4007         struct usb_device *udev = btdata->udev;
4008         const struct qca_device_info *info = NULL;
4009         struct qca_version ver;
4010         u32 ver_rom;
4011         u8 status;
4012         int i, err;
4013
4014         err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
4015                                         sizeof(ver));
4016         if (err < 0)
4017                 return err;
4018
4019         ver_rom = le32_to_cpu(ver.rom_version);
4020
4021         for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
4022                 if (ver_rom == qca_devices_table[i].rom_version)
4023                         info = &qca_devices_table[i];
4024         }
4025         if (!info) {
4026                 bt_dev_err(hdev, "don't support firmware rome 0x%x", ver_rom);
4027                 return -ENODEV;
4028         }
4029
4030         err = btusb_qca_send_vendor_req(udev, QCA_CHECK_STATUS, &status,
4031                                         sizeof(status));
4032         if (err < 0)
4033                 return err;
4034
4035         if (!(status & QCA_PATCH_UPDATED)) {
4036                 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
4037                 if (err < 0)
4038                         return err;
4039         }
4040
4041         err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
4042                                         sizeof(ver));
4043         if (err < 0)
4044                 return err;
4045
4046         if (!(status & QCA_SYSCFG_UPDATED)) {
4047                 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
4048                 if (err < 0)
4049                         return err;
4050         }
4051
4052         return 0;
4053 }
4054
4055 static inline int __set_diag_interface(struct hci_dev *hdev)
4056 {
4057         struct btusb_data *data = hci_get_drvdata(hdev);
4058         struct usb_interface *intf = data->diag;
4059         int i;
4060
4061         if (!data->diag)
4062                 return -ENODEV;
4063
4064         data->diag_tx_ep = NULL;
4065         data->diag_rx_ep = NULL;
4066
4067         for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
4068                 struct usb_endpoint_descriptor *ep_desc;
4069
4070                 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
4071
4072                 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
4073                         data->diag_tx_ep = ep_desc;
4074                         continue;
4075                 }
4076
4077                 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
4078                         data->diag_rx_ep = ep_desc;
4079                         continue;
4080                 }
4081         }
4082
4083         if (!data->diag_tx_ep || !data->diag_rx_ep) {
4084                 bt_dev_err(hdev, "invalid diagnostic descriptors");
4085                 return -ENODEV;
4086         }
4087
4088         return 0;
4089 }
4090
4091 static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
4092 {
4093         struct btusb_data *data = hci_get_drvdata(hdev);
4094         struct sk_buff *skb;
4095         struct urb *urb;
4096         unsigned int pipe;
4097
4098         if (!data->diag_tx_ep)
4099                 return ERR_PTR(-ENODEV);
4100
4101         urb = usb_alloc_urb(0, GFP_KERNEL);
4102         if (!urb)
4103                 return ERR_PTR(-ENOMEM);
4104
4105         skb = bt_skb_alloc(2, GFP_KERNEL);
4106         if (!skb) {
4107                 usb_free_urb(urb);
4108                 return ERR_PTR(-ENOMEM);
4109         }
4110
4111         skb_put_u8(skb, 0xf0);
4112         skb_put_u8(skb, enable);
4113
4114         pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
4115
4116         usb_fill_bulk_urb(urb, data->udev, pipe,
4117                           skb->data, skb->len, btusb_tx_complete, skb);
4118
4119         skb->dev = (void *)hdev;
4120
4121         return urb;
4122 }
4123
4124 static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
4125 {
4126         struct btusb_data *data = hci_get_drvdata(hdev);
4127         struct urb *urb;
4128
4129         if (!data->diag)
4130                 return -ENODEV;
4131
4132         if (!test_bit(HCI_RUNNING, &hdev->flags))
4133                 return -ENETDOWN;
4134
4135         urb = alloc_diag_urb(hdev, enable);
4136         if (IS_ERR(urb))
4137                 return PTR_ERR(urb);
4138
4139         return submit_or_queue_tx_urb(hdev, urb);
4140 }
4141
4142 #ifdef CONFIG_PM
4143 static irqreturn_t btusb_oob_wake_handler(int irq, void *priv)
4144 {
4145         struct btusb_data *data = priv;
4146
4147         pm_wakeup_event(&data->udev->dev, 0);
4148         pm_system_wakeup();
4149
4150         /* Disable only if not already disabled (keep it balanced) */
4151         if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
4152                 disable_irq_nosync(irq);
4153                 disable_irq_wake(irq);
4154         }
4155         return IRQ_HANDLED;
4156 }
4157
4158 static const struct of_device_id btusb_match_table[] = {
4159         { .compatible = "usb1286,204e" },
4160         { .compatible = "usbcf3,e300" }, /* QCA6174A */
4161         { .compatible = "usb4ca,301a" }, /* QCA6174A (Lite-On) */
4162         { }
4163 };
4164 MODULE_DEVICE_TABLE(of, btusb_match_table);
4165
4166 /* Use an oob wakeup pin? */
4167 static int btusb_config_oob_wake(struct hci_dev *hdev)
4168 {
4169         struct btusb_data *data = hci_get_drvdata(hdev);
4170         struct device *dev = &data->udev->dev;
4171         int irq, ret;
4172
4173         clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
4174
4175         if (!of_match_device(btusb_match_table, dev))
4176                 return 0;
4177
4178         /* Move on if no IRQ specified */
4179         irq = of_irq_get_byname(dev->of_node, "wakeup");
4180         if (irq <= 0) {
4181                 bt_dev_dbg(hdev, "%s: no OOB Wakeup IRQ in DT", __func__);
4182                 return 0;
4183         }
4184
4185         irq_set_status_flags(irq, IRQ_NOAUTOEN);
4186         ret = devm_request_irq(&hdev->dev, irq, btusb_oob_wake_handler,
4187                                0, "OOB Wake-on-BT", data);
4188         if (ret) {
4189                 bt_dev_err(hdev, "%s: IRQ request failed", __func__);
4190                 return ret;
4191         }
4192
4193         ret = device_init_wakeup(dev, true);
4194         if (ret) {
4195                 bt_dev_err(hdev, "%s: failed to init_wakeup", __func__);
4196                 return ret;
4197         }
4198
4199         data->oob_wake_irq = irq;
4200         bt_dev_info(hdev, "OOB Wake-on-BT configured at IRQ %u", irq);
4201         return 0;
4202 }
4203 #endif
4204
4205 static void btusb_check_needs_reset_resume(struct usb_interface *intf)
4206 {
4207         if (dmi_check_system(btusb_needs_reset_resume_table))
4208                 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
4209 }
4210
4211 static bool btusb_prevent_wake(struct hci_dev *hdev)
4212 {
4213         struct btusb_data *data = hci_get_drvdata(hdev);
4214
4215         if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags))
4216                 return true;
4217
4218         return !device_may_wakeup(&data->udev->dev);
4219 }
4220
4221 static int btusb_probe(struct usb_interface *intf,
4222                        const struct usb_device_id *id)
4223 {
4224         struct usb_endpoint_descriptor *ep_desc;
4225         struct gpio_desc *reset_gpio;
4226         struct btusb_data *data;
4227         struct hci_dev *hdev;
4228         unsigned ifnum_base;
4229         int i, err;
4230
4231         BT_DBG("intf %p id %p", intf, id);
4232
4233         /* interface numbers are hardcoded in the spec */
4234         if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
4235                 if (!(id->driver_info & BTUSB_IFNUM_2))
4236                         return -ENODEV;
4237                 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
4238                         return -ENODEV;
4239         }
4240
4241         ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
4242
4243         if (!id->driver_info) {
4244                 const struct usb_device_id *match;
4245
4246                 match = usb_match_id(intf, blacklist_table);
4247                 if (match)
4248                         id = match;
4249         }
4250
4251         if (id->driver_info == BTUSB_IGNORE)
4252                 return -ENODEV;
4253
4254         if (id->driver_info & BTUSB_ATH3012) {
4255                 struct usb_device *udev = interface_to_usbdev(intf);
4256
4257                 /* Old firmware would otherwise let ath3k driver load
4258                  * patch and sysconfig files
4259                  */
4260                 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001 &&
4261                     !btusb_qca_need_patch(udev))
4262                         return -ENODEV;
4263         }
4264
4265         data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
4266         if (!data)
4267                 return -ENOMEM;
4268
4269         for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
4270                 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
4271
4272                 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
4273                         data->intr_ep = ep_desc;
4274                         continue;
4275                 }
4276
4277                 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
4278                         data->bulk_tx_ep = ep_desc;
4279                         continue;
4280                 }
4281
4282                 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
4283                         data->bulk_rx_ep = ep_desc;
4284                         continue;
4285                 }
4286         }
4287
4288         if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
4289                 return -ENODEV;
4290
4291         if (id->driver_info & BTUSB_AMP) {
4292                 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
4293                 data->cmdreq = 0x2b;
4294         } else {
4295                 data->cmdreq_type = USB_TYPE_CLASS;
4296                 data->cmdreq = 0x00;
4297         }
4298
4299         data->udev = interface_to_usbdev(intf);
4300         data->intf = intf;
4301
4302         INIT_WORK(&data->work, btusb_work);
4303         INIT_WORK(&data->waker, btusb_waker);
4304         init_usb_anchor(&data->deferred);
4305         init_usb_anchor(&data->tx_anchor);
4306         spin_lock_init(&data->txlock);
4307
4308         init_usb_anchor(&data->intr_anchor);
4309         init_usb_anchor(&data->bulk_anchor);
4310         init_usb_anchor(&data->isoc_anchor);
4311         init_usb_anchor(&data->diag_anchor);
4312         init_usb_anchor(&data->ctrl_anchor);
4313         spin_lock_init(&data->rxlock);
4314
4315         if (id->driver_info & BTUSB_INTEL_NEW) {
4316                 data->recv_event = btusb_recv_event_intel;
4317                 data->recv_bulk = btusb_recv_bulk_intel;
4318                 set_bit(BTUSB_BOOTLOADER, &data->flags);
4319         } else {
4320                 data->recv_event = hci_recv_frame;
4321                 data->recv_bulk = btusb_recv_bulk;
4322         }
4323
4324         hdev = hci_alloc_dev();
4325         if (!hdev)
4326                 return -ENOMEM;
4327
4328         hdev->bus = HCI_USB;
4329         hci_set_drvdata(hdev, data);
4330
4331         if (id->driver_info & BTUSB_AMP)
4332                 hdev->dev_type = HCI_AMP;
4333         else
4334                 hdev->dev_type = HCI_PRIMARY;
4335
4336         data->hdev = hdev;
4337
4338         SET_HCIDEV_DEV(hdev, &intf->dev);
4339
4340         reset_gpio = gpiod_get_optional(&data->udev->dev, "reset",
4341                                         GPIOD_OUT_LOW);
4342         if (IS_ERR(reset_gpio)) {
4343                 err = PTR_ERR(reset_gpio);
4344                 goto out_free_dev;
4345         } else if (reset_gpio) {
4346                 data->reset_gpio = reset_gpio;
4347         }
4348
4349         hdev->open   = btusb_open;
4350         hdev->close  = btusb_close;
4351         hdev->flush  = btusb_flush;
4352         hdev->send   = btusb_send_frame;
4353         hdev->notify = btusb_notify;
4354         hdev->prevent_wake = btusb_prevent_wake;
4355
4356 #ifdef CONFIG_PM
4357         err = btusb_config_oob_wake(hdev);
4358         if (err)
4359                 goto out_free_dev;
4360
4361         /* Marvell devices may need a specific chip configuration */
4362         if (id->driver_info & BTUSB_MARVELL && data->oob_wake_irq) {
4363                 err = marvell_config_oob_wake(hdev);
4364                 if (err)
4365                         goto out_free_dev;
4366         }
4367 #endif
4368         if (id->driver_info & BTUSB_CW6622)
4369                 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
4370
4371         if (id->driver_info & BTUSB_BCM2045)
4372                 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
4373
4374         if (id->driver_info & BTUSB_BCM92035)
4375                 hdev->setup = btusb_setup_bcm92035;
4376
4377         if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
4378             (id->driver_info & BTUSB_BCM_PATCHRAM)) {
4379                 hdev->manufacturer = 15;
4380                 hdev->setup = btbcm_setup_patchram;
4381                 hdev->set_diag = btusb_bcm_set_diag;
4382                 hdev->set_bdaddr = btbcm_set_bdaddr;
4383
4384                 /* Broadcom LM_DIAG Interface numbers are hardcoded */
4385                 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
4386         }
4387
4388         if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
4389             (id->driver_info & BTUSB_BCM_APPLE)) {
4390                 hdev->manufacturer = 15;
4391                 hdev->setup = btbcm_setup_apple;
4392                 hdev->set_diag = btusb_bcm_set_diag;
4393
4394                 /* Broadcom LM_DIAG Interface numbers are hardcoded */
4395                 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
4396         }
4397
4398         if (id->driver_info & BTUSB_INTEL) {
4399                 hdev->manufacturer = 2;
4400                 hdev->setup = btusb_setup_intel;
4401                 hdev->shutdown = btusb_shutdown_intel;
4402                 hdev->set_diag = btintel_set_diag_mfg;
4403                 hdev->set_bdaddr = btintel_set_bdaddr;
4404                 hdev->cmd_timeout = btusb_intel_cmd_timeout;
4405                 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
4406                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4407                 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
4408         }
4409
4410         if (id->driver_info & BTUSB_INTEL_NEW) {
4411                 hdev->manufacturer = 2;
4412                 hdev->send = btusb_send_frame_intel;
4413                 hdev->setup = btusb_setup_intel_new;
4414                 hdev->shutdown = btusb_shutdown_intel_new;
4415                 hdev->hw_error = btintel_hw_error;
4416                 hdev->set_diag = btintel_set_diag;
4417                 hdev->set_bdaddr = btintel_set_bdaddr;
4418                 hdev->cmd_timeout = btusb_intel_cmd_timeout;
4419                 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
4420                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4421                 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
4422         }
4423
4424         if (id->driver_info & BTUSB_INTEL_NEWGEN) {
4425                 hdev->manufacturer = 2;
4426                 hdev->send = btusb_send_frame_intel;
4427                 hdev->setup = btusb_setup_intel_newgen;
4428                 hdev->shutdown = btusb_shutdown_intel_new;
4429                 hdev->hw_error = btintel_hw_error;
4430                 hdev->set_diag = btintel_set_diag;
4431                 hdev->set_bdaddr = btintel_set_bdaddr;
4432                 hdev->cmd_timeout = btusb_intel_cmd_timeout;
4433                 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
4434                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4435                 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
4436
4437                 data->recv_event = btusb_recv_event_intel;
4438                 data->recv_bulk = btusb_recv_bulk_intel;
4439                 set_bit(BTUSB_BOOTLOADER, &data->flags);
4440         }
4441
4442         if (id->driver_info & BTUSB_MARVELL)
4443                 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
4444
4445         if (IS_ENABLED(CONFIG_BT_HCIBTUSB_MTK) &&
4446             (id->driver_info & BTUSB_MEDIATEK)) {
4447                 hdev->setup = btusb_mtk_setup;
4448                 hdev->shutdown = btusb_mtk_shutdown;
4449                 hdev->manufacturer = 70;
4450                 set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
4451         }
4452
4453         if (id->driver_info & BTUSB_SWAVE) {
4454                 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
4455                 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
4456         }
4457
4458         if (id->driver_info & BTUSB_INTEL_BOOT) {
4459                 hdev->manufacturer = 2;
4460                 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
4461         }
4462
4463         if (id->driver_info & BTUSB_ATH3012) {
4464                 data->setup_on_usb = btusb_setup_qca;
4465                 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
4466                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4467                 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
4468         }
4469
4470         if (id->driver_info & BTUSB_QCA_ROME) {
4471                 data->setup_on_usb = btusb_setup_qca;
4472                 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
4473                 hdev->cmd_timeout = btusb_qca_cmd_timeout;
4474                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4475                 btusb_check_needs_reset_resume(intf);
4476         }
4477
4478         if (id->driver_info & BTUSB_QCA_WCN6855) {
4479                 data->setup_on_usb = btusb_setup_qca;
4480                 hdev->set_bdaddr = btusb_set_bdaddr_wcn6855;
4481                 hdev->cmd_timeout = btusb_qca_cmd_timeout;
4482                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4483         }
4484
4485         if (id->driver_info & BTUSB_AMP) {
4486                 /* AMP controllers do not support SCO packets */
4487                 data->isoc = NULL;
4488         } else {
4489                 /* Interface orders are hardcoded in the specification */
4490                 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
4491                 data->isoc_ifnum = ifnum_base + 1;
4492         }
4493
4494         if (IS_ENABLED(CONFIG_BT_HCIBTUSB_RTL) &&
4495             (id->driver_info & BTUSB_REALTEK)) {
4496                 hdev->setup = btrtl_setup_realtek;
4497                 hdev->shutdown = btrtl_shutdown_realtek;
4498                 hdev->cmd_timeout = btusb_rtl_cmd_timeout;
4499
4500                 /* Realtek devices lose their updated firmware over global
4501                  * suspend that means host doesn't send SET_FEATURE
4502                  * (DEVICE_REMOTE_WAKEUP)
4503                  */
4504                 set_bit(BTUSB_WAKEUP_DISABLE, &data->flags);
4505                 if (btusb_find_altsetting(data, 1))
4506                         set_bit(BTUSB_USE_ALT1_FOR_WBS, &data->flags);
4507                 else
4508                         bt_dev_err(hdev, "Device does not support ALT setting 1");
4509         }
4510
4511         if (!reset)
4512                 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
4513
4514         if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
4515                 if (!disable_scofix)
4516                         set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
4517         }
4518
4519         if (id->driver_info & BTUSB_BROKEN_ISOC)
4520                 data->isoc = NULL;
4521
4522         if (id->driver_info & BTUSB_WIDEBAND_SPEECH)
4523                 set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks);
4524
4525         if (id->driver_info & BTUSB_VALID_LE_STATES)
4526                 set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks);
4527
4528         if (id->driver_info & BTUSB_DIGIANSWER) {
4529                 data->cmdreq_type = USB_TYPE_VENDOR;
4530                 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
4531         }
4532
4533         if (id->driver_info & BTUSB_CSR) {
4534                 struct usb_device *udev = data->udev;
4535                 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
4536
4537                 /* Old firmware would otherwise execute USB reset */
4538                 if (bcdDevice < 0x117)
4539                         set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
4540
4541                 /* This must be set first in case we disable it for fakes */
4542                 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
4543
4544                 /* Fake CSR devices with broken commands */
4545                 if (le16_to_cpu(udev->descriptor.idVendor)  == 0x0a12 &&
4546                     le16_to_cpu(udev->descriptor.idProduct) == 0x0001)
4547                         hdev->setup = btusb_setup_csr;
4548         }
4549
4550         if (id->driver_info & BTUSB_SNIFFER) {
4551                 struct usb_device *udev = data->udev;
4552
4553                 /* New sniffer firmware has crippled HCI interface */
4554                 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
4555                         set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
4556         }
4557
4558         if (id->driver_info & BTUSB_INTEL_BOOT) {
4559                 /* A bug in the bootloader causes that interrupt interface is
4560                  * only enabled after receiving SetInterface(0, AltSetting=0).
4561                  */
4562                 err = usb_set_interface(data->udev, 0, 0);
4563                 if (err < 0) {
4564                         BT_ERR("failed to set interface 0, alt 0 %d", err);
4565                         goto out_free_dev;
4566                 }
4567         }
4568
4569         if (data->isoc) {
4570                 err = usb_driver_claim_interface(&btusb_driver,
4571                                                  data->isoc, data);
4572                 if (err < 0)
4573                         goto out_free_dev;
4574         }
4575
4576         if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) && data->diag) {
4577                 if (!usb_driver_claim_interface(&btusb_driver,
4578                                                 data->diag, data))
4579                         __set_diag_interface(hdev);
4580                 else
4581                         data->diag = NULL;
4582         }
4583
4584         if (enable_autosuspend)
4585                 usb_enable_autosuspend(data->udev);
4586
4587         err = hci_register_dev(hdev);
4588         if (err < 0)
4589                 goto out_free_dev;
4590
4591         usb_set_intfdata(intf, data);
4592
4593         return 0;
4594
4595 out_free_dev:
4596         if (data->reset_gpio)
4597                 gpiod_put(data->reset_gpio);
4598         hci_free_dev(hdev);
4599         return err;
4600 }
4601
4602 static void btusb_disconnect(struct usb_interface *intf)
4603 {
4604         struct btusb_data *data = usb_get_intfdata(intf);
4605         struct hci_dev *hdev;
4606
4607         BT_DBG("intf %p", intf);
4608
4609         if (!data)
4610                 return;
4611
4612         hdev = data->hdev;
4613         usb_set_intfdata(data->intf, NULL);
4614
4615         if (data->isoc)
4616                 usb_set_intfdata(data->isoc, NULL);
4617
4618         if (data->diag)
4619                 usb_set_intfdata(data->diag, NULL);
4620
4621         hci_unregister_dev(hdev);
4622
4623         if (intf == data->intf) {
4624                 if (data->isoc)
4625                         usb_driver_release_interface(&btusb_driver, data->isoc);
4626                 if (data->diag)
4627                         usb_driver_release_interface(&btusb_driver, data->diag);
4628         } else if (intf == data->isoc) {
4629                 if (data->diag)
4630                         usb_driver_release_interface(&btusb_driver, data->diag);
4631                 usb_driver_release_interface(&btusb_driver, data->intf);
4632         } else if (intf == data->diag) {
4633                 usb_driver_release_interface(&btusb_driver, data->intf);
4634                 if (data->isoc)
4635                         usb_driver_release_interface(&btusb_driver, data->isoc);
4636         }
4637
4638         if (data->oob_wake_irq)
4639                 device_init_wakeup(&data->udev->dev, false);
4640
4641         if (data->reset_gpio)
4642                 gpiod_put(data->reset_gpio);
4643
4644         hci_free_dev(hdev);
4645 }
4646
4647 #ifdef CONFIG_PM
4648 static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
4649 {
4650         struct btusb_data *data = usb_get_intfdata(intf);
4651
4652         BT_DBG("intf %p", intf);
4653
4654         if (data->suspend_count++)
4655                 return 0;
4656
4657         spin_lock_irq(&data->txlock);
4658         if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
4659                 set_bit(BTUSB_SUSPENDING, &data->flags);
4660                 spin_unlock_irq(&data->txlock);
4661         } else {
4662                 spin_unlock_irq(&data->txlock);
4663                 data->suspend_count--;
4664                 return -EBUSY;
4665         }
4666
4667         cancel_work_sync(&data->work);
4668
4669         btusb_stop_traffic(data);
4670         usb_kill_anchored_urbs(&data->tx_anchor);
4671
4672         if (data->oob_wake_irq && device_may_wakeup(&data->udev->dev)) {
4673                 set_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
4674                 enable_irq_wake(data->oob_wake_irq);
4675                 enable_irq(data->oob_wake_irq);
4676         }
4677
4678         /* For global suspend, Realtek devices lose the loaded fw
4679          * in them. But for autosuspend, firmware should remain.
4680          * Actually, it depends on whether the usb host sends
4681          * set feature (enable wakeup) or not.
4682          */
4683         if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags)) {
4684                 if (PMSG_IS_AUTO(message) &&
4685                     device_can_wakeup(&data->udev->dev))
4686                         data->udev->do_remote_wakeup = 1;
4687                 else if (!PMSG_IS_AUTO(message))
4688                         data->udev->reset_resume = 1;
4689         }
4690
4691         return 0;
4692 }
4693
4694 static void play_deferred(struct btusb_data *data)
4695 {
4696         struct urb *urb;
4697         int err;
4698
4699         while ((urb = usb_get_from_anchor(&data->deferred))) {
4700                 usb_anchor_urb(urb, &data->tx_anchor);
4701
4702                 err = usb_submit_urb(urb, GFP_ATOMIC);
4703                 if (err < 0) {
4704                         if (err != -EPERM && err != -ENODEV)
4705                                 BT_ERR("%s urb %p submission failed (%d)",
4706                                        data->hdev->name, urb, -err);
4707                         kfree(urb->setup_packet);
4708                         usb_unanchor_urb(urb);
4709                         usb_free_urb(urb);
4710                         break;
4711                 }
4712
4713                 data->tx_in_flight++;
4714                 usb_free_urb(urb);
4715         }
4716
4717         /* Cleanup the rest deferred urbs. */
4718         while ((urb = usb_get_from_anchor(&data->deferred))) {
4719                 kfree(urb->setup_packet);
4720                 usb_free_urb(urb);
4721         }
4722 }
4723
4724 static int btusb_resume(struct usb_interface *intf)
4725 {
4726         struct btusb_data *data = usb_get_intfdata(intf);
4727         struct hci_dev *hdev = data->hdev;
4728         int err = 0;
4729
4730         BT_DBG("intf %p", intf);
4731
4732         if (--data->suspend_count)
4733                 return 0;
4734
4735         /* Disable only if not already disabled (keep it balanced) */
4736         if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
4737                 disable_irq(data->oob_wake_irq);
4738                 disable_irq_wake(data->oob_wake_irq);
4739         }
4740
4741         if (!test_bit(HCI_RUNNING, &hdev->flags))
4742                 goto done;
4743
4744         if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
4745                 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
4746                 if (err < 0) {
4747                         clear_bit(BTUSB_INTR_RUNNING, &data->flags);
4748                         goto failed;
4749                 }
4750         }
4751
4752         if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
4753                 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
4754                 if (err < 0) {
4755                         clear_bit(BTUSB_BULK_RUNNING, &data->flags);
4756                         goto failed;
4757                 }
4758
4759                 btusb_submit_bulk_urb(hdev, GFP_NOIO);
4760         }
4761
4762         if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
4763                 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
4764                         clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
4765                 else
4766                         btusb_submit_isoc_urb(hdev, GFP_NOIO);
4767         }
4768
4769         spin_lock_irq(&data->txlock);
4770         play_deferred(data);
4771         clear_bit(BTUSB_SUSPENDING, &data->flags);
4772         spin_unlock_irq(&data->txlock);
4773         schedule_work(&data->work);
4774
4775         return 0;
4776
4777 failed:
4778         usb_scuttle_anchored_urbs(&data->deferred);
4779 done:
4780         spin_lock_irq(&data->txlock);
4781         clear_bit(BTUSB_SUSPENDING, &data->flags);
4782         spin_unlock_irq(&data->txlock);
4783
4784         return err;
4785 }
4786 #endif
4787
4788 static struct usb_driver btusb_driver = {
4789         .name           = "btusb",
4790         .probe          = btusb_probe,
4791         .disconnect     = btusb_disconnect,
4792 #ifdef CONFIG_PM
4793         .suspend        = btusb_suspend,
4794         .resume         = btusb_resume,
4795 #endif
4796         .id_table       = btusb_table,
4797         .supports_autosuspend = 1,
4798         .disable_hub_initiated_lpm = 1,
4799 };
4800
4801 module_usb_driver(btusb_driver);
4802
4803 module_param(disable_scofix, bool, 0644);
4804 MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
4805
4806 module_param(force_scofix, bool, 0644);
4807 MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
4808
4809 module_param(enable_autosuspend, bool, 0644);
4810 MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
4811
4812 module_param(reset, bool, 0644);
4813 MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
4814
4815 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
4816 MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
4817 MODULE_VERSION(VERSION);
4818 MODULE_LICENSE("GPL");