blob: 8d0dec7bd1907f605b7e7ced9fc28142d198dd64 [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Marcel Holtmann5e23b922007-10-20 14:12:34 +020024#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020025#include <linux/usb.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070026#include <linux/firmware.h>
Daniel Drakea2698a92015-04-16 14:09:55 -060027#include <asm/unaligned.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020028
29#include <net/bluetooth/bluetooth.h>
30#include <net/bluetooth/hci_core.h>
31
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070032#include "btintel.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070033#include "btbcm.h"
Carlo Caionedb33c772015-05-14 10:49:09 +020034#include "btrtl.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070035
Marcel Holtmann34dced9b2015-04-05 22:52:16 -070036#define VERSION "0.8"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020037
Rusty Russell90ab5ee2012-01-13 09:32:20 +103038static bool disable_scofix;
39static bool force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010040
Shailendra Verma917a3332015-05-25 23:53:40 +053041static bool reset = true;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020042
43static struct usb_driver btusb_driver;
44
45#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010046#define BTUSB_DIGIANSWER 0x02
47#define BTUSB_CSR 0x04
48#define BTUSB_SNIFFER 0x08
49#define BTUSB_BCM92035 0x10
50#define BTUSB_BROKEN_ISOC 0x20
51#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080052#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070053#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020054#define BTUSB_INTEL_BOOT 0x200
55#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070056#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080057#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080058#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080059#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000060#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010061#define BTUSB_BCM_APPLE 0x10000
Daniel Drakea2698a92015-04-16 14:09:55 -060062#define BTUSB_REALTEK 0x20000
Marcel Holtmann6c9d4352015-10-17 14:39:27 +020063#define BTUSB_BCM2045 0x40000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020064
Marcel Holtmann54265202013-10-11 07:46:18 -070065static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020066 /* Generic Bluetooth USB device */
67 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
68
Marcel Holtmann893ba542015-01-28 20:27:34 -080069 /* Generic Bluetooth AMP device */
70 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
71
Daniel Draked63b2822015-07-17 11:12:25 -060072 /* Generic Bluetooth USB interface */
73 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
74
Henrik Rydberg1fa65352012-08-25 19:28:06 +020075 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010076 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
77 .driver_info = BTUSB_BCM_APPLE },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020078
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080079 /* MediaTek MT76x0E */
80 { USB_DEVICE(0x0e8d, 0x763f) },
81
Oliver Neukumc510eae2011-09-21 11:41:45 +020082 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040083 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020084
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090085 /* Apple MacBookPro 7,1 */
86 { USB_DEVICE(0x05ac, 0x8213) },
87
Cyril Lacoux0a79f672010-07-14 10:29:27 +040088 /* Apple iMac11,1 */
89 { USB_DEVICE(0x05ac, 0x8215) },
90
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090091 /* Apple MacBookPro6,2 */
92 { USB_DEVICE(0x05ac, 0x8218) },
93
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010094 /* Apple MacBookAir3,1, MacBookAir3,2 */
95 { USB_DEVICE(0x05ac, 0x821b) },
96
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040097 /* Apple MacBookAir4,1 */
98 { USB_DEVICE(0x05ac, 0x821f) },
99
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -0300100 /* Apple MacBookPro8,2 */
101 { USB_DEVICE(0x05ac, 0x821a) },
102
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200103 /* Apple MacMini5,1 */
104 { USB_DEVICE(0x05ac, 0x8281) },
105
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200106 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800107 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200108
109 /* Bluetooth Ultraport Module from IBM */
110 { USB_DEVICE(0x04bf, 0x030a) },
111
112 /* ALPS Modules with non-standard id */
113 { USB_DEVICE(0x044e, 0x3001) },
114 { USB_DEVICE(0x044e, 0x3002) },
115
116 /* Ericsson with non-standard id */
117 { USB_DEVICE(0x0bdb, 0x1002) },
118
119 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100120 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200121
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800122 /* Broadcom BCM20702A0 */
123 { USB_DEVICE(0x413c, 0x8197) },
124
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800125 /* Broadcom BCM20702B0 (Dynex/Insignia) */
126 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
127
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300128 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
129 { USB_DEVICE(0x105b, 0xe065), .driver_info = BTUSB_BCM_PATCHRAM },
130
Steven Harms98514032012-04-13 14:45:55 -0400131 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100132 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
133 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400134
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100135 /* Lite-On Technology - Broadcom based */
136 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
137 .driver_info = BTUSB_BCM_PATCHRAM },
138
Andy Shevchenko0b880062014-02-18 18:26:19 +0200139 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700140 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
141 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300142
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200143 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abdaa2015-01-17 05:29:12 +0100144 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
145 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200146
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100147 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700148 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
149 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100150
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100151 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700152 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
153 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100154
Marcel Holtmann40df7832014-07-06 13:29:58 +0200155 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200156 { USB_DEVICE(0x8087, 0x0a5a),
157 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200158
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200159 { } /* Terminating entry */
160};
161
162MODULE_DEVICE_TABLE(usb, btusb_table);
163
Marcel Holtmann54265202013-10-11 07:46:18 -0700164static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200165 /* CSR BlueCore devices */
166 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
167
168 /* Broadcom BCM2033 without firmware */
169 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
170
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200171 /* Broadcom BCM2045 devices */
172 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
173
Bala Shanmugambe931122010-11-26 17:35:46 +0530174 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200175 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
176 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200177 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200178 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530179 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200180 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700181 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530182
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800183 /* Atheros AR9285 Malbec with sflash firmware */
184 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
185
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530186 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200187 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
188 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
189 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
190 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
191 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300192 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530193 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200194 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
195 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
196 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
197 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700198 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200199 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
200 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +0300201 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300202 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200203 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200204 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300205 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200206 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100207 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200208 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800209 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800210 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900211 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200212 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100213 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100214 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200215 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800216 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200217 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800218 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800219 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800220 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200221 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
222 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800223 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530224 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300225 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300226 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530227 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300228 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530229
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800230 /* Atheros AR5BBU12 with sflash firmware */
231 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
232
Michael Gruetzner85d59722012-05-02 22:33:40 +0200233 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530234 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200235 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200236
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000237 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800238 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700239 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
240 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000241
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200242 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100243 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200244 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
245 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200246
247 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100248 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
249 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200250
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200251 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100252 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
253 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200254
255 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100256 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200257
258 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100259 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200260
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100261 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100262 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100263 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200264
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100265 /* Belkin F8T012 and F8T013 devices */
266 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
267 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200268
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100269 /* Asus WL-BTD202 device */
270 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
271
272 /* Kensington Bluetooth USB adapter */
273 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
274
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200275 /* RTX Telecom based adapters with buggy SCO support */
276 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
277 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
278
279 /* CONWISE Technology based adapters with buggy SCO support */
280 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
281
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800282 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300283 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800284
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200285 /* Digianswer devices */
286 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
287 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
288
289 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200290 { USB_DEVICE(0x0a12, 0x0002),
291 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200292
293 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200294 { USB_DEVICE(0x16d3, 0x0002),
295 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200296
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800297 /* Marvell Bluetooth devices */
298 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
299 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
300
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800301 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800302 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700303 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800304 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800305 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700306
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800307 /* Other Intel Bluetooth devices */
308 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
309 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700310
Daniel Drakea2698a92015-04-16 14:09:55 -0600311 /* Realtek Bluetooth devices */
312 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
313 .driver_info = BTUSB_REALTEK },
314
315 /* Additional Realtek 8723AE Bluetooth devices */
316 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
317 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
318
319 /* Additional Realtek 8723BE Bluetooth devices */
320 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
321 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
322 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
323 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
324 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
325
326 /* Additional Realtek 8821AE Bluetooth devices */
327 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
328 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
329 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
330 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
331 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
332
Peter Poklop4481c072015-08-15 20:47:09 +0200333 /* Silicon Wave based devices */
334 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
335
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200336 { } /* Terminating entry */
337};
338
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200339#define BTUSB_MAX_ISOC_FRAMES 10
340
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200341#define BTUSB_INTR_RUNNING 0
342#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200343#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200344#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300345#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800346#define BTUSB_BOOTLOADER 5
347#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800348#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800349#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800350#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600351#define BTUSB_RESET_RESUME 10
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200352#define BTUSB_DIAG_RUNNING 11
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200353
354struct btusb_data {
355 struct hci_dev *hdev;
356 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200357 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200358 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200359 struct usb_interface *diag;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200360
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200361 unsigned long flags;
362
363 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200364 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200365
Marcel Holtmann803b5832014-09-16 08:00:29 +0200366 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200367 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200368 int tx_in_flight;
369 spinlock_t txlock;
370
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200371 struct usb_anchor intr_anchor;
372 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200373 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200374 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200375 spinlock_t rxlock;
376
377 struct sk_buff *evt_skb;
378 struct sk_buff *acl_skb;
379 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200380
381 struct usb_endpoint_descriptor *intr_ep;
382 struct usb_endpoint_descriptor *bulk_tx_ep;
383 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200384 struct usb_endpoint_descriptor *isoc_tx_ep;
385 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200386 struct usb_endpoint_descriptor *diag_tx_ep;
387 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200388
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100389 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800390 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100391
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100392 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200393 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100394 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100395
Marcel Holtmann97307f52015-01-12 13:51:10 -0800396 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100397 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000398
399 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200400};
401
Marcel Holtmann803b5832014-09-16 08:00:29 +0200402static inline void btusb_free_frags(struct btusb_data *data)
403{
404 unsigned long flags;
405
406 spin_lock_irqsave(&data->rxlock, flags);
407
408 kfree_skb(data->evt_skb);
409 data->evt_skb = NULL;
410
411 kfree_skb(data->acl_skb);
412 data->acl_skb = NULL;
413
414 kfree_skb(data->sco_skb);
415 data->sco_skb = NULL;
416
417 spin_unlock_irqrestore(&data->rxlock, flags);
418}
419
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200420static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
421{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200422 struct sk_buff *skb;
423 int err = 0;
424
425 spin_lock(&data->rxlock);
426 skb = data->evt_skb;
427
428 while (count) {
429 int len;
430
431 if (!skb) {
432 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
433 if (!skb) {
434 err = -ENOMEM;
435 break;
436 }
437
438 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
439 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
440 }
441
442 len = min_t(uint, bt_cb(skb)->expect, count);
443 memcpy(skb_put(skb, len), buffer, len);
444
445 count -= len;
446 buffer += len;
447 bt_cb(skb)->expect -= len;
448
449 if (skb->len == HCI_EVENT_HDR_SIZE) {
450 /* Complete event header */
451 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
452
453 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
454 kfree_skb(skb);
455 skb = NULL;
456
457 err = -EILSEQ;
458 break;
459 }
460 }
461
462 if (bt_cb(skb)->expect == 0) {
463 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800464 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200465 skb = NULL;
466 }
467 }
468
469 data->evt_skb = skb;
470 spin_unlock(&data->rxlock);
471
472 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200473}
474
475static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
476{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200477 struct sk_buff *skb;
478 int err = 0;
479
480 spin_lock(&data->rxlock);
481 skb = data->acl_skb;
482
483 while (count) {
484 int len;
485
486 if (!skb) {
487 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
488 if (!skb) {
489 err = -ENOMEM;
490 break;
491 }
492
493 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
494 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
495 }
496
497 len = min_t(uint, bt_cb(skb)->expect, count);
498 memcpy(skb_put(skb, len), buffer, len);
499
500 count -= len;
501 buffer += len;
502 bt_cb(skb)->expect -= len;
503
504 if (skb->len == HCI_ACL_HDR_SIZE) {
505 __le16 dlen = hci_acl_hdr(skb)->dlen;
506
507 /* Complete ACL header */
508 bt_cb(skb)->expect = __le16_to_cpu(dlen);
509
510 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
511 kfree_skb(skb);
512 skb = NULL;
513
514 err = -EILSEQ;
515 break;
516 }
517 }
518
519 if (bt_cb(skb)->expect == 0) {
520 /* Complete frame */
521 hci_recv_frame(data->hdev, skb);
522 skb = NULL;
523 }
524 }
525
526 data->acl_skb = skb;
527 spin_unlock(&data->rxlock);
528
529 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200530}
531
532static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
533{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200534 struct sk_buff *skb;
535 int err = 0;
536
537 spin_lock(&data->rxlock);
538 skb = data->sco_skb;
539
540 while (count) {
541 int len;
542
543 if (!skb) {
544 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
545 if (!skb) {
546 err = -ENOMEM;
547 break;
548 }
549
550 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
551 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
552 }
553
554 len = min_t(uint, bt_cb(skb)->expect, count);
555 memcpy(skb_put(skb, len), buffer, len);
556
557 count -= len;
558 buffer += len;
559 bt_cb(skb)->expect -= len;
560
561 if (skb->len == HCI_SCO_HDR_SIZE) {
562 /* Complete SCO header */
563 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
564
565 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
566 kfree_skb(skb);
567 skb = NULL;
568
569 err = -EILSEQ;
570 break;
571 }
572 }
573
574 if (bt_cb(skb)->expect == 0) {
575 /* Complete frame */
576 hci_recv_frame(data->hdev, skb);
577 skb = NULL;
578 }
579 }
580
581 data->sco_skb = skb;
582 spin_unlock(&data->rxlock);
583
584 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200585}
586
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200587static void btusb_intr_complete(struct urb *urb)
588{
589 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100590 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200591 int err;
592
Marcel Holtmann89e75332014-09-16 04:44:50 +0200593 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
594 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200595
596 if (!test_bit(HCI_RUNNING, &hdev->flags))
597 return;
598
599 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200600 hdev->stat.byte_rx += urb->actual_length;
601
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200602 if (btusb_recv_intr(data, urb->transfer_buffer,
603 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200604 BT_ERR("%s corrupted event packet", hdev->name);
605 hdev->stat.err_rx++;
606 }
Champion Chen85560c42014-09-06 14:06:08 -0500607 } else if (urb->status == -ENOENT) {
608 /* Avoid suspend failed when usb_kill_urb */
609 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610 }
611
612 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
613 return;
614
Oliver Neukum7bee5492009-08-24 23:44:59 +0200615 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200616 usb_anchor_urb(urb, &data->intr_anchor);
617
618 err = usb_submit_urb(urb, GFP_ATOMIC);
619 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200620 /* -EPERM: urb is being killed;
621 * -ENODEV: device got disconnected */
622 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100623 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200624 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200625 usb_unanchor_urb(urb);
626 }
627}
628
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100629static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200630{
David Herrmann155961e2012-02-09 21:58:32 +0100631 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632 struct urb *urb;
633 unsigned char *buf;
634 unsigned int pipe;
635 int err, size;
636
637 BT_DBG("%s", hdev->name);
638
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200639 if (!data->intr_ep)
640 return -ENODEV;
641
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100642 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200643 if (!urb)
644 return -ENOMEM;
645
646 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
647
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100648 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200649 if (!buf) {
650 usb_free_urb(urb);
651 return -ENOMEM;
652 }
653
654 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
655
656 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200657 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200658
659 urb->transfer_flags |= URB_FREE_BUFFER;
660
661 usb_anchor_urb(urb, &data->intr_anchor);
662
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100663 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200664 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200665 if (err != -EPERM && err != -ENODEV)
666 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200667 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200668 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200669 }
670
671 usb_free_urb(urb);
672
673 return err;
674}
675
676static void btusb_bulk_complete(struct urb *urb)
677{
678 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100679 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200680 int err;
681
Marcel Holtmann89e75332014-09-16 04:44:50 +0200682 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
683 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200684
685 if (!test_bit(HCI_RUNNING, &hdev->flags))
686 return;
687
688 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200689 hdev->stat.byte_rx += urb->actual_length;
690
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100691 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200692 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200693 BT_ERR("%s corrupted ACL packet", hdev->name);
694 hdev->stat.err_rx++;
695 }
Champion Chen85560c42014-09-06 14:06:08 -0500696 } else if (urb->status == -ENOENT) {
697 /* Avoid suspend failed when usb_kill_urb */
698 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200699 }
700
701 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
702 return;
703
704 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100705 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200706
707 err = usb_submit_urb(urb, GFP_ATOMIC);
708 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200709 /* -EPERM: urb is being killed;
710 * -ENODEV: device got disconnected */
711 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100712 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200713 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200714 usb_unanchor_urb(urb);
715 }
716}
717
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100718static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200719{
David Herrmann155961e2012-02-09 21:58:32 +0100720 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200721 struct urb *urb;
722 unsigned char *buf;
723 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530724 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200725
726 BT_DBG("%s", hdev->name);
727
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200728 if (!data->bulk_rx_ep)
729 return -ENODEV;
730
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100731 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200732 if (!urb)
733 return -ENOMEM;
734
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100735 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200736 if (!buf) {
737 usb_free_urb(urb);
738 return -ENOMEM;
739 }
740
741 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
742
Marcel Holtmann89e75332014-09-16 04:44:50 +0200743 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
744 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200745
746 urb->transfer_flags |= URB_FREE_BUFFER;
747
Oliver Neukum7bee5492009-08-24 23:44:59 +0200748 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200749 usb_anchor_urb(urb, &data->bulk_anchor);
750
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100751 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200752 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200753 if (err != -EPERM && err != -ENODEV)
754 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200755 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200756 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200757 }
758
759 usb_free_urb(urb);
760
761 return err;
762}
763
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200764static void btusb_isoc_complete(struct urb *urb)
765{
766 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100767 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200768 int i, err;
769
Marcel Holtmann89e75332014-09-16 04:44:50 +0200770 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
771 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200772
773 if (!test_bit(HCI_RUNNING, &hdev->flags))
774 return;
775
776 if (urb->status == 0) {
777 for (i = 0; i < urb->number_of_packets; i++) {
778 unsigned int offset = urb->iso_frame_desc[i].offset;
779 unsigned int length = urb->iso_frame_desc[i].actual_length;
780
781 if (urb->iso_frame_desc[i].status)
782 continue;
783
784 hdev->stat.byte_rx += length;
785
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200786 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
787 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200788 BT_ERR("%s corrupted SCO packet", hdev->name);
789 hdev->stat.err_rx++;
790 }
791 }
Champion Chen85560c42014-09-06 14:06:08 -0500792 } else if (urb->status == -ENOENT) {
793 /* Avoid suspend failed when usb_kill_urb */
794 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200795 }
796
797 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
798 return;
799
800 usb_anchor_urb(urb, &data->isoc_anchor);
801
802 err = usb_submit_urb(urb, GFP_ATOMIC);
803 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200804 /* -EPERM: urb is being killed;
805 * -ENODEV: device got disconnected */
806 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100807 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200808 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200809 usb_unanchor_urb(urb);
810 }
811}
812
Jesper Juhl42b16b32011-01-17 00:09:38 +0100813static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200814{
815 int i, offset = 0;
816
817 BT_DBG("len %d mtu %d", len, mtu);
818
819 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
820 i++, offset += mtu, len -= mtu) {
821 urb->iso_frame_desc[i].offset = offset;
822 urb->iso_frame_desc[i].length = mtu;
823 }
824
825 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
826 urb->iso_frame_desc[i].offset = offset;
827 urb->iso_frame_desc[i].length = len;
828 i++;
829 }
830
831 urb->number_of_packets = i;
832}
833
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100834static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200835{
David Herrmann155961e2012-02-09 21:58:32 +0100836 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200837 struct urb *urb;
838 unsigned char *buf;
839 unsigned int pipe;
840 int err, size;
841
842 BT_DBG("%s", hdev->name);
843
844 if (!data->isoc_rx_ep)
845 return -ENODEV;
846
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100847 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200848 if (!urb)
849 return -ENOMEM;
850
851 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
852 BTUSB_MAX_ISOC_FRAMES;
853
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100854 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200855 if (!buf) {
856 usb_free_urb(urb);
857 return -ENOMEM;
858 }
859
860 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
861
Bing Zhaofa0fb932011-12-20 18:19:00 -0800862 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200863 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200864
Marcel Holtmann89e75332014-09-16 04:44:50 +0200865 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200866
867 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200868 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200869
870 usb_anchor_urb(urb, &data->isoc_anchor);
871
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100872 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200873 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200874 if (err != -EPERM && err != -ENODEV)
875 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200876 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200877 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200878 }
879
880 usb_free_urb(urb);
881
882 return err;
883}
884
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200885static void btusb_diag_complete(struct urb *urb)
886{
887 struct hci_dev *hdev = urb->context;
888 struct btusb_data *data = hci_get_drvdata(hdev);
889 int err;
890
891 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
892 urb->actual_length);
893
894 if (urb->status == 0) {
895 struct sk_buff *skb;
896
897 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
898 if (skb) {
899 memcpy(skb_put(skb, urb->actual_length),
900 urb->transfer_buffer, urb->actual_length);
901 hci_recv_diag(hdev, skb);
902 }
903 } else if (urb->status == -ENOENT) {
904 /* Avoid suspend failed when usb_kill_urb */
905 return;
906 }
907
908 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
909 return;
910
911 usb_anchor_urb(urb, &data->diag_anchor);
912 usb_mark_last_busy(data->udev);
913
914 err = usb_submit_urb(urb, GFP_ATOMIC);
915 if (err < 0) {
916 /* -EPERM: urb is being killed;
917 * -ENODEV: device got disconnected */
918 if (err != -EPERM && err != -ENODEV)
919 BT_ERR("%s urb %p failed to resubmit (%d)",
920 hdev->name, urb, -err);
921 usb_unanchor_urb(urb);
922 }
923}
924
925static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
926{
927 struct btusb_data *data = hci_get_drvdata(hdev);
928 struct urb *urb;
929 unsigned char *buf;
930 unsigned int pipe;
931 int err, size = HCI_MAX_FRAME_SIZE;
932
933 BT_DBG("%s", hdev->name);
934
935 if (!data->diag_rx_ep)
936 return -ENODEV;
937
938 urb = usb_alloc_urb(0, mem_flags);
939 if (!urb)
940 return -ENOMEM;
941
942 buf = kmalloc(size, mem_flags);
943 if (!buf) {
944 usb_free_urb(urb);
945 return -ENOMEM;
946 }
947
948 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
949
950 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
951 btusb_diag_complete, hdev);
952
953 urb->transfer_flags |= URB_FREE_BUFFER;
954
955 usb_mark_last_busy(data->udev);
956 usb_anchor_urb(urb, &data->diag_anchor);
957
958 err = usb_submit_urb(urb, mem_flags);
959 if (err < 0) {
960 if (err != -EPERM && err != -ENODEV)
961 BT_ERR("%s urb %p submission failed (%d)",
962 hdev->name, urb, -err);
963 usb_unanchor_urb(urb);
964 }
965
966 usb_free_urb(urb);
967
968 return err;
969}
970
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200971static void btusb_tx_complete(struct urb *urb)
972{
973 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200974 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100975 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200976
Marcel Holtmann89e75332014-09-16 04:44:50 +0200977 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
978 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200979
980 if (!test_bit(HCI_RUNNING, &hdev->flags))
981 goto done;
982
983 if (!urb->status)
984 hdev->stat.byte_tx += urb->transfer_buffer_length;
985 else
986 hdev->stat.err_tx++;
987
988done:
989 spin_lock(&data->txlock);
990 data->tx_in_flight--;
991 spin_unlock(&data->txlock);
992
993 kfree(urb->setup_packet);
994
995 kfree_skb(skb);
996}
997
998static void btusb_isoc_tx_complete(struct urb *urb)
999{
1000 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001001 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001002
Marcel Holtmann89e75332014-09-16 04:44:50 +02001003 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1004 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001005
1006 if (!test_bit(HCI_RUNNING, &hdev->flags))
1007 goto done;
1008
1009 if (!urb->status)
1010 hdev->stat.byte_tx += urb->transfer_buffer_length;
1011 else
1012 hdev->stat.err_tx++;
1013
1014done:
1015 kfree(urb->setup_packet);
1016
1017 kfree_skb(skb);
1018}
1019
1020static int btusb_open(struct hci_dev *hdev)
1021{
David Herrmann155961e2012-02-09 21:58:32 +01001022 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001023 int err;
1024
1025 BT_DBG("%s", hdev->name);
1026
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001027 /* Patching USB firmware files prior to starting any URBs of HCI path
1028 * It is more safe to use USB bulk channel for downloading USB patch
1029 */
1030 if (data->setup_on_usb) {
1031 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001032 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001033 return err;
1034 }
1035
Oliver Neukum7bee5492009-08-24 23:44:59 +02001036 err = usb_autopm_get_interface(data->intf);
1037 if (err < 0)
1038 return err;
1039
1040 data->intf->needs_remote_wakeup = 1;
1041
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001042 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001043 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001044
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001045 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001046 if (err < 0)
1047 goto failed;
1048
1049 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001050 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001051 usb_kill_anchored_urbs(&data->intr_anchor);
1052 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001053 }
1054
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001055 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1056 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1057
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001058 if (data->diag) {
1059 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1060 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1061 }
1062
Oliver Neukum7bee5492009-08-24 23:44:59 +02001063done:
1064 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001065 return 0;
1066
1067failed:
1068 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001069 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001070 return err;
1071}
1072
Oliver Neukum7bee5492009-08-24 23:44:59 +02001073static void btusb_stop_traffic(struct btusb_data *data)
1074{
1075 usb_kill_anchored_urbs(&data->intr_anchor);
1076 usb_kill_anchored_urbs(&data->bulk_anchor);
1077 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001078 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001079}
1080
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001081static int btusb_close(struct hci_dev *hdev)
1082{
David Herrmann155961e2012-02-09 21:58:32 +01001083 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001084 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001085
1086 BT_DBG("%s", hdev->name);
1087
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001088 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001089 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001090
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001091 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001092 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001093 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001094 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001095
1096 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001097 btusb_free_frags(data);
1098
Oliver Neukum7bee5492009-08-24 23:44:59 +02001099 err = usb_autopm_get_interface(data->intf);
1100 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001101 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102
1103 data->intf->needs_remote_wakeup = 0;
1104 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001105
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001106failed:
1107 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001108 return 0;
1109}
1110
1111static int btusb_flush(struct hci_dev *hdev)
1112{
David Herrmann155961e2012-02-09 21:58:32 +01001113 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001114
1115 BT_DBG("%s", hdev->name);
1116
1117 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001118 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001119
1120 return 0;
1121}
1122
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001123static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001124{
David Herrmann155961e2012-02-09 21:58:32 +01001125 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001126 struct usb_ctrlrequest *dr;
1127 struct urb *urb;
1128 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001129
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001130 urb = usb_alloc_urb(0, GFP_KERNEL);
1131 if (!urb)
1132 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001133
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001134 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1135 if (!dr) {
1136 usb_free_urb(urb);
1137 return ERR_PTR(-ENOMEM);
1138 }
1139
1140 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001141 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001142 dr->wIndex = 0;
1143 dr->wValue = 0;
1144 dr->wLength = __cpu_to_le16(skb->len);
1145
1146 pipe = usb_sndctrlpipe(data->udev, 0x00);
1147
Marcel Holtmann89e75332014-09-16 04:44:50 +02001148 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001149 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001150
Marcel Holtmann89e75332014-09-16 04:44:50 +02001151 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001152
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001153 return urb;
1154}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001155
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001156static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1157{
1158 struct btusb_data *data = hci_get_drvdata(hdev);
1159 struct urb *urb;
1160 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001161
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001162 if (!data->bulk_tx_ep)
1163 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001164
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001165 urb = usb_alloc_urb(0, GFP_KERNEL);
1166 if (!urb)
1167 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001168
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001169 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001170
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001171 usb_fill_bulk_urb(urb, data->udev, pipe,
1172 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001173
Marcel Holtmann89e75332014-09-16 04:44:50 +02001174 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001175
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001176 return urb;
1177}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001178
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001179static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1180{
1181 struct btusb_data *data = hci_get_drvdata(hdev);
1182 struct urb *urb;
1183 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001184
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001185 if (!data->isoc_tx_ep)
1186 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001187
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001188 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1189 if (!urb)
1190 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001192 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001193
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001194 usb_fill_int_urb(urb, data->udev, pipe,
1195 skb->data, skb->len, btusb_isoc_tx_complete,
1196 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001197
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001198 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001199
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001200 __fill_isoc_descriptor(urb, skb->len,
1201 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001202
Marcel Holtmann89e75332014-09-16 04:44:50 +02001203 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001204
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001205 return urb;
1206}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001207
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001208static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1209{
1210 struct btusb_data *data = hci_get_drvdata(hdev);
1211 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001212
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001213 usb_anchor_urb(urb, &data->tx_anchor);
1214
Johan Hedberge9753ef2014-09-14 08:49:34 +03001215 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001217 if (err != -EPERM && err != -ENODEV)
1218 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001219 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220 kfree(urb->setup_packet);
1221 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001222 } else {
1223 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001224 }
1225
Cong Wang54a8a792011-11-22 09:32:57 +08001226 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001227 return err;
1228}
1229
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001230static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1231{
1232 struct btusb_data *data = hci_get_drvdata(hdev);
1233 unsigned long flags;
1234 bool suspending;
1235
1236 spin_lock_irqsave(&data->txlock, flags);
1237 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1238 if (!suspending)
1239 data->tx_in_flight++;
1240 spin_unlock_irqrestore(&data->txlock, flags);
1241
1242 if (!suspending)
1243 return submit_tx_urb(hdev, urb);
1244
1245 usb_anchor_urb(urb, &data->deferred);
1246 schedule_work(&data->waker);
1247
1248 usb_free_urb(urb);
1249 return 0;
1250}
1251
1252static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1253{
1254 struct urb *urb;
1255
1256 BT_DBG("%s", hdev->name);
1257
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001258 switch (bt_cb(skb)->pkt_type) {
1259 case HCI_COMMAND_PKT:
1260 urb = alloc_ctrl_urb(hdev, skb);
1261 if (IS_ERR(urb))
1262 return PTR_ERR(urb);
1263
1264 hdev->stat.cmd_tx++;
1265 return submit_or_queue_tx_urb(hdev, urb);
1266
1267 case HCI_ACLDATA_PKT:
1268 urb = alloc_bulk_urb(hdev, skb);
1269 if (IS_ERR(urb))
1270 return PTR_ERR(urb);
1271
1272 hdev->stat.acl_tx++;
1273 return submit_or_queue_tx_urb(hdev, urb);
1274
1275 case HCI_SCODATA_PKT:
1276 if (hci_conn_num(hdev, SCO_LINK) < 1)
1277 return -ENODEV;
1278
1279 urb = alloc_isoc_urb(hdev, skb);
1280 if (IS_ERR(urb))
1281 return PTR_ERR(urb);
1282
1283 hdev->stat.sco_tx++;
1284 return submit_tx_urb(hdev, urb);
1285 }
1286
1287 return -EILSEQ;
1288}
1289
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001290static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1291{
David Herrmann155961e2012-02-09 21:58:32 +01001292 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001293
1294 BT_DBG("%s evt %d", hdev->name, evt);
1295
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001296 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1297 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001298 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001299 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001300}
1301
Jesper Juhl42b16b32011-01-17 00:09:38 +01001302static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001303{
David Herrmann155961e2012-02-09 21:58:32 +01001304 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001305 struct usb_interface *intf = data->isoc;
1306 struct usb_endpoint_descriptor *ep_desc;
1307 int i, err;
1308
1309 if (!data->isoc)
1310 return -ENODEV;
1311
1312 err = usb_set_interface(data->udev, 1, altsetting);
1313 if (err < 0) {
1314 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1315 return err;
1316 }
1317
1318 data->isoc_altsetting = altsetting;
1319
1320 data->isoc_tx_ep = NULL;
1321 data->isoc_rx_ep = NULL;
1322
1323 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1324 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1325
1326 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1327 data->isoc_tx_ep = ep_desc;
1328 continue;
1329 }
1330
1331 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1332 data->isoc_rx_ep = ep_desc;
1333 continue;
1334 }
1335 }
1336
1337 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1338 BT_ERR("%s invalid SCO descriptors", hdev->name);
1339 return -ENODEV;
1340 }
1341
1342 return 0;
1343}
1344
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001345static void btusb_work(struct work_struct *work)
1346{
1347 struct btusb_data *data = container_of(work, struct btusb_data, work);
1348 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001349 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001350 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001351
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001352 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001353 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001354 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001355 if (err < 0) {
1356 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1357 usb_kill_anchored_urbs(&data->isoc_anchor);
1358 return;
1359 }
1360
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001361 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001362 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001363
1364 if (hdev->voice_setting & 0x0020) {
1365 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001366
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001367 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001368 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001369 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001370 }
1371
1372 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001373 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1374 usb_kill_anchored_urbs(&data->isoc_anchor);
1375
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001376 /* When isochronous alternate setting needs to be
1377 * changed, because SCO connection has been added
1378 * or removed, a packet fragment may be left in the
1379 * reassembling state. This could lead to wrongly
1380 * assembled fragments.
1381 *
1382 * Clear outstanding fragment when selecting a new
1383 * alternate setting.
1384 */
1385 spin_lock(&data->rxlock);
1386 kfree_skb(data->sco_skb);
1387 data->sco_skb = NULL;
1388 spin_unlock(&data->rxlock);
1389
Mikel Astizf4001d22012-04-11 08:48:51 +02001390 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001391 return;
1392 }
1393
1394 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001395 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001396 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1397 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001398 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001399 }
1400 } else {
1401 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1402 usb_kill_anchored_urbs(&data->isoc_anchor);
1403
1404 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001405 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001406 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001407 }
1408}
1409
Oliver Neukum7bee5492009-08-24 23:44:59 +02001410static void btusb_waker(struct work_struct *work)
1411{
1412 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1413 int err;
1414
1415 err = usb_autopm_get_interface(data->intf);
1416 if (err < 0)
1417 return;
1418
1419 usb_autopm_put_interface(data->intf);
1420}
1421
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001422static int btusb_setup_bcm92035(struct hci_dev *hdev)
1423{
1424 struct sk_buff *skb;
1425 u8 val = 0x00;
1426
1427 BT_DBG("%s", hdev->name);
1428
1429 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1430 if (IS_ERR(skb))
1431 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1432 else
1433 kfree_skb(skb);
1434
1435 return 0;
1436}
1437
Marcel Holtmann81cac642014-01-03 03:02:36 -08001438static int btusb_setup_csr(struct hci_dev *hdev)
1439{
1440 struct hci_rp_read_local_version *rp;
1441 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001442
1443 BT_DBG("%s", hdev->name);
1444
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001445 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1446 HCI_INIT_TIMEOUT);
1447 if (IS_ERR(skb)) {
1448 int err = PTR_ERR(skb);
1449 BT_ERR("%s: CSR: Local version failed (%d)", hdev->name, err);
1450 return err;
1451 }
1452
1453 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1454 BT_ERR("%s: CSR: Local version length mismatch", hdev->name);
1455 kfree_skb(skb);
1456 return -EIO;
1457 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001458
Marcel Holtmann89e75332014-09-16 04:44:50 +02001459 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001460
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001461 /* Detect controllers which aren't real CSR ones. */
1462 if (le16_to_cpu(rp->manufacturer) != 10 ||
1463 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001464 /* Clear the reset quirk since this is not an actual
1465 * early Bluetooth 1.1 device from CSR.
1466 */
1467 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001468
Marcel Holtmann9641d342015-06-07 10:01:01 +02001469 /* These fake CSR controllers have all a broken
1470 * stored link key handling and so just disable it.
1471 */
1472 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001473 }
1474
Marcel Holtmann81cac642014-01-03 03:02:36 -08001475 kfree_skb(skb);
1476
Marcel Holtmann9641d342015-06-07 10:01:01 +02001477 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001478}
1479
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001480static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001481 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001482{
1483 const struct firmware *fw;
1484 char fwname[64];
1485 int ret;
1486
1487 snprintf(fwname, sizeof(fwname),
1488 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1489 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1490 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1491 ver->fw_build_ww, ver->fw_build_yy);
1492
1493 ret = request_firmware(&fw, fwname, &hdev->dev);
1494 if (ret < 0) {
1495 if (ret == -EINVAL) {
1496 BT_ERR("%s Intel firmware file request failed (%d)",
1497 hdev->name, ret);
1498 return NULL;
1499 }
1500
1501 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1502 hdev->name, fwname, ret);
1503
1504 /* If the correct firmware patch file is not found, use the
1505 * default firmware patch file instead
1506 */
1507 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1508 ver->hw_platform, ver->hw_variant);
1509 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1510 BT_ERR("%s failed to open default Intel fw file: %s",
1511 hdev->name, fwname);
1512 return NULL;
1513 }
1514 }
1515
1516 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1517
1518 return fw;
1519}
1520
1521static int btusb_setup_intel_patching(struct hci_dev *hdev,
1522 const struct firmware *fw,
1523 const u8 **fw_ptr, int *disable_patch)
1524{
1525 struct sk_buff *skb;
1526 struct hci_command_hdr *cmd;
1527 const u8 *cmd_param;
1528 struct hci_event_hdr *evt = NULL;
1529 const u8 *evt_param = NULL;
1530 int remain = fw->size - (*fw_ptr - fw->data);
1531
1532 /* The first byte indicates the types of the patch command or event.
1533 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1534 * in the current firmware buffer doesn't start with 0x01 or
1535 * the size of remain buffer is smaller than HCI command header,
1536 * the firmware file is corrupted and it should stop the patching
1537 * process.
1538 */
1539 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1540 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1541 return -EINVAL;
1542 }
1543 (*fw_ptr)++;
1544 remain--;
1545
1546 cmd = (struct hci_command_hdr *)(*fw_ptr);
1547 *fw_ptr += sizeof(*cmd);
1548 remain -= sizeof(*cmd);
1549
1550 /* Ensure that the remain firmware data is long enough than the length
1551 * of command parameter. If not, the firmware file is corrupted.
1552 */
1553 if (remain < cmd->plen) {
1554 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1555 return -EFAULT;
1556 }
1557
1558 /* If there is a command that loads a patch in the firmware
1559 * file, then enable the patch upon success, otherwise just
1560 * disable the manufacturer mode, for example patch activation
1561 * is not required when the default firmware patch file is used
1562 * because there are no patch data to load.
1563 */
1564 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1565 *disable_patch = 0;
1566
1567 cmd_param = *fw_ptr;
1568 *fw_ptr += cmd->plen;
1569 remain -= cmd->plen;
1570
1571 /* This reads the expected events when the above command is sent to the
1572 * device. Some vendor commands expects more than one events, for
1573 * example command status event followed by vendor specific event.
1574 * For this case, it only keeps the last expected event. so the command
1575 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1576 * last expected event.
1577 */
1578 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1579 (*fw_ptr)++;
1580 remain--;
1581
1582 evt = (struct hci_event_hdr *)(*fw_ptr);
1583 *fw_ptr += sizeof(*evt);
1584 remain -= sizeof(*evt);
1585
1586 if (remain < evt->plen) {
1587 BT_ERR("%s Intel fw corrupted: invalid evt len",
1588 hdev->name);
1589 return -EFAULT;
1590 }
1591
1592 evt_param = *fw_ptr;
1593 *fw_ptr += evt->plen;
1594 remain -= evt->plen;
1595 }
1596
1597 /* Every HCI commands in the firmware file has its correspond event.
1598 * If event is not found or remain is smaller than zero, the firmware
1599 * file is corrupted.
1600 */
1601 if (!evt || !evt_param || remain < 0) {
1602 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1603 return -EFAULT;
1604 }
1605
1606 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1607 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1608 if (IS_ERR(skb)) {
1609 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1610 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001611 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001612 }
1613
1614 /* It ensures that the returned event matches the event data read from
1615 * the firmware file. At fist, it checks the length and then
1616 * the contents of the event.
1617 */
1618 if (skb->len != evt->plen) {
1619 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1620 le16_to_cpu(cmd->opcode));
1621 kfree_skb(skb);
1622 return -EFAULT;
1623 }
1624
1625 if (memcmp(skb->data, evt_param, evt->plen)) {
1626 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1627 hdev->name, le16_to_cpu(cmd->opcode));
1628 kfree_skb(skb);
1629 return -EFAULT;
1630 }
1631 kfree_skb(skb);
1632
1633 return 0;
1634}
1635
1636static int btusb_setup_intel(struct hci_dev *hdev)
1637{
1638 struct sk_buff *skb;
1639 const struct firmware *fw;
1640 const u8 *fw_ptr;
1641 int disable_patch;
1642 struct intel_version *ver;
1643
1644 const u8 mfg_enable[] = { 0x01, 0x00 };
1645 const u8 mfg_disable[] = { 0x00, 0x00 };
1646 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1647 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1648
1649 BT_DBG("%s", hdev->name);
1650
1651 /* The controller has a bug with the first HCI command sent to it
1652 * returning number of completed commands as zero. This would stall the
1653 * command processing in the Bluetooth core.
1654 *
1655 * As a workaround, send HCI Reset command first which will reset the
1656 * number of completed commands and allow normal command processing
1657 * from now on.
1658 */
1659 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1660 if (IS_ERR(skb)) {
1661 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1662 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001663 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001664 }
1665 kfree_skb(skb);
1666
1667 /* Read Intel specific controller version first to allow selection of
1668 * which firmware file to load.
1669 *
1670 * The returned information are hardware variant and revision plus
1671 * firmware variant, revision and build number.
1672 */
1673 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1674 if (IS_ERR(skb)) {
1675 BT_ERR("%s reading Intel fw version command failed (%ld)",
1676 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001677 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001678 }
1679
1680 if (skb->len != sizeof(*ver)) {
1681 BT_ERR("%s Intel version event length mismatch", hdev->name);
1682 kfree_skb(skb);
1683 return -EIO;
1684 }
1685
1686 ver = (struct intel_version *)skb->data;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001687
1688 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1689 hdev->name, ver->hw_platform, ver->hw_variant,
1690 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1691 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1692 ver->fw_patch_num);
1693
1694 /* fw_patch_num indicates the version of patch the device currently
1695 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001696 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001697 */
1698 if (ver->fw_patch_num) {
1699 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1700 hdev->name, ver->fw_patch_num);
1701 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001702 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001703 return 0;
1704 }
1705
1706 /* Opens the firmware patch file based on the firmware version read
1707 * from the controller. If it fails to open the matching firmware
1708 * patch file, it tries to open the default firmware patch file.
1709 * If no patch file is found, allow the device to operate without
1710 * a patch.
1711 */
1712 fw = btusb_setup_intel_get_fw(hdev, ver);
1713 if (!fw) {
1714 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001715 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001716 return 0;
1717 }
1718 fw_ptr = fw->data;
1719
Marcel Holtmannecffc802015-06-07 09:42:19 +02001720 kfree_skb(skb);
1721
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001722 /* This Intel specific command enables the manufacturer mode of the
1723 * controller.
1724 *
1725 * Only while this mode is enabled, the driver can download the
1726 * firmware patch data and configuration parameters.
1727 */
1728 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1729 if (IS_ERR(skb)) {
1730 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1731 hdev->name, PTR_ERR(skb));
1732 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001733 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001734 }
1735
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001736 kfree_skb(skb);
1737
1738 disable_patch = 1;
1739
1740 /* The firmware data file consists of list of Intel specific HCI
1741 * commands and its expected events. The first byte indicates the
1742 * type of the message, either HCI command or HCI event.
1743 *
1744 * It reads the command and its expected event from the firmware file,
1745 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1746 * the returned event is compared with the event read from the firmware
1747 * file and it will continue until all the messages are downloaded to
1748 * the controller.
1749 *
1750 * Once the firmware patching is completed successfully,
1751 * the manufacturer mode is disabled with reset and activating the
1752 * downloaded patch.
1753 *
1754 * If the firmware patching fails, the manufacturer mode is
1755 * disabled with reset and deactivating the patch.
1756 *
1757 * If the default patch file is used, no reset is done when disabling
1758 * the manufacturer.
1759 */
1760 while (fw->size > fw_ptr - fw->data) {
1761 int ret;
1762
1763 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1764 &disable_patch);
1765 if (ret < 0)
1766 goto exit_mfg_deactivate;
1767 }
1768
1769 release_firmware(fw);
1770
1771 if (disable_patch)
1772 goto exit_mfg_disable;
1773
1774 /* Patching completed successfully and disable the manufacturer mode
1775 * with reset and activate the downloaded firmware patches.
1776 */
1777 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1778 mfg_reset_activate, HCI_INIT_TIMEOUT);
1779 if (IS_ERR(skb)) {
1780 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1781 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001782 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001783 }
1784 kfree_skb(skb);
1785
1786 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1787 hdev->name);
1788
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001789 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001790 return 0;
1791
1792exit_mfg_disable:
1793 /* Disable the manufacturer mode without reset */
1794 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1795 HCI_INIT_TIMEOUT);
1796 if (IS_ERR(skb)) {
1797 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1798 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001799 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001800 }
1801 kfree_skb(skb);
1802
1803 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001804
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001805 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001806 return 0;
1807
1808exit_mfg_deactivate:
1809 release_firmware(fw);
1810
1811 /* Patching failed. Disable the manufacturer mode with reset and
1812 * deactivate the downloaded firmware patches.
1813 */
1814 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1815 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1816 if (IS_ERR(skb)) {
1817 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1818 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001819 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001820 }
1821 kfree_skb(skb);
1822
1823 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1824 hdev->name);
1825
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001826 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001827 return 0;
1828}
1829
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001830static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1831{
1832 struct sk_buff *skb;
1833 struct hci_event_hdr *hdr;
1834 struct hci_ev_cmd_complete *evt;
1835
1836 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1837 if (!skb)
1838 return -ENOMEM;
1839
1840 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1841 hdr->evt = HCI_EV_CMD_COMPLETE;
1842 hdr->plen = sizeof(*evt) + 1;
1843
1844 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1845 evt->ncmd = 0x01;
1846 evt->opcode = cpu_to_le16(opcode);
1847
1848 *skb_put(skb, 1) = 0x00;
1849
1850 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1851
1852 return hci_recv_frame(hdev, skb);
1853}
1854
1855static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1856 int count)
1857{
1858 /* When the device is in bootloader mode, then it can send
1859 * events via the bulk endpoint. These events are treated the
1860 * same way as the ones received from the interrupt endpoint.
1861 */
1862 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1863 return btusb_recv_intr(data, buffer, count);
1864
1865 return btusb_recv_bulk(data, buffer, count);
1866}
1867
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001868static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1869 unsigned int len)
1870{
1871 const struct intel_bootup *evt = ptr;
1872
1873 if (len != sizeof(*evt))
1874 return;
1875
1876 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1877 smp_mb__after_atomic();
1878 wake_up_bit(&data->flags, BTUSB_BOOTING);
1879 }
1880}
1881
1882static void btusb_intel_secure_send_result(struct btusb_data *data,
1883 const void *ptr, unsigned int len)
1884{
1885 const struct intel_secure_send_result *evt = ptr;
1886
1887 if (len != sizeof(*evt))
1888 return;
1889
1890 if (evt->result)
1891 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1892
1893 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1894 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1895 smp_mb__after_atomic();
1896 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1897 }
1898}
1899
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001900static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1901{
1902 struct btusb_data *data = hci_get_drvdata(hdev);
1903
1904 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1905 struct hci_event_hdr *hdr = (void *)skb->data;
1906
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001907 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1908 hdr->plen > 0) {
1909 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1910 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001911
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001912 switch (skb->data[2]) {
1913 case 0x02:
1914 /* When switching to the operational firmware
1915 * the device sends a vendor specific event
1916 * indicating that the bootup completed.
1917 */
1918 btusb_intel_bootup(data, ptr, len);
1919 break;
1920 case 0x06:
1921 /* When the firmware loading completes the
1922 * device sends out a vendor specific event
1923 * indicating the result of the firmware
1924 * loading.
1925 */
1926 btusb_intel_secure_send_result(data, ptr, len);
1927 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001928 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001929 }
1930 }
1931
1932 return hci_recv_frame(hdev, skb);
1933}
1934
1935static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1936{
1937 struct btusb_data *data = hci_get_drvdata(hdev);
1938 struct urb *urb;
1939
1940 BT_DBG("%s", hdev->name);
1941
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001942 switch (bt_cb(skb)->pkt_type) {
1943 case HCI_COMMAND_PKT:
1944 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1945 struct hci_command_hdr *cmd = (void *)skb->data;
1946 __u16 opcode = le16_to_cpu(cmd->opcode);
1947
1948 /* When in bootloader mode and the command 0xfc09
1949 * is received, it needs to be send down the
1950 * bulk endpoint. So allocate a bulk URB instead.
1951 */
1952 if (opcode == 0xfc09)
1953 urb = alloc_bulk_urb(hdev, skb);
1954 else
1955 urb = alloc_ctrl_urb(hdev, skb);
1956
1957 /* When the 0xfc01 command is issued to boot into
1958 * the operational firmware, it will actually not
1959 * send a command complete event. To keep the flow
1960 * control working inject that event here.
1961 */
1962 if (opcode == 0xfc01)
1963 inject_cmd_complete(hdev, opcode);
1964 } else {
1965 urb = alloc_ctrl_urb(hdev, skb);
1966 }
1967 if (IS_ERR(urb))
1968 return PTR_ERR(urb);
1969
1970 hdev->stat.cmd_tx++;
1971 return submit_or_queue_tx_urb(hdev, urb);
1972
1973 case HCI_ACLDATA_PKT:
1974 urb = alloc_bulk_urb(hdev, skb);
1975 if (IS_ERR(urb))
1976 return PTR_ERR(urb);
1977
1978 hdev->stat.acl_tx++;
1979 return submit_or_queue_tx_urb(hdev, urb);
1980
1981 case HCI_SCODATA_PKT:
1982 if (hci_conn_num(hdev, SCO_LINK) < 1)
1983 return -ENODEV;
1984
1985 urb = alloc_isoc_urb(hdev, skb);
1986 if (IS_ERR(urb))
1987 return PTR_ERR(urb);
1988
1989 hdev->stat.sco_tx++;
1990 return submit_tx_urb(hdev, urb);
1991 }
1992
1993 return -EILSEQ;
1994}
1995
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001996static int btusb_setup_intel_new(struct hci_dev *hdev)
1997{
1998 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1999 0x00, 0x08, 0x04, 0x00 };
2000 struct btusb_data *data = hci_get_drvdata(hdev);
2001 struct sk_buff *skb;
2002 struct intel_version *ver;
2003 struct intel_boot_params *params;
2004 const struct firmware *fw;
2005 const u8 *fw_ptr;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002006 u32 frag_len;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002007 char fwname[64];
2008 ktime_t calltime, delta, rettime;
2009 unsigned long long duration;
2010 int err;
2011
2012 BT_DBG("%s", hdev->name);
2013
2014 calltime = ktime_get();
2015
2016 /* Read the Intel version information to determine if the device
2017 * is in bootloader mode or if it already has operational firmware
2018 * loaded.
2019 */
2020 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
2021 if (IS_ERR(skb)) {
2022 BT_ERR("%s: Reading Intel version information failed (%ld)",
2023 hdev->name, PTR_ERR(skb));
2024 return PTR_ERR(skb);
2025 }
2026
2027 if (skb->len != sizeof(*ver)) {
2028 BT_ERR("%s: Intel version event size mismatch", hdev->name);
2029 kfree_skb(skb);
2030 return -EILSEQ;
2031 }
2032
2033 ver = (struct intel_version *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002034
2035 /* The hardware platform number has a fixed value of 0x37 and
2036 * for now only accept this single value.
2037 */
2038 if (ver->hw_platform != 0x37) {
2039 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2040 hdev->name, ver->hw_platform);
2041 kfree_skb(skb);
2042 return -EINVAL;
2043 }
2044
2045 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
2046 * supported by this firmware loading method. This check has been
2047 * put in place to ensure correct forward compatibility options
2048 * when newer hardware variants come along.
2049 */
2050 if (ver->hw_variant != 0x0b) {
2051 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2052 hdev->name, ver->hw_variant);
2053 kfree_skb(skb);
2054 return -EINVAL;
2055 }
2056
Marcel Holtmann7feb99e2015-07-05 15:02:07 +02002057 btintel_version_info(hdev, ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002058
2059 /* The firmware variant determines if the device is in bootloader
2060 * mode or is running operational firmware. The value 0x06 identifies
2061 * the bootloader and the value 0x23 identifies the operational
2062 * firmware.
2063 *
2064 * When the operational firmware is already present, then only
2065 * the check for valid Bluetooth device address is needed. This
2066 * determines if the device will be added as configured or
2067 * unconfigured controller.
2068 *
2069 * It is not possible to use the Secure Boot Parameters in this
2070 * case since that command is only available in bootloader mode.
2071 */
2072 if (ver->fw_variant == 0x23) {
2073 kfree_skb(skb);
2074 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002075 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002076 return 0;
2077 }
2078
2079 /* If the device is not in bootloader mode, then the only possible
2080 * choice is to return an error and abort the device initialization.
2081 */
2082 if (ver->fw_variant != 0x06) {
2083 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2084 hdev->name, ver->fw_variant);
2085 kfree_skb(skb);
2086 return -ENODEV;
2087 }
2088
2089 kfree_skb(skb);
2090
2091 /* Read the secure boot parameters to identify the operating
2092 * details of the bootloader.
2093 */
2094 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2095 if (IS_ERR(skb)) {
2096 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2097 hdev->name, PTR_ERR(skb));
2098 return PTR_ERR(skb);
2099 }
2100
2101 if (skb->len != sizeof(*params)) {
2102 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2103 kfree_skb(skb);
2104 return -EILSEQ;
2105 }
2106
2107 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002108
2109 BT_INFO("%s: Device revision is %u", hdev->name,
2110 le16_to_cpu(params->dev_revid));
2111
2112 BT_INFO("%s: Secure boot is %s", hdev->name,
2113 params->secure_boot ? "enabled" : "disabled");
2114
Marcel Holtmann2220994e2015-10-13 13:54:55 +02002115 BT_INFO("%s: OTP lock is %s", hdev->name,
2116 params->otp_lock ? "enabled" : "disabled");
2117
2118 BT_INFO("%s: API lock is %s", hdev->name,
2119 params->api_lock ? "enabled" : "disabled");
2120
2121 BT_INFO("%s: Debug lock is %s", hdev->name,
2122 params->debug_lock ? "enabled" : "disabled");
2123
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002124 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2125 params->min_fw_build_nn, params->min_fw_build_cw,
2126 2000 + params->min_fw_build_yy);
2127
2128 /* It is required that every single firmware fragment is acknowledged
2129 * with a command complete event. If the boot parameters indicate
2130 * that this bootloader does not send them, then abort the setup.
2131 */
2132 if (params->limited_cce != 0x00) {
2133 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2134 hdev->name, params->limited_cce);
2135 kfree_skb(skb);
2136 return -EINVAL;
2137 }
2138
2139 /* If the OTP has no valid Bluetooth device address, then there will
2140 * also be no valid address for the operational firmware.
2141 */
2142 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2143 BT_INFO("%s: No device address configured", hdev->name);
2144 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2145 }
2146
2147 /* With this Intel bootloader only the hardware variant and device
2148 * revision information are used to select the right firmware.
2149 *
2150 * Currently this bootloader support is limited to hardware variant
2151 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2152 */
2153 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2154 le16_to_cpu(params->dev_revid));
2155
2156 err = request_firmware(&fw, fwname, &hdev->dev);
2157 if (err < 0) {
2158 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2159 hdev->name, err);
2160 kfree_skb(skb);
2161 return err;
2162 }
2163
2164 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2165
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002166 /* Save the DDC file name for later use to apply once the firmware
2167 * downloading is done.
2168 */
2169 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc",
2170 le16_to_cpu(params->dev_revid));
2171
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002172 kfree_skb(skb);
2173
2174 if (fw->size < 644) {
2175 BT_ERR("%s: Invalid size of firmware file (%zu)",
2176 hdev->name, fw->size);
2177 err = -EBADF;
2178 goto done;
2179 }
2180
2181 set_bit(BTUSB_DOWNLOADING, &data->flags);
2182
2183 /* Start the firmware download transaction with the Init fragment
2184 * represented by the 128 bytes of CSS header.
2185 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002186 err = btintel_secure_send(hdev, 0x00, 128, fw->data);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002187 if (err < 0) {
2188 BT_ERR("%s: Failed to send firmware header (%d)",
2189 hdev->name, err);
2190 goto done;
2191 }
2192
2193 /* Send the 256 bytes of public key information from the firmware
2194 * as the PKey fragment.
2195 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002196 err = btintel_secure_send(hdev, 0x03, 256, fw->data + 128);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002197 if (err < 0) {
2198 BT_ERR("%s: Failed to send firmware public key (%d)",
2199 hdev->name, err);
2200 goto done;
2201 }
2202
2203 /* Send the 256 bytes of signature information from the firmware
2204 * as the Sign fragment.
2205 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002206 err = btintel_secure_send(hdev, 0x02, 256, fw->data + 388);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002207 if (err < 0) {
2208 BT_ERR("%s: Failed to send firmware signature (%d)",
2209 hdev->name, err);
2210 goto done;
2211 }
2212
2213 fw_ptr = fw->data + 644;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002214 frag_len = 0;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002215
2216 while (fw_ptr - fw->data < fw->size) {
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002217 struct hci_command_hdr *cmd = (void *)(fw_ptr + frag_len);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002218
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002219 frag_len += sizeof(*cmd) + cmd->plen;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002220
Minjune Kim5075eda2015-08-27 13:21:52 +09002221 /* The parameter length of the secure send command requires
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002222 * a 4 byte alignment. It happens so that the firmware file
2223 * contains proper Intel_NOP commands to align the fragments
2224 * as needed.
2225 *
2226 * Send set of commands with 4 byte alignment from the
2227 * firmware data buffer as a single Data fragement.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002228 */
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002229 if (!(frag_len % 4)) {
Marcel Holtmann09df1232015-07-05 14:55:36 +02002230 err = btintel_secure_send(hdev, 0x01, frag_len, fw_ptr);
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002231 if (err < 0) {
2232 BT_ERR("%s: Failed to send firmware data (%d)",
2233 hdev->name, err);
2234 goto done;
2235 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002236
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002237 fw_ptr += frag_len;
2238 frag_len = 0;
2239 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002240 }
2241
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002242 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2243
Johan Hedberga087a982015-01-30 10:58:54 +02002244 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2245
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002246 /* Before switching the device into operational mode and with that
2247 * booting the loaded firmware, wait for the bootloader notification
2248 * that all fragments have been successfully received.
2249 *
Johan Hedberga087a982015-01-30 10:58:54 +02002250 * When the event processing receives the notification, then the
2251 * BTUSB_DOWNLOADING flag will be cleared.
2252 *
2253 * The firmware loading should not take longer than 5 seconds
2254 * and thus just timeout if that happens and fail the setup
2255 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002256 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002257 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2258 TASK_INTERRUPTIBLE,
2259 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002260 if (err == 1) {
2261 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2262 err = -EINTR;
2263 goto done;
2264 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002265
Johan Hedberga087a982015-01-30 10:58:54 +02002266 if (err) {
2267 BT_ERR("%s: Firmware loading timeout", hdev->name);
2268 err = -ETIMEDOUT;
2269 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002270 }
2271
2272 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2273 BT_ERR("%s: Firmware loading failed", hdev->name);
2274 err = -ENOEXEC;
2275 goto done;
2276 }
2277
2278 rettime = ktime_get();
2279 delta = ktime_sub(rettime, calltime);
2280 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2281
2282 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2283
2284done:
2285 release_firmware(fw);
2286
2287 if (err < 0)
2288 return err;
2289
2290 calltime = ktime_get();
2291
2292 set_bit(BTUSB_BOOTING, &data->flags);
2293
2294 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2295 HCI_INIT_TIMEOUT);
2296 if (IS_ERR(skb))
2297 return PTR_ERR(skb);
2298
2299 kfree_skb(skb);
2300
2301 /* The bootloader will not indicate when the device is ready. This
2302 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002303 *
2304 * Booting into operational firmware should not take longer than
2305 * 1 second. However if that happens, then just fail the setup
2306 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002307 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002308 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002309
Johan Hedberg129a7692015-02-14 09:33:35 +02002310 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2311 TASK_INTERRUPTIBLE,
2312 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002313
Johan Hedbergfad70972015-01-30 10:58:55 +02002314 if (err == 1) {
2315 BT_ERR("%s: Device boot interrupted", hdev->name);
2316 return -EINTR;
2317 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002318
Johan Hedbergfad70972015-01-30 10:58:55 +02002319 if (err) {
2320 BT_ERR("%s: Device boot timeout", hdev->name);
2321 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002322 }
2323
2324 rettime = ktime_get();
2325 delta = ktime_sub(rettime, calltime);
2326 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2327
2328 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2329
2330 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2331
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002332 /* Once the device is running in operational mode, it needs to apply
2333 * the device configuration (DDC) parameters.
2334 *
2335 * The device can work without DDC parameters, so even if it fails
2336 * to load the file, no need to fail the setup.
2337 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002338 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002339
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002340 return 0;
2341}
2342
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002343static int btusb_shutdown_intel(struct hci_dev *hdev)
2344{
2345 struct sk_buff *skb;
2346 long ret;
2347
2348 /* Some platforms have an issue with BT LED when the interface is
2349 * down or BT radio is turned off, which takes 5 seconds to BT LED
2350 * goes off. This command turns off the BT LED immediately.
2351 */
2352 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2353 if (IS_ERR(skb)) {
2354 ret = PTR_ERR(skb);
2355 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2356 hdev->name, ret);
2357 return ret;
2358 }
2359 kfree_skb(skb);
2360
2361 return 0;
2362}
2363
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002364static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2365 const bdaddr_t *bdaddr)
2366{
2367 struct sk_buff *skb;
2368 u8 buf[8];
2369 long ret;
2370
2371 buf[0] = 0xfe;
2372 buf[1] = sizeof(bdaddr_t);
2373 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2374
2375 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2376 if (IS_ERR(skb)) {
2377 ret = PTR_ERR(skb);
2378 BT_ERR("%s: changing Marvell device address failed (%ld)",
2379 hdev->name, ret);
2380 return ret;
2381 }
2382 kfree_skb(skb);
2383
2384 return 0;
2385}
2386
Toshi Kikuchi58592232014-12-12 10:58:05 -08002387static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2388 const bdaddr_t *bdaddr)
2389{
2390 struct sk_buff *skb;
2391 u8 buf[10];
2392 long ret;
2393
2394 buf[0] = 0x01;
2395 buf[1] = 0x01;
2396 buf[2] = 0x00;
2397 buf[3] = sizeof(bdaddr_t);
2398 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2399
2400 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2401 if (IS_ERR(skb)) {
2402 ret = PTR_ERR(skb);
2403 BT_ERR("%s: Change address command failed (%ld)",
2404 hdev->name, ret);
2405 return ret;
2406 }
2407 kfree_skb(skb);
2408
2409 return 0;
2410}
2411
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002412#define QCA_DFU_PACKET_LEN 4096
2413
2414#define QCA_GET_TARGET_VERSION 0x09
2415#define QCA_CHECK_STATUS 0x05
2416#define QCA_DFU_DOWNLOAD 0x01
2417
2418#define QCA_SYSCFG_UPDATED 0x40
2419#define QCA_PATCH_UPDATED 0x80
2420#define QCA_DFU_TIMEOUT 3000
2421
2422struct qca_version {
2423 __le32 rom_version;
2424 __le32 patch_version;
2425 __le32 ram_version;
2426 __le32 ref_clock;
2427 __u8 reserved[4];
2428} __packed;
2429
2430struct qca_rampatch_version {
2431 __le16 rom_version;
2432 __le16 patch_version;
2433} __packed;
2434
2435struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002436 u32 rom_version;
2437 u8 rampatch_hdr; /* length of header in rampatch */
2438 u8 nvm_hdr; /* length of header in NVM */
2439 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002440};
2441
2442static const struct qca_device_info qca_devices_table[] = {
2443 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2444 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002445 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002446 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2447 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2448 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2449};
2450
2451static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2452 void *data, u16 size)
2453{
2454 struct btusb_data *btdata = hci_get_drvdata(hdev);
2455 struct usb_device *udev = btdata->udev;
2456 int pipe, err;
2457 u8 *buf;
2458
2459 buf = kmalloc(size, GFP_KERNEL);
2460 if (!buf)
2461 return -ENOMEM;
2462
2463 /* Found some of USB hosts have IOT issues with ours so that we should
2464 * not wait until HCI layer is ready.
2465 */
2466 pipe = usb_rcvctrlpipe(udev, 0);
2467 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2468 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2469 if (err < 0) {
2470 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2471 goto done;
2472 }
2473
2474 memcpy(data, buf, size);
2475
2476done:
2477 kfree(buf);
2478
2479 return err;
2480}
2481
2482static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2483 const struct firmware *firmware,
2484 size_t hdr_size)
2485{
2486 struct btusb_data *btdata = hci_get_drvdata(hdev);
2487 struct usb_device *udev = btdata->udev;
2488 size_t count, size, sent = 0;
2489 int pipe, len, err;
2490 u8 *buf;
2491
2492 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2493 if (!buf)
2494 return -ENOMEM;
2495
2496 count = firmware->size;
2497
2498 size = min_t(size_t, count, hdr_size);
2499 memcpy(buf, firmware->data, size);
2500
2501 /* USB patches should go down to controller through USB path
2502 * because binary format fits to go down through USB channel.
2503 * USB control path is for patching headers and USB bulk is for
2504 * patch body.
2505 */
2506 pipe = usb_sndctrlpipe(udev, 0);
2507 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2508 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2509 if (err < 0) {
2510 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2511 goto done;
2512 }
2513
2514 sent += size;
2515 count -= size;
2516
2517 while (count) {
2518 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2519
2520 memcpy(buf, firmware->data + sent, size);
2521
2522 pipe = usb_sndbulkpipe(udev, 0x02);
2523 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2524 QCA_DFU_TIMEOUT);
2525 if (err < 0) {
2526 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2527 hdev->name, sent, firmware->size, err);
2528 break;
2529 }
2530
2531 if (size != len) {
2532 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2533 err = -EILSEQ;
2534 break;
2535 }
2536
2537 sent += size;
2538 count -= size;
2539 }
2540
2541done:
2542 kfree(buf);
2543 return err;
2544}
2545
2546static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2547 struct qca_version *ver,
2548 const struct qca_device_info *info)
2549{
2550 struct qca_rampatch_version *rver;
2551 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002552 u32 ver_rom, ver_patch;
2553 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002554 char fwname[64];
2555 int err;
2556
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002557 ver_rom = le32_to_cpu(ver->rom_version);
2558 ver_patch = le32_to_cpu(ver->patch_version);
2559
2560 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002561
2562 err = request_firmware(&fw, fwname, &hdev->dev);
2563 if (err) {
2564 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2565 hdev->name, fwname, err);
2566 return err;
2567 }
2568
2569 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002570
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002571 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2572 rver_rom = le16_to_cpu(rver->rom_version);
2573 rver_patch = le16_to_cpu(rver->patch_version);
2574
2575 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2576 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2577 ver_patch);
2578
2579 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002580 BT_ERR("%s: rampatch file version did not match with firmware",
2581 hdev->name);
2582 err = -EINVAL;
2583 goto done;
2584 }
2585
2586 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2587
2588done:
2589 release_firmware(fw);
2590
2591 return err;
2592}
2593
2594static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2595 struct qca_version *ver,
2596 const struct qca_device_info *info)
2597{
2598 const struct firmware *fw;
2599 char fwname[64];
2600 int err;
2601
2602 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2603 le32_to_cpu(ver->rom_version));
2604
2605 err = request_firmware(&fw, fwname, &hdev->dev);
2606 if (err) {
2607 BT_ERR("%s: failed to request NVM file: %s (%d)",
2608 hdev->name, fwname, err);
2609 return err;
2610 }
2611
2612 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2613
2614 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2615
2616 release_firmware(fw);
2617
2618 return err;
2619}
2620
2621static int btusb_setup_qca(struct hci_dev *hdev)
2622{
2623 const struct qca_device_info *info = NULL;
2624 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002625 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002626 u8 status;
2627 int i, err;
2628
2629 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002630 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002631 if (err < 0)
2632 return err;
2633
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002634 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002635 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002636 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002637 info = &qca_devices_table[i];
2638 }
2639 if (!info) {
2640 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002641 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002642 return -ENODEV;
2643 }
2644
2645 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2646 sizeof(status));
2647 if (err < 0)
2648 return err;
2649
2650 if (!(status & QCA_PATCH_UPDATED)) {
2651 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2652 if (err < 0)
2653 return err;
2654 }
2655
2656 if (!(status & QCA_SYSCFG_UPDATED)) {
2657 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2658 if (err < 0)
2659 return err;
2660 }
2661
2662 return 0;
2663}
2664
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002665#ifdef CONFIG_BT_HCIBTUSB_BCM
2666static inline int __set_diag_interface(struct hci_dev *hdev)
2667{
2668 struct btusb_data *data = hci_get_drvdata(hdev);
2669 struct usb_interface *intf = data->diag;
2670 int i;
2671
2672 if (!data->diag)
2673 return -ENODEV;
2674
2675 data->diag_tx_ep = NULL;
2676 data->diag_rx_ep = NULL;
2677
2678 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2679 struct usb_endpoint_descriptor *ep_desc;
2680
2681 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2682
2683 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2684 data->diag_tx_ep = ep_desc;
2685 continue;
2686 }
2687
2688 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2689 data->diag_rx_ep = ep_desc;
2690 continue;
2691 }
2692 }
2693
2694 if (!data->diag_tx_ep || !data->diag_rx_ep) {
2695 BT_ERR("%s invalid diagnostic descriptors", hdev->name);
2696 return -ENODEV;
2697 }
2698
2699 return 0;
2700}
2701
2702static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2703{
2704 struct btusb_data *data = hci_get_drvdata(hdev);
2705 struct sk_buff *skb;
2706 struct urb *urb;
2707 unsigned int pipe;
2708
2709 if (!data->diag_tx_ep)
2710 return ERR_PTR(-ENODEV);
2711
2712 urb = usb_alloc_urb(0, GFP_KERNEL);
2713 if (!urb)
2714 return ERR_PTR(-ENOMEM);
2715
2716 skb = bt_skb_alloc(2, GFP_KERNEL);
2717 if (!skb) {
2718 usb_free_urb(urb);
2719 return ERR_PTR(-ENOMEM);
2720 }
2721
2722 *skb_put(skb, 1) = 0xf0;
2723 *skb_put(skb, 1) = enable;
2724
2725 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2726
2727 usb_fill_bulk_urb(urb, data->udev, pipe,
2728 skb->data, skb->len, btusb_tx_complete, skb);
2729
2730 skb->dev = (void *)hdev;
2731
2732 return urb;
2733}
2734
2735static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2736{
2737 struct btusb_data *data = hci_get_drvdata(hdev);
2738 struct urb *urb;
2739
2740 if (!data->diag)
2741 return -ENODEV;
2742
2743 if (!test_bit(HCI_RUNNING, &hdev->flags))
2744 return -ENETDOWN;
2745
2746 urb = alloc_diag_urb(hdev, enable);
2747 if (IS_ERR(urb))
2748 return PTR_ERR(urb);
2749
2750 return submit_or_queue_tx_urb(hdev, urb);
2751}
2752#endif
2753
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002754static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002755 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002756{
2757 struct usb_endpoint_descriptor *ep_desc;
2758 struct btusb_data *data;
2759 struct hci_dev *hdev;
2760 int i, err;
2761
2762 BT_DBG("intf %p id %p", intf, id);
2763
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002764 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002765 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2766 return -ENODEV;
2767
2768 if (!id->driver_info) {
2769 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002770
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002771 match = usb_match_id(intf, blacklist_table);
2772 if (match)
2773 id = match;
2774 }
2775
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002776 if (id->driver_info == BTUSB_IGNORE)
2777 return -ENODEV;
2778
Steven.Li2d25f8b2011-07-01 14:02:36 +08002779 if (id->driver_info & BTUSB_ATH3012) {
2780 struct usb_device *udev = interface_to_usbdev(intf);
2781
2782 /* Old firmware would otherwise let ath3k driver load
2783 * patch and sysconfig files */
2784 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2785 return -ENODEV;
2786 }
2787
Sachin Kamat98921db2012-07-27 12:38:39 +05302788 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002789 if (!data)
2790 return -ENOMEM;
2791
2792 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2793 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2794
2795 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2796 data->intr_ep = ep_desc;
2797 continue;
2798 }
2799
2800 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2801 data->bulk_tx_ep = ep_desc;
2802 continue;
2803 }
2804
2805 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2806 data->bulk_rx_ep = ep_desc;
2807 continue;
2808 }
2809 }
2810
Sachin Kamat98921db2012-07-27 12:38:39 +05302811 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002812 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002813
Marcel Holtmann893ba542015-01-28 20:27:34 -08002814 if (id->driver_info & BTUSB_AMP) {
2815 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2816 data->cmdreq = 0x2b;
2817 } else {
2818 data->cmdreq_type = USB_TYPE_CLASS;
2819 data->cmdreq = 0x00;
2820 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002821
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002822 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002823 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002824
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002825 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002826 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002827 init_usb_anchor(&data->deferred);
2828 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002829 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002830
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002831 init_usb_anchor(&data->intr_anchor);
2832 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002833 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002834 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002835 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002836
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002837 if (id->driver_info & BTUSB_INTEL_NEW) {
2838 data->recv_event = btusb_recv_event_intel;
2839 data->recv_bulk = btusb_recv_bulk_intel;
2840 set_bit(BTUSB_BOOTLOADER, &data->flags);
2841 } else {
2842 data->recv_event = hci_recv_frame;
2843 data->recv_bulk = btusb_recv_bulk;
2844 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002845
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002846 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302847 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002848 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002849
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002850 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002851 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002852
Marcel Holtmann893ba542015-01-28 20:27:34 -08002853 if (id->driver_info & BTUSB_AMP)
2854 hdev->dev_type = HCI_AMP;
2855 else
2856 hdev->dev_type = HCI_BREDR;
2857
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002858 data->hdev = hdev;
2859
2860 SET_HCIDEV_DEV(hdev, &intf->dev);
2861
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002862 hdev->open = btusb_open;
2863 hdev->close = btusb_close;
2864 hdev->flush = btusb_flush;
2865 hdev->send = btusb_send_frame;
2866 hdev->notify = btusb_notify;
2867
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02002868 if (id->driver_info & BTUSB_BCM2045)
2869 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2870
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002871 if (id->driver_info & BTUSB_BCM92035)
2872 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002873
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002874#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002875 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002876 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002877 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002878 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002879
2880 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2881 data->diag = usb_ifnum_to_if(data->udev, 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002882 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002883
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002884 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002885 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002886 hdev->set_diag = btusb_bcm_set_diag;
2887
2888 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2889 data->diag = usb_ifnum_to_if(data->udev, 2);
2890 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002891#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002892
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002893 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002894 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002895 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02002896 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002897 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002898 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002899 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02002900 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002901 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002902
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002903 if (id->driver_info & BTUSB_INTEL_NEW) {
2904 hdev->send = btusb_send_frame_intel;
2905 hdev->setup = btusb_setup_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02002906 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02002907 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002908 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002909 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02002910 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002911 }
2912
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002913 if (id->driver_info & BTUSB_MARVELL)
2914 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2915
Marcel Holtmann661cf882015-01-02 23:35:20 -08002916 if (id->driver_info & BTUSB_SWAVE) {
2917 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002918 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002919 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002920
Marcel Holtmann40df7832014-07-06 13:29:58 +02002921 if (id->driver_info & BTUSB_INTEL_BOOT)
2922 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2923
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002924 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002925 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002926 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002927 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2928 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002929
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002930 if (id->driver_info & BTUSB_QCA_ROME) {
2931 data->setup_on_usb = btusb_setup_qca;
2932 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2933 }
2934
Carlo Caionedb33c772015-05-14 10:49:09 +02002935#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002936 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002937 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002938
2939 /* Realtek devices lose their updated firmware over suspend,
2940 * but the USB hub doesn't notice any status change.
2941 * Explicitly request a device reset on resume.
2942 */
2943 set_bit(BTUSB_RESET_RESUME, &data->flags);
2944 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002945#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002946
Marcel Holtmann893ba542015-01-28 20:27:34 -08002947 if (id->driver_info & BTUSB_AMP) {
2948 /* AMP controllers do not support SCO packets */
2949 data->isoc = NULL;
2950 } else {
2951 /* Interface numbers are hardcoded in the specification */
2952 data->isoc = usb_ifnum_to_if(data->udev, 1);
2953 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002954
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002955 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002956 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002957
2958 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2959 if (!disable_scofix)
2960 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2961 }
2962
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002963 if (id->driver_info & BTUSB_BROKEN_ISOC)
2964 data->isoc = NULL;
2965
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002966 if (id->driver_info & BTUSB_DIGIANSWER) {
2967 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002968 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002969 }
2970
2971 if (id->driver_info & BTUSB_CSR) {
2972 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002973 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002974
2975 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002976 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002977 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002978
2979 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03002980 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08002981 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002982
2983 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002984 }
2985
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002986 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002987 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002988
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002989 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002990 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2991 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2992 }
2993
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002994 if (id->driver_info & BTUSB_INTEL_BOOT) {
2995 /* A bug in the bootloader causes that interrupt interface is
2996 * only enabled after receiving SetInterface(0, AltSetting=0).
2997 */
2998 err = usb_set_interface(data->udev, 0, 0);
2999 if (err < 0) {
3000 BT_ERR("failed to set interface 0, alt 0 %d", err);
3001 hci_free_dev(hdev);
3002 return err;
3003 }
3004 }
3005
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003006 if (data->isoc) {
3007 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003008 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003009 if (err < 0) {
3010 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003011 return err;
3012 }
3013 }
3014
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003015#ifdef CONFIG_BT_HCIBTUSB_BCM
3016 if (data->diag) {
3017 if (!usb_driver_claim_interface(&btusb_driver,
3018 data->diag, data))
3019 __set_diag_interface(hdev);
3020 else
3021 data->diag = NULL;
3022 }
3023#endif
3024
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003025 err = hci_register_dev(hdev);
3026 if (err < 0) {
3027 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003028 return err;
3029 }
3030
3031 usb_set_intfdata(intf, data);
3032
3033 return 0;
3034}
3035
3036static void btusb_disconnect(struct usb_interface *intf)
3037{
3038 struct btusb_data *data = usb_get_intfdata(intf);
3039 struct hci_dev *hdev;
3040
3041 BT_DBG("intf %p", intf);
3042
3043 if (!data)
3044 return;
3045
3046 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003047 usb_set_intfdata(data->intf, NULL);
3048
3049 if (data->isoc)
3050 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003051
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003052 if (data->diag)
3053 usb_set_intfdata(data->diag, NULL);
3054
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003055 hci_unregister_dev(hdev);
3056
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003057 if (intf == data->intf) {
3058 if (data->isoc)
3059 usb_driver_release_interface(&btusb_driver, data->isoc);
3060 if (data->diag)
3061 usb_driver_release_interface(&btusb_driver, data->diag);
3062 } else if (intf == data->isoc) {
3063 if (data->diag)
3064 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003065 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003066 } else if (intf == data->diag) {
3067 usb_driver_release_interface(&btusb_driver, data->intf);
3068 if (data->isoc)
3069 usb_driver_release_interface(&btusb_driver, data->isoc);
3070 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003071
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003072 hci_free_dev(hdev);
3073}
3074
Oliver Neukum7bee5492009-08-24 23:44:59 +02003075#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003076static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3077{
3078 struct btusb_data *data = usb_get_intfdata(intf);
3079
3080 BT_DBG("intf %p", intf);
3081
3082 if (data->suspend_count++)
3083 return 0;
3084
Oliver Neukum7bee5492009-08-24 23:44:59 +02003085 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003086 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003087 set_bit(BTUSB_SUSPENDING, &data->flags);
3088 spin_unlock_irq(&data->txlock);
3089 } else {
3090 spin_unlock_irq(&data->txlock);
3091 data->suspend_count--;
3092 return -EBUSY;
3093 }
3094
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003095 cancel_work_sync(&data->work);
3096
Oliver Neukum7bee5492009-08-24 23:44:59 +02003097 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003098 usb_kill_anchored_urbs(&data->tx_anchor);
3099
Daniel Drake04b8c812015-05-21 08:23:50 -06003100 /* Optionally request a device reset on resume, but only when
3101 * wakeups are disabled. If wakeups are enabled we assume the
3102 * device will stay powered up throughout suspend.
3103 */
3104 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
3105 !device_may_wakeup(&data->udev->dev))
3106 data->udev->reset_resume = 1;
3107
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003108 return 0;
3109}
3110
Oliver Neukum7bee5492009-08-24 23:44:59 +02003111static void play_deferred(struct btusb_data *data)
3112{
3113 struct urb *urb;
3114 int err;
3115
3116 while ((urb = usb_get_from_anchor(&data->deferred))) {
3117 err = usb_submit_urb(urb, GFP_ATOMIC);
3118 if (err < 0)
3119 break;
3120
3121 data->tx_in_flight++;
3122 }
3123 usb_scuttle_anchored_urbs(&data->deferred);
3124}
3125
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003126static int btusb_resume(struct usb_interface *intf)
3127{
3128 struct btusb_data *data = usb_get_intfdata(intf);
3129 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003130 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003131
3132 BT_DBG("intf %p", intf);
3133
3134 if (--data->suspend_count)
3135 return 0;
3136
3137 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003138 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003139
3140 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3141 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3142 if (err < 0) {
3143 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003144 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003145 }
3146 }
3147
3148 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003149 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3150 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003151 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003152 goto failed;
3153 }
3154
3155 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003156 }
3157
3158 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3159 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3160 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3161 else
3162 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3163 }
3164
Oliver Neukum7bee5492009-08-24 23:44:59 +02003165 spin_lock_irq(&data->txlock);
3166 play_deferred(data);
3167 clear_bit(BTUSB_SUSPENDING, &data->flags);
3168 spin_unlock_irq(&data->txlock);
3169 schedule_work(&data->work);
3170
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003171 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003172
3173failed:
3174 usb_scuttle_anchored_urbs(&data->deferred);
3175done:
3176 spin_lock_irq(&data->txlock);
3177 clear_bit(BTUSB_SUSPENDING, &data->flags);
3178 spin_unlock_irq(&data->txlock);
3179
3180 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003181}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003182#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003183
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003184static struct usb_driver btusb_driver = {
3185 .name = "btusb",
3186 .probe = btusb_probe,
3187 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003188#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003189 .suspend = btusb_suspend,
3190 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003191#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003192 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003193 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003194 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003195};
3196
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003197module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003198
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003199module_param(disable_scofix, bool, 0644);
3200MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3201
3202module_param(force_scofix, bool, 0644);
3203MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3204
3205module_param(reset, bool, 0644);
3206MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3207
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003208MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3209MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3210MODULE_VERSION(VERSION);
3211MODULE_LICENSE("GPL");