blob: 7db48ae65cd2dc946b6a1757baa20993158b903e [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
Hans de Goede1fdb9262018-02-20 09:06:18 +010024#include <linux/dmi.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020025#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020026#include <linux/usb.h>
Hans de Goede61f5ace2018-01-08 10:44:16 +010027#include <linux/usb/quirks.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070028#include <linux/firmware.h>
Rajat Jainfd913ef2017-02-01 14:24:09 -080029#include <linux/of_device.h>
30#include <linux/of_irq.h>
Jeffy Chen017789f2017-02-24 14:24:29 +080031#include <linux/suspend.h>
Rajat Jaindc786b22019-01-24 15:28:14 -080032#include <linux/gpio/consumer.h>
Daniel Drakea2698a92015-04-16 14:09:55 -060033#include <asm/unaligned.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020034
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070038#include "btintel.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070039#include "btbcm.h"
Carlo Caionedb33c772015-05-14 10:49:09 +020040#include "btrtl.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070041
Marcel Holtmann34dced9b2015-04-05 22:52:16 -070042#define VERSION "0.8"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020043
Rusty Russell90ab5ee2012-01-13 09:32:20 +103044static bool disable_scofix;
45static bool force_scofix;
Hans de Goedeeff2d682017-11-13 14:44:16 +010046static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010047
Shailendra Verma917a3332015-05-25 23:53:40 +053048static bool reset = true;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020049
50static struct usb_driver btusb_driver;
51
52#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010053#define BTUSB_DIGIANSWER 0x02
54#define BTUSB_CSR 0x04
55#define BTUSB_SNIFFER 0x08
56#define BTUSB_BCM92035 0x10
57#define BTUSB_BROKEN_ISOC 0x20
58#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080059#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070060#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020061#define BTUSB_INTEL_BOOT 0x200
62#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070063#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080064#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080065#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080066#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000067#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010068#define BTUSB_BCM_APPLE 0x10000
Daniel Drakea2698a92015-04-16 14:09:55 -060069#define BTUSB_REALTEK 0x20000
Marcel Holtmann6c9d4352015-10-17 14:39:27 +020070#define BTUSB_BCM2045 0x40000
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020071#define BTUSB_IFNUM_2 0x80000
Szymon Janc418678b2016-09-01 17:22:37 +020072#define BTUSB_CW6622 0x100000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020073
Marcel Holtmann54265202013-10-11 07:46:18 -070074static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020075 /* Generic Bluetooth USB device */
76 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
77
Marcel Holtmann893ba542015-01-28 20:27:34 -080078 /* Generic Bluetooth AMP device */
79 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
80
Daniel Draked63b2822015-07-17 11:12:25 -060081 /* Generic Bluetooth USB interface */
82 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
83
Henrik Rydberg1fa65352012-08-25 19:28:06 +020084 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010085 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020086 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020087
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080088 /* MediaTek MT76x0E */
89 { USB_DEVICE(0x0e8d, 0x763f) },
90
Oliver Neukumc510eae2011-09-21 11:41:45 +020091 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040092 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020093
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090094 /* Apple MacBookPro 7,1 */
95 { USB_DEVICE(0x05ac, 0x8213) },
96
Cyril Lacoux0a79f672010-07-14 10:29:27 +040097 /* Apple iMac11,1 */
98 { USB_DEVICE(0x05ac, 0x8215) },
99
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +0900100 /* Apple MacBookPro6,2 */
101 { USB_DEVICE(0x05ac, 0x8218) },
102
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +0100103 /* Apple MacBookAir3,1, MacBookAir3,2 */
104 { USB_DEVICE(0x05ac, 0x821b) },
105
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -0400106 /* Apple MacBookAir4,1 */
107 { USB_DEVICE(0x05ac, 0x821f) },
108
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -0300109 /* Apple MacBookPro8,2 */
110 { USB_DEVICE(0x05ac, 0x821a) },
111
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200112 /* Apple MacMini5,1 */
113 { USB_DEVICE(0x05ac, 0x8281) },
114
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200115 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800116 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200117
118 /* Bluetooth Ultraport Module from IBM */
119 { USB_DEVICE(0x04bf, 0x030a) },
120
121 /* ALPS Modules with non-standard id */
122 { USB_DEVICE(0x044e, 0x3001) },
123 { USB_DEVICE(0x044e, 0x3002) },
124
125 /* Ericsson with non-standard id */
126 { USB_DEVICE(0x0bdb, 0x1002) },
127
128 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100129 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200130
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800131 /* Broadcom BCM20702A0 */
132 { USB_DEVICE(0x413c, 0x8197) },
133
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800134 /* Broadcom BCM20702B0 (Dynex/Insignia) */
135 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
136
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300137 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
Dmitry Tunin628c26b2017-07-06 14:41:13 +0300138 { USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
139 .driver_info = BTUSB_BCM_PATCHRAM },
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300140
Christoph Haaga57bac42017-02-10 14:02:45 +0100141 /* Broadcom BCM920703 (HTC Vive) */
142 { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
143 .driver_info = BTUSB_BCM_PATCHRAM },
144
Steven Harms98514032012-04-13 14:45:55 -0400145 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100146 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
147 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400148
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100149 /* Lite-On Technology - Broadcom based */
150 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
151 .driver_info = BTUSB_BCM_PATCHRAM },
152
Andy Shevchenko0b880062014-02-18 18:26:19 +0200153 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700154 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
155 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300156
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200157 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abdaa2015-01-17 05:29:12 +0100158 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
159 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200160
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100161 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700162 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
163 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100164
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100165 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700166 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
167 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100168
Wen-chien Jesse Sungfdfddc62017-01-10 15:41:13 +0800169 /* Dell Computer - Broadcom based */
170 { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
171 .driver_info = BTUSB_BCM_PATCHRAM },
172
Dmitry Tunin1623d0b2015-12-05 14:09:36 +0300173 /* Toshiba Corp - Broadcom based */
174 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
175 .driver_info = BTUSB_BCM_PATCHRAM },
176
Marcel Holtmann40df7832014-07-06 13:29:58 +0200177 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200178 { USB_DEVICE(0x8087, 0x0a5a),
179 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200180
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200181 { } /* Terminating entry */
182};
183
184MODULE_DEVICE_TABLE(usb, btusb_table);
185
Marcel Holtmann54265202013-10-11 07:46:18 -0700186static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200187 /* CSR BlueCore devices */
188 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
189
190 /* Broadcom BCM2033 without firmware */
191 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
192
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200193 /* Broadcom BCM2045 devices */
194 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
195
Bala Shanmugambe931122010-11-26 17:35:46 +0530196 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200197 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
198 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200199 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200200 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530201 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200202 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700203 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530204
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800205 /* Atheros AR9285 Malbec with sflash firmware */
206 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
207
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530208 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200209 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
210 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
211 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
212 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
213 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300214 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530215 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin28c971d2016-02-10 00:49:11 +0300216 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200217 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
218 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
219 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
220 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700221 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200222 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
223 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +0300224 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300225 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200226 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin81d90442016-02-28 11:04:06 +0300227 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin441ad622017-01-05 13:19:53 +0300228 { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200229 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300230 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200231 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100232 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200233 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800234 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Hans de Goede544a5912018-04-26 14:18:19 +0200235 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900236 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200237 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100238 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100239 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200240 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800241 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300242 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200243 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800244 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800245 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800246 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200247 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
248 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800249 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300250 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530251 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300252 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300253 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530254 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300255 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300256 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300257 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300258 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530259
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800260 /* Atheros AR5BBU12 with sflash firmware */
261 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
262
Michael Gruetzner85d59722012-05-02 22:33:40 +0200263 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530264 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200265 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200266
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000267 /* QCA ROME chipset */
Owen Lin1411a262018-10-18 04:37:57 +0000268 { USB_DEVICE(0x0cf3, 0x535b), .driver_info = BTUSB_QCA_ROME },
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800269 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Kai-Heng Feng93519932016-08-16 12:50:06 +0800270 { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME },
AceLan Kaoe5a49ee2018-01-02 10:41:11 +0800271 { USB_DEVICE(0x0cf3, 0xe010), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700272 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
Gabriel1eef1c32017-02-20 12:32:22 -0500273 { USB_DEVICE(0x0cf3, 0xe301), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700274 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Yvain THONNART47ca5892016-06-11 15:43:30 +0200275 { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
Bartosz Chronowski858ff382017-10-26 10:22:43 +0200276 { USB_DEVICE(0x0489, 0xe09f), .driver_info = BTUSB_QCA_ROME },
Shih-Yuan Lee (FourDollars)06e41d82017-06-14 14:42:00 +0800277 { USB_DEVICE(0x0489, 0xe0a2), .driver_info = BTUSB_QCA_ROME },
Dmitry Tunin1144a4e2016-09-21 19:13:08 +0300278 { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
Ioan Moldovan0a03f982017-08-28 18:09:39 +0300279 { USB_DEVICE(0x04ca, 0x3015), .driver_info = BTUSB_QCA_ROME },
Brian Norrisd829b9e2017-07-31 17:59:39 -0700280 { USB_DEVICE(0x04ca, 0x3016), .driver_info = BTUSB_QCA_ROME },
Vic Weid666fc52018-04-23 15:17:07 -0700281 { USB_DEVICE(0x04ca, 0x301a), .driver_info = BTUSB_QCA_ROME },
João Paulo Rechi Vitadf2445b2018-04-27 10:09:58 -0700282 { USB_DEVICE(0x13d3, 0x3496), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000283
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200284 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100285 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200286 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
287 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200288
289 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100290 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
291 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200292
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200293 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100294 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
295 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200296
297 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100298 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200299
300 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100301 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200302
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100303 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100304 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100305 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200306
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100307 /* Belkin F8T012 and F8T013 devices */
308 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
309 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200310
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100311 /* Asus WL-BTD202 device */
312 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
313
314 /* Kensington Bluetooth USB adapter */
315 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
316
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200317 /* RTX Telecom based adapters with buggy SCO support */
318 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
319 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
320
321 /* CONWISE Technology based adapters with buggy SCO support */
Szymon Janc418678b2016-09-01 17:22:37 +0200322 { USB_DEVICE(0x0e5e, 0x6622),
323 .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200324
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800325 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300326 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800327
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200328 /* Digianswer devices */
329 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
330 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
331
332 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200333 { USB_DEVICE(0x0a12, 0x0002),
334 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200335
336 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200337 { USB_DEVICE(0x16d3, 0x0002),
338 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200339
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800340 /* Marvell Bluetooth devices */
341 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
342 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
Amitkumar Karwar1165df02016-09-28 16:18:35 +0530343 { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800344
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800345 /* Intel Bluetooth devices */
Marcel Holtmannde766142017-03-06 15:38:28 -0800346 { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong An1ce0cec2018-02-05 14:20:36 -0800347 { USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_NEW },
Raghuram Hegde2da711bc2018-12-19 11:42:18 +0530348 { USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_NEW },
Marcel Holtmann407550f2015-02-22 15:41:18 -0800349 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700350 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800351 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800352 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong An439e65d2016-06-20 13:43:40 -0700353 { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -0700354 { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700355
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800356 /* Other Intel Bluetooth devices */
357 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
358 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700359
Daniel Drakea2698a92015-04-16 14:09:55 -0600360 /* Realtek Bluetooth devices */
361 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
362 .driver_info = BTUSB_REALTEK },
363
364 /* Additional Realtek 8723AE Bluetooth devices */
365 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
366 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
367
368 /* Additional Realtek 8723BE Bluetooth devices */
369 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
370 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
371 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
372 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
373 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
Dmitry Tunina81d72d2017-08-08 14:09:02 +0300374 { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
Daniel Drakea2698a92015-04-16 14:09:55 -0600375
Vicente Bergasa41e0792018-03-20 19:41:10 +0100376 /* Additional Realtek 8723BU Bluetooth devices */
377 { USB_DEVICE(0x7392, 0xa611), .driver_info = BTUSB_REALTEK },
378
Jian-Hong Pan66d99752018-05-21 18:09:20 +0800379 /* Additional Realtek 8723DE Bluetooth devices */
Jian-Hong Pan45ae68b2018-05-25 17:54:52 +0800380 { USB_DEVICE(0x0bda, 0xb009), .driver_info = BTUSB_REALTEK },
Jian-Hong Pan66d99752018-05-21 18:09:20 +0800381 { USB_DEVICE(0x2ff8, 0xb011), .driver_info = BTUSB_REALTEK },
382
Daniel Drakea2698a92015-04-16 14:09:55 -0600383 /* Additional Realtek 8821AE Bluetooth devices */
384 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
385 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
386 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
387 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
388 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
389
Larry Fingerfed03fe2018-02-11 12:24:32 -0600390 /* Additional Realtek 8822BE Bluetooth devices */
Artiom Vaskov1cd2fab2018-05-30 11:23:00 +0300391 { USB_DEVICE(0x13d3, 0x3526), .driver_info = BTUSB_REALTEK },
Larry Fingerfed03fe2018-02-11 12:24:32 -0600392 { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK },
393
Peter Poklop4481c072015-08-15 20:47:09 +0200394 /* Silicon Wave based devices */
395 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
396
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200397 { } /* Terminating entry */
398};
399
Hans de Goede1fdb9262018-02-20 09:06:18 +0100400/* The Bluetooth USB module build into some devices needs to be reset on resume,
401 * this is a problem with the platform (likely shutting off all power) not with
402 * the module itself. So we use a DMI list to match known broken platforms.
403 */
404static const struct dmi_system_id btusb_needs_reset_resume_table[] = {
405 {
Kai-Heng Feng0c6e5262018-03-01 13:42:52 +0800406 /* Dell OptiPlex 3060 (QCA ROME device 0cf3:e007) */
Hans de Goede1fdb9262018-02-20 09:06:18 +0100407 .matches = {
Kai-Heng Feng0c6e5262018-03-01 13:42:52 +0800408 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
409 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 3060"),
Hans de Goede1fdb9262018-02-20 09:06:18 +0100410 },
411 },
Hans de Goede596b07a2018-04-26 20:52:06 +0200412 {
413 /* Dell XPS 9360 (QCA ROME device 0cf3:e300) */
414 .matches = {
415 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
416 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9360"),
417 },
418 },
Hans de Goede939bc6c2018-05-22 09:34:10 +0200419 {
420 /* Dell Inspiron 5565 (QCA ROME device 0cf3:e009) */
421 .matches = {
422 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
423 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5565"),
424 },
425 },
Hans de Goede1fdb9262018-02-20 09:06:18 +0100426 {}
427};
428
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200429#define BTUSB_MAX_ISOC_FRAMES 10
430
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200431#define BTUSB_INTR_RUNNING 0
432#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200433#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200434#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300435#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800436#define BTUSB_BOOTLOADER 5
437#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800438#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800439#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800440#define BTUSB_BOOTING 9
Hans de Goede61f5ace2018-01-08 10:44:16 +0100441#define BTUSB_DIAG_RUNNING 10
442#define BTUSB_OOB_WAKE_ENABLED 11
Rajat Jaindc786b22019-01-24 15:28:14 -0800443#define BTUSB_HW_RESET_ACTIVE 12
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200444
445struct btusb_data {
446 struct hci_dev *hdev;
447 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200448 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200449 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200450 struct usb_interface *diag;
Marcel Holtmann459232f2017-10-24 19:42:45 +0200451 unsigned isoc_ifnum;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200452
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200453 unsigned long flags;
454
455 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200456 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200457
Marcel Holtmann803b5832014-09-16 08:00:29 +0200458 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200459 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200460 int tx_in_flight;
461 spinlock_t txlock;
462
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200463 struct usb_anchor intr_anchor;
464 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200465 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200466 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200467 spinlock_t rxlock;
468
469 struct sk_buff *evt_skb;
470 struct sk_buff *acl_skb;
471 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200472
473 struct usb_endpoint_descriptor *intr_ep;
474 struct usb_endpoint_descriptor *bulk_tx_ep;
475 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200476 struct usb_endpoint_descriptor *isoc_tx_ep;
477 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200478 struct usb_endpoint_descriptor *diag_tx_ep;
479 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200480
Rajat Jaindc786b22019-01-24 15:28:14 -0800481 struct gpio_desc *reset_gpio;
482
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100483 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800484 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100485
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100486 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200487 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100488 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100489
Marcel Holtmann97307f52015-01-12 13:51:10 -0800490 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100491 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000492
493 int (*setup_on_usb)(struct hci_dev *hdev);
Rajat Jainfd913ef2017-02-01 14:24:09 -0800494
495 int oob_wake_irq; /* irq for out-of-band wake-on-bt */
Rajat Jaindc786b22019-01-24 15:28:14 -0800496 unsigned cmd_timeout_cnt;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200497};
498
Rajat Jaindc786b22019-01-24 15:28:14 -0800499
500static void btusb_intel_cmd_timeout(struct hci_dev *hdev)
501{
502 struct btusb_data *data = hci_get_drvdata(hdev);
503 struct gpio_desc *reset_gpio = data->reset_gpio;
504
505 if (++data->cmd_timeout_cnt < 5)
506 return;
507
508 if (!reset_gpio) {
509 bt_dev_err(hdev, "No way to reset. Ignoring and continuing");
510 return;
511 }
512
513 /*
514 * Toggle the hard reset line if the platform provides one. The reset
515 * is going to yank the device off the USB and then replug. So doing
516 * once is enough. The cleanup is handled correctly on the way out
517 * (standard USB disconnect), and the new device is detected cleanly
518 * and bound to the driver again like it should be.
519 */
520 if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
521 bt_dev_err(hdev, "last reset failed? Not resetting again");
522 return;
523 }
524
525 bt_dev_err(hdev, "Initiating HW reset via gpio");
Rajat Jain2de66bb82019-01-28 15:08:09 -0800526 gpiod_set_value_cansleep(reset_gpio, 1);
527 msleep(100);
528 gpiod_set_value_cansleep(reset_gpio, 0);
Rajat Jaindc786b22019-01-24 15:28:14 -0800529}
530
Marcel Holtmann803b5832014-09-16 08:00:29 +0200531static inline void btusb_free_frags(struct btusb_data *data)
532{
533 unsigned long flags;
534
535 spin_lock_irqsave(&data->rxlock, flags);
536
537 kfree_skb(data->evt_skb);
538 data->evt_skb = NULL;
539
540 kfree_skb(data->acl_skb);
541 data->acl_skb = NULL;
542
543 kfree_skb(data->sco_skb);
544 data->sco_skb = NULL;
545
546 spin_unlock_irqrestore(&data->rxlock, flags);
547}
548
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200549static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
550{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200551 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200552 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200553 int err = 0;
554
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200555 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200556 skb = data->evt_skb;
557
558 while (count) {
559 int len;
560
561 if (!skb) {
562 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
563 if (!skb) {
564 err = -ENOMEM;
565 break;
566 }
567
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100568 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
569 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200570 }
571
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100572 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200573 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200574
575 count -= len;
576 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100577 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200578
579 if (skb->len == HCI_EVENT_HDR_SIZE) {
580 /* Complete event header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100581 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200582
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100583 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200584 kfree_skb(skb);
585 skb = NULL;
586
587 err = -EILSEQ;
588 break;
589 }
590 }
591
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100592 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200593 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800594 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200595 skb = NULL;
596 }
597 }
598
599 data->evt_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200600 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200601
602 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200603}
604
605static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
606{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200607 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200608 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200609 int err = 0;
610
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200611 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200612 skb = data->acl_skb;
613
614 while (count) {
615 int len;
616
617 if (!skb) {
618 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
619 if (!skb) {
620 err = -ENOMEM;
621 break;
622 }
623
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100624 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
625 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200626 }
627
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100628 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200629 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200630
631 count -= len;
632 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100633 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200634
635 if (skb->len == HCI_ACL_HDR_SIZE) {
636 __le16 dlen = hci_acl_hdr(skb)->dlen;
637
638 /* Complete ACL header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100639 hci_skb_expect(skb) = __le16_to_cpu(dlen);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200640
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100641 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200642 kfree_skb(skb);
643 skb = NULL;
644
645 err = -EILSEQ;
646 break;
647 }
648 }
649
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100650 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200651 /* Complete frame */
652 hci_recv_frame(data->hdev, skb);
653 skb = NULL;
654 }
655 }
656
657 data->acl_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200658 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200659
660 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200661}
662
663static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
664{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200665 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200666 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200667 int err = 0;
668
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200669 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200670 skb = data->sco_skb;
671
672 while (count) {
673 int len;
674
675 if (!skb) {
676 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
677 if (!skb) {
678 err = -ENOMEM;
679 break;
680 }
681
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100682 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
683 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200684 }
685
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100686 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200687 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200688
689 count -= len;
690 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100691 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200692
693 if (skb->len == HCI_SCO_HDR_SIZE) {
694 /* Complete SCO header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100695 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200696
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100697 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200698 kfree_skb(skb);
699 skb = NULL;
700
701 err = -EILSEQ;
702 break;
703 }
704 }
705
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100706 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200707 /* Complete frame */
708 hci_recv_frame(data->hdev, skb);
709 skb = NULL;
710 }
711 }
712
713 data->sco_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200714 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200715
716 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200717}
718
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200719static void btusb_intr_complete(struct urb *urb)
720{
721 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100722 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200723 int err;
724
Marcel Holtmann89e75332014-09-16 04:44:50 +0200725 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
726 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200727
728 if (!test_bit(HCI_RUNNING, &hdev->flags))
729 return;
730
731 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200732 hdev->stat.byte_rx += urb->actual_length;
733
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200734 if (btusb_recv_intr(data, urb->transfer_buffer,
735 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100736 bt_dev_err(hdev, "corrupted event packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200737 hdev->stat.err_rx++;
738 }
Champion Chen85560c42014-09-06 14:06:08 -0500739 } else if (urb->status == -ENOENT) {
740 /* Avoid suspend failed when usb_kill_urb */
741 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200742 }
743
744 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
745 return;
746
Oliver Neukum7bee5492009-08-24 23:44:59 +0200747 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200748 usb_anchor_urb(urb, &data->intr_anchor);
749
750 err = usb_submit_urb(urb, GFP_ATOMIC);
751 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200752 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200753 * -ENODEV: device got disconnected
754 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200755 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100756 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
757 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200758 usb_unanchor_urb(urb);
759 }
760}
761
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100762static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200763{
David Herrmann155961e2012-02-09 21:58:32 +0100764 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200765 struct urb *urb;
766 unsigned char *buf;
767 unsigned int pipe;
768 int err, size;
769
770 BT_DBG("%s", hdev->name);
771
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200772 if (!data->intr_ep)
773 return -ENODEV;
774
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100775 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200776 if (!urb)
777 return -ENOMEM;
778
779 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
780
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100781 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200782 if (!buf) {
783 usb_free_urb(urb);
784 return -ENOMEM;
785 }
786
787 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
788
789 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200790 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200791
792 urb->transfer_flags |= URB_FREE_BUFFER;
793
794 usb_anchor_urb(urb, &data->intr_anchor);
795
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100796 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200797 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200798 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100799 bt_dev_err(hdev, "urb %p submission failed (%d)",
800 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200801 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200802 }
803
804 usb_free_urb(urb);
805
806 return err;
807}
808
809static void btusb_bulk_complete(struct urb *urb)
810{
811 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100812 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200813 int err;
814
Marcel Holtmann89e75332014-09-16 04:44:50 +0200815 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
816 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200817
818 if (!test_bit(HCI_RUNNING, &hdev->flags))
819 return;
820
821 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200822 hdev->stat.byte_rx += urb->actual_length;
823
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100824 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200825 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100826 bt_dev_err(hdev, "corrupted ACL packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200827 hdev->stat.err_rx++;
828 }
Champion Chen85560c42014-09-06 14:06:08 -0500829 } else if (urb->status == -ENOENT) {
830 /* Avoid suspend failed when usb_kill_urb */
831 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200832 }
833
834 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
835 return;
836
837 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100838 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200839
840 err = usb_submit_urb(urb, GFP_ATOMIC);
841 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200842 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200843 * -ENODEV: device got disconnected
844 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200845 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100846 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
847 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200848 usb_unanchor_urb(urb);
849 }
850}
851
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100852static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200853{
David Herrmann155961e2012-02-09 21:58:32 +0100854 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200855 struct urb *urb;
856 unsigned char *buf;
857 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530858 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200859
860 BT_DBG("%s", hdev->name);
861
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200862 if (!data->bulk_rx_ep)
863 return -ENODEV;
864
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100865 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200866 if (!urb)
867 return -ENOMEM;
868
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100869 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200870 if (!buf) {
871 usb_free_urb(urb);
872 return -ENOMEM;
873 }
874
875 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
876
Marcel Holtmann89e75332014-09-16 04:44:50 +0200877 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
878 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200879
880 urb->transfer_flags |= URB_FREE_BUFFER;
881
Oliver Neukum7bee5492009-08-24 23:44:59 +0200882 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200883 usb_anchor_urb(urb, &data->bulk_anchor);
884
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100885 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200886 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200887 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100888 bt_dev_err(hdev, "urb %p submission failed (%d)",
889 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200890 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200891 }
892
893 usb_free_urb(urb);
894
895 return err;
896}
897
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200898static void btusb_isoc_complete(struct urb *urb)
899{
900 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100901 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200902 int i, err;
903
Marcel Holtmann89e75332014-09-16 04:44:50 +0200904 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
905 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200906
907 if (!test_bit(HCI_RUNNING, &hdev->flags))
908 return;
909
910 if (urb->status == 0) {
911 for (i = 0; i < urb->number_of_packets; i++) {
912 unsigned int offset = urb->iso_frame_desc[i].offset;
913 unsigned int length = urb->iso_frame_desc[i].actual_length;
914
915 if (urb->iso_frame_desc[i].status)
916 continue;
917
918 hdev->stat.byte_rx += length;
919
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200920 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
921 length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100922 bt_dev_err(hdev, "corrupted SCO packet");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200923 hdev->stat.err_rx++;
924 }
925 }
Champion Chen85560c42014-09-06 14:06:08 -0500926 } else if (urb->status == -ENOENT) {
927 /* Avoid suspend failed when usb_kill_urb */
928 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200929 }
930
931 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
932 return;
933
934 usb_anchor_urb(urb, &data->isoc_anchor);
935
936 err = usb_submit_urb(urb, GFP_ATOMIC);
937 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200938 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200939 * -ENODEV: device got disconnected
940 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200941 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100942 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
943 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200944 usb_unanchor_urb(urb);
945 }
946}
947
Jesper Juhl42b16b32011-01-17 00:09:38 +0100948static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200949{
950 int i, offset = 0;
951
952 BT_DBG("len %d mtu %d", len, mtu);
953
954 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
955 i++, offset += mtu, len -= mtu) {
956 urb->iso_frame_desc[i].offset = offset;
957 urb->iso_frame_desc[i].length = mtu;
958 }
959
960 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
961 urb->iso_frame_desc[i].offset = offset;
962 urb->iso_frame_desc[i].length = len;
963 i++;
964 }
965
966 urb->number_of_packets = i;
967}
968
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100969static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200970{
David Herrmann155961e2012-02-09 21:58:32 +0100971 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200972 struct urb *urb;
973 unsigned char *buf;
974 unsigned int pipe;
975 int err, size;
976
977 BT_DBG("%s", hdev->name);
978
979 if (!data->isoc_rx_ep)
980 return -ENODEV;
981
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100982 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200983 if (!urb)
984 return -ENOMEM;
985
986 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
987 BTUSB_MAX_ISOC_FRAMES;
988
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100989 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200990 if (!buf) {
991 usb_free_urb(urb);
992 return -ENOMEM;
993 }
994
995 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
996
Bing Zhaofa0fb932011-12-20 18:19:00 -0800997 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200998 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200999
Marcel Holtmann89e75332014-09-16 04:44:50 +02001000 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001001
1002 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001003 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001004
1005 usb_anchor_urb(urb, &data->isoc_anchor);
1006
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001007 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001008 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +02001009 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001010 bt_dev_err(hdev, "urb %p submission failed (%d)",
1011 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001012 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001013 }
1014
1015 usb_free_urb(urb);
1016
1017 return err;
1018}
1019
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001020static void btusb_diag_complete(struct urb *urb)
1021{
1022 struct hci_dev *hdev = urb->context;
1023 struct btusb_data *data = hci_get_drvdata(hdev);
1024 int err;
1025
1026 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1027 urb->actual_length);
1028
1029 if (urb->status == 0) {
1030 struct sk_buff *skb;
1031
1032 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
1033 if (skb) {
Johannes Berg59ae1d12017-06-16 14:29:20 +02001034 skb_put_data(skb, urb->transfer_buffer,
1035 urb->actual_length);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001036 hci_recv_diag(hdev, skb);
1037 }
1038 } else if (urb->status == -ENOENT) {
1039 /* Avoid suspend failed when usb_kill_urb */
1040 return;
1041 }
1042
1043 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
1044 return;
1045
1046 usb_anchor_urb(urb, &data->diag_anchor);
1047 usb_mark_last_busy(data->udev);
1048
1049 err = usb_submit_urb(urb, GFP_ATOMIC);
1050 if (err < 0) {
1051 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +12001052 * -ENODEV: device got disconnected
1053 */
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001054 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001055 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1056 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001057 usb_unanchor_urb(urb);
1058 }
1059}
1060
1061static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
1062{
1063 struct btusb_data *data = hci_get_drvdata(hdev);
1064 struct urb *urb;
1065 unsigned char *buf;
1066 unsigned int pipe;
1067 int err, size = HCI_MAX_FRAME_SIZE;
1068
1069 BT_DBG("%s", hdev->name);
1070
1071 if (!data->diag_rx_ep)
1072 return -ENODEV;
1073
1074 urb = usb_alloc_urb(0, mem_flags);
1075 if (!urb)
1076 return -ENOMEM;
1077
1078 buf = kmalloc(size, mem_flags);
1079 if (!buf) {
1080 usb_free_urb(urb);
1081 return -ENOMEM;
1082 }
1083
1084 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
1085
1086 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1087 btusb_diag_complete, hdev);
1088
1089 urb->transfer_flags |= URB_FREE_BUFFER;
1090
1091 usb_mark_last_busy(data->udev);
1092 usb_anchor_urb(urb, &data->diag_anchor);
1093
1094 err = usb_submit_urb(urb, mem_flags);
1095 if (err < 0) {
1096 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001097 bt_dev_err(hdev, "urb %p submission failed (%d)",
1098 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001099 usb_unanchor_urb(urb);
1100 }
1101
1102 usb_free_urb(urb);
1103
1104 return err;
1105}
1106
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001107static void btusb_tx_complete(struct urb *urb)
1108{
1109 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001110 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +01001111 struct btusb_data *data = hci_get_drvdata(hdev);
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001112 unsigned long flags;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001113
Marcel Holtmann89e75332014-09-16 04:44:50 +02001114 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1115 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001116
1117 if (!test_bit(HCI_RUNNING, &hdev->flags))
1118 goto done;
1119
1120 if (!urb->status)
1121 hdev->stat.byte_tx += urb->transfer_buffer_length;
1122 else
1123 hdev->stat.err_tx++;
1124
1125done:
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001126 spin_lock_irqsave(&data->txlock, flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001127 data->tx_in_flight--;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001128 spin_unlock_irqrestore(&data->txlock, flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001129
1130 kfree(urb->setup_packet);
1131
1132 kfree_skb(skb);
1133}
1134
1135static void btusb_isoc_tx_complete(struct urb *urb)
1136{
1137 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001138 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001139
Marcel Holtmann89e75332014-09-16 04:44:50 +02001140 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1141 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001142
1143 if (!test_bit(HCI_RUNNING, &hdev->flags))
1144 goto done;
1145
1146 if (!urb->status)
1147 hdev->stat.byte_tx += urb->transfer_buffer_length;
1148 else
1149 hdev->stat.err_tx++;
1150
1151done:
1152 kfree(urb->setup_packet);
1153
1154 kfree_skb(skb);
1155}
1156
1157static int btusb_open(struct hci_dev *hdev)
1158{
David Herrmann155961e2012-02-09 21:58:32 +01001159 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001160 int err;
1161
1162 BT_DBG("%s", hdev->name);
1163
Ethan Hsiehc7e163f2016-10-07 12:06:42 +08001164 err = usb_autopm_get_interface(data->intf);
1165 if (err < 0)
1166 return err;
1167
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001168 /* Patching USB firmware files prior to starting any URBs of HCI path
1169 * It is more safe to use USB bulk channel for downloading USB patch
1170 */
1171 if (data->setup_on_usb) {
1172 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001173 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001174 return err;
1175 }
1176
Oliver Neukum7bee5492009-08-24 23:44:59 +02001177 data->intf->needs_remote_wakeup = 1;
Sukumar Ghoraia0085f22017-08-16 14:46:55 -07001178 /* device specific wakeup source enabled and required for USB
1179 * remote wakeup while host is suspended
1180 */
1181 device_wakeup_enable(&data->udev->dev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001182
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001183 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001184 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001185
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001186 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001187 if (err < 0)
1188 goto failed;
1189
1190 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001192 usb_kill_anchored_urbs(&data->intr_anchor);
1193 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001194 }
1195
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001196 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1197 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1198
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001199 if (data->diag) {
1200 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1201 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1202 }
1203
Oliver Neukum7bee5492009-08-24 23:44:59 +02001204done:
1205 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001206 return 0;
1207
1208failed:
1209 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001210 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001211 return err;
1212}
1213
Oliver Neukum7bee5492009-08-24 23:44:59 +02001214static void btusb_stop_traffic(struct btusb_data *data)
1215{
1216 usb_kill_anchored_urbs(&data->intr_anchor);
1217 usb_kill_anchored_urbs(&data->bulk_anchor);
1218 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001219 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001220}
1221
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001222static int btusb_close(struct hci_dev *hdev)
1223{
David Herrmann155961e2012-02-09 21:58:32 +01001224 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001225 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001226
1227 BT_DBG("%s", hdev->name);
1228
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001229 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001230 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001231
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001232 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001233 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001234 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001235 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001236
1237 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001238 btusb_free_frags(data);
1239
Oliver Neukum7bee5492009-08-24 23:44:59 +02001240 err = usb_autopm_get_interface(data->intf);
1241 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001242 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001243
1244 data->intf->needs_remote_wakeup = 0;
Sukumar Ghoraia0085f22017-08-16 14:46:55 -07001245 device_wakeup_disable(&data->udev->dev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001246 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001247
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001248failed:
1249 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001250 return 0;
1251}
1252
1253static int btusb_flush(struct hci_dev *hdev)
1254{
David Herrmann155961e2012-02-09 21:58:32 +01001255 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001256
1257 BT_DBG("%s", hdev->name);
1258
1259 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001260 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001261
1262 return 0;
1263}
1264
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001265static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001266{
David Herrmann155961e2012-02-09 21:58:32 +01001267 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001268 struct usb_ctrlrequest *dr;
1269 struct urb *urb;
1270 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001271
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001272 urb = usb_alloc_urb(0, GFP_KERNEL);
1273 if (!urb)
1274 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001275
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001276 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1277 if (!dr) {
1278 usb_free_urb(urb);
1279 return ERR_PTR(-ENOMEM);
1280 }
1281
1282 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001283 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001284 dr->wIndex = 0;
1285 dr->wValue = 0;
1286 dr->wLength = __cpu_to_le16(skb->len);
1287
1288 pipe = usb_sndctrlpipe(data->udev, 0x00);
1289
Marcel Holtmann89e75332014-09-16 04:44:50 +02001290 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001291 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001292
Marcel Holtmann89e75332014-09-16 04:44:50 +02001293 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001294
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001295 return urb;
1296}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001297
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001298static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1299{
1300 struct btusb_data *data = hci_get_drvdata(hdev);
1301 struct urb *urb;
1302 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001303
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001304 if (!data->bulk_tx_ep)
1305 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001306
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001307 urb = usb_alloc_urb(0, GFP_KERNEL);
1308 if (!urb)
1309 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001310
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001311 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001312
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001313 usb_fill_bulk_urb(urb, data->udev, pipe,
1314 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001315
Marcel Holtmann89e75332014-09-16 04:44:50 +02001316 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001317
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001318 return urb;
1319}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001320
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001321static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1322{
1323 struct btusb_data *data = hci_get_drvdata(hdev);
1324 struct urb *urb;
1325 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001326
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001327 if (!data->isoc_tx_ep)
1328 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001329
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001330 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1331 if (!urb)
1332 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001333
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001334 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001335
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001336 usb_fill_int_urb(urb, data->udev, pipe,
1337 skb->data, skb->len, btusb_isoc_tx_complete,
1338 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001339
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001340 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001341
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001342 __fill_isoc_descriptor(urb, skb->len,
1343 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001344
Marcel Holtmann89e75332014-09-16 04:44:50 +02001345 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001346
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001347 return urb;
1348}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001349
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001350static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1351{
1352 struct btusb_data *data = hci_get_drvdata(hdev);
1353 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001354
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001355 usb_anchor_urb(urb, &data->tx_anchor);
1356
Johan Hedberge9753ef2014-09-14 08:49:34 +03001357 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001358 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001359 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001360 bt_dev_err(hdev, "urb %p submission failed (%d)",
1361 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001362 kfree(urb->setup_packet);
1363 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001364 } else {
1365 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001366 }
1367
Cong Wang54a8a792011-11-22 09:32:57 +08001368 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001369 return err;
1370}
1371
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001372static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1373{
1374 struct btusb_data *data = hci_get_drvdata(hdev);
1375 unsigned long flags;
1376 bool suspending;
1377
1378 spin_lock_irqsave(&data->txlock, flags);
1379 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1380 if (!suspending)
1381 data->tx_in_flight++;
1382 spin_unlock_irqrestore(&data->txlock, flags);
1383
1384 if (!suspending)
1385 return submit_tx_urb(hdev, urb);
1386
1387 usb_anchor_urb(urb, &data->deferred);
1388 schedule_work(&data->waker);
1389
1390 usb_free_urb(urb);
1391 return 0;
1392}
1393
1394static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1395{
1396 struct urb *urb;
1397
1398 BT_DBG("%s", hdev->name);
1399
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001400 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001401 case HCI_COMMAND_PKT:
1402 urb = alloc_ctrl_urb(hdev, skb);
1403 if (IS_ERR(urb))
1404 return PTR_ERR(urb);
1405
1406 hdev->stat.cmd_tx++;
1407 return submit_or_queue_tx_urb(hdev, urb);
1408
1409 case HCI_ACLDATA_PKT:
1410 urb = alloc_bulk_urb(hdev, skb);
1411 if (IS_ERR(urb))
1412 return PTR_ERR(urb);
1413
1414 hdev->stat.acl_tx++;
1415 return submit_or_queue_tx_urb(hdev, urb);
1416
1417 case HCI_SCODATA_PKT:
1418 if (hci_conn_num(hdev, SCO_LINK) < 1)
1419 return -ENODEV;
1420
1421 urb = alloc_isoc_urb(hdev, skb);
1422 if (IS_ERR(urb))
1423 return PTR_ERR(urb);
1424
1425 hdev->stat.sco_tx++;
1426 return submit_tx_urb(hdev, urb);
1427 }
1428
1429 return -EILSEQ;
1430}
1431
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001432static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1433{
David Herrmann155961e2012-02-09 21:58:32 +01001434 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001435
1436 BT_DBG("%s evt %d", hdev->name, evt);
1437
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001438 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1439 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001440 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001441 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001442}
1443
Jesper Juhl42b16b32011-01-17 00:09:38 +01001444static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001445{
David Herrmann155961e2012-02-09 21:58:32 +01001446 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001447 struct usb_interface *intf = data->isoc;
1448 struct usb_endpoint_descriptor *ep_desc;
1449 int i, err;
1450
1451 if (!data->isoc)
1452 return -ENODEV;
1453
Marcel Holtmann459232f2017-10-24 19:42:45 +02001454 err = usb_set_interface(data->udev, data->isoc_ifnum, altsetting);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001455 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001456 bt_dev_err(hdev, "setting interface failed (%d)", -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001457 return err;
1458 }
1459
1460 data->isoc_altsetting = altsetting;
1461
1462 data->isoc_tx_ep = NULL;
1463 data->isoc_rx_ep = NULL;
1464
1465 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1466 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1467
1468 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1469 data->isoc_tx_ep = ep_desc;
1470 continue;
1471 }
1472
1473 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1474 data->isoc_rx_ep = ep_desc;
1475 continue;
1476 }
1477 }
1478
1479 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001480 bt_dev_err(hdev, "invalid SCO descriptors");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001481 return -ENODEV;
1482 }
1483
1484 return 0;
1485}
1486
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001487static void btusb_work(struct work_struct *work)
1488{
1489 struct btusb_data *data = container_of(work, struct btusb_data, work);
1490 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001491 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001492 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001493
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001494 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001495 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001496 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001497 if (err < 0) {
1498 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1499 usb_kill_anchored_urbs(&data->isoc_anchor);
1500 return;
1501 }
1502
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001503 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001504 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001505
1506 if (hdev->voice_setting & 0x0020) {
1507 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001508
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001509 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001510 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001511 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001512 }
1513
1514 if (data->isoc_altsetting != new_alts) {
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001515 unsigned long flags;
1516
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001517 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1518 usb_kill_anchored_urbs(&data->isoc_anchor);
1519
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001520 /* When isochronous alternate setting needs to be
1521 * changed, because SCO connection has been added
1522 * or removed, a packet fragment may be left in the
1523 * reassembling state. This could lead to wrongly
1524 * assembled fragments.
1525 *
1526 * Clear outstanding fragment when selecting a new
1527 * alternate setting.
1528 */
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001529 spin_lock_irqsave(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001530 kfree_skb(data->sco_skb);
1531 data->sco_skb = NULL;
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001532 spin_unlock_irqrestore(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001533
Mikel Astizf4001d22012-04-11 08:48:51 +02001534 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001535 return;
1536 }
1537
1538 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001539 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001540 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1541 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001542 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001543 }
1544 } else {
1545 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1546 usb_kill_anchored_urbs(&data->isoc_anchor);
1547
1548 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001549 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001550 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001551 }
1552}
1553
Oliver Neukum7bee5492009-08-24 23:44:59 +02001554static void btusb_waker(struct work_struct *work)
1555{
1556 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1557 int err;
1558
1559 err = usb_autopm_get_interface(data->intf);
1560 if (err < 0)
1561 return;
1562
1563 usb_autopm_put_interface(data->intf);
1564}
1565
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001566static int btusb_setup_bcm92035(struct hci_dev *hdev)
1567{
1568 struct sk_buff *skb;
1569 u8 val = 0x00;
1570
1571 BT_DBG("%s", hdev->name);
1572
1573 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1574 if (IS_ERR(skb))
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001575 bt_dev_err(hdev, "BCM92035 command failed (%ld)", PTR_ERR(skb));
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001576 else
1577 kfree_skb(skb);
1578
1579 return 0;
1580}
1581
Marcel Holtmann81cac642014-01-03 03:02:36 -08001582static int btusb_setup_csr(struct hci_dev *hdev)
1583{
1584 struct hci_rp_read_local_version *rp;
1585 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001586
1587 BT_DBG("%s", hdev->name);
1588
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001589 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1590 HCI_INIT_TIMEOUT);
1591 if (IS_ERR(skb)) {
1592 int err = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001593 bt_dev_err(hdev, "CSR: Local version failed (%d)", err);
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001594 return err;
1595 }
1596
1597 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001598 bt_dev_err(hdev, "CSR: Local version length mismatch");
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001599 kfree_skb(skb);
1600 return -EIO;
1601 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001602
Marcel Holtmann89e75332014-09-16 04:44:50 +02001603 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001604
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001605 /* Detect controllers which aren't real CSR ones. */
1606 if (le16_to_cpu(rp->manufacturer) != 10 ||
1607 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001608 /* Clear the reset quirk since this is not an actual
1609 * early Bluetooth 1.1 device from CSR.
1610 */
1611 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001612
Marcel Holtmann9641d342015-06-07 10:01:01 +02001613 /* These fake CSR controllers have all a broken
1614 * stored link key handling and so just disable it.
1615 */
1616 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001617 }
1618
Marcel Holtmann81cac642014-01-03 03:02:36 -08001619 kfree_skb(skb);
1620
Marcel Holtmann9641d342015-06-07 10:01:01 +02001621 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001622}
1623
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001624static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001625 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001626{
1627 const struct firmware *fw;
1628 char fwname[64];
1629 int ret;
1630
1631 snprintf(fwname, sizeof(fwname),
1632 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1633 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1634 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1635 ver->fw_build_ww, ver->fw_build_yy);
1636
1637 ret = request_firmware(&fw, fwname, &hdev->dev);
1638 if (ret < 0) {
1639 if (ret == -EINVAL) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001640 bt_dev_err(hdev, "Intel firmware file request failed (%d)",
1641 ret);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001642 return NULL;
1643 }
1644
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001645 bt_dev_err(hdev, "failed to open Intel firmware file: %s (%d)",
1646 fwname, ret);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001647
1648 /* If the correct firmware patch file is not found, use the
1649 * default firmware patch file instead
1650 */
1651 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1652 ver->hw_platform, ver->hw_variant);
1653 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001654 bt_dev_err(hdev, "failed to open default fw file: %s",
1655 fwname);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001656 return NULL;
1657 }
1658 }
1659
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001660 bt_dev_info(hdev, "Intel Bluetooth firmware file: %s", fwname);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001661
1662 return fw;
1663}
1664
1665static int btusb_setup_intel_patching(struct hci_dev *hdev,
1666 const struct firmware *fw,
1667 const u8 **fw_ptr, int *disable_patch)
1668{
1669 struct sk_buff *skb;
1670 struct hci_command_hdr *cmd;
1671 const u8 *cmd_param;
1672 struct hci_event_hdr *evt = NULL;
1673 const u8 *evt_param = NULL;
1674 int remain = fw->size - (*fw_ptr - fw->data);
1675
1676 /* The first byte indicates the types of the patch command or event.
1677 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1678 * in the current firmware buffer doesn't start with 0x01 or
1679 * the size of remain buffer is smaller than HCI command header,
1680 * the firmware file is corrupted and it should stop the patching
1681 * process.
1682 */
1683 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001684 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd read");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001685 return -EINVAL;
1686 }
1687 (*fw_ptr)++;
1688 remain--;
1689
1690 cmd = (struct hci_command_hdr *)(*fw_ptr);
1691 *fw_ptr += sizeof(*cmd);
1692 remain -= sizeof(*cmd);
1693
1694 /* Ensure that the remain firmware data is long enough than the length
1695 * of command parameter. If not, the firmware file is corrupted.
1696 */
1697 if (remain < cmd->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001698 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd len");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001699 return -EFAULT;
1700 }
1701
1702 /* If there is a command that loads a patch in the firmware
1703 * file, then enable the patch upon success, otherwise just
1704 * disable the manufacturer mode, for example patch activation
1705 * is not required when the default firmware patch file is used
1706 * because there are no patch data to load.
1707 */
1708 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1709 *disable_patch = 0;
1710
1711 cmd_param = *fw_ptr;
1712 *fw_ptr += cmd->plen;
1713 remain -= cmd->plen;
1714
1715 /* This reads the expected events when the above command is sent to the
1716 * device. Some vendor commands expects more than one events, for
1717 * example command status event followed by vendor specific event.
1718 * For this case, it only keeps the last expected event. so the command
1719 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1720 * last expected event.
1721 */
1722 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1723 (*fw_ptr)++;
1724 remain--;
1725
1726 evt = (struct hci_event_hdr *)(*fw_ptr);
1727 *fw_ptr += sizeof(*evt);
1728 remain -= sizeof(*evt);
1729
1730 if (remain < evt->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001731 bt_dev_err(hdev, "Intel fw corrupted: invalid evt len");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001732 return -EFAULT;
1733 }
1734
1735 evt_param = *fw_ptr;
1736 *fw_ptr += evt->plen;
1737 remain -= evt->plen;
1738 }
1739
1740 /* Every HCI commands in the firmware file has its correspond event.
1741 * If event is not found or remain is smaller than zero, the firmware
1742 * file is corrupted.
1743 */
1744 if (!evt || !evt_param || remain < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001745 bt_dev_err(hdev, "Intel fw corrupted: invalid evt read");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001746 return -EFAULT;
1747 }
1748
1749 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1750 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1751 if (IS_ERR(skb)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001752 bt_dev_err(hdev, "sending Intel patch command (0x%4.4x) failed (%ld)",
1753 cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001754 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001755 }
1756
1757 /* It ensures that the returned event matches the event data read from
1758 * the firmware file. At fist, it checks the length and then
1759 * the contents of the event.
1760 */
1761 if (skb->len != evt->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001762 bt_dev_err(hdev, "mismatch event length (opcode 0x%4.4x)",
1763 le16_to_cpu(cmd->opcode));
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001764 kfree_skb(skb);
1765 return -EFAULT;
1766 }
1767
1768 if (memcmp(skb->data, evt_param, evt->plen)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001769 bt_dev_err(hdev, "mismatch event parameter (opcode 0x%4.4x)",
1770 le16_to_cpu(cmd->opcode));
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001771 kfree_skb(skb);
1772 return -EFAULT;
1773 }
1774 kfree_skb(skb);
1775
1776 return 0;
1777}
1778
1779static int btusb_setup_intel(struct hci_dev *hdev)
1780{
1781 struct sk_buff *skb;
1782 const struct firmware *fw;
1783 const u8 *fw_ptr;
Loic Poulain28dc4b92015-12-03 16:10:22 +01001784 int disable_patch, err;
Loic Poulain6c483de2015-12-06 16:18:34 +01001785 struct intel_version ver;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001786
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001787 BT_DBG("%s", hdev->name);
1788
1789 /* The controller has a bug with the first HCI command sent to it
1790 * returning number of completed commands as zero. This would stall the
1791 * command processing in the Bluetooth core.
1792 *
1793 * As a workaround, send HCI Reset command first which will reset the
1794 * number of completed commands and allow normal command processing
1795 * from now on.
1796 */
1797 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1798 if (IS_ERR(skb)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001799 bt_dev_err(hdev, "sending initial HCI reset command failed (%ld)",
1800 PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001801 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001802 }
1803 kfree_skb(skb);
1804
1805 /* Read Intel specific controller version first to allow selection of
1806 * which firmware file to load.
1807 *
1808 * The returned information are hardware variant and revision plus
1809 * firmware variant, revision and build number.
1810 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001811 err = btintel_read_version(hdev, &ver);
1812 if (err)
1813 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001814
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001815 bt_dev_info(hdev, "read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1816 ver.hw_platform, ver.hw_variant, ver.hw_revision,
1817 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1818 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001819
1820 /* fw_patch_num indicates the version of patch the device currently
1821 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001822 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001823 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001824 if (ver.fw_patch_num) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001825 bt_dev_info(hdev, "Intel device is already patched. "
1826 "patch num: %02x", ver.fw_patch_num);
Marcel Holtmann213445b2015-10-21 02:45:19 +02001827 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001828 }
1829
1830 /* Opens the firmware patch file based on the firmware version read
1831 * from the controller. If it fails to open the matching firmware
1832 * patch file, it tries to open the default firmware patch file.
1833 * If no patch file is found, allow the device to operate without
1834 * a patch.
1835 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001836 fw = btusb_setup_intel_get_fw(hdev, &ver);
1837 if (!fw)
Marcel Holtmann213445b2015-10-21 02:45:19 +02001838 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001839 fw_ptr = fw->data;
1840
Loic Poulain28dc4b92015-12-03 16:10:22 +01001841 /* Enable the manufacturer mode of the controller.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001842 * Only while this mode is enabled, the driver can download the
1843 * firmware patch data and configuration parameters.
1844 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001845 err = btintel_enter_mfg(hdev);
1846 if (err) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001847 release_firmware(fw);
Loic Poulain28dc4b92015-12-03 16:10:22 +01001848 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001849 }
1850
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001851 disable_patch = 1;
1852
1853 /* The firmware data file consists of list of Intel specific HCI
1854 * commands and its expected events. The first byte indicates the
1855 * type of the message, either HCI command or HCI event.
1856 *
1857 * It reads the command and its expected event from the firmware file,
1858 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1859 * the returned event is compared with the event read from the firmware
1860 * file and it will continue until all the messages are downloaded to
1861 * the controller.
1862 *
1863 * Once the firmware patching is completed successfully,
1864 * the manufacturer mode is disabled with reset and activating the
1865 * downloaded patch.
1866 *
1867 * If the firmware patching fails, the manufacturer mode is
1868 * disabled with reset and deactivating the patch.
1869 *
1870 * If the default patch file is used, no reset is done when disabling
1871 * the manufacturer.
1872 */
1873 while (fw->size > fw_ptr - fw->data) {
1874 int ret;
1875
1876 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1877 &disable_patch);
1878 if (ret < 0)
1879 goto exit_mfg_deactivate;
1880 }
1881
1882 release_firmware(fw);
1883
1884 if (disable_patch)
1885 goto exit_mfg_disable;
1886
1887 /* Patching completed successfully and disable the manufacturer mode
1888 * with reset and activate the downloaded firmware patches.
1889 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001890 err = btintel_exit_mfg(hdev, true, true);
1891 if (err)
1892 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001893
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001894 bt_dev_info(hdev, "Intel firmware patch completed and activated");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001895
Marcel Holtmann213445b2015-10-21 02:45:19 +02001896 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001897
1898exit_mfg_disable:
1899 /* Disable the manufacturer mode without reset */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001900 err = btintel_exit_mfg(hdev, false, false);
1901 if (err)
1902 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001903
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001904 bt_dev_info(hdev, "Intel firmware patch completed");
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001905
Marcel Holtmann213445b2015-10-21 02:45:19 +02001906 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001907
1908exit_mfg_deactivate:
1909 release_firmware(fw);
1910
1911 /* Patching failed. Disable the manufacturer mode with reset and
1912 * deactivate the downloaded firmware patches.
1913 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001914 err = btintel_exit_mfg(hdev, true, false);
1915 if (err)
1916 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001917
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001918 bt_dev_info(hdev, "Intel firmware patch completed and deactivated");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001919
Marcel Holtmann213445b2015-10-21 02:45:19 +02001920complete:
1921 /* Set the event mask for Intel specific vendor events. This enables
1922 * a few extra events that are useful during general operation.
1923 */
1924 btintel_set_event_mask_mfg(hdev, false);
1925
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001926 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001927 return 0;
1928}
1929
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001930static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1931{
1932 struct sk_buff *skb;
1933 struct hci_event_hdr *hdr;
1934 struct hci_ev_cmd_complete *evt;
1935
Jia-Ju Baicf07e342018-07-23 11:38:51 +08001936 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_KERNEL);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001937 if (!skb)
1938 return -ENOMEM;
1939
Johannes Berg4df864c2017-06-16 14:29:21 +02001940 hdr = skb_put(skb, sizeof(*hdr));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001941 hdr->evt = HCI_EV_CMD_COMPLETE;
1942 hdr->plen = sizeof(*evt) + 1;
1943
Johannes Berg4df864c2017-06-16 14:29:21 +02001944 evt = skb_put(skb, sizeof(*evt));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001945 evt->ncmd = 0x01;
1946 evt->opcode = cpu_to_le16(opcode);
1947
Johannes Berg634fef62017-06-16 14:29:24 +02001948 skb_put_u8(skb, 0x00);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001949
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001950 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001951
1952 return hci_recv_frame(hdev, skb);
1953}
1954
1955static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1956 int count)
1957{
1958 /* When the device is in bootloader mode, then it can send
1959 * events via the bulk endpoint. These events are treated the
1960 * same way as the ones received from the interrupt endpoint.
1961 */
1962 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1963 return btusb_recv_intr(data, buffer, count);
1964
1965 return btusb_recv_bulk(data, buffer, count);
1966}
1967
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001968static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1969 unsigned int len)
1970{
1971 const struct intel_bootup *evt = ptr;
1972
1973 if (len != sizeof(*evt))
1974 return;
1975
Andrea Parridff6d592018-11-27 12:22:25 +01001976 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags))
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001977 wake_up_bit(&data->flags, BTUSB_BOOTING);
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001978}
1979
1980static void btusb_intel_secure_send_result(struct btusb_data *data,
1981 const void *ptr, unsigned int len)
1982{
1983 const struct intel_secure_send_result *evt = ptr;
1984
1985 if (len != sizeof(*evt))
1986 return;
1987
1988 if (evt->result)
1989 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1990
1991 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
Andrea Parridff6d592018-11-27 12:22:25 +01001992 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags))
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001993 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001994}
1995
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001996static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1997{
1998 struct btusb_data *data = hci_get_drvdata(hdev);
1999
2000 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2001 struct hci_event_hdr *hdr = (void *)skb->data;
2002
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002003 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
2004 hdr->plen > 0) {
2005 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
2006 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002007
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002008 switch (skb->data[2]) {
2009 case 0x02:
2010 /* When switching to the operational firmware
2011 * the device sends a vendor specific event
2012 * indicating that the bootup completed.
2013 */
2014 btusb_intel_bootup(data, ptr, len);
2015 break;
2016 case 0x06:
2017 /* When the firmware loading completes the
2018 * device sends out a vendor specific event
2019 * indicating the result of the firmware
2020 * loading.
2021 */
2022 btusb_intel_secure_send_result(data, ptr, len);
2023 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02002024 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002025 }
2026 }
2027
2028 return hci_recv_frame(hdev, skb);
2029}
2030
2031static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
2032{
2033 struct btusb_data *data = hci_get_drvdata(hdev);
2034 struct urb *urb;
2035
2036 BT_DBG("%s", hdev->name);
2037
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01002038 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002039 case HCI_COMMAND_PKT:
2040 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2041 struct hci_command_hdr *cmd = (void *)skb->data;
2042 __u16 opcode = le16_to_cpu(cmd->opcode);
2043
2044 /* When in bootloader mode and the command 0xfc09
2045 * is received, it needs to be send down the
2046 * bulk endpoint. So allocate a bulk URB instead.
2047 */
2048 if (opcode == 0xfc09)
2049 urb = alloc_bulk_urb(hdev, skb);
2050 else
2051 urb = alloc_ctrl_urb(hdev, skb);
2052
2053 /* When the 0xfc01 command is issued to boot into
2054 * the operational firmware, it will actually not
2055 * send a command complete event. To keep the flow
2056 * control working inject that event here.
2057 */
2058 if (opcode == 0xfc01)
2059 inject_cmd_complete(hdev, opcode);
2060 } else {
2061 urb = alloc_ctrl_urb(hdev, skb);
2062 }
2063 if (IS_ERR(urb))
2064 return PTR_ERR(urb);
2065
2066 hdev->stat.cmd_tx++;
2067 return submit_or_queue_tx_urb(hdev, urb);
2068
2069 case HCI_ACLDATA_PKT:
2070 urb = alloc_bulk_urb(hdev, skb);
2071 if (IS_ERR(urb))
2072 return PTR_ERR(urb);
2073
2074 hdev->stat.acl_tx++;
2075 return submit_or_queue_tx_urb(hdev, urb);
2076
2077 case HCI_SCODATA_PKT:
2078 if (hci_conn_num(hdev, SCO_LINK) < 1)
2079 return -ENODEV;
2080
2081 urb = alloc_isoc_urb(hdev, skb);
2082 if (IS_ERR(urb))
2083 return PTR_ERR(urb);
2084
2085 hdev->stat.sco_tx++;
2086 return submit_tx_urb(hdev, urb);
2087 }
2088
2089 return -EILSEQ;
2090}
2091
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302092static bool btusb_setup_intel_new_get_fw_name(struct intel_version *ver,
2093 struct intel_boot_params *params,
2094 char *fw_name, size_t len,
2095 const char *suffix)
2096{
2097 switch (ver->hw_variant) {
2098 case 0x0b: /* SfP */
2099 case 0x0c: /* WsP */
2100 snprintf(fw_name, len, "intel/ibt-%u-%u.%s",
2101 le16_to_cpu(ver->hw_variant),
2102 le16_to_cpu(params->dev_revid),
2103 suffix);
2104 break;
2105 case 0x11: /* JfP */
2106 case 0x12: /* ThP */
2107 case 0x13: /* HrP */
2108 case 0x14: /* CcP */
2109 snprintf(fw_name, len, "intel/ibt-%u-%u-%u.%s",
2110 le16_to_cpu(ver->hw_variant),
2111 le16_to_cpu(ver->hw_revision),
2112 le16_to_cpu(ver->fw_revision),
2113 suffix);
2114 break;
2115 default:
2116 return false;
2117 }
2118 return true;
2119}
2120
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002121static int btusb_setup_intel_new(struct hci_dev *hdev)
2122{
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002123 struct btusb_data *data = hci_get_drvdata(hdev);
Loic Poulain6c483de2015-12-06 16:18:34 +01002124 struct intel_version ver;
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002125 struct intel_boot_params params;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002126 const struct firmware *fw;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002127 u32 boot_param;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002128 char fwname[64];
2129 ktime_t calltime, delta, rettime;
2130 unsigned long long duration;
2131 int err;
2132
2133 BT_DBG("%s", hdev->name);
2134
Tedd Ho-Jeong An04d729b2018-01-24 09:19:19 -08002135 /* Set the default boot parameter to 0x0 and it is updated to
2136 * SKU specific boot parameter after reading Intel_Write_Boot_Params
2137 * command while downloading the firmware.
2138 */
2139 boot_param = 0x00000000;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002140
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002141 calltime = ktime_get();
2142
2143 /* Read the Intel version information to determine if the device
2144 * is in bootloader mode or if it already has operational firmware
2145 * loaded.
2146 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002147 err = btintel_read_version(hdev, &ver);
2148 if (err)
2149 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002150
2151 /* The hardware platform number has a fixed value of 0x37 and
2152 * for now only accept this single value.
2153 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002154 if (ver.hw_platform != 0x37) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002155 bt_dev_err(hdev, "Unsupported Intel hardware platform (%u)",
2156 ver.hw_platform);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002157 return -EINVAL;
2158 }
2159
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002160 /* Check for supported iBT hardware variants of this firmware
2161 * loading method.
Tedd Ho-Jeong Ana0af53b2016-05-06 11:53:46 -07002162 *
2163 * This check has been put in place to ensure correct forward
2164 * compatibility options when newer hardware variants come along.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002165 */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002166 switch (ver.hw_variant) {
2167 case 0x0b: /* SfP */
2168 case 0x0c: /* WsP */
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002169 case 0x11: /* JfP */
Marcel Holtmannde766142017-03-06 15:38:28 -08002170 case 0x12: /* ThP */
Tedd Ho-Jeong An1ce0cec2018-02-05 14:20:36 -08002171 case 0x13: /* HrP */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302172 case 0x14: /* CcP */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002173 break;
2174 default:
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002175 bt_dev_err(hdev, "Unsupported Intel hardware variant (%u)",
2176 ver.hw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002177 return -EINVAL;
2178 }
2179
Loic Poulain6c483de2015-12-06 16:18:34 +01002180 btintel_version_info(hdev, &ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002181
2182 /* The firmware variant determines if the device is in bootloader
2183 * mode or is running operational firmware. The value 0x06 identifies
2184 * the bootloader and the value 0x23 identifies the operational
2185 * firmware.
2186 *
2187 * When the operational firmware is already present, then only
2188 * the check for valid Bluetooth device address is needed. This
2189 * determines if the device will be added as configured or
2190 * unconfigured controller.
2191 *
2192 * It is not possible to use the Secure Boot Parameters in this
2193 * case since that command is only available in bootloader mode.
2194 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002195 if (ver.fw_variant == 0x23) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002196 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002197 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002198 return 0;
2199 }
2200
2201 /* If the device is not in bootloader mode, then the only possible
2202 * choice is to return an error and abort the device initialization.
2203 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002204 if (ver.fw_variant != 0x06) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002205 bt_dev_err(hdev, "Unsupported Intel firmware variant (%u)",
2206 ver.fw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002207 return -ENODEV;
2208 }
2209
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002210 /* Read the secure boot parameters to identify the operating
2211 * details of the bootloader.
2212 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002213 err = btintel_read_boot_params(hdev, &params);
2214 if (err)
2215 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002216
2217 /* It is required that every single firmware fragment is acknowledged
2218 * with a command complete event. If the boot parameters indicate
2219 * that this bootloader does not send them, then abort the setup.
2220 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002221 if (params.limited_cce != 0x00) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002222 bt_dev_err(hdev, "Unsupported Intel firmware loading method (%u)",
2223 params.limited_cce);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002224 return -EINVAL;
2225 }
2226
2227 /* If the OTP has no valid Bluetooth device address, then there will
2228 * also be no valid address for the operational firmware.
2229 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002230 if (!bacmp(&params.otp_bdaddr, BDADDR_ANY)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002231 bt_dev_info(hdev, "No device address configured");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002232 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2233 }
2234
2235 /* With this Intel bootloader only the hardware variant and device
Jaya P Gaf3715e2017-10-30 11:01:22 +01002236 * revision information are used to select the right firmware for SfP
2237 * and WsP.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002238 *
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002239 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2240 *
2241 * Currently the supported hardware variants are:
2242 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2243 * 12 (0x0c) for iBT3.5 (WsP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002244 *
2245 * For ThP/JfP and for future SKU's, the FW name varies based on HW
2246 * variant, HW revision and FW revision, as these are dependent on CNVi
2247 * and RF Combination.
2248 *
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002249 * 17 (0x11) for iBT3.5 (JfP)
2250 * 18 (0x12) for iBT3.5 (ThP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002251 *
2252 * The firmware file name for these will be
2253 * ibt-<hw_variant>-<hw_revision>-<fw_revision>.sfi.
2254 *
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002255 */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302256 err = btusb_setup_intel_new_get_fw_name(&ver, &params, fwname,
2257 sizeof(fwname), "sfi");
2258 if (!err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002259 bt_dev_err(hdev, "Unsupported Intel firmware naming");
Jaya P Gaf3715e2017-10-30 11:01:22 +01002260 return -EINVAL;
2261 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002262
2263 err = request_firmware(&fw, fwname, &hdev->dev);
2264 if (err < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002265 bt_dev_err(hdev, "Failed to load Intel firmware file (%d)", err);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002266 return err;
2267 }
2268
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002269 bt_dev_info(hdev, "Found device firmware: %s", fwname);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002270
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002271 /* Save the DDC file name for later use to apply once the firmware
2272 * downloading is done.
2273 */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302274 err = btusb_setup_intel_new_get_fw_name(&ver, &params, fwname,
2275 sizeof(fwname), "ddc");
2276 if (!err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002277 bt_dev_err(hdev, "Unsupported Intel firmware naming");
Jaya P Gaf3715e2017-10-30 11:01:22 +01002278 return -EINVAL;
2279 }
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002280
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002281 if (fw->size < 644) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002282 bt_dev_err(hdev, "Invalid size of firmware file (%zu)",
2283 fw->size);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002284 err = -EBADF;
2285 goto done;
2286 }
2287
2288 set_bit(BTUSB_DOWNLOADING, &data->flags);
2289
Tedd Ho-Jeong Anfbbe83c2018-01-24 09:19:21 -08002290 /* Start firmware downloading and get boot parameter */
2291 err = btintel_download_firmware(hdev, fw, &boot_param);
2292 if (err < 0)
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002293 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002294
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002295 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2296
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002297 bt_dev_info(hdev, "Waiting for firmware download to complete");
Johan Hedberga087a982015-01-30 10:58:54 +02002298
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002299 /* Before switching the device into operational mode and with that
2300 * booting the loaded firmware, wait for the bootloader notification
2301 * that all fragments have been successfully received.
2302 *
Johan Hedberga087a982015-01-30 10:58:54 +02002303 * When the event processing receives the notification, then the
2304 * BTUSB_DOWNLOADING flag will be cleared.
2305 *
2306 * The firmware loading should not take longer than 5 seconds
2307 * and thus just timeout if that happens and fail the setup
2308 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002309 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002310 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2311 TASK_INTERRUPTIBLE,
2312 msecs_to_jiffies(5000));
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002313 if (err == -EINTR) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002314 bt_dev_err(hdev, "Firmware loading interrupted");
Johan Hedberga087a982015-01-30 10:58:54 +02002315 goto done;
2316 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002317
Johan Hedberga087a982015-01-30 10:58:54 +02002318 if (err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002319 bt_dev_err(hdev, "Firmware loading timeout");
Johan Hedberga087a982015-01-30 10:58:54 +02002320 err = -ETIMEDOUT;
2321 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002322 }
2323
2324 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002325 bt_dev_err(hdev, "Firmware loading failed");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002326 err = -ENOEXEC;
2327 goto done;
2328 }
2329
2330 rettime = ktime_get();
2331 delta = ktime_sub(rettime, calltime);
2332 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2333
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002334 bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002335
2336done:
2337 release_firmware(fw);
2338
2339 if (err < 0)
2340 return err;
2341
2342 calltime = ktime_get();
2343
2344 set_bit(BTUSB_BOOTING, &data->flags);
2345
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002346 err = btintel_send_intel_reset(hdev, boot_param);
2347 if (err)
2348 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002349
2350 /* The bootloader will not indicate when the device is ready. This
2351 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002352 *
2353 * Booting into operational firmware should not take longer than
2354 * 1 second. However if that happens, then just fail the setup
2355 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002356 */
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002357 bt_dev_info(hdev, "Waiting for device to boot");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002358
Johan Hedberg129a7692015-02-14 09:33:35 +02002359 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2360 TASK_INTERRUPTIBLE,
2361 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002362
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002363 if (err == -EINTR) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002364 bt_dev_err(hdev, "Device boot interrupted");
Johan Hedbergfad70972015-01-30 10:58:55 +02002365 return -EINTR;
2366 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002367
Johan Hedbergfad70972015-01-30 10:58:55 +02002368 if (err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002369 bt_dev_err(hdev, "Device boot timeout");
Johan Hedbergfad70972015-01-30 10:58:55 +02002370 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002371 }
2372
2373 rettime = ktime_get();
2374 delta = ktime_sub(rettime, calltime);
2375 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2376
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002377 bt_dev_info(hdev, "Device booted in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002378
2379 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2380
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002381 /* Once the device is running in operational mode, it needs to apply
2382 * the device configuration (DDC) parameters.
2383 *
2384 * The device can work without DDC parameters, so even if it fails
2385 * to load the file, no need to fail the setup.
2386 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002387 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002388
Marcel Holtmann213445b2015-10-21 02:45:19 +02002389 /* Set the event mask for Intel specific vendor events. This enables
2390 * a few extra events that are useful during general operation. It
2391 * does not enable any debugging related events.
2392 *
2393 * The device will function correctly without these events enabled
2394 * and thus no need to fail the setup.
2395 */
2396 btintel_set_event_mask(hdev, false);
2397
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002398 return 0;
2399}
2400
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002401static int btusb_shutdown_intel(struct hci_dev *hdev)
2402{
2403 struct sk_buff *skb;
2404 long ret;
2405
Amit K Bag1313bcc2018-08-03 12:43:20 +05302406 /* In the shutdown sequence where Bluetooth is turned off followed
2407 * by WiFi being turned off, turning WiFi back on causes issue with
2408 * the RF calibration.
2409 *
2410 * To ensure that any RF activity has been stopped, issue HCI Reset
2411 * command to clear all ongoing activity including advertising,
2412 * scanning etc.
2413 */
2414 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2415 if (IS_ERR(skb)) {
2416 ret = PTR_ERR(skb);
2417 bt_dev_err(hdev, "HCI reset during shutdown failed");
2418 return ret;
2419 }
2420 kfree_skb(skb);
2421
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002422 /* Some platforms have an issue with BT LED when the interface is
2423 * down or BT radio is turned off, which takes 5 seconds to BT LED
2424 * goes off. This command turns off the BT LED immediately.
2425 */
2426 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2427 if (IS_ERR(skb)) {
2428 ret = PTR_ERR(skb);
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002429 bt_dev_err(hdev, "turning off Intel device LED failed");
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002430 return ret;
2431 }
2432 kfree_skb(skb);
2433
2434 return 0;
2435}
2436
Raghuram Hegde017a01c2019-01-29 17:54:48 +05302437static int btusb_shutdown_intel_new(struct hci_dev *hdev)
2438{
2439 struct sk_buff *skb;
2440
2441 /* Send HCI Reset to the controller to stop any BT activity which
2442 * were triggered. This will help to save power and maintain the
2443 * sync b/w Host and controller
2444 */
2445 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2446 if (IS_ERR(skb)) {
2447 bt_dev_err(hdev, "HCI reset during shutdown failed");
2448 return PTR_ERR(skb);
2449 }
2450 kfree_skb(skb);
2451
2452 return 0;
2453}
2454
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08002455#ifdef CONFIG_PM
2456/* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
2457static int marvell_config_oob_wake(struct hci_dev *hdev)
2458{
2459 struct sk_buff *skb;
2460 struct btusb_data *data = hci_get_drvdata(hdev);
2461 struct device *dev = &data->udev->dev;
2462 u16 pin, gap, opcode;
2463 int ret;
2464 u8 cmd[5];
2465
2466 /* Move on if no wakeup pin specified */
2467 if (of_property_read_u16(dev->of_node, "marvell,wakeup-pin", &pin) ||
2468 of_property_read_u16(dev->of_node, "marvell,wakeup-gap-ms", &gap))
2469 return 0;
2470
2471 /* Vendor specific command to configure a GPIO as wake-up pin */
2472 opcode = hci_opcode_pack(0x3F, 0x59);
2473 cmd[0] = opcode & 0xFF;
2474 cmd[1] = opcode >> 8;
2475 cmd[2] = 2; /* length of parameters that follow */
2476 cmd[3] = pin;
2477 cmd[4] = gap; /* time in ms, for which wakeup pin should be asserted */
2478
2479 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
2480 if (!skb) {
2481 bt_dev_err(hdev, "%s: No memory\n", __func__);
2482 return -ENOMEM;
2483 }
2484
Johannes Berg59ae1d12017-06-16 14:29:20 +02002485 skb_put_data(skb, cmd, sizeof(cmd));
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08002486 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
2487
2488 ret = btusb_send_frame(hdev, skb);
2489 if (ret) {
2490 bt_dev_err(hdev, "%s: configuration failed\n", __func__);
2491 kfree_skb(skb);
2492 return ret;
2493 }
2494
2495 return 0;
2496}
2497#endif
2498
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002499static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2500 const bdaddr_t *bdaddr)
2501{
2502 struct sk_buff *skb;
2503 u8 buf[8];
2504 long ret;
2505
2506 buf[0] = 0xfe;
2507 buf[1] = sizeof(bdaddr_t);
2508 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2509
2510 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2511 if (IS_ERR(skb)) {
2512 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002513 bt_dev_err(hdev, "changing Marvell device address failed (%ld)",
2514 ret);
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002515 return ret;
2516 }
2517 kfree_skb(skb);
2518
2519 return 0;
2520}
2521
Toshi Kikuchi58592232014-12-12 10:58:05 -08002522static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2523 const bdaddr_t *bdaddr)
2524{
2525 struct sk_buff *skb;
2526 u8 buf[10];
2527 long ret;
2528
2529 buf[0] = 0x01;
2530 buf[1] = 0x01;
2531 buf[2] = 0x00;
2532 buf[3] = sizeof(bdaddr_t);
2533 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2534
2535 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2536 if (IS_ERR(skb)) {
2537 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002538 bt_dev_err(hdev, "Change address command failed (%ld)", ret);
Toshi Kikuchi58592232014-12-12 10:58:05 -08002539 return ret;
2540 }
2541 kfree_skb(skb);
2542
2543 return 0;
2544}
2545
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002546#define QCA_DFU_PACKET_LEN 4096
2547
2548#define QCA_GET_TARGET_VERSION 0x09
2549#define QCA_CHECK_STATUS 0x05
2550#define QCA_DFU_DOWNLOAD 0x01
2551
2552#define QCA_SYSCFG_UPDATED 0x40
2553#define QCA_PATCH_UPDATED 0x80
2554#define QCA_DFU_TIMEOUT 3000
2555
2556struct qca_version {
2557 __le32 rom_version;
2558 __le32 patch_version;
2559 __le32 ram_version;
2560 __le32 ref_clock;
2561 __u8 reserved[4];
2562} __packed;
2563
2564struct qca_rampatch_version {
2565 __le16 rom_version;
2566 __le16 patch_version;
2567} __packed;
2568
2569struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002570 u32 rom_version;
2571 u8 rampatch_hdr; /* length of header in rampatch */
2572 u8 nvm_hdr; /* length of header in NVM */
2573 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002574};
2575
2576static const struct qca_device_info qca_devices_table[] = {
2577 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2578 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002579 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002580 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2581 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2582 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2583};
2584
Takashi Iwai803cdb82018-05-21 22:34:52 +02002585static int btusb_qca_send_vendor_req(struct usb_device *udev, u8 request,
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002586 void *data, u16 size)
2587{
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002588 int pipe, err;
2589 u8 *buf;
2590
2591 buf = kmalloc(size, GFP_KERNEL);
2592 if (!buf)
2593 return -ENOMEM;
2594
2595 /* Found some of USB hosts have IOT issues with ours so that we should
2596 * not wait until HCI layer is ready.
2597 */
2598 pipe = usb_rcvctrlpipe(udev, 0);
2599 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2600 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2601 if (err < 0) {
Takashi Iwai803cdb82018-05-21 22:34:52 +02002602 dev_err(&udev->dev, "Failed to access otp area (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002603 goto done;
2604 }
2605
2606 memcpy(data, buf, size);
2607
2608done:
2609 kfree(buf);
2610
2611 return err;
2612}
2613
2614static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2615 const struct firmware *firmware,
2616 size_t hdr_size)
2617{
2618 struct btusb_data *btdata = hci_get_drvdata(hdev);
2619 struct usb_device *udev = btdata->udev;
2620 size_t count, size, sent = 0;
2621 int pipe, len, err;
2622 u8 *buf;
2623
2624 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2625 if (!buf)
2626 return -ENOMEM;
2627
2628 count = firmware->size;
2629
2630 size = min_t(size_t, count, hdr_size);
2631 memcpy(buf, firmware->data, size);
2632
2633 /* USB patches should go down to controller through USB path
2634 * because binary format fits to go down through USB channel.
2635 * USB control path is for patching headers and USB bulk is for
2636 * patch body.
2637 */
2638 pipe = usb_sndctrlpipe(udev, 0);
2639 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2640 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2641 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002642 bt_dev_err(hdev, "Failed to send headers (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002643 goto done;
2644 }
2645
2646 sent += size;
2647 count -= size;
2648
2649 while (count) {
2650 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2651
2652 memcpy(buf, firmware->data + sent, size);
2653
2654 pipe = usb_sndbulkpipe(udev, 0x02);
2655 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2656 QCA_DFU_TIMEOUT);
2657 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002658 bt_dev_err(hdev, "Failed to send body at %zd of %zd (%d)",
2659 sent, firmware->size, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002660 break;
2661 }
2662
2663 if (size != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002664 bt_dev_err(hdev, "Failed to get bulk buffer");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002665 err = -EILSEQ;
2666 break;
2667 }
2668
2669 sent += size;
2670 count -= size;
2671 }
2672
2673done:
2674 kfree(buf);
2675 return err;
2676}
2677
2678static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2679 struct qca_version *ver,
2680 const struct qca_device_info *info)
2681{
2682 struct qca_rampatch_version *rver;
2683 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002684 u32 ver_rom, ver_patch;
2685 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002686 char fwname[64];
2687 int err;
2688
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002689 ver_rom = le32_to_cpu(ver->rom_version);
2690 ver_patch = le32_to_cpu(ver->patch_version);
2691
2692 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002693
2694 err = request_firmware(&fw, fwname, &hdev->dev);
2695 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002696 bt_dev_err(hdev, "failed to request rampatch file: %s (%d)",
2697 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002698 return err;
2699 }
2700
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002701 bt_dev_info(hdev, "using rampatch file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002702
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002703 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2704 rver_rom = le16_to_cpu(rver->rom_version);
2705 rver_patch = le16_to_cpu(rver->patch_version);
2706
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002707 bt_dev_info(hdev, "QCA: patch rome 0x%x build 0x%x, "
2708 "firmware rome 0x%x build 0x%x",
2709 rver_rom, rver_patch, ver_rom, ver_patch);
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002710
2711 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002712 bt_dev_err(hdev, "rampatch file version did not match with firmware");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002713 err = -EINVAL;
2714 goto done;
2715 }
2716
2717 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2718
2719done:
2720 release_firmware(fw);
2721
2722 return err;
2723}
2724
2725static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2726 struct qca_version *ver,
2727 const struct qca_device_info *info)
2728{
2729 const struct firmware *fw;
2730 char fwname[64];
2731 int err;
2732
2733 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2734 le32_to_cpu(ver->rom_version));
2735
2736 err = request_firmware(&fw, fwname, &hdev->dev);
2737 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002738 bt_dev_err(hdev, "failed to request NVM file: %s (%d)",
2739 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002740 return err;
2741 }
2742
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002743 bt_dev_info(hdev, "using NVM file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002744
2745 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2746
2747 release_firmware(fw);
2748
2749 return err;
2750}
2751
Takashi Iwai803cdb82018-05-21 22:34:52 +02002752/* identify the ROM version and check whether patches are needed */
2753static bool btusb_qca_need_patch(struct usb_device *udev)
2754{
2755 struct qca_version ver;
2756
2757 if (btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
2758 sizeof(ver)) < 0)
2759 return false;
2760 /* only low ROM versions need patches */
2761 return !(le32_to_cpu(ver.rom_version) & ~0xffffU);
2762}
2763
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002764static int btusb_setup_qca(struct hci_dev *hdev)
2765{
Takashi Iwai803cdb82018-05-21 22:34:52 +02002766 struct btusb_data *btdata = hci_get_drvdata(hdev);
2767 struct usb_device *udev = btdata->udev;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002768 const struct qca_device_info *info = NULL;
2769 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002770 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002771 u8 status;
2772 int i, err;
2773
Takashi Iwai803cdb82018-05-21 22:34:52 +02002774 err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002775 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002776 if (err < 0)
2777 return err;
2778
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002779 ver_rom = le32_to_cpu(ver.rom_version);
Takashi Iwai803cdb82018-05-21 22:34:52 +02002780 /* Don't care about high ROM versions */
2781 if (ver_rom & ~0xffffU)
2782 return 0;
2783
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002784 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002785 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002786 info = &qca_devices_table[i];
2787 }
2788 if (!info) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002789 bt_dev_err(hdev, "don't support firmware rome 0x%x", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002790 return -ENODEV;
2791 }
2792
Takashi Iwai803cdb82018-05-21 22:34:52 +02002793 err = btusb_qca_send_vendor_req(udev, QCA_CHECK_STATUS, &status,
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002794 sizeof(status));
2795 if (err < 0)
2796 return err;
2797
2798 if (!(status & QCA_PATCH_UPDATED)) {
2799 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2800 if (err < 0)
2801 return err;
2802 }
2803
2804 if (!(status & QCA_SYSCFG_UPDATED)) {
2805 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2806 if (err < 0)
2807 return err;
2808 }
2809
2810 return 0;
2811}
2812
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002813#ifdef CONFIG_BT_HCIBTUSB_BCM
2814static inline int __set_diag_interface(struct hci_dev *hdev)
2815{
2816 struct btusb_data *data = hci_get_drvdata(hdev);
2817 struct usb_interface *intf = data->diag;
2818 int i;
2819
2820 if (!data->diag)
2821 return -ENODEV;
2822
2823 data->diag_tx_ep = NULL;
2824 data->diag_rx_ep = NULL;
2825
2826 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2827 struct usb_endpoint_descriptor *ep_desc;
2828
2829 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2830
2831 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2832 data->diag_tx_ep = ep_desc;
2833 continue;
2834 }
2835
2836 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2837 data->diag_rx_ep = ep_desc;
2838 continue;
2839 }
2840 }
2841
2842 if (!data->diag_tx_ep || !data->diag_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002843 bt_dev_err(hdev, "invalid diagnostic descriptors");
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002844 return -ENODEV;
2845 }
2846
2847 return 0;
2848}
2849
2850static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2851{
2852 struct btusb_data *data = hci_get_drvdata(hdev);
2853 struct sk_buff *skb;
2854 struct urb *urb;
2855 unsigned int pipe;
2856
2857 if (!data->diag_tx_ep)
2858 return ERR_PTR(-ENODEV);
2859
2860 urb = usb_alloc_urb(0, GFP_KERNEL);
2861 if (!urb)
2862 return ERR_PTR(-ENOMEM);
2863
2864 skb = bt_skb_alloc(2, GFP_KERNEL);
2865 if (!skb) {
2866 usb_free_urb(urb);
2867 return ERR_PTR(-ENOMEM);
2868 }
2869
Johannes Berg634fef62017-06-16 14:29:24 +02002870 skb_put_u8(skb, 0xf0);
2871 skb_put_u8(skb, enable);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002872
2873 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2874
2875 usb_fill_bulk_urb(urb, data->udev, pipe,
2876 skb->data, skb->len, btusb_tx_complete, skb);
2877
2878 skb->dev = (void *)hdev;
2879
2880 return urb;
2881}
2882
2883static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2884{
2885 struct btusb_data *data = hci_get_drvdata(hdev);
2886 struct urb *urb;
2887
2888 if (!data->diag)
2889 return -ENODEV;
2890
2891 if (!test_bit(HCI_RUNNING, &hdev->flags))
2892 return -ENETDOWN;
2893
2894 urb = alloc_diag_urb(hdev, enable);
2895 if (IS_ERR(urb))
2896 return PTR_ERR(urb);
2897
2898 return submit_or_queue_tx_urb(hdev, urb);
2899}
2900#endif
2901
Rajat Jainfd913ef2017-02-01 14:24:09 -08002902#ifdef CONFIG_PM
2903static irqreturn_t btusb_oob_wake_handler(int irq, void *priv)
2904{
2905 struct btusb_data *data = priv;
2906
2907 pm_wakeup_event(&data->udev->dev, 0);
Jeffy Chen017789f2017-02-24 14:24:29 +08002908 pm_system_wakeup();
Rajat Jainfd913ef2017-02-01 14:24:09 -08002909
2910 /* Disable only if not already disabled (keep it balanced) */
2911 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
2912 disable_irq_nosync(irq);
2913 disable_irq_wake(irq);
2914 }
2915 return IRQ_HANDLED;
2916}
2917
2918static const struct of_device_id btusb_match_table[] = {
2919 { .compatible = "usb1286,204e" },
Brian Norris4c409af2019-02-22 14:53:43 -08002920 { .compatible = "usbcf3,e300" }, /* QCA6174A */
2921 { .compatible = "usb4ca,301a" }, /* QCA6174A (Lite-On) */
Rajat Jainfd913ef2017-02-01 14:24:09 -08002922 { }
2923};
2924MODULE_DEVICE_TABLE(of, btusb_match_table);
2925
2926/* Use an oob wakeup pin? */
2927static int btusb_config_oob_wake(struct hci_dev *hdev)
2928{
2929 struct btusb_data *data = hci_get_drvdata(hdev);
2930 struct device *dev = &data->udev->dev;
2931 int irq, ret;
2932
2933 clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
2934
2935 if (!of_match_device(btusb_match_table, dev))
2936 return 0;
2937
2938 /* Move on if no IRQ specified */
2939 irq = of_irq_get_byname(dev->of_node, "wakeup");
2940 if (irq <= 0) {
2941 bt_dev_dbg(hdev, "%s: no OOB Wakeup IRQ in DT", __func__);
2942 return 0;
2943 }
2944
Brian Norris771acc72019-04-09 11:49:17 -07002945 irq_set_status_flags(irq, IRQ_NOAUTOEN);
Rajat Jainfd913ef2017-02-01 14:24:09 -08002946 ret = devm_request_irq(&hdev->dev, irq, btusb_oob_wake_handler,
2947 0, "OOB Wake-on-BT", data);
2948 if (ret) {
2949 bt_dev_err(hdev, "%s: IRQ request failed", __func__);
2950 return ret;
2951 }
2952
2953 ret = device_init_wakeup(dev, true);
2954 if (ret) {
2955 bt_dev_err(hdev, "%s: failed to init_wakeup", __func__);
2956 return ret;
2957 }
2958
2959 data->oob_wake_irq = irq;
Rajat Jainfd913ef2017-02-01 14:24:09 -08002960 bt_dev_info(hdev, "OOB Wake-on-BT configured at IRQ %u", irq);
2961 return 0;
2962}
2963#endif
2964
Hans de Goedefc549102018-04-27 11:26:43 +02002965static void btusb_check_needs_reset_resume(struct usb_interface *intf)
2966{
2967 if (dmi_check_system(btusb_needs_reset_resume_table))
2968 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
2969}
2970
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002971static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002972 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002973{
2974 struct usb_endpoint_descriptor *ep_desc;
Rajat Jaindc786b22019-01-24 15:28:14 -08002975 struct gpio_desc *reset_gpio;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002976 struct btusb_data *data;
2977 struct hci_dev *hdev;
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002978 unsigned ifnum_base;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002979 int i, err;
2980
2981 BT_DBG("intf %p id %p", intf, id);
2982
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002983 /* interface numbers are hardcoded in the spec */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002984 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
2985 if (!(id->driver_info & BTUSB_IFNUM_2))
2986 return -ENODEV;
2987 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
2988 return -ENODEV;
2989 }
2990
2991 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002992
2993 if (!id->driver_info) {
2994 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002995
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002996 match = usb_match_id(intf, blacklist_table);
2997 if (match)
2998 id = match;
2999 }
3000
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003001 if (id->driver_info == BTUSB_IGNORE)
3002 return -ENODEV;
3003
Steven.Li2d25f8b2011-07-01 14:02:36 +08003004 if (id->driver_info & BTUSB_ATH3012) {
3005 struct usb_device *udev = interface_to_usbdev(intf);
3006
3007 /* Old firmware would otherwise let ath3k driver load
Derek Robsond98422c2017-07-22 13:47:07 +12003008 * patch and sysconfig files
3009 */
Takashi Iwai803cdb82018-05-21 22:34:52 +02003010 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001 &&
3011 !btusb_qca_need_patch(udev))
Steven.Li2d25f8b2011-07-01 14:02:36 +08003012 return -ENODEV;
3013 }
3014
Sachin Kamat98921db2012-07-27 12:38:39 +05303015 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003016 if (!data)
3017 return -ENOMEM;
3018
3019 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
3020 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
3021
3022 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
3023 data->intr_ep = ep_desc;
3024 continue;
3025 }
3026
3027 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
3028 data->bulk_tx_ep = ep_desc;
3029 continue;
3030 }
3031
3032 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
3033 data->bulk_rx_ep = ep_desc;
3034 continue;
3035 }
3036 }
3037
Sachin Kamat98921db2012-07-27 12:38:39 +05303038 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003039 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003040
Marcel Holtmann893ba542015-01-28 20:27:34 -08003041 if (id->driver_info & BTUSB_AMP) {
3042 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
3043 data->cmdreq = 0x2b;
3044 } else {
3045 data->cmdreq_type = USB_TYPE_CLASS;
3046 data->cmdreq = 0x00;
3047 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003048
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003049 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003050 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003051
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003052 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003053 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02003054 init_usb_anchor(&data->deferred);
3055 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003056 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003057
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003058 init_usb_anchor(&data->intr_anchor);
3059 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003060 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003061 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02003062 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003063
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003064 if (id->driver_info & BTUSB_INTEL_NEW) {
3065 data->recv_event = btusb_recv_event_intel;
3066 data->recv_bulk = btusb_recv_bulk_intel;
3067 set_bit(BTUSB_BOOTLOADER, &data->flags);
3068 } else {
3069 data->recv_event = hci_recv_frame;
3070 data->recv_bulk = btusb_recv_bulk;
3071 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01003072
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003073 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05303074 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003075 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003076
Marcel Holtmannc13854c2010-02-08 15:27:07 +01003077 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01003078 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003079
Marcel Holtmann893ba542015-01-28 20:27:34 -08003080 if (id->driver_info & BTUSB_AMP)
3081 hdev->dev_type = HCI_AMP;
3082 else
Marcel Holtmannca8bee52016-07-05 14:30:14 +02003083 hdev->dev_type = HCI_PRIMARY;
Marcel Holtmann893ba542015-01-28 20:27:34 -08003084
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003085 data->hdev = hdev;
3086
3087 SET_HCIDEV_DEV(hdev, &intf->dev);
3088
Rajat Jaindc786b22019-01-24 15:28:14 -08003089 reset_gpio = gpiod_get_optional(&data->udev->dev, "reset",
3090 GPIOD_OUT_LOW);
3091 if (IS_ERR(reset_gpio)) {
3092 err = PTR_ERR(reset_gpio);
3093 goto out_free_dev;
3094 } else if (reset_gpio) {
3095 data->reset_gpio = reset_gpio;
3096 }
3097
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07003098 hdev->open = btusb_open;
3099 hdev->close = btusb_close;
3100 hdev->flush = btusb_flush;
3101 hdev->send = btusb_send_frame;
3102 hdev->notify = btusb_notify;
3103
Rajat Jainfd913ef2017-02-01 14:24:09 -08003104#ifdef CONFIG_PM
3105 err = btusb_config_oob_wake(hdev);
3106 if (err)
3107 goto out_free_dev;
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08003108
3109 /* Marvell devices may need a specific chip configuration */
3110 if (id->driver_info & BTUSB_MARVELL && data->oob_wake_irq) {
3111 err = marvell_config_oob_wake(hdev);
3112 if (err)
3113 goto out_free_dev;
3114 }
Rajat Jainfd913ef2017-02-01 14:24:09 -08003115#endif
Szymon Janc418678b2016-09-01 17:22:37 +02003116 if (id->driver_info & BTUSB_CW6622)
3117 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3118
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02003119 if (id->driver_info & BTUSB_BCM2045)
3120 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3121
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07003122 if (id->driver_info & BTUSB_BCM92035)
3123 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003124
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003125#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02003126 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003127 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003128 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003129 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07003130 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003131
3132 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003133 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02003134 }
Petri Gynther10d4c672014-05-08 15:50:01 -07003135
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003136 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003137 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003138 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003139 hdev->set_diag = btusb_bcm_set_diag;
3140
3141 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003142 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003143 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003144#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01003145
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02003146 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003147 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07003148 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08003149 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02003150 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07003151 hdev->set_bdaddr = btintel_set_bdaddr;
Rajat Jaindc786b22019-01-24 15:28:14 -08003152 hdev->cmd_timeout = btusb_intel_cmd_timeout;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08003153 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07003154 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02003155 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02003156 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07003157
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003158 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003159 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003160 hdev->send = btusb_send_frame_intel;
3161 hdev->setup = btusb_setup_intel_new;
Raghuram Hegde017a01c2019-01-29 17:54:48 +05303162 hdev->shutdown = btusb_shutdown_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02003163 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02003164 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07003165 hdev->set_bdaddr = btintel_set_bdaddr;
Rajat Jaindc786b22019-01-24 15:28:14 -08003166 hdev->cmd_timeout = btusb_intel_cmd_timeout;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08003167 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Justin TerAvestf7785022018-09-25 11:04:57 -06003168 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02003169 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003170 }
3171
Amitkumar Karwarae8df492014-07-18 14:47:06 -07003172 if (id->driver_info & BTUSB_MARVELL)
3173 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
3174
Marcel Holtmann661cf882015-01-02 23:35:20 -08003175 if (id->driver_info & BTUSB_SWAVE) {
3176 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003177 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08003178 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003179
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003180 if (id->driver_info & BTUSB_INTEL_BOOT) {
3181 hdev->manufacturer = 2;
Marcel Holtmann40df7832014-07-06 13:29:58 +02003182 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003183 }
Marcel Holtmann40df7832014-07-06 13:29:58 +02003184
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003185 if (id->driver_info & BTUSB_ATH3012) {
Takashi Iwai803cdb82018-05-21 22:34:52 +02003186 data->setup_on_usb = btusb_setup_qca;
Toshi Kikuchi58592232014-12-12 10:58:05 -08003187 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07003188 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003189 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
3190 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08003191
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003192 if (id->driver_info & BTUSB_QCA_ROME) {
3193 data->setup_on_usb = btusb_setup_qca;
3194 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Vic Wei96e58d32018-03-28 08:28:47 -07003195 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Hans de Goedefc549102018-04-27 11:26:43 +02003196 btusb_check_needs_reset_resume(intf);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003197 }
3198
Carlo Caionedb33c772015-05-14 10:49:09 +02003199#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06003200 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02003201 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06003202
3203 /* Realtek devices lose their updated firmware over suspend,
3204 * but the USB hub doesn't notice any status change.
3205 * Explicitly request a device reset on resume.
3206 */
Hans de Goede61f5ace2018-01-08 10:44:16 +01003207 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
Daniel Drake04b8c812015-05-21 08:23:50 -06003208 }
Carlo Caionedb33c772015-05-14 10:49:09 +02003209#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06003210
Marcel Holtmann893ba542015-01-28 20:27:34 -08003211 if (id->driver_info & BTUSB_AMP) {
3212 /* AMP controllers do not support SCO packets */
3213 data->isoc = NULL;
3214 } else {
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003215 /* Interface orders are hardcoded in the specification */
3216 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
Marcel Holtmann459232f2017-10-24 19:42:45 +02003217 data->isoc_ifnum = ifnum_base + 1;
Marcel Holtmann893ba542015-01-28 20:27:34 -08003218 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003219
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003220 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02003221 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003222
3223 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
3224 if (!disable_scofix)
3225 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
3226 }
3227
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003228 if (id->driver_info & BTUSB_BROKEN_ISOC)
3229 data->isoc = NULL;
3230
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003231 if (id->driver_info & BTUSB_DIGIANSWER) {
3232 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02003233 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003234 }
3235
3236 if (id->driver_info & BTUSB_CSR) {
3237 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08003238 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003239
3240 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08003241 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02003242 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08003243
3244 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03003245 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08003246 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07003247
3248 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003249 }
3250
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003251 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003252 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003253
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003254 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003255 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
3256 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
3257 }
3258
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02003259 if (id->driver_info & BTUSB_INTEL_BOOT) {
3260 /* A bug in the bootloader causes that interrupt interface is
3261 * only enabled after receiving SetInterface(0, AltSetting=0).
3262 */
3263 err = usb_set_interface(data->udev, 0, 0);
3264 if (err < 0) {
3265 BT_ERR("failed to set interface 0, alt 0 %d", err);
Rajat Jain10ab1332017-02-01 14:24:08 -08003266 goto out_free_dev;
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02003267 }
3268 }
3269
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003270 if (data->isoc) {
3271 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003272 data->isoc, data);
Rajat Jain10ab1332017-02-01 14:24:08 -08003273 if (err < 0)
3274 goto out_free_dev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003275 }
3276
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003277#ifdef CONFIG_BT_HCIBTUSB_BCM
3278 if (data->diag) {
3279 if (!usb_driver_claim_interface(&btusb_driver,
3280 data->diag, data))
3281 __set_diag_interface(hdev);
3282 else
3283 data->diag = NULL;
3284 }
3285#endif
3286
Hans de Goedeeff2d682017-11-13 14:44:16 +01003287 if (enable_autosuspend)
3288 usb_enable_autosuspend(data->udev);
3289
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003290 err = hci_register_dev(hdev);
Rajat Jain10ab1332017-02-01 14:24:08 -08003291 if (err < 0)
3292 goto out_free_dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003293
3294 usb_set_intfdata(intf, data);
3295
3296 return 0;
Rajat Jain10ab1332017-02-01 14:24:08 -08003297
3298out_free_dev:
Rajat Jaindc786b22019-01-24 15:28:14 -08003299 if (data->reset_gpio)
3300 gpiod_put(data->reset_gpio);
Rajat Jain10ab1332017-02-01 14:24:08 -08003301 hci_free_dev(hdev);
3302 return err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003303}
3304
3305static void btusb_disconnect(struct usb_interface *intf)
3306{
3307 struct btusb_data *data = usb_get_intfdata(intf);
3308 struct hci_dev *hdev;
3309
3310 BT_DBG("intf %p", intf);
3311
3312 if (!data)
3313 return;
3314
3315 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003316 usb_set_intfdata(data->intf, NULL);
3317
3318 if (data->isoc)
3319 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003320
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003321 if (data->diag)
3322 usb_set_intfdata(data->diag, NULL);
3323
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003324 hci_unregister_dev(hdev);
3325
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003326 if (intf == data->intf) {
3327 if (data->isoc)
3328 usb_driver_release_interface(&btusb_driver, data->isoc);
3329 if (data->diag)
3330 usb_driver_release_interface(&btusb_driver, data->diag);
3331 } else if (intf == data->isoc) {
3332 if (data->diag)
3333 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003334 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003335 } else if (intf == data->diag) {
3336 usb_driver_release_interface(&btusb_driver, data->intf);
3337 if (data->isoc)
3338 usb_driver_release_interface(&btusb_driver, data->isoc);
3339 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003340
Rajat Jainfd913ef2017-02-01 14:24:09 -08003341 if (data->oob_wake_irq)
3342 device_init_wakeup(&data->udev->dev, false);
3343
Rajat Jaindc786b22019-01-24 15:28:14 -08003344 if (data->reset_gpio)
3345 gpiod_put(data->reset_gpio);
3346
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003347 hci_free_dev(hdev);
3348}
3349
Oliver Neukum7bee5492009-08-24 23:44:59 +02003350#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003351static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3352{
3353 struct btusb_data *data = usb_get_intfdata(intf);
3354
3355 BT_DBG("intf %p", intf);
3356
3357 if (data->suspend_count++)
3358 return 0;
3359
Oliver Neukum7bee5492009-08-24 23:44:59 +02003360 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003361 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003362 set_bit(BTUSB_SUSPENDING, &data->flags);
3363 spin_unlock_irq(&data->txlock);
3364 } else {
3365 spin_unlock_irq(&data->txlock);
3366 data->suspend_count--;
3367 return -EBUSY;
3368 }
3369
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003370 cancel_work_sync(&data->work);
3371
Oliver Neukum7bee5492009-08-24 23:44:59 +02003372 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003373 usb_kill_anchored_urbs(&data->tx_anchor);
3374
Rajat Jainfd913ef2017-02-01 14:24:09 -08003375 if (data->oob_wake_irq && device_may_wakeup(&data->udev->dev)) {
3376 set_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
3377 enable_irq_wake(data->oob_wake_irq);
3378 enable_irq(data->oob_wake_irq);
3379 }
3380
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003381 return 0;
3382}
3383
Oliver Neukum7bee5492009-08-24 23:44:59 +02003384static void play_deferred(struct btusb_data *data)
3385{
3386 struct urb *urb;
3387 int err;
3388
3389 while ((urb = usb_get_from_anchor(&data->deferred))) {
Jeffy Chen19cfe912017-07-20 18:53:50 +08003390 usb_anchor_urb(urb, &data->tx_anchor);
3391
Oliver Neukum7bee5492009-08-24 23:44:59 +02003392 err = usb_submit_urb(urb, GFP_ATOMIC);
Jeffy Chen19cfe912017-07-20 18:53:50 +08003393 if (err < 0) {
3394 if (err != -EPERM && err != -ENODEV)
3395 BT_ERR("%s urb %p submission failed (%d)",
3396 data->hdev->name, urb, -err);
3397 kfree(urb->setup_packet);
3398 usb_unanchor_urb(urb);
3399 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003400 break;
Jeffy Chen19cfe912017-07-20 18:53:50 +08003401 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02003402
3403 data->tx_in_flight++;
Jeffy Chen19cfe912017-07-20 18:53:50 +08003404 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003405 }
Jeffy Chen19cfe912017-07-20 18:53:50 +08003406
3407 /* Cleanup the rest deferred urbs. */
3408 while ((urb = usb_get_from_anchor(&data->deferred))) {
3409 kfree(urb->setup_packet);
3410 usb_free_urb(urb);
3411 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02003412}
3413
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003414static int btusb_resume(struct usb_interface *intf)
3415{
3416 struct btusb_data *data = usb_get_intfdata(intf);
3417 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003418 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003419
3420 BT_DBG("intf %p", intf);
3421
3422 if (--data->suspend_count)
3423 return 0;
3424
Rajat Jainfd913ef2017-02-01 14:24:09 -08003425 /* Disable only if not already disabled (keep it balanced) */
3426 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
3427 disable_irq(data->oob_wake_irq);
3428 disable_irq_wake(data->oob_wake_irq);
3429 }
3430
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003431 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003432 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003433
3434 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3435 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3436 if (err < 0) {
3437 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003438 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003439 }
3440 }
3441
3442 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003443 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3444 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003445 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003446 goto failed;
3447 }
3448
3449 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003450 }
3451
3452 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3453 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3454 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3455 else
3456 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3457 }
3458
Oliver Neukum7bee5492009-08-24 23:44:59 +02003459 spin_lock_irq(&data->txlock);
3460 play_deferred(data);
3461 clear_bit(BTUSB_SUSPENDING, &data->flags);
3462 spin_unlock_irq(&data->txlock);
3463 schedule_work(&data->work);
3464
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003465 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003466
3467failed:
3468 usb_scuttle_anchored_urbs(&data->deferred);
3469done:
3470 spin_lock_irq(&data->txlock);
3471 clear_bit(BTUSB_SUSPENDING, &data->flags);
3472 spin_unlock_irq(&data->txlock);
3473
3474 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003475}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003476#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003477
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003478static struct usb_driver btusb_driver = {
3479 .name = "btusb",
3480 .probe = btusb_probe,
3481 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003482#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003483 .suspend = btusb_suspend,
3484 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003485#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003486 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003487 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003488 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003489};
3490
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003491module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003492
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003493module_param(disable_scofix, bool, 0644);
3494MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3495
3496module_param(force_scofix, bool, 0644);
3497MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3498
Hans de Goedeeff2d682017-11-13 14:44:16 +01003499module_param(enable_autosuspend, bool, 0644);
3500MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
3501
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003502module_param(reset, bool, 0644);
3503MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3504
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003505MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3506MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3507MODULE_VERSION(VERSION);
3508MODULE_LICENSE("GPL");