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