blob: 2a55380ad730713fa4f26807294e9a9a0b5fa1b5 [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Marcel Holtmann5e23b922007-10-20 14:12:34 +020024#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020025#include <linux/usb.h>
Hans de Goede61f5ace2018-01-08 10:44:16 +010026#include <linux/usb/quirks.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070027#include <linux/firmware.h>
Rajat Jainfd913ef2017-02-01 14:24:09 -080028#include <linux/of_device.h>
29#include <linux/of_irq.h>
Jeffy Chen017789f2017-02-24 14:24:29 +080030#include <linux/suspend.h>
Daniel Drakea2698a92015-04-16 14:09:55 -060031#include <asm/unaligned.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020032
33#include <net/bluetooth/bluetooth.h>
34#include <net/bluetooth/hci_core.h>
35
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070036#include "btintel.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070037#include "btbcm.h"
Carlo Caionedb33c772015-05-14 10:49:09 +020038#include "btrtl.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070039
Marcel Holtmann34dced9b2015-04-05 22:52:16 -070040#define VERSION "0.8"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020041
Rusty Russell90ab5ee2012-01-13 09:32:20 +103042static bool disable_scofix;
43static bool force_scofix;
Hans de Goedeeff2d682017-11-13 14:44:16 +010044static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010045
Shailendra Verma917a3332015-05-25 23:53:40 +053046static bool reset = true;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020047
48static struct usb_driver btusb_driver;
49
50#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010051#define BTUSB_DIGIANSWER 0x02
52#define BTUSB_CSR 0x04
53#define BTUSB_SNIFFER 0x08
54#define BTUSB_BCM92035 0x10
55#define BTUSB_BROKEN_ISOC 0x20
56#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080057#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070058#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020059#define BTUSB_INTEL_BOOT 0x200
60#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070061#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080062#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080063#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080064#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000065#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010066#define BTUSB_BCM_APPLE 0x10000
Daniel Drakea2698a92015-04-16 14:09:55 -060067#define BTUSB_REALTEK 0x20000
Marcel Holtmann6c9d4352015-10-17 14:39:27 +020068#define BTUSB_BCM2045 0x40000
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020069#define BTUSB_IFNUM_2 0x80000
Szymon Janc418678b2016-09-01 17:22:37 +020070#define BTUSB_CW6622 0x100000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020071
Marcel Holtmann54265202013-10-11 07:46:18 -070072static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020073 /* Generic Bluetooth USB device */
74 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
75
Marcel Holtmann893ba542015-01-28 20:27:34 -080076 /* Generic Bluetooth AMP device */
77 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
78
Daniel Draked63b2822015-07-17 11:12:25 -060079 /* Generic Bluetooth USB interface */
80 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
81
Henrik Rydberg1fa65352012-08-25 19:28:06 +020082 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010083 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020084 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020085
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080086 /* MediaTek MT76x0E */
87 { USB_DEVICE(0x0e8d, 0x763f) },
88
Oliver Neukumc510eae2011-09-21 11:41:45 +020089 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040090 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020091
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090092 /* Apple MacBookPro 7,1 */
93 { USB_DEVICE(0x05ac, 0x8213) },
94
Cyril Lacoux0a79f672010-07-14 10:29:27 +040095 /* Apple iMac11,1 */
96 { USB_DEVICE(0x05ac, 0x8215) },
97
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090098 /* Apple MacBookPro6,2 */
99 { USB_DEVICE(0x05ac, 0x8218) },
100
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +0100101 /* Apple MacBookAir3,1, MacBookAir3,2 */
102 { USB_DEVICE(0x05ac, 0x821b) },
103
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -0400104 /* Apple MacBookAir4,1 */
105 { USB_DEVICE(0x05ac, 0x821f) },
106
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -0300107 /* Apple MacBookPro8,2 */
108 { USB_DEVICE(0x05ac, 0x821a) },
109
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200110 /* Apple MacMini5,1 */
111 { USB_DEVICE(0x05ac, 0x8281) },
112
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200113 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800114 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200115
116 /* Bluetooth Ultraport Module from IBM */
117 { USB_DEVICE(0x04bf, 0x030a) },
118
119 /* ALPS Modules with non-standard id */
120 { USB_DEVICE(0x044e, 0x3001) },
121 { USB_DEVICE(0x044e, 0x3002) },
122
123 /* Ericsson with non-standard id */
124 { USB_DEVICE(0x0bdb, 0x1002) },
125
126 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100127 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200128
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800129 /* Broadcom BCM20702A0 */
130 { USB_DEVICE(0x413c, 0x8197) },
131
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800132 /* Broadcom BCM20702B0 (Dynex/Insignia) */
133 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
134
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300135 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
Dmitry Tunin628c26b2017-07-06 14:41:13 +0300136 { USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
137 .driver_info = BTUSB_BCM_PATCHRAM },
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300138
Christoph Haaga57bac42017-02-10 14:02:45 +0100139 /* Broadcom BCM920703 (HTC Vive) */
140 { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
141 .driver_info = BTUSB_BCM_PATCHRAM },
142
Steven Harms98514032012-04-13 14:45:55 -0400143 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100144 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
145 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400146
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100147 /* Lite-On Technology - Broadcom based */
148 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
149 .driver_info = BTUSB_BCM_PATCHRAM },
150
Andy Shevchenko0b880062014-02-18 18:26:19 +0200151 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700152 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
153 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300154
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200155 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abdaa2015-01-17 05:29:12 +0100156 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
157 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200158
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100159 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700160 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
161 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100162
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100163 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700164 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
165 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100166
Wen-chien Jesse Sungfdfddc62017-01-10 15:41:13 +0800167 /* Dell Computer - Broadcom based */
168 { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
169 .driver_info = BTUSB_BCM_PATCHRAM },
170
Dmitry Tunin1623d0b2015-12-05 14:09:36 +0300171 /* Toshiba Corp - Broadcom based */
172 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
173 .driver_info = BTUSB_BCM_PATCHRAM },
174
Marcel Holtmann40df7832014-07-06 13:29:58 +0200175 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200176 { USB_DEVICE(0x8087, 0x0a5a),
177 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200178
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200179 { } /* Terminating entry */
180};
181
182MODULE_DEVICE_TABLE(usb, btusb_table);
183
Marcel Holtmann54265202013-10-11 07:46:18 -0700184static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200185 /* CSR BlueCore devices */
186 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
187
188 /* Broadcom BCM2033 without firmware */
189 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
190
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200191 /* Broadcom BCM2045 devices */
192 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
193
Bala Shanmugambe931122010-11-26 17:35:46 +0530194 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200195 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
196 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200197 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200198 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530199 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200200 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700201 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530202
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800203 /* Atheros AR9285 Malbec with sflash firmware */
204 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
205
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530206 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200207 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
208 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
209 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
210 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
211 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300212 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530213 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin28c971d2016-02-10 00:49:11 +0300214 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200215 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
216 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
217 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
218 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700219 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200220 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
221 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +0300222 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300223 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200224 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin81d90442016-02-28 11:04:06 +0300225 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin441ad622017-01-05 13:19:53 +0300226 { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200227 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300228 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200229 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100230 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200231 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800232 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800233 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900234 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200235 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100236 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100237 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200238 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800239 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300240 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200241 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800242 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800243 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800244 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200245 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
246 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800247 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300248 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530249 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300250 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300251 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530252 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300253 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300254 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300255 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300256 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530257
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800258 /* Atheros AR5BBU12 with sflash firmware */
259 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
260
Michael Gruetzner85d59722012-05-02 22:33:40 +0200261 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530262 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200263 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200264
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000265 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800266 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Kai-Heng Feng93519932016-08-16 12:50:06 +0800267 { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME },
AceLan Kaoe5a49ee2018-01-02 10:41:11 +0800268 { USB_DEVICE(0x0cf3, 0xe010), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700269 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
Gabriel1eef1c32017-02-20 12:32:22 -0500270 { USB_DEVICE(0x0cf3, 0xe301), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700271 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Yvain THONNART47ca5892016-06-11 15:43:30 +0200272 { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
Bartosz Chronowski858ff382017-10-26 10:22:43 +0200273 { USB_DEVICE(0x0489, 0xe09f), .driver_info = BTUSB_QCA_ROME },
Shih-Yuan Lee (FourDollars)06e41d82017-06-14 14:42:00 +0800274 { USB_DEVICE(0x0489, 0xe0a2), .driver_info = BTUSB_QCA_ROME },
Dmitry Tunin1144a4e2016-09-21 19:13:08 +0300275 { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
Ioan Moldovan0a03f982017-08-28 18:09:39 +0300276 { USB_DEVICE(0x04ca, 0x3015), .driver_info = BTUSB_QCA_ROME },
Brian Norrisd829b9e2017-07-31 17:59:39 -0700277 { USB_DEVICE(0x04ca, 0x3016), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000278
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200279 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100280 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200281 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
282 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200283
284 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100285 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
286 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200287
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200288 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100289 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
290 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200291
292 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100293 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200294
295 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100296 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200297
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100298 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100299 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100300 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200301
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100302 /* Belkin F8T012 and F8T013 devices */
303 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
304 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200305
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100306 /* Asus WL-BTD202 device */
307 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
308
309 /* Kensington Bluetooth USB adapter */
310 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
311
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200312 /* RTX Telecom based adapters with buggy SCO support */
313 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
314 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
315
316 /* CONWISE Technology based adapters with buggy SCO support */
Szymon Janc418678b2016-09-01 17:22:37 +0200317 { USB_DEVICE(0x0e5e, 0x6622),
318 .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200319
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800320 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300321 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800322
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200323 /* Digianswer devices */
324 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
325 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
326
327 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200328 { USB_DEVICE(0x0a12, 0x0002),
329 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200330
331 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200332 { USB_DEVICE(0x16d3, 0x0002),
333 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200334
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800335 /* Marvell Bluetooth devices */
336 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
337 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
Amitkumar Karwar1165df02016-09-28 16:18:35 +0530338 { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800339
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800340 /* Intel Bluetooth devices */
Marcel Holtmannde766142017-03-06 15:38:28 -0800341 { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW },
Marcel Holtmann407550f2015-02-22 15:41:18 -0800342 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700343 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800344 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800345 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong An439e65d2016-06-20 13:43:40 -0700346 { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -0700347 { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700348
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800349 /* Other Intel Bluetooth devices */
350 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
351 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700352
Daniel Drakea2698a92015-04-16 14:09:55 -0600353 /* Realtek Bluetooth devices */
354 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
355 .driver_info = BTUSB_REALTEK },
356
357 /* Additional Realtek 8723AE Bluetooth devices */
358 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
359 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
360
361 /* Additional Realtek 8723BE Bluetooth devices */
362 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
363 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
364 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
365 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
366 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
Dmitry Tunina81d72d2017-08-08 14:09:02 +0300367 { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
Daniel Drakea2698a92015-04-16 14:09:55 -0600368
369 /* Additional Realtek 8821AE Bluetooth devices */
370 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
371 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
372 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
373 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
374 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
375
Peter Poklop4481c072015-08-15 20:47:09 +0200376 /* Silicon Wave based devices */
377 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
378
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200379 { } /* Terminating entry */
380};
381
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200382#define BTUSB_MAX_ISOC_FRAMES 10
383
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200384#define BTUSB_INTR_RUNNING 0
385#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200386#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200387#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300388#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800389#define BTUSB_BOOTLOADER 5
390#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800391#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800392#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800393#define BTUSB_BOOTING 9
Hans de Goede61f5ace2018-01-08 10:44:16 +0100394#define BTUSB_DIAG_RUNNING 10
395#define BTUSB_OOB_WAKE_ENABLED 11
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200396
397struct btusb_data {
398 struct hci_dev *hdev;
399 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200400 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200401 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200402 struct usb_interface *diag;
Marcel Holtmann459232f2017-10-24 19:42:45 +0200403 unsigned isoc_ifnum;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200404
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200405 unsigned long flags;
406
407 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200408 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200409
Marcel Holtmann803b5832014-09-16 08:00:29 +0200410 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200411 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200412 int tx_in_flight;
413 spinlock_t txlock;
414
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200415 struct usb_anchor intr_anchor;
416 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200417 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200418 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200419 spinlock_t rxlock;
420
421 struct sk_buff *evt_skb;
422 struct sk_buff *acl_skb;
423 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200424
425 struct usb_endpoint_descriptor *intr_ep;
426 struct usb_endpoint_descriptor *bulk_tx_ep;
427 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200428 struct usb_endpoint_descriptor *isoc_tx_ep;
429 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200430 struct usb_endpoint_descriptor *diag_tx_ep;
431 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200432
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100433 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800434 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100435
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100436 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200437 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100438 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100439
Marcel Holtmann97307f52015-01-12 13:51:10 -0800440 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100441 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000442
443 int (*setup_on_usb)(struct hci_dev *hdev);
Rajat Jainfd913ef2017-02-01 14:24:09 -0800444
445 int oob_wake_irq; /* irq for out-of-band wake-on-bt */
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200446};
447
Marcel Holtmann803b5832014-09-16 08:00:29 +0200448static inline void btusb_free_frags(struct btusb_data *data)
449{
450 unsigned long flags;
451
452 spin_lock_irqsave(&data->rxlock, flags);
453
454 kfree_skb(data->evt_skb);
455 data->evt_skb = NULL;
456
457 kfree_skb(data->acl_skb);
458 data->acl_skb = NULL;
459
460 kfree_skb(data->sco_skb);
461 data->sco_skb = NULL;
462
463 spin_unlock_irqrestore(&data->rxlock, flags);
464}
465
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200466static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
467{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200468 struct sk_buff *skb;
469 int err = 0;
470
471 spin_lock(&data->rxlock);
472 skb = data->evt_skb;
473
474 while (count) {
475 int len;
476
477 if (!skb) {
478 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
479 if (!skb) {
480 err = -ENOMEM;
481 break;
482 }
483
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100484 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
485 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200486 }
487
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100488 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200489 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200490
491 count -= len;
492 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100493 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200494
495 if (skb->len == HCI_EVENT_HDR_SIZE) {
496 /* Complete event header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100497 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200498
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100499 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200500 kfree_skb(skb);
501 skb = NULL;
502
503 err = -EILSEQ;
504 break;
505 }
506 }
507
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100508 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200509 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800510 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200511 skb = NULL;
512 }
513 }
514
515 data->evt_skb = skb;
516 spin_unlock(&data->rxlock);
517
518 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200519}
520
521static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
522{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200523 struct sk_buff *skb;
524 int err = 0;
525
526 spin_lock(&data->rxlock);
527 skb = data->acl_skb;
528
529 while (count) {
530 int len;
531
532 if (!skb) {
533 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
534 if (!skb) {
535 err = -ENOMEM;
536 break;
537 }
538
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100539 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
540 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200541 }
542
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100543 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200544 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200545
546 count -= len;
547 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100548 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200549
550 if (skb->len == HCI_ACL_HDR_SIZE) {
551 __le16 dlen = hci_acl_hdr(skb)->dlen;
552
553 /* Complete ACL header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100554 hci_skb_expect(skb) = __le16_to_cpu(dlen);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200555
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100556 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200557 kfree_skb(skb);
558 skb = NULL;
559
560 err = -EILSEQ;
561 break;
562 }
563 }
564
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100565 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200566 /* Complete frame */
567 hci_recv_frame(data->hdev, skb);
568 skb = NULL;
569 }
570 }
571
572 data->acl_skb = skb;
573 spin_unlock(&data->rxlock);
574
575 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200576}
577
578static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
579{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200580 struct sk_buff *skb;
581 int err = 0;
582
583 spin_lock(&data->rxlock);
584 skb = data->sco_skb;
585
586 while (count) {
587 int len;
588
589 if (!skb) {
590 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
591 if (!skb) {
592 err = -ENOMEM;
593 break;
594 }
595
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100596 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
597 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200598 }
599
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100600 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200601 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200602
603 count -= len;
604 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100605 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200606
607 if (skb->len == HCI_SCO_HDR_SIZE) {
608 /* Complete SCO header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100609 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200610
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100611 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200612 kfree_skb(skb);
613 skb = NULL;
614
615 err = -EILSEQ;
616 break;
617 }
618 }
619
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100620 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200621 /* Complete frame */
622 hci_recv_frame(data->hdev, skb);
623 skb = NULL;
624 }
625 }
626
627 data->sco_skb = skb;
628 spin_unlock(&data->rxlock);
629
630 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200631}
632
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200633static void btusb_intr_complete(struct urb *urb)
634{
635 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100636 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637 int err;
638
Marcel Holtmann89e75332014-09-16 04:44:50 +0200639 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
640 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200641
642 if (!test_bit(HCI_RUNNING, &hdev->flags))
643 return;
644
645 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200646 hdev->stat.byte_rx += urb->actual_length;
647
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200648 if (btusb_recv_intr(data, urb->transfer_buffer,
649 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100650 bt_dev_err(hdev, "corrupted event packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200651 hdev->stat.err_rx++;
652 }
Champion Chen85560c42014-09-06 14:06:08 -0500653 } else if (urb->status == -ENOENT) {
654 /* Avoid suspend failed when usb_kill_urb */
655 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200656 }
657
658 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
659 return;
660
Oliver Neukum7bee5492009-08-24 23:44:59 +0200661 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200662 usb_anchor_urb(urb, &data->intr_anchor);
663
664 err = usb_submit_urb(urb, GFP_ATOMIC);
665 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200666 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200667 * -ENODEV: device got disconnected
668 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200669 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100670 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
671 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200672 usb_unanchor_urb(urb);
673 }
674}
675
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100676static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200677{
David Herrmann155961e2012-02-09 21:58:32 +0100678 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200679 struct urb *urb;
680 unsigned char *buf;
681 unsigned int pipe;
682 int err, size;
683
684 BT_DBG("%s", hdev->name);
685
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200686 if (!data->intr_ep)
687 return -ENODEV;
688
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100689 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200690 if (!urb)
691 return -ENOMEM;
692
693 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
694
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100695 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200696 if (!buf) {
697 usb_free_urb(urb);
698 return -ENOMEM;
699 }
700
701 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
702
703 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200704 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200705
706 urb->transfer_flags |= URB_FREE_BUFFER;
707
708 usb_anchor_urb(urb, &data->intr_anchor);
709
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100710 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200711 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200712 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100713 bt_dev_err(hdev, "urb %p submission failed (%d)",
714 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200715 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200716 }
717
718 usb_free_urb(urb);
719
720 return err;
721}
722
723static void btusb_bulk_complete(struct urb *urb)
724{
725 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100726 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200727 int err;
728
Marcel Holtmann89e75332014-09-16 04:44:50 +0200729 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
730 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200731
732 if (!test_bit(HCI_RUNNING, &hdev->flags))
733 return;
734
735 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200736 hdev->stat.byte_rx += urb->actual_length;
737
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100738 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200739 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100740 bt_dev_err(hdev, "corrupted ACL packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200741 hdev->stat.err_rx++;
742 }
Champion Chen85560c42014-09-06 14:06:08 -0500743 } else if (urb->status == -ENOENT) {
744 /* Avoid suspend failed when usb_kill_urb */
745 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200746 }
747
748 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
749 return;
750
751 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100752 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200753
754 err = usb_submit_urb(urb, GFP_ATOMIC);
755 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200756 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200757 * -ENODEV: device got disconnected
758 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200759 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100760 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
761 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200762 usb_unanchor_urb(urb);
763 }
764}
765
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100766static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200767{
David Herrmann155961e2012-02-09 21:58:32 +0100768 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200769 struct urb *urb;
770 unsigned char *buf;
771 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530772 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200773
774 BT_DBG("%s", hdev->name);
775
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200776 if (!data->bulk_rx_ep)
777 return -ENODEV;
778
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100779 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200780 if (!urb)
781 return -ENOMEM;
782
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100783 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200784 if (!buf) {
785 usb_free_urb(urb);
786 return -ENOMEM;
787 }
788
789 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
790
Marcel Holtmann89e75332014-09-16 04:44:50 +0200791 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
792 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200793
794 urb->transfer_flags |= URB_FREE_BUFFER;
795
Oliver Neukum7bee5492009-08-24 23:44:59 +0200796 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200797 usb_anchor_urb(urb, &data->bulk_anchor);
798
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100799 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200800 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200801 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100802 bt_dev_err(hdev, "urb %p submission failed (%d)",
803 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200804 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200805 }
806
807 usb_free_urb(urb);
808
809 return err;
810}
811
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200812static void btusb_isoc_complete(struct urb *urb)
813{
814 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100815 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200816 int i, err;
817
Marcel Holtmann89e75332014-09-16 04:44:50 +0200818 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
819 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200820
821 if (!test_bit(HCI_RUNNING, &hdev->flags))
822 return;
823
824 if (urb->status == 0) {
825 for (i = 0; i < urb->number_of_packets; i++) {
826 unsigned int offset = urb->iso_frame_desc[i].offset;
827 unsigned int length = urb->iso_frame_desc[i].actual_length;
828
829 if (urb->iso_frame_desc[i].status)
830 continue;
831
832 hdev->stat.byte_rx += length;
833
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200834 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
835 length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100836 bt_dev_err(hdev, "corrupted SCO packet");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200837 hdev->stat.err_rx++;
838 }
839 }
Champion Chen85560c42014-09-06 14:06:08 -0500840 } else if (urb->status == -ENOENT) {
841 /* Avoid suspend failed when usb_kill_urb */
842 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200843 }
844
845 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
846 return;
847
848 usb_anchor_urb(urb, &data->isoc_anchor);
849
850 err = usb_submit_urb(urb, GFP_ATOMIC);
851 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200852 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200853 * -ENODEV: device got disconnected
854 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200855 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100856 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
857 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858 usb_unanchor_urb(urb);
859 }
860}
861
Jesper Juhl42b16b32011-01-17 00:09:38 +0100862static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200863{
864 int i, offset = 0;
865
866 BT_DBG("len %d mtu %d", len, mtu);
867
868 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
869 i++, offset += mtu, len -= mtu) {
870 urb->iso_frame_desc[i].offset = offset;
871 urb->iso_frame_desc[i].length = mtu;
872 }
873
874 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
875 urb->iso_frame_desc[i].offset = offset;
876 urb->iso_frame_desc[i].length = len;
877 i++;
878 }
879
880 urb->number_of_packets = i;
881}
882
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100883static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200884{
David Herrmann155961e2012-02-09 21:58:32 +0100885 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200886 struct urb *urb;
887 unsigned char *buf;
888 unsigned int pipe;
889 int err, size;
890
891 BT_DBG("%s", hdev->name);
892
893 if (!data->isoc_rx_ep)
894 return -ENODEV;
895
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100896 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200897 if (!urb)
898 return -ENOMEM;
899
900 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
901 BTUSB_MAX_ISOC_FRAMES;
902
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100903 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200904 if (!buf) {
905 usb_free_urb(urb);
906 return -ENOMEM;
907 }
908
909 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
910
Bing Zhaofa0fb932011-12-20 18:19:00 -0800911 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200912 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200913
Marcel Holtmann89e75332014-09-16 04:44:50 +0200914 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200915
916 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200917 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200918
919 usb_anchor_urb(urb, &data->isoc_anchor);
920
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100921 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200922 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200923 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100924 bt_dev_err(hdev, "urb %p submission failed (%d)",
925 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200926 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200927 }
928
929 usb_free_urb(urb);
930
931 return err;
932}
933
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200934static void btusb_diag_complete(struct urb *urb)
935{
936 struct hci_dev *hdev = urb->context;
937 struct btusb_data *data = hci_get_drvdata(hdev);
938 int err;
939
940 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
941 urb->actual_length);
942
943 if (urb->status == 0) {
944 struct sk_buff *skb;
945
946 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
947 if (skb) {
Johannes Berg59ae1d12017-06-16 14:29:20 +0200948 skb_put_data(skb, urb->transfer_buffer,
949 urb->actual_length);
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200950 hci_recv_diag(hdev, skb);
951 }
952 } else if (urb->status == -ENOENT) {
953 /* Avoid suspend failed when usb_kill_urb */
954 return;
955 }
956
957 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
958 return;
959
960 usb_anchor_urb(urb, &data->diag_anchor);
961 usb_mark_last_busy(data->udev);
962
963 err = usb_submit_urb(urb, GFP_ATOMIC);
964 if (err < 0) {
965 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200966 * -ENODEV: device got disconnected
967 */
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200968 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100969 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
970 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200971 usb_unanchor_urb(urb);
972 }
973}
974
975static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
976{
977 struct btusb_data *data = hci_get_drvdata(hdev);
978 struct urb *urb;
979 unsigned char *buf;
980 unsigned int pipe;
981 int err, size = HCI_MAX_FRAME_SIZE;
982
983 BT_DBG("%s", hdev->name);
984
985 if (!data->diag_rx_ep)
986 return -ENODEV;
987
988 urb = usb_alloc_urb(0, mem_flags);
989 if (!urb)
990 return -ENOMEM;
991
992 buf = kmalloc(size, mem_flags);
993 if (!buf) {
994 usb_free_urb(urb);
995 return -ENOMEM;
996 }
997
998 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
999
1000 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1001 btusb_diag_complete, hdev);
1002
1003 urb->transfer_flags |= URB_FREE_BUFFER;
1004
1005 usb_mark_last_busy(data->udev);
1006 usb_anchor_urb(urb, &data->diag_anchor);
1007
1008 err = usb_submit_urb(urb, mem_flags);
1009 if (err < 0) {
1010 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001011 bt_dev_err(hdev, "urb %p submission failed (%d)",
1012 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001013 usb_unanchor_urb(urb);
1014 }
1015
1016 usb_free_urb(urb);
1017
1018 return err;
1019}
1020
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001021static void btusb_tx_complete(struct urb *urb)
1022{
1023 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001024 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +01001025 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001026
Marcel Holtmann89e75332014-09-16 04:44:50 +02001027 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1028 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001029
1030 if (!test_bit(HCI_RUNNING, &hdev->flags))
1031 goto done;
1032
1033 if (!urb->status)
1034 hdev->stat.byte_tx += urb->transfer_buffer_length;
1035 else
1036 hdev->stat.err_tx++;
1037
1038done:
1039 spin_lock(&data->txlock);
1040 data->tx_in_flight--;
1041 spin_unlock(&data->txlock);
1042
1043 kfree(urb->setup_packet);
1044
1045 kfree_skb(skb);
1046}
1047
1048static void btusb_isoc_tx_complete(struct urb *urb)
1049{
1050 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001051 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001052
Marcel Holtmann89e75332014-09-16 04:44:50 +02001053 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1054 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001055
1056 if (!test_bit(HCI_RUNNING, &hdev->flags))
1057 goto done;
1058
1059 if (!urb->status)
1060 hdev->stat.byte_tx += urb->transfer_buffer_length;
1061 else
1062 hdev->stat.err_tx++;
1063
1064done:
1065 kfree(urb->setup_packet);
1066
1067 kfree_skb(skb);
1068}
1069
1070static int btusb_open(struct hci_dev *hdev)
1071{
David Herrmann155961e2012-02-09 21:58:32 +01001072 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001073 int err;
1074
1075 BT_DBG("%s", hdev->name);
1076
Ethan Hsiehc7e163f2016-10-07 12:06:42 +08001077 err = usb_autopm_get_interface(data->intf);
1078 if (err < 0)
1079 return err;
1080
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001081 /* Patching USB firmware files prior to starting any URBs of HCI path
1082 * It is more safe to use USB bulk channel for downloading USB patch
1083 */
1084 if (data->setup_on_usb) {
1085 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001086 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001087 return err;
1088 }
1089
Oliver Neukum7bee5492009-08-24 23:44:59 +02001090 data->intf->needs_remote_wakeup = 1;
Sukumar Ghoraia0085f22017-08-16 14:46:55 -07001091 /* device specific wakeup source enabled and required for USB
1092 * remote wakeup while host is suspended
1093 */
1094 device_wakeup_enable(&data->udev->dev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001095
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001096 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001097 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001098
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001099 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001100 if (err < 0)
1101 goto failed;
1102
1103 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001104 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001105 usb_kill_anchored_urbs(&data->intr_anchor);
1106 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001107 }
1108
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001109 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1110 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1111
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001112 if (data->diag) {
1113 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1114 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1115 }
1116
Oliver Neukum7bee5492009-08-24 23:44:59 +02001117done:
1118 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001119 return 0;
1120
1121failed:
1122 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001123 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001124 return err;
1125}
1126
Oliver Neukum7bee5492009-08-24 23:44:59 +02001127static void btusb_stop_traffic(struct btusb_data *data)
1128{
1129 usb_kill_anchored_urbs(&data->intr_anchor);
1130 usb_kill_anchored_urbs(&data->bulk_anchor);
1131 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001132 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001133}
1134
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001135static int btusb_close(struct hci_dev *hdev)
1136{
David Herrmann155961e2012-02-09 21:58:32 +01001137 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001138 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001139
1140 BT_DBG("%s", hdev->name);
1141
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001142 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001143 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001144
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001145 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001146 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001147 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001148 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001149
1150 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001151 btusb_free_frags(data);
1152
Oliver Neukum7bee5492009-08-24 23:44:59 +02001153 err = usb_autopm_get_interface(data->intf);
1154 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001155 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001156
1157 data->intf->needs_remote_wakeup = 0;
Sukumar Ghoraia0085f22017-08-16 14:46:55 -07001158 device_wakeup_disable(&data->udev->dev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001159 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001160
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001161failed:
1162 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001163 return 0;
1164}
1165
1166static int btusb_flush(struct hci_dev *hdev)
1167{
David Herrmann155961e2012-02-09 21:58:32 +01001168 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001169
1170 BT_DBG("%s", hdev->name);
1171
1172 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001173 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001174
1175 return 0;
1176}
1177
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001178static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001179{
David Herrmann155961e2012-02-09 21:58:32 +01001180 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001181 struct usb_ctrlrequest *dr;
1182 struct urb *urb;
1183 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001184
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001185 urb = usb_alloc_urb(0, GFP_KERNEL);
1186 if (!urb)
1187 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001188
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001189 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1190 if (!dr) {
1191 usb_free_urb(urb);
1192 return ERR_PTR(-ENOMEM);
1193 }
1194
1195 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001196 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001197 dr->wIndex = 0;
1198 dr->wValue = 0;
1199 dr->wLength = __cpu_to_le16(skb->len);
1200
1201 pipe = usb_sndctrlpipe(data->udev, 0x00);
1202
Marcel Holtmann89e75332014-09-16 04:44:50 +02001203 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001204 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001205
Marcel Holtmann89e75332014-09-16 04:44:50 +02001206 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001207
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001208 return urb;
1209}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001210
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001211static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1212{
1213 struct btusb_data *data = hci_get_drvdata(hdev);
1214 struct urb *urb;
1215 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001217 if (!data->bulk_tx_ep)
1218 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001219
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001220 urb = usb_alloc_urb(0, GFP_KERNEL);
1221 if (!urb)
1222 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001223
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001224 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001225
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001226 usb_fill_bulk_urb(urb, data->udev, pipe,
1227 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001228
Marcel Holtmann89e75332014-09-16 04:44:50 +02001229 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001230
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001231 return urb;
1232}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001233
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001234static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1235{
1236 struct btusb_data *data = hci_get_drvdata(hdev);
1237 struct urb *urb;
1238 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001239
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001240 if (!data->isoc_tx_ep)
1241 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001242
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001243 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1244 if (!urb)
1245 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001246
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001247 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001248
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001249 usb_fill_int_urb(urb, data->udev, pipe,
1250 skb->data, skb->len, btusb_isoc_tx_complete,
1251 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001252
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001253 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001254
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001255 __fill_isoc_descriptor(urb, skb->len,
1256 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001257
Marcel Holtmann89e75332014-09-16 04:44:50 +02001258 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001259
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001260 return urb;
1261}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001262
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001263static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1264{
1265 struct btusb_data *data = hci_get_drvdata(hdev);
1266 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001267
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001268 usb_anchor_urb(urb, &data->tx_anchor);
1269
Johan Hedberge9753ef2014-09-14 08:49:34 +03001270 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001271 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001272 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001273 bt_dev_err(hdev, "urb %p submission failed (%d)",
1274 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001275 kfree(urb->setup_packet);
1276 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001277 } else {
1278 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001279 }
1280
Cong Wang54a8a792011-11-22 09:32:57 +08001281 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001282 return err;
1283}
1284
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001285static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1286{
1287 struct btusb_data *data = hci_get_drvdata(hdev);
1288 unsigned long flags;
1289 bool suspending;
1290
1291 spin_lock_irqsave(&data->txlock, flags);
1292 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1293 if (!suspending)
1294 data->tx_in_flight++;
1295 spin_unlock_irqrestore(&data->txlock, flags);
1296
1297 if (!suspending)
1298 return submit_tx_urb(hdev, urb);
1299
1300 usb_anchor_urb(urb, &data->deferred);
1301 schedule_work(&data->waker);
1302
1303 usb_free_urb(urb);
1304 return 0;
1305}
1306
1307static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1308{
1309 struct urb *urb;
1310
1311 BT_DBG("%s", hdev->name);
1312
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001313 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001314 case HCI_COMMAND_PKT:
1315 urb = alloc_ctrl_urb(hdev, skb);
1316 if (IS_ERR(urb))
1317 return PTR_ERR(urb);
1318
1319 hdev->stat.cmd_tx++;
1320 return submit_or_queue_tx_urb(hdev, urb);
1321
1322 case HCI_ACLDATA_PKT:
1323 urb = alloc_bulk_urb(hdev, skb);
1324 if (IS_ERR(urb))
1325 return PTR_ERR(urb);
1326
1327 hdev->stat.acl_tx++;
1328 return submit_or_queue_tx_urb(hdev, urb);
1329
1330 case HCI_SCODATA_PKT:
1331 if (hci_conn_num(hdev, SCO_LINK) < 1)
1332 return -ENODEV;
1333
1334 urb = alloc_isoc_urb(hdev, skb);
1335 if (IS_ERR(urb))
1336 return PTR_ERR(urb);
1337
1338 hdev->stat.sco_tx++;
1339 return submit_tx_urb(hdev, urb);
1340 }
1341
1342 return -EILSEQ;
1343}
1344
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001345static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1346{
David Herrmann155961e2012-02-09 21:58:32 +01001347 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001348
1349 BT_DBG("%s evt %d", hdev->name, evt);
1350
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001351 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1352 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001353 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001354 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001355}
1356
Jesper Juhl42b16b32011-01-17 00:09:38 +01001357static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001358{
David Herrmann155961e2012-02-09 21:58:32 +01001359 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001360 struct usb_interface *intf = data->isoc;
1361 struct usb_endpoint_descriptor *ep_desc;
1362 int i, err;
1363
1364 if (!data->isoc)
1365 return -ENODEV;
1366
Marcel Holtmann459232f2017-10-24 19:42:45 +02001367 err = usb_set_interface(data->udev, data->isoc_ifnum, altsetting);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001368 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001369 bt_dev_err(hdev, "setting interface failed (%d)", -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001370 return err;
1371 }
1372
1373 data->isoc_altsetting = altsetting;
1374
1375 data->isoc_tx_ep = NULL;
1376 data->isoc_rx_ep = NULL;
1377
1378 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1379 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1380
1381 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1382 data->isoc_tx_ep = ep_desc;
1383 continue;
1384 }
1385
1386 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1387 data->isoc_rx_ep = ep_desc;
1388 continue;
1389 }
1390 }
1391
1392 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001393 bt_dev_err(hdev, "invalid SCO descriptors");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001394 return -ENODEV;
1395 }
1396
1397 return 0;
1398}
1399
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001400static void btusb_work(struct work_struct *work)
1401{
1402 struct btusb_data *data = container_of(work, struct btusb_data, work);
1403 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001404 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001405 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001406
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001407 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001408 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001409 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001410 if (err < 0) {
1411 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1412 usb_kill_anchored_urbs(&data->isoc_anchor);
1413 return;
1414 }
1415
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001416 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001417 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001418
1419 if (hdev->voice_setting & 0x0020) {
1420 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001421
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001422 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001423 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001424 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001425 }
1426
1427 if (data->isoc_altsetting != new_alts) {
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001428 unsigned long flags;
1429
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001430 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1431 usb_kill_anchored_urbs(&data->isoc_anchor);
1432
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001433 /* When isochronous alternate setting needs to be
1434 * changed, because SCO connection has been added
1435 * or removed, a packet fragment may be left in the
1436 * reassembling state. This could lead to wrongly
1437 * assembled fragments.
1438 *
1439 * Clear outstanding fragment when selecting a new
1440 * alternate setting.
1441 */
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001442 spin_lock_irqsave(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001443 kfree_skb(data->sco_skb);
1444 data->sco_skb = NULL;
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001445 spin_unlock_irqrestore(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001446
Mikel Astizf4001d22012-04-11 08:48:51 +02001447 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001448 return;
1449 }
1450
1451 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001452 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001453 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1454 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001455 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001456 }
1457 } else {
1458 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1459 usb_kill_anchored_urbs(&data->isoc_anchor);
1460
1461 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001462 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001463 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001464 }
1465}
1466
Oliver Neukum7bee5492009-08-24 23:44:59 +02001467static void btusb_waker(struct work_struct *work)
1468{
1469 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1470 int err;
1471
1472 err = usb_autopm_get_interface(data->intf);
1473 if (err < 0)
1474 return;
1475
1476 usb_autopm_put_interface(data->intf);
1477}
1478
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001479static int btusb_setup_bcm92035(struct hci_dev *hdev)
1480{
1481 struct sk_buff *skb;
1482 u8 val = 0x00;
1483
1484 BT_DBG("%s", hdev->name);
1485
1486 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1487 if (IS_ERR(skb))
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001488 bt_dev_err(hdev, "BCM92035 command failed (%ld)", PTR_ERR(skb));
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001489 else
1490 kfree_skb(skb);
1491
1492 return 0;
1493}
1494
Marcel Holtmann81cac642014-01-03 03:02:36 -08001495static int btusb_setup_csr(struct hci_dev *hdev)
1496{
1497 struct hci_rp_read_local_version *rp;
1498 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001499
1500 BT_DBG("%s", hdev->name);
1501
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001502 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1503 HCI_INIT_TIMEOUT);
1504 if (IS_ERR(skb)) {
1505 int err = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001506 bt_dev_err(hdev, "CSR: Local version failed (%d)", err);
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001507 return err;
1508 }
1509
1510 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001511 bt_dev_err(hdev, "CSR: Local version length mismatch");
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001512 kfree_skb(skb);
1513 return -EIO;
1514 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001515
Marcel Holtmann89e75332014-09-16 04:44:50 +02001516 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001517
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001518 /* Detect controllers which aren't real CSR ones. */
1519 if (le16_to_cpu(rp->manufacturer) != 10 ||
1520 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001521 /* Clear the reset quirk since this is not an actual
1522 * early Bluetooth 1.1 device from CSR.
1523 */
1524 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001525
Marcel Holtmann9641d342015-06-07 10:01:01 +02001526 /* These fake CSR controllers have all a broken
1527 * stored link key handling and so just disable it.
1528 */
1529 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001530 }
1531
Marcel Holtmann81cac642014-01-03 03:02:36 -08001532 kfree_skb(skb);
1533
Marcel Holtmann9641d342015-06-07 10:01:01 +02001534 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001535}
1536
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001537static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001538 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001539{
1540 const struct firmware *fw;
1541 char fwname[64];
1542 int ret;
1543
1544 snprintf(fwname, sizeof(fwname),
1545 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1546 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1547 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1548 ver->fw_build_ww, ver->fw_build_yy);
1549
1550 ret = request_firmware(&fw, fwname, &hdev->dev);
1551 if (ret < 0) {
1552 if (ret == -EINVAL) {
1553 BT_ERR("%s Intel firmware file request failed (%d)",
1554 hdev->name, ret);
1555 return NULL;
1556 }
1557
1558 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1559 hdev->name, fwname, ret);
1560
1561 /* If the correct firmware patch file is not found, use the
1562 * default firmware patch file instead
1563 */
1564 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1565 ver->hw_platform, ver->hw_variant);
1566 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1567 BT_ERR("%s failed to open default Intel fw file: %s",
1568 hdev->name, fwname);
1569 return NULL;
1570 }
1571 }
1572
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001573 bt_dev_info(hdev, "Intel Bluetooth firmware file: %s", fwname);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001574
1575 return fw;
1576}
1577
1578static int btusb_setup_intel_patching(struct hci_dev *hdev,
1579 const struct firmware *fw,
1580 const u8 **fw_ptr, int *disable_patch)
1581{
1582 struct sk_buff *skb;
1583 struct hci_command_hdr *cmd;
1584 const u8 *cmd_param;
1585 struct hci_event_hdr *evt = NULL;
1586 const u8 *evt_param = NULL;
1587 int remain = fw->size - (*fw_ptr - fw->data);
1588
1589 /* The first byte indicates the types of the patch command or event.
1590 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1591 * in the current firmware buffer doesn't start with 0x01 or
1592 * the size of remain buffer is smaller than HCI command header,
1593 * the firmware file is corrupted and it should stop the patching
1594 * process.
1595 */
1596 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1597 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1598 return -EINVAL;
1599 }
1600 (*fw_ptr)++;
1601 remain--;
1602
1603 cmd = (struct hci_command_hdr *)(*fw_ptr);
1604 *fw_ptr += sizeof(*cmd);
1605 remain -= sizeof(*cmd);
1606
1607 /* Ensure that the remain firmware data is long enough than the length
1608 * of command parameter. If not, the firmware file is corrupted.
1609 */
1610 if (remain < cmd->plen) {
1611 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1612 return -EFAULT;
1613 }
1614
1615 /* If there is a command that loads a patch in the firmware
1616 * file, then enable the patch upon success, otherwise just
1617 * disable the manufacturer mode, for example patch activation
1618 * is not required when the default firmware patch file is used
1619 * because there are no patch data to load.
1620 */
1621 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1622 *disable_patch = 0;
1623
1624 cmd_param = *fw_ptr;
1625 *fw_ptr += cmd->plen;
1626 remain -= cmd->plen;
1627
1628 /* This reads the expected events when the above command is sent to the
1629 * device. Some vendor commands expects more than one events, for
1630 * example command status event followed by vendor specific event.
1631 * For this case, it only keeps the last expected event. so the command
1632 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1633 * last expected event.
1634 */
1635 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1636 (*fw_ptr)++;
1637 remain--;
1638
1639 evt = (struct hci_event_hdr *)(*fw_ptr);
1640 *fw_ptr += sizeof(*evt);
1641 remain -= sizeof(*evt);
1642
1643 if (remain < evt->plen) {
1644 BT_ERR("%s Intel fw corrupted: invalid evt len",
1645 hdev->name);
1646 return -EFAULT;
1647 }
1648
1649 evt_param = *fw_ptr;
1650 *fw_ptr += evt->plen;
1651 remain -= evt->plen;
1652 }
1653
1654 /* Every HCI commands in the firmware file has its correspond event.
1655 * If event is not found or remain is smaller than zero, the firmware
1656 * file is corrupted.
1657 */
1658 if (!evt || !evt_param || remain < 0) {
1659 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1660 return -EFAULT;
1661 }
1662
1663 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1664 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1665 if (IS_ERR(skb)) {
1666 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1667 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001668 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001669 }
1670
1671 /* It ensures that the returned event matches the event data read from
1672 * the firmware file. At fist, it checks the length and then
1673 * the contents of the event.
1674 */
1675 if (skb->len != evt->plen) {
1676 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1677 le16_to_cpu(cmd->opcode));
1678 kfree_skb(skb);
1679 return -EFAULT;
1680 }
1681
1682 if (memcmp(skb->data, evt_param, evt->plen)) {
1683 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1684 hdev->name, le16_to_cpu(cmd->opcode));
1685 kfree_skb(skb);
1686 return -EFAULT;
1687 }
1688 kfree_skb(skb);
1689
1690 return 0;
1691}
1692
1693static int btusb_setup_intel(struct hci_dev *hdev)
1694{
1695 struct sk_buff *skb;
1696 const struct firmware *fw;
1697 const u8 *fw_ptr;
Loic Poulain28dc4b92015-12-03 16:10:22 +01001698 int disable_patch, err;
Loic Poulain6c483de2015-12-06 16:18:34 +01001699 struct intel_version ver;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001700
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001701 BT_DBG("%s", hdev->name);
1702
1703 /* The controller has a bug with the first HCI command sent to it
1704 * returning number of completed commands as zero. This would stall the
1705 * command processing in the Bluetooth core.
1706 *
1707 * As a workaround, send HCI Reset command first which will reset the
1708 * number of completed commands and allow normal command processing
1709 * from now on.
1710 */
1711 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1712 if (IS_ERR(skb)) {
1713 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1714 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001715 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001716 }
1717 kfree_skb(skb);
1718
1719 /* Read Intel specific controller version first to allow selection of
1720 * which firmware file to load.
1721 *
1722 * The returned information are hardware variant and revision plus
1723 * firmware variant, revision and build number.
1724 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001725 err = btintel_read_version(hdev, &ver);
1726 if (err)
1727 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001728
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001729 bt_dev_info(hdev, "read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1730 ver.hw_platform, ver.hw_variant, ver.hw_revision,
1731 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1732 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001733
1734 /* fw_patch_num indicates the version of patch the device currently
1735 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001736 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001737 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001738 if (ver.fw_patch_num) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001739 bt_dev_info(hdev, "Intel device is already patched. "
1740 "patch num: %02x", ver.fw_patch_num);
Marcel Holtmann213445b2015-10-21 02:45:19 +02001741 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001742 }
1743
1744 /* Opens the firmware patch file based on the firmware version read
1745 * from the controller. If it fails to open the matching firmware
1746 * patch file, it tries to open the default firmware patch file.
1747 * If no patch file is found, allow the device to operate without
1748 * a patch.
1749 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001750 fw = btusb_setup_intel_get_fw(hdev, &ver);
1751 if (!fw)
Marcel Holtmann213445b2015-10-21 02:45:19 +02001752 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001753 fw_ptr = fw->data;
1754
Loic Poulain28dc4b92015-12-03 16:10:22 +01001755 /* Enable the manufacturer mode of the controller.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001756 * Only while this mode is enabled, the driver can download the
1757 * firmware patch data and configuration parameters.
1758 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001759 err = btintel_enter_mfg(hdev);
1760 if (err) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001761 release_firmware(fw);
Loic Poulain28dc4b92015-12-03 16:10:22 +01001762 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001763 }
1764
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001765 disable_patch = 1;
1766
1767 /* The firmware data file consists of list of Intel specific HCI
1768 * commands and its expected events. The first byte indicates the
1769 * type of the message, either HCI command or HCI event.
1770 *
1771 * It reads the command and its expected event from the firmware file,
1772 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1773 * the returned event is compared with the event read from the firmware
1774 * file and it will continue until all the messages are downloaded to
1775 * the controller.
1776 *
1777 * Once the firmware patching is completed successfully,
1778 * the manufacturer mode is disabled with reset and activating the
1779 * downloaded patch.
1780 *
1781 * If the firmware patching fails, the manufacturer mode is
1782 * disabled with reset and deactivating the patch.
1783 *
1784 * If the default patch file is used, no reset is done when disabling
1785 * the manufacturer.
1786 */
1787 while (fw->size > fw_ptr - fw->data) {
1788 int ret;
1789
1790 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1791 &disable_patch);
1792 if (ret < 0)
1793 goto exit_mfg_deactivate;
1794 }
1795
1796 release_firmware(fw);
1797
1798 if (disable_patch)
1799 goto exit_mfg_disable;
1800
1801 /* Patching completed successfully and disable the manufacturer mode
1802 * with reset and activate the downloaded firmware patches.
1803 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001804 err = btintel_exit_mfg(hdev, true, true);
1805 if (err)
1806 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001807
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001808 bt_dev_info(hdev, "Intel firmware patch completed and activated");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001809
Marcel Holtmann213445b2015-10-21 02:45:19 +02001810 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001811
1812exit_mfg_disable:
1813 /* Disable the manufacturer mode without reset */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001814 err = btintel_exit_mfg(hdev, false, false);
1815 if (err)
1816 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001817
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001818 bt_dev_info(hdev, "Intel firmware patch completed");
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001819
Marcel Holtmann213445b2015-10-21 02:45:19 +02001820 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001821
1822exit_mfg_deactivate:
1823 release_firmware(fw);
1824
1825 /* Patching failed. Disable the manufacturer mode with reset and
1826 * deactivate the downloaded firmware patches.
1827 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001828 err = btintel_exit_mfg(hdev, true, false);
1829 if (err)
1830 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001831
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001832 bt_dev_info(hdev, "Intel firmware patch completed and deactivated");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001833
Marcel Holtmann213445b2015-10-21 02:45:19 +02001834complete:
1835 /* Set the event mask for Intel specific vendor events. This enables
1836 * a few extra events that are useful during general operation.
1837 */
1838 btintel_set_event_mask_mfg(hdev, false);
1839
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001840 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001841 return 0;
1842}
1843
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001844static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1845{
1846 struct sk_buff *skb;
1847 struct hci_event_hdr *hdr;
1848 struct hci_ev_cmd_complete *evt;
1849
1850 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1851 if (!skb)
1852 return -ENOMEM;
1853
Johannes Berg4df864c2017-06-16 14:29:21 +02001854 hdr = skb_put(skb, sizeof(*hdr));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001855 hdr->evt = HCI_EV_CMD_COMPLETE;
1856 hdr->plen = sizeof(*evt) + 1;
1857
Johannes Berg4df864c2017-06-16 14:29:21 +02001858 evt = skb_put(skb, sizeof(*evt));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001859 evt->ncmd = 0x01;
1860 evt->opcode = cpu_to_le16(opcode);
1861
Johannes Berg634fef62017-06-16 14:29:24 +02001862 skb_put_u8(skb, 0x00);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001863
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001864 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001865
1866 return hci_recv_frame(hdev, skb);
1867}
1868
1869static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1870 int count)
1871{
1872 /* When the device is in bootloader mode, then it can send
1873 * events via the bulk endpoint. These events are treated the
1874 * same way as the ones received from the interrupt endpoint.
1875 */
1876 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1877 return btusb_recv_intr(data, buffer, count);
1878
1879 return btusb_recv_bulk(data, buffer, count);
1880}
1881
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001882static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1883 unsigned int len)
1884{
1885 const struct intel_bootup *evt = ptr;
1886
1887 if (len != sizeof(*evt))
1888 return;
1889
1890 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1891 smp_mb__after_atomic();
1892 wake_up_bit(&data->flags, BTUSB_BOOTING);
1893 }
1894}
1895
1896static void btusb_intel_secure_send_result(struct btusb_data *data,
1897 const void *ptr, unsigned int len)
1898{
1899 const struct intel_secure_send_result *evt = ptr;
1900
1901 if (len != sizeof(*evt))
1902 return;
1903
1904 if (evt->result)
1905 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1906
1907 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1908 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1909 smp_mb__after_atomic();
1910 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1911 }
1912}
1913
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001914static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1915{
1916 struct btusb_data *data = hci_get_drvdata(hdev);
1917
1918 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1919 struct hci_event_hdr *hdr = (void *)skb->data;
1920
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001921 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1922 hdr->plen > 0) {
1923 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1924 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001925
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001926 switch (skb->data[2]) {
1927 case 0x02:
1928 /* When switching to the operational firmware
1929 * the device sends a vendor specific event
1930 * indicating that the bootup completed.
1931 */
1932 btusb_intel_bootup(data, ptr, len);
1933 break;
1934 case 0x06:
1935 /* When the firmware loading completes the
1936 * device sends out a vendor specific event
1937 * indicating the result of the firmware
1938 * loading.
1939 */
1940 btusb_intel_secure_send_result(data, ptr, len);
1941 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001942 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001943 }
1944 }
1945
1946 return hci_recv_frame(hdev, skb);
1947}
1948
1949static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1950{
1951 struct btusb_data *data = hci_get_drvdata(hdev);
1952 struct urb *urb;
1953
1954 BT_DBG("%s", hdev->name);
1955
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001956 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001957 case HCI_COMMAND_PKT:
1958 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1959 struct hci_command_hdr *cmd = (void *)skb->data;
1960 __u16 opcode = le16_to_cpu(cmd->opcode);
1961
1962 /* When in bootloader mode and the command 0xfc09
1963 * is received, it needs to be send down the
1964 * bulk endpoint. So allocate a bulk URB instead.
1965 */
1966 if (opcode == 0xfc09)
1967 urb = alloc_bulk_urb(hdev, skb);
1968 else
1969 urb = alloc_ctrl_urb(hdev, skb);
1970
1971 /* When the 0xfc01 command is issued to boot into
1972 * the operational firmware, it will actually not
1973 * send a command complete event. To keep the flow
1974 * control working inject that event here.
1975 */
1976 if (opcode == 0xfc01)
1977 inject_cmd_complete(hdev, opcode);
1978 } else {
1979 urb = alloc_ctrl_urb(hdev, skb);
1980 }
1981 if (IS_ERR(urb))
1982 return PTR_ERR(urb);
1983
1984 hdev->stat.cmd_tx++;
1985 return submit_or_queue_tx_urb(hdev, urb);
1986
1987 case HCI_ACLDATA_PKT:
1988 urb = alloc_bulk_urb(hdev, skb);
1989 if (IS_ERR(urb))
1990 return PTR_ERR(urb);
1991
1992 hdev->stat.acl_tx++;
1993 return submit_or_queue_tx_urb(hdev, urb);
1994
1995 case HCI_SCODATA_PKT:
1996 if (hci_conn_num(hdev, SCO_LINK) < 1)
1997 return -ENODEV;
1998
1999 urb = alloc_isoc_urb(hdev, skb);
2000 if (IS_ERR(urb))
2001 return PTR_ERR(urb);
2002
2003 hdev->stat.sco_tx++;
2004 return submit_tx_urb(hdev, urb);
2005 }
2006
2007 return -EILSEQ;
2008}
2009
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002010static int btusb_setup_intel_new(struct hci_dev *hdev)
2011{
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002012 struct btusb_data *data = hci_get_drvdata(hdev);
Loic Poulain6c483de2015-12-06 16:18:34 +01002013 struct intel_version ver;
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002014 struct intel_boot_params params;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002015 const struct firmware *fw;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002016 u32 boot_param;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002017 char fwname[64];
2018 ktime_t calltime, delta, rettime;
2019 unsigned long long duration;
2020 int err;
2021
2022 BT_DBG("%s", hdev->name);
2023
Tedd Ho-Jeong An04d729b2018-01-24 09:19:19 -08002024 /* Set the default boot parameter to 0x0 and it is updated to
2025 * SKU specific boot parameter after reading Intel_Write_Boot_Params
2026 * command while downloading the firmware.
2027 */
2028 boot_param = 0x00000000;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002029
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002030 calltime = ktime_get();
2031
2032 /* Read the Intel version information to determine if the device
2033 * is in bootloader mode or if it already has operational firmware
2034 * loaded.
2035 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002036 err = btintel_read_version(hdev, &ver);
2037 if (err)
2038 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002039
2040 /* The hardware platform number has a fixed value of 0x37 and
2041 * for now only accept this single value.
2042 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002043 if (ver.hw_platform != 0x37) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002044 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002045 hdev->name, ver.hw_platform);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002046 return -EINVAL;
2047 }
2048
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002049 /* Check for supported iBT hardware variants of this firmware
2050 * loading method.
Tedd Ho-Jeong Ana0af53b2016-05-06 11:53:46 -07002051 *
2052 * This check has been put in place to ensure correct forward
2053 * compatibility options when newer hardware variants come along.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002054 */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002055 switch (ver.hw_variant) {
2056 case 0x0b: /* SfP */
2057 case 0x0c: /* WsP */
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002058 case 0x11: /* JfP */
Marcel Holtmannde766142017-03-06 15:38:28 -08002059 case 0x12: /* ThP */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002060 break;
2061 default:
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002062 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002063 hdev->name, ver.hw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002064 return -EINVAL;
2065 }
2066
Loic Poulain6c483de2015-12-06 16:18:34 +01002067 btintel_version_info(hdev, &ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002068
2069 /* The firmware variant determines if the device is in bootloader
2070 * mode or is running operational firmware. The value 0x06 identifies
2071 * the bootloader and the value 0x23 identifies the operational
2072 * firmware.
2073 *
2074 * When the operational firmware is already present, then only
2075 * the check for valid Bluetooth device address is needed. This
2076 * determines if the device will be added as configured or
2077 * unconfigured controller.
2078 *
2079 * It is not possible to use the Secure Boot Parameters in this
2080 * case since that command is only available in bootloader mode.
2081 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002082 if (ver.fw_variant == 0x23) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002083 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002084 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002085 return 0;
2086 }
2087
2088 /* If the device is not in bootloader mode, then the only possible
2089 * choice is to return an error and abort the device initialization.
2090 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002091 if (ver.fw_variant != 0x06) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002092 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002093 hdev->name, ver.fw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002094 return -ENODEV;
2095 }
2096
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002097 /* Read the secure boot parameters to identify the operating
2098 * details of the bootloader.
2099 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002100 err = btintel_read_boot_params(hdev, &params);
2101 if (err)
2102 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002103
2104 /* It is required that every single firmware fragment is acknowledged
2105 * with a command complete event. If the boot parameters indicate
2106 * that this bootloader does not send them, then abort the setup.
2107 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002108 if (params.limited_cce != 0x00) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002109 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002110 hdev->name, params.limited_cce);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002111 return -EINVAL;
2112 }
2113
2114 /* If the OTP has no valid Bluetooth device address, then there will
2115 * also be no valid address for the operational firmware.
2116 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002117 if (!bacmp(&params.otp_bdaddr, BDADDR_ANY)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002118 bt_dev_info(hdev, "No device address configured");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002119 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2120 }
2121
2122 /* With this Intel bootloader only the hardware variant and device
Jaya P Gaf3715e2017-10-30 11:01:22 +01002123 * revision information are used to select the right firmware for SfP
2124 * and WsP.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002125 *
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002126 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2127 *
2128 * Currently the supported hardware variants are:
2129 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2130 * 12 (0x0c) for iBT3.5 (WsP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002131 *
2132 * For ThP/JfP and for future SKU's, the FW name varies based on HW
2133 * variant, HW revision and FW revision, as these are dependent on CNVi
2134 * and RF Combination.
2135 *
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002136 * 17 (0x11) for iBT3.5 (JfP)
2137 * 18 (0x12) for iBT3.5 (ThP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002138 *
2139 * The firmware file name for these will be
2140 * ibt-<hw_variant>-<hw_revision>-<fw_revision>.sfi.
2141 *
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002142 */
Jaya P Gaf3715e2017-10-30 11:01:22 +01002143 switch (ver.hw_variant) {
2144 case 0x0b: /* SfP */
2145 case 0x0c: /* WsP */
2146 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi",
2147 le16_to_cpu(ver.hw_variant),
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002148 le16_to_cpu(params.dev_revid));
Jaya P Gaf3715e2017-10-30 11:01:22 +01002149 break;
2150 case 0x11: /* JfP */
2151 case 0x12: /* ThP */
2152 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u-%u.sfi",
2153 le16_to_cpu(ver.hw_variant),
2154 le16_to_cpu(ver.hw_revision),
2155 le16_to_cpu(ver.fw_revision));
2156 break;
2157 default:
2158 BT_ERR("%s: Unsupported Intel firmware naming", hdev->name);
2159 return -EINVAL;
2160 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002161
2162 err = request_firmware(&fw, fwname, &hdev->dev);
2163 if (err < 0) {
2164 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2165 hdev->name, err);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002166 return err;
2167 }
2168
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002169 bt_dev_info(hdev, "Found device firmware: %s", fwname);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002170
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002171 /* Save the DDC file name for later use to apply once the firmware
2172 * downloading is done.
2173 */
Jaya P Gaf3715e2017-10-30 11:01:22 +01002174 switch (ver.hw_variant) {
2175 case 0x0b: /* SfP */
2176 case 0x0c: /* WsP */
2177 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc",
2178 le16_to_cpu(ver.hw_variant),
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002179 le16_to_cpu(params.dev_revid));
Jaya P Gaf3715e2017-10-30 11:01:22 +01002180 break;
2181 case 0x11: /* JfP */
2182 case 0x12: /* ThP */
2183 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u-%u.ddc",
2184 le16_to_cpu(ver.hw_variant),
2185 le16_to_cpu(ver.hw_revision),
2186 le16_to_cpu(ver.fw_revision));
2187 break;
2188 default:
2189 BT_ERR("%s: Unsupported Intel firmware naming", hdev->name);
2190 return -EINVAL;
2191 }
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002192
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002193 if (fw->size < 644) {
2194 BT_ERR("%s: Invalid size of firmware file (%zu)",
2195 hdev->name, fw->size);
2196 err = -EBADF;
2197 goto done;
2198 }
2199
2200 set_bit(BTUSB_DOWNLOADING, &data->flags);
2201
Tedd Ho-Jeong Anfbbe83c2018-01-24 09:19:21 -08002202 /* Start firmware downloading and get boot parameter */
2203 err = btintel_download_firmware(hdev, fw, &boot_param);
2204 if (err < 0)
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002205 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002206
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002207 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2208
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002209 bt_dev_info(hdev, "Waiting for firmware download to complete");
Johan Hedberga087a982015-01-30 10:58:54 +02002210
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002211 /* Before switching the device into operational mode and with that
2212 * booting the loaded firmware, wait for the bootloader notification
2213 * that all fragments have been successfully received.
2214 *
Johan Hedberga087a982015-01-30 10:58:54 +02002215 * When the event processing receives the notification, then the
2216 * BTUSB_DOWNLOADING flag will be cleared.
2217 *
2218 * The firmware loading should not take longer than 5 seconds
2219 * and thus just timeout if that happens and fail the setup
2220 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002221 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002222 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2223 TASK_INTERRUPTIBLE,
2224 msecs_to_jiffies(5000));
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002225 if (err == -EINTR) {
Johan Hedberga087a982015-01-30 10:58:54 +02002226 BT_ERR("%s: Firmware loading interrupted", hdev->name);
Johan Hedberga087a982015-01-30 10:58:54 +02002227 goto done;
2228 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002229
Johan Hedberga087a982015-01-30 10:58:54 +02002230 if (err) {
2231 BT_ERR("%s: Firmware loading timeout", hdev->name);
2232 err = -ETIMEDOUT;
2233 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002234 }
2235
2236 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2237 BT_ERR("%s: Firmware loading failed", hdev->name);
2238 err = -ENOEXEC;
2239 goto done;
2240 }
2241
2242 rettime = ktime_get();
2243 delta = ktime_sub(rettime, calltime);
2244 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2245
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002246 bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002247
2248done:
2249 release_firmware(fw);
2250
2251 if (err < 0)
2252 return err;
2253
2254 calltime = ktime_get();
2255
2256 set_bit(BTUSB_BOOTING, &data->flags);
2257
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002258 err = btintel_send_intel_reset(hdev, boot_param);
2259 if (err)
2260 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002261
2262 /* The bootloader will not indicate when the device is ready. This
2263 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002264 *
2265 * Booting into operational firmware should not take longer than
2266 * 1 second. However if that happens, then just fail the setup
2267 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002268 */
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002269 bt_dev_info(hdev, "Waiting for device to boot");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002270
Johan Hedberg129a7692015-02-14 09:33:35 +02002271 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2272 TASK_INTERRUPTIBLE,
2273 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002274
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002275 if (err == -EINTR) {
Johan Hedbergfad70972015-01-30 10:58:55 +02002276 BT_ERR("%s: Device boot interrupted", hdev->name);
2277 return -EINTR;
2278 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002279
Johan Hedbergfad70972015-01-30 10:58:55 +02002280 if (err) {
2281 BT_ERR("%s: Device boot timeout", hdev->name);
2282 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002283 }
2284
2285 rettime = ktime_get();
2286 delta = ktime_sub(rettime, calltime);
2287 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2288
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002289 bt_dev_info(hdev, "Device booted in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002290
2291 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2292
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002293 /* Once the device is running in operational mode, it needs to apply
2294 * the device configuration (DDC) parameters.
2295 *
2296 * The device can work without DDC parameters, so even if it fails
2297 * to load the file, no need to fail the setup.
2298 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002299 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002300
Marcel Holtmann213445b2015-10-21 02:45:19 +02002301 /* Set the event mask for Intel specific vendor events. This enables
2302 * a few extra events that are useful during general operation. It
2303 * does not enable any debugging related events.
2304 *
2305 * The device will function correctly without these events enabled
2306 * and thus no need to fail the setup.
2307 */
2308 btintel_set_event_mask(hdev, false);
2309
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002310 return 0;
2311}
2312
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002313static int btusb_shutdown_intel(struct hci_dev *hdev)
2314{
2315 struct sk_buff *skb;
2316 long ret;
2317
2318 /* Some platforms have an issue with BT LED when the interface is
2319 * down or BT radio is turned off, which takes 5 seconds to BT LED
2320 * goes off. This command turns off the BT LED immediately.
2321 */
2322 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2323 if (IS_ERR(skb)) {
2324 ret = PTR_ERR(skb);
2325 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2326 hdev->name, ret);
2327 return ret;
2328 }
2329 kfree_skb(skb);
2330
2331 return 0;
2332}
2333
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08002334#ifdef CONFIG_PM
2335/* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
2336static int marvell_config_oob_wake(struct hci_dev *hdev)
2337{
2338 struct sk_buff *skb;
2339 struct btusb_data *data = hci_get_drvdata(hdev);
2340 struct device *dev = &data->udev->dev;
2341 u16 pin, gap, opcode;
2342 int ret;
2343 u8 cmd[5];
2344
2345 /* Move on if no wakeup pin specified */
2346 if (of_property_read_u16(dev->of_node, "marvell,wakeup-pin", &pin) ||
2347 of_property_read_u16(dev->of_node, "marvell,wakeup-gap-ms", &gap))
2348 return 0;
2349
2350 /* Vendor specific command to configure a GPIO as wake-up pin */
2351 opcode = hci_opcode_pack(0x3F, 0x59);
2352 cmd[0] = opcode & 0xFF;
2353 cmd[1] = opcode >> 8;
2354 cmd[2] = 2; /* length of parameters that follow */
2355 cmd[3] = pin;
2356 cmd[4] = gap; /* time in ms, for which wakeup pin should be asserted */
2357
2358 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
2359 if (!skb) {
2360 bt_dev_err(hdev, "%s: No memory\n", __func__);
2361 return -ENOMEM;
2362 }
2363
Johannes Berg59ae1d12017-06-16 14:29:20 +02002364 skb_put_data(skb, cmd, sizeof(cmd));
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08002365 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
2366
2367 ret = btusb_send_frame(hdev, skb);
2368 if (ret) {
2369 bt_dev_err(hdev, "%s: configuration failed\n", __func__);
2370 kfree_skb(skb);
2371 return ret;
2372 }
2373
2374 return 0;
2375}
2376#endif
2377
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002378static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2379 const bdaddr_t *bdaddr)
2380{
2381 struct sk_buff *skb;
2382 u8 buf[8];
2383 long ret;
2384
2385 buf[0] = 0xfe;
2386 buf[1] = sizeof(bdaddr_t);
2387 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2388
2389 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2390 if (IS_ERR(skb)) {
2391 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002392 bt_dev_err(hdev, "changing Marvell device address failed (%ld)",
2393 ret);
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002394 return ret;
2395 }
2396 kfree_skb(skb);
2397
2398 return 0;
2399}
2400
Toshi Kikuchi58592232014-12-12 10:58:05 -08002401static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2402 const bdaddr_t *bdaddr)
2403{
2404 struct sk_buff *skb;
2405 u8 buf[10];
2406 long ret;
2407
2408 buf[0] = 0x01;
2409 buf[1] = 0x01;
2410 buf[2] = 0x00;
2411 buf[3] = sizeof(bdaddr_t);
2412 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2413
2414 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2415 if (IS_ERR(skb)) {
2416 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002417 bt_dev_err(hdev, "Change address command failed (%ld)", ret);
Toshi Kikuchi58592232014-12-12 10:58:05 -08002418 return ret;
2419 }
2420 kfree_skb(skb);
2421
2422 return 0;
2423}
2424
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002425#define QCA_DFU_PACKET_LEN 4096
2426
2427#define QCA_GET_TARGET_VERSION 0x09
2428#define QCA_CHECK_STATUS 0x05
2429#define QCA_DFU_DOWNLOAD 0x01
2430
2431#define QCA_SYSCFG_UPDATED 0x40
2432#define QCA_PATCH_UPDATED 0x80
2433#define QCA_DFU_TIMEOUT 3000
2434
2435struct qca_version {
2436 __le32 rom_version;
2437 __le32 patch_version;
2438 __le32 ram_version;
2439 __le32 ref_clock;
2440 __u8 reserved[4];
2441} __packed;
2442
2443struct qca_rampatch_version {
2444 __le16 rom_version;
2445 __le16 patch_version;
2446} __packed;
2447
2448struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002449 u32 rom_version;
2450 u8 rampatch_hdr; /* length of header in rampatch */
2451 u8 nvm_hdr; /* length of header in NVM */
2452 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002453};
2454
2455static const struct qca_device_info qca_devices_table[] = {
2456 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2457 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002458 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002459 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2460 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2461 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2462};
2463
2464static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2465 void *data, u16 size)
2466{
2467 struct btusb_data *btdata = hci_get_drvdata(hdev);
2468 struct usb_device *udev = btdata->udev;
2469 int pipe, err;
2470 u8 *buf;
2471
2472 buf = kmalloc(size, GFP_KERNEL);
2473 if (!buf)
2474 return -ENOMEM;
2475
2476 /* Found some of USB hosts have IOT issues with ours so that we should
2477 * not wait until HCI layer is ready.
2478 */
2479 pipe = usb_rcvctrlpipe(udev, 0);
2480 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2481 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2482 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002483 bt_dev_err(hdev, "Failed to access otp area (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002484 goto done;
2485 }
2486
2487 memcpy(data, buf, size);
2488
2489done:
2490 kfree(buf);
2491
2492 return err;
2493}
2494
2495static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2496 const struct firmware *firmware,
2497 size_t hdr_size)
2498{
2499 struct btusb_data *btdata = hci_get_drvdata(hdev);
2500 struct usb_device *udev = btdata->udev;
2501 size_t count, size, sent = 0;
2502 int pipe, len, err;
2503 u8 *buf;
2504
2505 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2506 if (!buf)
2507 return -ENOMEM;
2508
2509 count = firmware->size;
2510
2511 size = min_t(size_t, count, hdr_size);
2512 memcpy(buf, firmware->data, size);
2513
2514 /* USB patches should go down to controller through USB path
2515 * because binary format fits to go down through USB channel.
2516 * USB control path is for patching headers and USB bulk is for
2517 * patch body.
2518 */
2519 pipe = usb_sndctrlpipe(udev, 0);
2520 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2521 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2522 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002523 bt_dev_err(hdev, "Failed to send headers (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002524 goto done;
2525 }
2526
2527 sent += size;
2528 count -= size;
2529
2530 while (count) {
2531 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2532
2533 memcpy(buf, firmware->data + sent, size);
2534
2535 pipe = usb_sndbulkpipe(udev, 0x02);
2536 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2537 QCA_DFU_TIMEOUT);
2538 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002539 bt_dev_err(hdev, "Failed to send body at %zd of %zd (%d)",
2540 sent, firmware->size, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002541 break;
2542 }
2543
2544 if (size != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002545 bt_dev_err(hdev, "Failed to get bulk buffer");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002546 err = -EILSEQ;
2547 break;
2548 }
2549
2550 sent += size;
2551 count -= size;
2552 }
2553
2554done:
2555 kfree(buf);
2556 return err;
2557}
2558
2559static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2560 struct qca_version *ver,
2561 const struct qca_device_info *info)
2562{
2563 struct qca_rampatch_version *rver;
2564 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002565 u32 ver_rom, ver_patch;
2566 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002567 char fwname[64];
2568 int err;
2569
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002570 ver_rom = le32_to_cpu(ver->rom_version);
2571 ver_patch = le32_to_cpu(ver->patch_version);
2572
2573 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002574
2575 err = request_firmware(&fw, fwname, &hdev->dev);
2576 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002577 bt_dev_err(hdev, "failed to request rampatch file: %s (%d)",
2578 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002579 return err;
2580 }
2581
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002582 bt_dev_info(hdev, "using rampatch file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002583
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002584 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2585 rver_rom = le16_to_cpu(rver->rom_version);
2586 rver_patch = le16_to_cpu(rver->patch_version);
2587
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002588 bt_dev_info(hdev, "QCA: patch rome 0x%x build 0x%x, "
2589 "firmware rome 0x%x build 0x%x",
2590 rver_rom, rver_patch, ver_rom, ver_patch);
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002591
2592 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002593 bt_dev_err(hdev, "rampatch file version did not match with firmware");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002594 err = -EINVAL;
2595 goto done;
2596 }
2597
2598 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2599
2600done:
2601 release_firmware(fw);
2602
2603 return err;
2604}
2605
2606static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2607 struct qca_version *ver,
2608 const struct qca_device_info *info)
2609{
2610 const struct firmware *fw;
2611 char fwname[64];
2612 int err;
2613
2614 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2615 le32_to_cpu(ver->rom_version));
2616
2617 err = request_firmware(&fw, fwname, &hdev->dev);
2618 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002619 bt_dev_err(hdev, "failed to request NVM file: %s (%d)",
2620 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002621 return err;
2622 }
2623
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002624 bt_dev_info(hdev, "using NVM file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002625
2626 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2627
2628 release_firmware(fw);
2629
2630 return err;
2631}
2632
2633static int btusb_setup_qca(struct hci_dev *hdev)
2634{
2635 const struct qca_device_info *info = NULL;
2636 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002637 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002638 u8 status;
2639 int i, err;
2640
2641 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002642 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002643 if (err < 0)
2644 return err;
2645
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002646 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002647 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002648 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002649 info = &qca_devices_table[i];
2650 }
2651 if (!info) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002652 bt_dev_err(hdev, "don't support firmware rome 0x%x", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002653 return -ENODEV;
2654 }
2655
2656 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2657 sizeof(status));
2658 if (err < 0)
2659 return err;
2660
2661 if (!(status & QCA_PATCH_UPDATED)) {
2662 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2663 if (err < 0)
2664 return err;
2665 }
2666
2667 if (!(status & QCA_SYSCFG_UPDATED)) {
2668 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2669 if (err < 0)
2670 return err;
2671 }
2672
2673 return 0;
2674}
2675
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002676#ifdef CONFIG_BT_HCIBTUSB_BCM
2677static inline int __set_diag_interface(struct hci_dev *hdev)
2678{
2679 struct btusb_data *data = hci_get_drvdata(hdev);
2680 struct usb_interface *intf = data->diag;
2681 int i;
2682
2683 if (!data->diag)
2684 return -ENODEV;
2685
2686 data->diag_tx_ep = NULL;
2687 data->diag_rx_ep = NULL;
2688
2689 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2690 struct usb_endpoint_descriptor *ep_desc;
2691
2692 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2693
2694 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2695 data->diag_tx_ep = ep_desc;
2696 continue;
2697 }
2698
2699 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2700 data->diag_rx_ep = ep_desc;
2701 continue;
2702 }
2703 }
2704
2705 if (!data->diag_tx_ep || !data->diag_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002706 bt_dev_err(hdev, "invalid diagnostic descriptors");
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002707 return -ENODEV;
2708 }
2709
2710 return 0;
2711}
2712
2713static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2714{
2715 struct btusb_data *data = hci_get_drvdata(hdev);
2716 struct sk_buff *skb;
2717 struct urb *urb;
2718 unsigned int pipe;
2719
2720 if (!data->diag_tx_ep)
2721 return ERR_PTR(-ENODEV);
2722
2723 urb = usb_alloc_urb(0, GFP_KERNEL);
2724 if (!urb)
2725 return ERR_PTR(-ENOMEM);
2726
2727 skb = bt_skb_alloc(2, GFP_KERNEL);
2728 if (!skb) {
2729 usb_free_urb(urb);
2730 return ERR_PTR(-ENOMEM);
2731 }
2732
Johannes Berg634fef62017-06-16 14:29:24 +02002733 skb_put_u8(skb, 0xf0);
2734 skb_put_u8(skb, enable);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002735
2736 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2737
2738 usb_fill_bulk_urb(urb, data->udev, pipe,
2739 skb->data, skb->len, btusb_tx_complete, skb);
2740
2741 skb->dev = (void *)hdev;
2742
2743 return urb;
2744}
2745
2746static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2747{
2748 struct btusb_data *data = hci_get_drvdata(hdev);
2749 struct urb *urb;
2750
2751 if (!data->diag)
2752 return -ENODEV;
2753
2754 if (!test_bit(HCI_RUNNING, &hdev->flags))
2755 return -ENETDOWN;
2756
2757 urb = alloc_diag_urb(hdev, enable);
2758 if (IS_ERR(urb))
2759 return PTR_ERR(urb);
2760
2761 return submit_or_queue_tx_urb(hdev, urb);
2762}
2763#endif
2764
Rajat Jainfd913ef2017-02-01 14:24:09 -08002765#ifdef CONFIG_PM
2766static irqreturn_t btusb_oob_wake_handler(int irq, void *priv)
2767{
2768 struct btusb_data *data = priv;
2769
2770 pm_wakeup_event(&data->udev->dev, 0);
Jeffy Chen017789f2017-02-24 14:24:29 +08002771 pm_system_wakeup();
Rajat Jainfd913ef2017-02-01 14:24:09 -08002772
2773 /* Disable only if not already disabled (keep it balanced) */
2774 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
2775 disable_irq_nosync(irq);
2776 disable_irq_wake(irq);
2777 }
2778 return IRQ_HANDLED;
2779}
2780
2781static const struct of_device_id btusb_match_table[] = {
2782 { .compatible = "usb1286,204e" },
2783 { }
2784};
2785MODULE_DEVICE_TABLE(of, btusb_match_table);
2786
2787/* Use an oob wakeup pin? */
2788static int btusb_config_oob_wake(struct hci_dev *hdev)
2789{
2790 struct btusb_data *data = hci_get_drvdata(hdev);
2791 struct device *dev = &data->udev->dev;
2792 int irq, ret;
2793
2794 clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
2795
2796 if (!of_match_device(btusb_match_table, dev))
2797 return 0;
2798
2799 /* Move on if no IRQ specified */
2800 irq = of_irq_get_byname(dev->of_node, "wakeup");
2801 if (irq <= 0) {
2802 bt_dev_dbg(hdev, "%s: no OOB Wakeup IRQ in DT", __func__);
2803 return 0;
2804 }
2805
2806 ret = devm_request_irq(&hdev->dev, irq, btusb_oob_wake_handler,
2807 0, "OOB Wake-on-BT", data);
2808 if (ret) {
2809 bt_dev_err(hdev, "%s: IRQ request failed", __func__);
2810 return ret;
2811 }
2812
2813 ret = device_init_wakeup(dev, true);
2814 if (ret) {
2815 bt_dev_err(hdev, "%s: failed to init_wakeup", __func__);
2816 return ret;
2817 }
2818
2819 data->oob_wake_irq = irq;
2820 disable_irq(irq);
2821 bt_dev_info(hdev, "OOB Wake-on-BT configured at IRQ %u", irq);
2822 return 0;
2823}
2824#endif
2825
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002826static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002827 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002828{
2829 struct usb_endpoint_descriptor *ep_desc;
2830 struct btusb_data *data;
2831 struct hci_dev *hdev;
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002832 unsigned ifnum_base;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002833 int i, err;
2834
2835 BT_DBG("intf %p id %p", intf, id);
2836
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002837 /* interface numbers are hardcoded in the spec */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002838 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
2839 if (!(id->driver_info & BTUSB_IFNUM_2))
2840 return -ENODEV;
2841 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
2842 return -ENODEV;
2843 }
2844
2845 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002846
2847 if (!id->driver_info) {
2848 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002849
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002850 match = usb_match_id(intf, blacklist_table);
2851 if (match)
2852 id = match;
2853 }
2854
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002855 if (id->driver_info == BTUSB_IGNORE)
2856 return -ENODEV;
2857
Steven.Li2d25f8b2011-07-01 14:02:36 +08002858 if (id->driver_info & BTUSB_ATH3012) {
2859 struct usb_device *udev = interface_to_usbdev(intf);
2860
2861 /* Old firmware would otherwise let ath3k driver load
Derek Robsond98422c2017-07-22 13:47:07 +12002862 * patch and sysconfig files
2863 */
Steven.Li2d25f8b2011-07-01 14:02:36 +08002864 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2865 return -ENODEV;
2866 }
2867
Sachin Kamat98921db2012-07-27 12:38:39 +05302868 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002869 if (!data)
2870 return -ENOMEM;
2871
2872 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2873 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2874
2875 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2876 data->intr_ep = ep_desc;
2877 continue;
2878 }
2879
2880 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2881 data->bulk_tx_ep = ep_desc;
2882 continue;
2883 }
2884
2885 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2886 data->bulk_rx_ep = ep_desc;
2887 continue;
2888 }
2889 }
2890
Sachin Kamat98921db2012-07-27 12:38:39 +05302891 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002892 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002893
Marcel Holtmann893ba542015-01-28 20:27:34 -08002894 if (id->driver_info & BTUSB_AMP) {
2895 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2896 data->cmdreq = 0x2b;
2897 } else {
2898 data->cmdreq_type = USB_TYPE_CLASS;
2899 data->cmdreq = 0x00;
2900 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002901
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002902 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002903 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002904
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002905 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002906 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002907 init_usb_anchor(&data->deferred);
2908 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002909 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002910
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002911 init_usb_anchor(&data->intr_anchor);
2912 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002913 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002914 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002915 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002916
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002917 if (id->driver_info & BTUSB_INTEL_NEW) {
2918 data->recv_event = btusb_recv_event_intel;
2919 data->recv_bulk = btusb_recv_bulk_intel;
2920 set_bit(BTUSB_BOOTLOADER, &data->flags);
2921 } else {
2922 data->recv_event = hci_recv_frame;
2923 data->recv_bulk = btusb_recv_bulk;
2924 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002925
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002926 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302927 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002928 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002929
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002930 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002931 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002932
Marcel Holtmann893ba542015-01-28 20:27:34 -08002933 if (id->driver_info & BTUSB_AMP)
2934 hdev->dev_type = HCI_AMP;
2935 else
Marcel Holtmannca8bee52016-07-05 14:30:14 +02002936 hdev->dev_type = HCI_PRIMARY;
Marcel Holtmann893ba542015-01-28 20:27:34 -08002937
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002938 data->hdev = hdev;
2939
2940 SET_HCIDEV_DEV(hdev, &intf->dev);
2941
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002942 hdev->open = btusb_open;
2943 hdev->close = btusb_close;
2944 hdev->flush = btusb_flush;
2945 hdev->send = btusb_send_frame;
2946 hdev->notify = btusb_notify;
2947
Rajat Jainfd913ef2017-02-01 14:24:09 -08002948#ifdef CONFIG_PM
2949 err = btusb_config_oob_wake(hdev);
2950 if (err)
2951 goto out_free_dev;
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08002952
2953 /* Marvell devices may need a specific chip configuration */
2954 if (id->driver_info & BTUSB_MARVELL && data->oob_wake_irq) {
2955 err = marvell_config_oob_wake(hdev);
2956 if (err)
2957 goto out_free_dev;
2958 }
Rajat Jainfd913ef2017-02-01 14:24:09 -08002959#endif
Szymon Janc418678b2016-09-01 17:22:37 +02002960 if (id->driver_info & BTUSB_CW6622)
2961 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2962
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02002963 if (id->driver_info & BTUSB_BCM2045)
2964 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2965
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002966 if (id->driver_info & BTUSB_BCM92035)
2967 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002968
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002969#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002970 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002971 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002972 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002973 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002974 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002975
2976 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002977 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002978 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002979
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002980 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002981 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002982 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002983 hdev->set_diag = btusb_bcm_set_diag;
2984
2985 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002986 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002987 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002988#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002989
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002990 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002991 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002992 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002993 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02002994 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002995 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002996 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002997 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02002998 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002999 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07003000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003001 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003002 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003003 hdev->send = btusb_send_frame_intel;
3004 hdev->setup = btusb_setup_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02003005 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02003006 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07003007 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08003008 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02003009 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003010 }
3011
Amitkumar Karwarae8df492014-07-18 14:47:06 -07003012 if (id->driver_info & BTUSB_MARVELL)
3013 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
3014
Marcel Holtmann661cf882015-01-02 23:35:20 -08003015 if (id->driver_info & BTUSB_SWAVE) {
3016 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003017 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08003018 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003019
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003020 if (id->driver_info & BTUSB_INTEL_BOOT) {
3021 hdev->manufacturer = 2;
Marcel Holtmann40df7832014-07-06 13:29:58 +02003022 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003023 }
Marcel Holtmann40df7832014-07-06 13:29:58 +02003024
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003025 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08003026 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07003027 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003028 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
3029 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08003030
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003031 if (id->driver_info & BTUSB_QCA_ROME) {
3032 data->setup_on_usb = btusb_setup_qca;
3033 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Hans de Goede61f5ace2018-01-08 10:44:16 +01003034
3035 /* QCA Rome devices lose their updated firmware over suspend,
3036 * but the USB hub doesn't notice any status change.
3037 * explicitly request a device reset on resume.
3038 */
3039 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003040 }
3041
Carlo Caionedb33c772015-05-14 10:49:09 +02003042#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06003043 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02003044 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06003045
3046 /* Realtek devices lose their updated firmware over suspend,
3047 * but the USB hub doesn't notice any status change.
3048 * Explicitly request a device reset on resume.
3049 */
Hans de Goede61f5ace2018-01-08 10:44:16 +01003050 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
Daniel Drake04b8c812015-05-21 08:23:50 -06003051 }
Carlo Caionedb33c772015-05-14 10:49:09 +02003052#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06003053
Marcel Holtmann893ba542015-01-28 20:27:34 -08003054 if (id->driver_info & BTUSB_AMP) {
3055 /* AMP controllers do not support SCO packets */
3056 data->isoc = NULL;
3057 } else {
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003058 /* Interface orders are hardcoded in the specification */
3059 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
Marcel Holtmann459232f2017-10-24 19:42:45 +02003060 data->isoc_ifnum = ifnum_base + 1;
Marcel Holtmann893ba542015-01-28 20:27:34 -08003061 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003062
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003063 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02003064 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003065
3066 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
3067 if (!disable_scofix)
3068 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
3069 }
3070
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003071 if (id->driver_info & BTUSB_BROKEN_ISOC)
3072 data->isoc = NULL;
3073
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003074 if (id->driver_info & BTUSB_DIGIANSWER) {
3075 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02003076 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003077 }
3078
3079 if (id->driver_info & BTUSB_CSR) {
3080 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08003081 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003082
3083 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08003084 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02003085 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08003086
3087 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03003088 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08003089 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07003090
3091 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003092 }
3093
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003094 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003095 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003096
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003097 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003098 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
3099 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
3100 }
3101
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02003102 if (id->driver_info & BTUSB_INTEL_BOOT) {
3103 /* A bug in the bootloader causes that interrupt interface is
3104 * only enabled after receiving SetInterface(0, AltSetting=0).
3105 */
3106 err = usb_set_interface(data->udev, 0, 0);
3107 if (err < 0) {
3108 BT_ERR("failed to set interface 0, alt 0 %d", err);
Rajat Jain10ab1332017-02-01 14:24:08 -08003109 goto out_free_dev;
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02003110 }
3111 }
3112
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003113 if (data->isoc) {
3114 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003115 data->isoc, data);
Rajat Jain10ab1332017-02-01 14:24:08 -08003116 if (err < 0)
3117 goto out_free_dev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003118 }
3119
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003120#ifdef CONFIG_BT_HCIBTUSB_BCM
3121 if (data->diag) {
3122 if (!usb_driver_claim_interface(&btusb_driver,
3123 data->diag, data))
3124 __set_diag_interface(hdev);
3125 else
3126 data->diag = NULL;
3127 }
3128#endif
3129
Hans de Goedeeff2d682017-11-13 14:44:16 +01003130 if (enable_autosuspend)
3131 usb_enable_autosuspend(data->udev);
3132
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003133 err = hci_register_dev(hdev);
Rajat Jain10ab1332017-02-01 14:24:08 -08003134 if (err < 0)
3135 goto out_free_dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003136
3137 usb_set_intfdata(intf, data);
3138
3139 return 0;
Rajat Jain10ab1332017-02-01 14:24:08 -08003140
3141out_free_dev:
3142 hci_free_dev(hdev);
3143 return err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003144}
3145
3146static void btusb_disconnect(struct usb_interface *intf)
3147{
3148 struct btusb_data *data = usb_get_intfdata(intf);
3149 struct hci_dev *hdev;
3150
3151 BT_DBG("intf %p", intf);
3152
3153 if (!data)
3154 return;
3155
3156 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003157 usb_set_intfdata(data->intf, NULL);
3158
3159 if (data->isoc)
3160 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003161
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003162 if (data->diag)
3163 usb_set_intfdata(data->diag, NULL);
3164
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003165 hci_unregister_dev(hdev);
3166
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003167 if (intf == data->intf) {
3168 if (data->isoc)
3169 usb_driver_release_interface(&btusb_driver, data->isoc);
3170 if (data->diag)
3171 usb_driver_release_interface(&btusb_driver, data->diag);
3172 } else if (intf == data->isoc) {
3173 if (data->diag)
3174 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003175 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003176 } else if (intf == data->diag) {
3177 usb_driver_release_interface(&btusb_driver, data->intf);
3178 if (data->isoc)
3179 usb_driver_release_interface(&btusb_driver, data->isoc);
3180 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003181
Rajat Jainfd913ef2017-02-01 14:24:09 -08003182 if (data->oob_wake_irq)
3183 device_init_wakeup(&data->udev->dev, false);
3184
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003185 hci_free_dev(hdev);
3186}
3187
Oliver Neukum7bee5492009-08-24 23:44:59 +02003188#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003189static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3190{
3191 struct btusb_data *data = usb_get_intfdata(intf);
3192
3193 BT_DBG("intf %p", intf);
3194
3195 if (data->suspend_count++)
3196 return 0;
3197
Oliver Neukum7bee5492009-08-24 23:44:59 +02003198 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003199 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003200 set_bit(BTUSB_SUSPENDING, &data->flags);
3201 spin_unlock_irq(&data->txlock);
3202 } else {
3203 spin_unlock_irq(&data->txlock);
3204 data->suspend_count--;
3205 return -EBUSY;
3206 }
3207
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003208 cancel_work_sync(&data->work);
3209
Oliver Neukum7bee5492009-08-24 23:44:59 +02003210 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003211 usb_kill_anchored_urbs(&data->tx_anchor);
3212
Rajat Jainfd913ef2017-02-01 14:24:09 -08003213 if (data->oob_wake_irq && device_may_wakeup(&data->udev->dev)) {
3214 set_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
3215 enable_irq_wake(data->oob_wake_irq);
3216 enable_irq(data->oob_wake_irq);
3217 }
3218
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003219 return 0;
3220}
3221
Oliver Neukum7bee5492009-08-24 23:44:59 +02003222static void play_deferred(struct btusb_data *data)
3223{
3224 struct urb *urb;
3225 int err;
3226
3227 while ((urb = usb_get_from_anchor(&data->deferred))) {
Jeffy Chen19cfe912017-07-20 18:53:50 +08003228 usb_anchor_urb(urb, &data->tx_anchor);
3229
Oliver Neukum7bee5492009-08-24 23:44:59 +02003230 err = usb_submit_urb(urb, GFP_ATOMIC);
Jeffy Chen19cfe912017-07-20 18:53:50 +08003231 if (err < 0) {
3232 if (err != -EPERM && err != -ENODEV)
3233 BT_ERR("%s urb %p submission failed (%d)",
3234 data->hdev->name, urb, -err);
3235 kfree(urb->setup_packet);
3236 usb_unanchor_urb(urb);
3237 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003238 break;
Jeffy Chen19cfe912017-07-20 18:53:50 +08003239 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02003240
3241 data->tx_in_flight++;
Jeffy Chen19cfe912017-07-20 18:53:50 +08003242 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003243 }
Jeffy Chen19cfe912017-07-20 18:53:50 +08003244
3245 /* Cleanup the rest deferred urbs. */
3246 while ((urb = usb_get_from_anchor(&data->deferred))) {
3247 kfree(urb->setup_packet);
3248 usb_free_urb(urb);
3249 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02003250}
3251
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003252static int btusb_resume(struct usb_interface *intf)
3253{
3254 struct btusb_data *data = usb_get_intfdata(intf);
3255 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003256 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003257
3258 BT_DBG("intf %p", intf);
3259
3260 if (--data->suspend_count)
3261 return 0;
3262
Rajat Jainfd913ef2017-02-01 14:24:09 -08003263 /* Disable only if not already disabled (keep it balanced) */
3264 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
3265 disable_irq(data->oob_wake_irq);
3266 disable_irq_wake(data->oob_wake_irq);
3267 }
3268
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003269 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003270 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003271
3272 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3273 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3274 if (err < 0) {
3275 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003276 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003277 }
3278 }
3279
3280 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003281 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3282 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003283 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003284 goto failed;
3285 }
3286
3287 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003288 }
3289
3290 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3291 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3292 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3293 else
3294 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3295 }
3296
Oliver Neukum7bee5492009-08-24 23:44:59 +02003297 spin_lock_irq(&data->txlock);
3298 play_deferred(data);
3299 clear_bit(BTUSB_SUSPENDING, &data->flags);
3300 spin_unlock_irq(&data->txlock);
3301 schedule_work(&data->work);
3302
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003303 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003304
3305failed:
3306 usb_scuttle_anchored_urbs(&data->deferred);
3307done:
3308 spin_lock_irq(&data->txlock);
3309 clear_bit(BTUSB_SUSPENDING, &data->flags);
3310 spin_unlock_irq(&data->txlock);
3311
3312 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003313}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003314#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003315
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003316static struct usb_driver btusb_driver = {
3317 .name = "btusb",
3318 .probe = btusb_probe,
3319 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003320#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003321 .suspend = btusb_suspend,
3322 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003323#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003324 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003325 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003326 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003327};
3328
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003329module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003330
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003331module_param(disable_scofix, bool, 0644);
3332MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3333
3334module_param(force_scofix, bool, 0644);
3335MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3336
Hans de Goedeeff2d682017-11-13 14:44:16 +01003337module_param(enable_autosuspend, bool, 0644);
3338MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
3339
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003340module_param(reset, bool, 0644);
3341MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3342
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003343MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3344MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3345MODULE_VERSION(VERSION);
3346MODULE_LICENSE("GPL");