blob: 9ed334de34d0f4f376119effe594fc0c95bab0ae [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 Dunn9a5abda2015-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 Tunin7e730c72015-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 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300217 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200218 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800219 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800220 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800221 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200222 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
223 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800224 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530225 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300226 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300227 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530228 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300229 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530230
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800231 /* Atheros AR5BBU12 with sflash firmware */
232 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
233
Michael Gruetzner85d59722012-05-02 22:33:40 +0200234 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530235 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200236 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200237
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000238 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800239 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700240 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
241 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000242
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200243 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100244 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200245 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
246 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200247
248 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100249 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
250 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200251
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200252 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100253 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
254 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200255
256 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100257 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200258
259 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100260 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200261
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100262 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100263 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100264 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200265
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100266 /* Belkin F8T012 and F8T013 devices */
267 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
268 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200269
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100270 /* Asus WL-BTD202 device */
271 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
272
273 /* Kensington Bluetooth USB adapter */
274 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
275
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200276 /* RTX Telecom based adapters with buggy SCO support */
277 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
278 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
279
280 /* CONWISE Technology based adapters with buggy SCO support */
281 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
282
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800283 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300284 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800285
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200286 /* Digianswer devices */
287 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
288 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
289
290 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200291 { USB_DEVICE(0x0a12, 0x0002),
292 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200293
294 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200295 { USB_DEVICE(0x16d3, 0x0002),
296 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200297
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800298 /* Marvell Bluetooth devices */
299 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
300 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
301
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800302 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800303 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700304 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800305 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800306 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700307
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800308 /* Other Intel Bluetooth devices */
309 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
310 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700311
Daniel Drakea2698a92015-04-16 14:09:55 -0600312 /* Realtek Bluetooth devices */
313 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
314 .driver_info = BTUSB_REALTEK },
315
316 /* Additional Realtek 8723AE Bluetooth devices */
317 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
318 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
319
320 /* Additional Realtek 8723BE Bluetooth devices */
321 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
322 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
323 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
324 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
325 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
326
327 /* Additional Realtek 8821AE Bluetooth devices */
328 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
329 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
330 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
331 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
332 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
333
Peter Poklop4481c072015-08-15 20:47:09 +0200334 /* Silicon Wave based devices */
335 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
336
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200337 { } /* Terminating entry */
338};
339
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200340#define BTUSB_MAX_ISOC_FRAMES 10
341
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200342#define BTUSB_INTR_RUNNING 0
343#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200344#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200345#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300346#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800347#define BTUSB_BOOTLOADER 5
348#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800349#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800350#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800351#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600352#define BTUSB_RESET_RESUME 10
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200353#define BTUSB_DIAG_RUNNING 11
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200354
355struct btusb_data {
356 struct hci_dev *hdev;
357 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200358 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200359 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200360 struct usb_interface *diag;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200361
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200362 unsigned long flags;
363
364 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200365 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200366
Marcel Holtmann803b5832014-09-16 08:00:29 +0200367 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200368 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200369 int tx_in_flight;
370 spinlock_t txlock;
371
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372 struct usb_anchor intr_anchor;
373 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200374 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200375 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200376 spinlock_t rxlock;
377
378 struct sk_buff *evt_skb;
379 struct sk_buff *acl_skb;
380 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200381
382 struct usb_endpoint_descriptor *intr_ep;
383 struct usb_endpoint_descriptor *bulk_tx_ep;
384 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200385 struct usb_endpoint_descriptor *isoc_tx_ep;
386 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200387 struct usb_endpoint_descriptor *diag_tx_ep;
388 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200389
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100390 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800391 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100392
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100393 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200394 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100395 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100396
Marcel Holtmann97307f52015-01-12 13:51:10 -0800397 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100398 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000399
400 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200401};
402
Marcel Holtmann803b5832014-09-16 08:00:29 +0200403static inline void btusb_free_frags(struct btusb_data *data)
404{
405 unsigned long flags;
406
407 spin_lock_irqsave(&data->rxlock, flags);
408
409 kfree_skb(data->evt_skb);
410 data->evt_skb = NULL;
411
412 kfree_skb(data->acl_skb);
413 data->acl_skb = NULL;
414
415 kfree_skb(data->sco_skb);
416 data->sco_skb = NULL;
417
418 spin_unlock_irqrestore(&data->rxlock, flags);
419}
420
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200421static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
422{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200423 struct sk_buff *skb;
424 int err = 0;
425
426 spin_lock(&data->rxlock);
427 skb = data->evt_skb;
428
429 while (count) {
430 int len;
431
432 if (!skb) {
433 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
434 if (!skb) {
435 err = -ENOMEM;
436 break;
437 }
438
439 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
440 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
441 }
442
443 len = min_t(uint, bt_cb(skb)->expect, count);
444 memcpy(skb_put(skb, len), buffer, len);
445
446 count -= len;
447 buffer += len;
448 bt_cb(skb)->expect -= len;
449
450 if (skb->len == HCI_EVENT_HDR_SIZE) {
451 /* Complete event header */
452 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
453
454 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
455 kfree_skb(skb);
456 skb = NULL;
457
458 err = -EILSEQ;
459 break;
460 }
461 }
462
463 if (bt_cb(skb)->expect == 0) {
464 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800465 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200466 skb = NULL;
467 }
468 }
469
470 data->evt_skb = skb;
471 spin_unlock(&data->rxlock);
472
473 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200474}
475
476static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
477{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200478 struct sk_buff *skb;
479 int err = 0;
480
481 spin_lock(&data->rxlock);
482 skb = data->acl_skb;
483
484 while (count) {
485 int len;
486
487 if (!skb) {
488 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
489 if (!skb) {
490 err = -ENOMEM;
491 break;
492 }
493
494 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
495 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
496 }
497
498 len = min_t(uint, bt_cb(skb)->expect, count);
499 memcpy(skb_put(skb, len), buffer, len);
500
501 count -= len;
502 buffer += len;
503 bt_cb(skb)->expect -= len;
504
505 if (skb->len == HCI_ACL_HDR_SIZE) {
506 __le16 dlen = hci_acl_hdr(skb)->dlen;
507
508 /* Complete ACL header */
509 bt_cb(skb)->expect = __le16_to_cpu(dlen);
510
511 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
512 kfree_skb(skb);
513 skb = NULL;
514
515 err = -EILSEQ;
516 break;
517 }
518 }
519
520 if (bt_cb(skb)->expect == 0) {
521 /* Complete frame */
522 hci_recv_frame(data->hdev, skb);
523 skb = NULL;
524 }
525 }
526
527 data->acl_skb = skb;
528 spin_unlock(&data->rxlock);
529
530 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200531}
532
533static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
534{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200535 struct sk_buff *skb;
536 int err = 0;
537
538 spin_lock(&data->rxlock);
539 skb = data->sco_skb;
540
541 while (count) {
542 int len;
543
544 if (!skb) {
545 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
546 if (!skb) {
547 err = -ENOMEM;
548 break;
549 }
550
551 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
552 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
553 }
554
555 len = min_t(uint, bt_cb(skb)->expect, count);
556 memcpy(skb_put(skb, len), buffer, len);
557
558 count -= len;
559 buffer += len;
560 bt_cb(skb)->expect -= len;
561
562 if (skb->len == HCI_SCO_HDR_SIZE) {
563 /* Complete SCO header */
564 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
565
566 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
567 kfree_skb(skb);
568 skb = NULL;
569
570 err = -EILSEQ;
571 break;
572 }
573 }
574
575 if (bt_cb(skb)->expect == 0) {
576 /* Complete frame */
577 hci_recv_frame(data->hdev, skb);
578 skb = NULL;
579 }
580 }
581
582 data->sco_skb = skb;
583 spin_unlock(&data->rxlock);
584
585 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200586}
587
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200588static void btusb_intr_complete(struct urb *urb)
589{
590 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100591 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200592 int err;
593
Marcel Holtmann89e75332014-09-16 04:44:50 +0200594 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
595 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200596
597 if (!test_bit(HCI_RUNNING, &hdev->flags))
598 return;
599
600 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200601 hdev->stat.byte_rx += urb->actual_length;
602
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200603 if (btusb_recv_intr(data, urb->transfer_buffer,
604 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605 BT_ERR("%s corrupted event packet", hdev->name);
606 hdev->stat.err_rx++;
607 }
Champion Chen85560c42014-09-06 14:06:08 -0500608 } else if (urb->status == -ENOENT) {
609 /* Avoid suspend failed when usb_kill_urb */
610 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200611 }
612
613 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
614 return;
615
Oliver Neukum7bee5492009-08-24 23:44:59 +0200616 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200617 usb_anchor_urb(urb, &data->intr_anchor);
618
619 err = usb_submit_urb(urb, GFP_ATOMIC);
620 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200621 /* -EPERM: urb is being killed;
622 * -ENODEV: device got disconnected */
623 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100624 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200625 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200626 usb_unanchor_urb(urb);
627 }
628}
629
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100630static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200631{
David Herrmann155961e2012-02-09 21:58:32 +0100632 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200633 struct urb *urb;
634 unsigned char *buf;
635 unsigned int pipe;
636 int err, size;
637
638 BT_DBG("%s", hdev->name);
639
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200640 if (!data->intr_ep)
641 return -ENODEV;
642
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100643 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644 if (!urb)
645 return -ENOMEM;
646
647 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
648
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100649 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200650 if (!buf) {
651 usb_free_urb(urb);
652 return -ENOMEM;
653 }
654
655 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
656
657 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200658 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200659
660 urb->transfer_flags |= URB_FREE_BUFFER;
661
662 usb_anchor_urb(urb, &data->intr_anchor);
663
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100664 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200665 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200666 if (err != -EPERM && err != -ENODEV)
667 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200668 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200669 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200670 }
671
672 usb_free_urb(urb);
673
674 return err;
675}
676
677static void btusb_bulk_complete(struct urb *urb)
678{
679 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100680 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200681 int err;
682
Marcel Holtmann89e75332014-09-16 04:44:50 +0200683 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
684 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200685
686 if (!test_bit(HCI_RUNNING, &hdev->flags))
687 return;
688
689 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200690 hdev->stat.byte_rx += urb->actual_length;
691
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100692 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200693 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200694 BT_ERR("%s corrupted ACL packet", hdev->name);
695 hdev->stat.err_rx++;
696 }
Champion Chen85560c42014-09-06 14:06:08 -0500697 } else if (urb->status == -ENOENT) {
698 /* Avoid suspend failed when usb_kill_urb */
699 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200700 }
701
702 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
703 return;
704
705 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100706 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200707
708 err = usb_submit_urb(urb, GFP_ATOMIC);
709 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200710 /* -EPERM: urb is being killed;
711 * -ENODEV: device got disconnected */
712 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100713 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200714 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200715 usb_unanchor_urb(urb);
716 }
717}
718
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100719static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200720{
David Herrmann155961e2012-02-09 21:58:32 +0100721 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200722 struct urb *urb;
723 unsigned char *buf;
724 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530725 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200726
727 BT_DBG("%s", hdev->name);
728
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200729 if (!data->bulk_rx_ep)
730 return -ENODEV;
731
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100732 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200733 if (!urb)
734 return -ENOMEM;
735
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100736 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200737 if (!buf) {
738 usb_free_urb(urb);
739 return -ENOMEM;
740 }
741
742 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
743
Marcel Holtmann89e75332014-09-16 04:44:50 +0200744 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
745 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200746
747 urb->transfer_flags |= URB_FREE_BUFFER;
748
Oliver Neukum7bee5492009-08-24 23:44:59 +0200749 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200750 usb_anchor_urb(urb, &data->bulk_anchor);
751
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100752 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200753 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200754 if (err != -EPERM && err != -ENODEV)
755 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200756 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200757 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200758 }
759
760 usb_free_urb(urb);
761
762 return err;
763}
764
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200765static void btusb_isoc_complete(struct urb *urb)
766{
767 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100768 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200769 int i, err;
770
Marcel Holtmann89e75332014-09-16 04:44:50 +0200771 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
772 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200773
774 if (!test_bit(HCI_RUNNING, &hdev->flags))
775 return;
776
777 if (urb->status == 0) {
778 for (i = 0; i < urb->number_of_packets; i++) {
779 unsigned int offset = urb->iso_frame_desc[i].offset;
780 unsigned int length = urb->iso_frame_desc[i].actual_length;
781
782 if (urb->iso_frame_desc[i].status)
783 continue;
784
785 hdev->stat.byte_rx += length;
786
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200787 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
788 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200789 BT_ERR("%s corrupted SCO packet", hdev->name);
790 hdev->stat.err_rx++;
791 }
792 }
Champion Chen85560c42014-09-06 14:06:08 -0500793 } else if (urb->status == -ENOENT) {
794 /* Avoid suspend failed when usb_kill_urb */
795 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200796 }
797
798 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
799 return;
800
801 usb_anchor_urb(urb, &data->isoc_anchor);
802
803 err = usb_submit_urb(urb, GFP_ATOMIC);
804 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200805 /* -EPERM: urb is being killed;
806 * -ENODEV: device got disconnected */
807 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100808 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200809 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200810 usb_unanchor_urb(urb);
811 }
812}
813
Jesper Juhl42b16b32011-01-17 00:09:38 +0100814static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200815{
816 int i, offset = 0;
817
818 BT_DBG("len %d mtu %d", len, mtu);
819
820 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
821 i++, offset += mtu, len -= mtu) {
822 urb->iso_frame_desc[i].offset = offset;
823 urb->iso_frame_desc[i].length = mtu;
824 }
825
826 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
827 urb->iso_frame_desc[i].offset = offset;
828 urb->iso_frame_desc[i].length = len;
829 i++;
830 }
831
832 urb->number_of_packets = i;
833}
834
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100835static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200836{
David Herrmann155961e2012-02-09 21:58:32 +0100837 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200838 struct urb *urb;
839 unsigned char *buf;
840 unsigned int pipe;
841 int err, size;
842
843 BT_DBG("%s", hdev->name);
844
845 if (!data->isoc_rx_ep)
846 return -ENODEV;
847
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100848 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200849 if (!urb)
850 return -ENOMEM;
851
852 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
853 BTUSB_MAX_ISOC_FRAMES;
854
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100855 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200856 if (!buf) {
857 usb_free_urb(urb);
858 return -ENOMEM;
859 }
860
861 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
862
Bing Zhaofa0fb932011-12-20 18:19:00 -0800863 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200864 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200865
Marcel Holtmann89e75332014-09-16 04:44:50 +0200866 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200867
868 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200869 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200870
871 usb_anchor_urb(urb, &data->isoc_anchor);
872
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100873 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200874 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200875 if (err != -EPERM && err != -ENODEV)
876 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200877 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200878 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200879 }
880
881 usb_free_urb(urb);
882
883 return err;
884}
885
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200886static void btusb_diag_complete(struct urb *urb)
887{
888 struct hci_dev *hdev = urb->context;
889 struct btusb_data *data = hci_get_drvdata(hdev);
890 int err;
891
892 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
893 urb->actual_length);
894
895 if (urb->status == 0) {
896 struct sk_buff *skb;
897
898 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
899 if (skb) {
900 memcpy(skb_put(skb, urb->actual_length),
901 urb->transfer_buffer, urb->actual_length);
902 hci_recv_diag(hdev, skb);
903 }
904 } else if (urb->status == -ENOENT) {
905 /* Avoid suspend failed when usb_kill_urb */
906 return;
907 }
908
909 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
910 return;
911
912 usb_anchor_urb(urb, &data->diag_anchor);
913 usb_mark_last_busy(data->udev);
914
915 err = usb_submit_urb(urb, GFP_ATOMIC);
916 if (err < 0) {
917 /* -EPERM: urb is being killed;
918 * -ENODEV: device got disconnected */
919 if (err != -EPERM && err != -ENODEV)
920 BT_ERR("%s urb %p failed to resubmit (%d)",
921 hdev->name, urb, -err);
922 usb_unanchor_urb(urb);
923 }
924}
925
926static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
927{
928 struct btusb_data *data = hci_get_drvdata(hdev);
929 struct urb *urb;
930 unsigned char *buf;
931 unsigned int pipe;
932 int err, size = HCI_MAX_FRAME_SIZE;
933
934 BT_DBG("%s", hdev->name);
935
936 if (!data->diag_rx_ep)
937 return -ENODEV;
938
939 urb = usb_alloc_urb(0, mem_flags);
940 if (!urb)
941 return -ENOMEM;
942
943 buf = kmalloc(size, mem_flags);
944 if (!buf) {
945 usb_free_urb(urb);
946 return -ENOMEM;
947 }
948
949 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
950
951 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
952 btusb_diag_complete, hdev);
953
954 urb->transfer_flags |= URB_FREE_BUFFER;
955
956 usb_mark_last_busy(data->udev);
957 usb_anchor_urb(urb, &data->diag_anchor);
958
959 err = usb_submit_urb(urb, mem_flags);
960 if (err < 0) {
961 if (err != -EPERM && err != -ENODEV)
962 BT_ERR("%s urb %p submission failed (%d)",
963 hdev->name, urb, -err);
964 usb_unanchor_urb(urb);
965 }
966
967 usb_free_urb(urb);
968
969 return err;
970}
971
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200972static void btusb_tx_complete(struct urb *urb)
973{
974 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200975 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100976 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200977
Marcel Holtmann89e75332014-09-16 04:44:50 +0200978 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
979 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200980
981 if (!test_bit(HCI_RUNNING, &hdev->flags))
982 goto done;
983
984 if (!urb->status)
985 hdev->stat.byte_tx += urb->transfer_buffer_length;
986 else
987 hdev->stat.err_tx++;
988
989done:
990 spin_lock(&data->txlock);
991 data->tx_in_flight--;
992 spin_unlock(&data->txlock);
993
994 kfree(urb->setup_packet);
995
996 kfree_skb(skb);
997}
998
999static void btusb_isoc_tx_complete(struct urb *urb)
1000{
1001 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001002 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001003
Marcel Holtmann89e75332014-09-16 04:44:50 +02001004 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1005 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001006
1007 if (!test_bit(HCI_RUNNING, &hdev->flags))
1008 goto done;
1009
1010 if (!urb->status)
1011 hdev->stat.byte_tx += urb->transfer_buffer_length;
1012 else
1013 hdev->stat.err_tx++;
1014
1015done:
1016 kfree(urb->setup_packet);
1017
1018 kfree_skb(skb);
1019}
1020
1021static int btusb_open(struct hci_dev *hdev)
1022{
David Herrmann155961e2012-02-09 21:58:32 +01001023 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001024 int err;
1025
1026 BT_DBG("%s", hdev->name);
1027
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001028 /* Patching USB firmware files prior to starting any URBs of HCI path
1029 * It is more safe to use USB bulk channel for downloading USB patch
1030 */
1031 if (data->setup_on_usb) {
1032 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001033 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001034 return err;
1035 }
1036
Oliver Neukum7bee5492009-08-24 23:44:59 +02001037 err = usb_autopm_get_interface(data->intf);
1038 if (err < 0)
1039 return err;
1040
1041 data->intf->needs_remote_wakeup = 1;
1042
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001043 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001044 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001045
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001046 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001047 if (err < 0)
1048 goto failed;
1049
1050 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001051 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001052 usb_kill_anchored_urbs(&data->intr_anchor);
1053 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001054 }
1055
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001056 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1057 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1058
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001059 if (data->diag) {
1060 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1061 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1062 }
1063
Oliver Neukum7bee5492009-08-24 23:44:59 +02001064done:
1065 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001066 return 0;
1067
1068failed:
1069 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001070 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001071 return err;
1072}
1073
Oliver Neukum7bee5492009-08-24 23:44:59 +02001074static void btusb_stop_traffic(struct btusb_data *data)
1075{
1076 usb_kill_anchored_urbs(&data->intr_anchor);
1077 usb_kill_anchored_urbs(&data->bulk_anchor);
1078 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001079 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001080}
1081
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001082static int btusb_close(struct hci_dev *hdev)
1083{
David Herrmann155961e2012-02-09 21:58:32 +01001084 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001085 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001086
1087 BT_DBG("%s", hdev->name);
1088
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001089 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001090 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001091
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001092 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001093 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001094 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001095 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001096
1097 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001098 btusb_free_frags(data);
1099
Oliver Neukum7bee5492009-08-24 23:44:59 +02001100 err = usb_autopm_get_interface(data->intf);
1101 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001102 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001103
1104 data->intf->needs_remote_wakeup = 0;
1105 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001106
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001107failed:
1108 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001109 return 0;
1110}
1111
1112static int btusb_flush(struct hci_dev *hdev)
1113{
David Herrmann155961e2012-02-09 21:58:32 +01001114 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001115
1116 BT_DBG("%s", hdev->name);
1117
1118 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001119 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001120
1121 return 0;
1122}
1123
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001124static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001125{
David Herrmann155961e2012-02-09 21:58:32 +01001126 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001127 struct usb_ctrlrequest *dr;
1128 struct urb *urb;
1129 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001130
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001131 urb = usb_alloc_urb(0, GFP_KERNEL);
1132 if (!urb)
1133 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001134
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001135 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1136 if (!dr) {
1137 usb_free_urb(urb);
1138 return ERR_PTR(-ENOMEM);
1139 }
1140
1141 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001142 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001143 dr->wIndex = 0;
1144 dr->wValue = 0;
1145 dr->wLength = __cpu_to_le16(skb->len);
1146
1147 pipe = usb_sndctrlpipe(data->udev, 0x00);
1148
Marcel Holtmann89e75332014-09-16 04:44:50 +02001149 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001150 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001151
Marcel Holtmann89e75332014-09-16 04:44:50 +02001152 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001153
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001154 return urb;
1155}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001156
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001157static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1158{
1159 struct btusb_data *data = hci_get_drvdata(hdev);
1160 struct urb *urb;
1161 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001162
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001163 if (!data->bulk_tx_ep)
1164 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001165
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001166 urb = usb_alloc_urb(0, GFP_KERNEL);
1167 if (!urb)
1168 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001169
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001170 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001171
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001172 usb_fill_bulk_urb(urb, data->udev, pipe,
1173 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001174
Marcel Holtmann89e75332014-09-16 04:44:50 +02001175 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001176
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001177 return urb;
1178}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001179
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001180static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1181{
1182 struct btusb_data *data = hci_get_drvdata(hdev);
1183 struct urb *urb;
1184 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001185
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001186 if (!data->isoc_tx_ep)
1187 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001188
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001189 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1190 if (!urb)
1191 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001192
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001193 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001194
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001195 usb_fill_int_urb(urb, data->udev, pipe,
1196 skb->data, skb->len, btusb_isoc_tx_complete,
1197 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001198
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001199 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001200
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001201 __fill_isoc_descriptor(urb, skb->len,
1202 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001203
Marcel Holtmann89e75332014-09-16 04:44:50 +02001204 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001205
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001206 return urb;
1207}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001208
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001209static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1210{
1211 struct btusb_data *data = hci_get_drvdata(hdev);
1212 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001213
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001214 usb_anchor_urb(urb, &data->tx_anchor);
1215
Johan Hedberge9753ef2014-09-14 08:49:34 +03001216 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001217 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001218 if (err != -EPERM && err != -ENODEV)
1219 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001220 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001221 kfree(urb->setup_packet);
1222 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001223 } else {
1224 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001225 }
1226
Cong Wang54a8a792011-11-22 09:32:57 +08001227 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001228 return err;
1229}
1230
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001231static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1232{
1233 struct btusb_data *data = hci_get_drvdata(hdev);
1234 unsigned long flags;
1235 bool suspending;
1236
1237 spin_lock_irqsave(&data->txlock, flags);
1238 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1239 if (!suspending)
1240 data->tx_in_flight++;
1241 spin_unlock_irqrestore(&data->txlock, flags);
1242
1243 if (!suspending)
1244 return submit_tx_urb(hdev, urb);
1245
1246 usb_anchor_urb(urb, &data->deferred);
1247 schedule_work(&data->waker);
1248
1249 usb_free_urb(urb);
1250 return 0;
1251}
1252
1253static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1254{
1255 struct urb *urb;
1256
1257 BT_DBG("%s", hdev->name);
1258
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001259 switch (bt_cb(skb)->pkt_type) {
1260 case HCI_COMMAND_PKT:
1261 urb = alloc_ctrl_urb(hdev, skb);
1262 if (IS_ERR(urb))
1263 return PTR_ERR(urb);
1264
1265 hdev->stat.cmd_tx++;
1266 return submit_or_queue_tx_urb(hdev, urb);
1267
1268 case HCI_ACLDATA_PKT:
1269 urb = alloc_bulk_urb(hdev, skb);
1270 if (IS_ERR(urb))
1271 return PTR_ERR(urb);
1272
1273 hdev->stat.acl_tx++;
1274 return submit_or_queue_tx_urb(hdev, urb);
1275
1276 case HCI_SCODATA_PKT:
1277 if (hci_conn_num(hdev, SCO_LINK) < 1)
1278 return -ENODEV;
1279
1280 urb = alloc_isoc_urb(hdev, skb);
1281 if (IS_ERR(urb))
1282 return PTR_ERR(urb);
1283
1284 hdev->stat.sco_tx++;
1285 return submit_tx_urb(hdev, urb);
1286 }
1287
1288 return -EILSEQ;
1289}
1290
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001291static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1292{
David Herrmann155961e2012-02-09 21:58:32 +01001293 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001294
1295 BT_DBG("%s evt %d", hdev->name, evt);
1296
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001297 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1298 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001299 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001300 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001301}
1302
Jesper Juhl42b16b32011-01-17 00:09:38 +01001303static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001304{
David Herrmann155961e2012-02-09 21:58:32 +01001305 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001306 struct usb_interface *intf = data->isoc;
1307 struct usb_endpoint_descriptor *ep_desc;
1308 int i, err;
1309
1310 if (!data->isoc)
1311 return -ENODEV;
1312
1313 err = usb_set_interface(data->udev, 1, altsetting);
1314 if (err < 0) {
1315 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1316 return err;
1317 }
1318
1319 data->isoc_altsetting = altsetting;
1320
1321 data->isoc_tx_ep = NULL;
1322 data->isoc_rx_ep = NULL;
1323
1324 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1325 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1326
1327 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1328 data->isoc_tx_ep = ep_desc;
1329 continue;
1330 }
1331
1332 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1333 data->isoc_rx_ep = ep_desc;
1334 continue;
1335 }
1336 }
1337
1338 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1339 BT_ERR("%s invalid SCO descriptors", hdev->name);
1340 return -ENODEV;
1341 }
1342
1343 return 0;
1344}
1345
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001346static void btusb_work(struct work_struct *work)
1347{
1348 struct btusb_data *data = container_of(work, struct btusb_data, work);
1349 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001350 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001351 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001352
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001353 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001354 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001355 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001356 if (err < 0) {
1357 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1358 usb_kill_anchored_urbs(&data->isoc_anchor);
1359 return;
1360 }
1361
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001362 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001363 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001364
1365 if (hdev->voice_setting & 0x0020) {
1366 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001367
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001368 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001369 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001370 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001371 }
1372
1373 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001374 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1375 usb_kill_anchored_urbs(&data->isoc_anchor);
1376
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001377 /* When isochronous alternate setting needs to be
1378 * changed, because SCO connection has been added
1379 * or removed, a packet fragment may be left in the
1380 * reassembling state. This could lead to wrongly
1381 * assembled fragments.
1382 *
1383 * Clear outstanding fragment when selecting a new
1384 * alternate setting.
1385 */
1386 spin_lock(&data->rxlock);
1387 kfree_skb(data->sco_skb);
1388 data->sco_skb = NULL;
1389 spin_unlock(&data->rxlock);
1390
Mikel Astizf4001d22012-04-11 08:48:51 +02001391 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001392 return;
1393 }
1394
1395 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001396 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001397 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1398 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001399 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001400 }
1401 } else {
1402 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1403 usb_kill_anchored_urbs(&data->isoc_anchor);
1404
1405 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001406 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001407 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001408 }
1409}
1410
Oliver Neukum7bee5492009-08-24 23:44:59 +02001411static void btusb_waker(struct work_struct *work)
1412{
1413 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1414 int err;
1415
1416 err = usb_autopm_get_interface(data->intf);
1417 if (err < 0)
1418 return;
1419
1420 usb_autopm_put_interface(data->intf);
1421}
1422
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001423static int btusb_setup_bcm92035(struct hci_dev *hdev)
1424{
1425 struct sk_buff *skb;
1426 u8 val = 0x00;
1427
1428 BT_DBG("%s", hdev->name);
1429
1430 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1431 if (IS_ERR(skb))
1432 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1433 else
1434 kfree_skb(skb);
1435
1436 return 0;
1437}
1438
Marcel Holtmann81cac642014-01-03 03:02:36 -08001439static int btusb_setup_csr(struct hci_dev *hdev)
1440{
1441 struct hci_rp_read_local_version *rp;
1442 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001443
1444 BT_DBG("%s", hdev->name);
1445
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001446 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1447 HCI_INIT_TIMEOUT);
1448 if (IS_ERR(skb)) {
1449 int err = PTR_ERR(skb);
1450 BT_ERR("%s: CSR: Local version failed (%d)", hdev->name, err);
1451 return err;
1452 }
1453
1454 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1455 BT_ERR("%s: CSR: Local version length mismatch", hdev->name);
1456 kfree_skb(skb);
1457 return -EIO;
1458 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001459
Marcel Holtmann89e75332014-09-16 04:44:50 +02001460 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001461
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001462 /* Detect controllers which aren't real CSR ones. */
1463 if (le16_to_cpu(rp->manufacturer) != 10 ||
1464 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001465 /* Clear the reset quirk since this is not an actual
1466 * early Bluetooth 1.1 device from CSR.
1467 */
1468 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001469
Marcel Holtmann9641d342015-06-07 10:01:01 +02001470 /* These fake CSR controllers have all a broken
1471 * stored link key handling and so just disable it.
1472 */
1473 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001474 }
1475
Marcel Holtmann81cac642014-01-03 03:02:36 -08001476 kfree_skb(skb);
1477
Marcel Holtmann9641d342015-06-07 10:01:01 +02001478 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001479}
1480
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001481static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001482 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001483{
1484 const struct firmware *fw;
1485 char fwname[64];
1486 int ret;
1487
1488 snprintf(fwname, sizeof(fwname),
1489 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1490 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1491 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1492 ver->fw_build_ww, ver->fw_build_yy);
1493
1494 ret = request_firmware(&fw, fwname, &hdev->dev);
1495 if (ret < 0) {
1496 if (ret == -EINVAL) {
1497 BT_ERR("%s Intel firmware file request failed (%d)",
1498 hdev->name, ret);
1499 return NULL;
1500 }
1501
1502 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1503 hdev->name, fwname, ret);
1504
1505 /* If the correct firmware patch file is not found, use the
1506 * default firmware patch file instead
1507 */
1508 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1509 ver->hw_platform, ver->hw_variant);
1510 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1511 BT_ERR("%s failed to open default Intel fw file: %s",
1512 hdev->name, fwname);
1513 return NULL;
1514 }
1515 }
1516
1517 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1518
1519 return fw;
1520}
1521
1522static int btusb_setup_intel_patching(struct hci_dev *hdev,
1523 const struct firmware *fw,
1524 const u8 **fw_ptr, int *disable_patch)
1525{
1526 struct sk_buff *skb;
1527 struct hci_command_hdr *cmd;
1528 const u8 *cmd_param;
1529 struct hci_event_hdr *evt = NULL;
1530 const u8 *evt_param = NULL;
1531 int remain = fw->size - (*fw_ptr - fw->data);
1532
1533 /* The first byte indicates the types of the patch command or event.
1534 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1535 * in the current firmware buffer doesn't start with 0x01 or
1536 * the size of remain buffer is smaller than HCI command header,
1537 * the firmware file is corrupted and it should stop the patching
1538 * process.
1539 */
1540 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1541 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1542 return -EINVAL;
1543 }
1544 (*fw_ptr)++;
1545 remain--;
1546
1547 cmd = (struct hci_command_hdr *)(*fw_ptr);
1548 *fw_ptr += sizeof(*cmd);
1549 remain -= sizeof(*cmd);
1550
1551 /* Ensure that the remain firmware data is long enough than the length
1552 * of command parameter. If not, the firmware file is corrupted.
1553 */
1554 if (remain < cmd->plen) {
1555 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1556 return -EFAULT;
1557 }
1558
1559 /* If there is a command that loads a patch in the firmware
1560 * file, then enable the patch upon success, otherwise just
1561 * disable the manufacturer mode, for example patch activation
1562 * is not required when the default firmware patch file is used
1563 * because there are no patch data to load.
1564 */
1565 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1566 *disable_patch = 0;
1567
1568 cmd_param = *fw_ptr;
1569 *fw_ptr += cmd->plen;
1570 remain -= cmd->plen;
1571
1572 /* This reads the expected events when the above command is sent to the
1573 * device. Some vendor commands expects more than one events, for
1574 * example command status event followed by vendor specific event.
1575 * For this case, it only keeps the last expected event. so the command
1576 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1577 * last expected event.
1578 */
1579 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1580 (*fw_ptr)++;
1581 remain--;
1582
1583 evt = (struct hci_event_hdr *)(*fw_ptr);
1584 *fw_ptr += sizeof(*evt);
1585 remain -= sizeof(*evt);
1586
1587 if (remain < evt->plen) {
1588 BT_ERR("%s Intel fw corrupted: invalid evt len",
1589 hdev->name);
1590 return -EFAULT;
1591 }
1592
1593 evt_param = *fw_ptr;
1594 *fw_ptr += evt->plen;
1595 remain -= evt->plen;
1596 }
1597
1598 /* Every HCI commands in the firmware file has its correspond event.
1599 * If event is not found or remain is smaller than zero, the firmware
1600 * file is corrupted.
1601 */
1602 if (!evt || !evt_param || remain < 0) {
1603 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1604 return -EFAULT;
1605 }
1606
1607 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1608 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1609 if (IS_ERR(skb)) {
1610 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1611 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001612 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001613 }
1614
1615 /* It ensures that the returned event matches the event data read from
1616 * the firmware file. At fist, it checks the length and then
1617 * the contents of the event.
1618 */
1619 if (skb->len != evt->plen) {
1620 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1621 le16_to_cpu(cmd->opcode));
1622 kfree_skb(skb);
1623 return -EFAULT;
1624 }
1625
1626 if (memcmp(skb->data, evt_param, evt->plen)) {
1627 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1628 hdev->name, le16_to_cpu(cmd->opcode));
1629 kfree_skb(skb);
1630 return -EFAULT;
1631 }
1632 kfree_skb(skb);
1633
1634 return 0;
1635}
1636
1637static int btusb_setup_intel(struct hci_dev *hdev)
1638{
1639 struct sk_buff *skb;
1640 const struct firmware *fw;
1641 const u8 *fw_ptr;
1642 int disable_patch;
1643 struct intel_version *ver;
1644
1645 const u8 mfg_enable[] = { 0x01, 0x00 };
1646 const u8 mfg_disable[] = { 0x00, 0x00 };
1647 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1648 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1649
1650 BT_DBG("%s", hdev->name);
1651
1652 /* The controller has a bug with the first HCI command sent to it
1653 * returning number of completed commands as zero. This would stall the
1654 * command processing in the Bluetooth core.
1655 *
1656 * As a workaround, send HCI Reset command first which will reset the
1657 * number of completed commands and allow normal command processing
1658 * from now on.
1659 */
1660 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1661 if (IS_ERR(skb)) {
1662 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1663 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001664 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001665 }
1666 kfree_skb(skb);
1667
1668 /* Read Intel specific controller version first to allow selection of
1669 * which firmware file to load.
1670 *
1671 * The returned information are hardware variant and revision plus
1672 * firmware variant, revision and build number.
1673 */
1674 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1675 if (IS_ERR(skb)) {
1676 BT_ERR("%s reading Intel fw version command failed (%ld)",
1677 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001678 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001679 }
1680
1681 if (skb->len != sizeof(*ver)) {
1682 BT_ERR("%s Intel version event length mismatch", hdev->name);
1683 kfree_skb(skb);
1684 return -EIO;
1685 }
1686
1687 ver = (struct intel_version *)skb->data;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001688
1689 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1690 hdev->name, ver->hw_platform, ver->hw_variant,
1691 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1692 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1693 ver->fw_patch_num);
1694
1695 /* fw_patch_num indicates the version of patch the device currently
1696 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001697 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001698 */
1699 if (ver->fw_patch_num) {
1700 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1701 hdev->name, ver->fw_patch_num);
1702 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001703 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001704 return 0;
1705 }
1706
1707 /* Opens the firmware patch file based on the firmware version read
1708 * from the controller. If it fails to open the matching firmware
1709 * patch file, it tries to open the default firmware patch file.
1710 * If no patch file is found, allow the device to operate without
1711 * a patch.
1712 */
1713 fw = btusb_setup_intel_get_fw(hdev, ver);
1714 if (!fw) {
1715 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001716 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001717 return 0;
1718 }
1719 fw_ptr = fw->data;
1720
Marcel Holtmannecffc802015-06-07 09:42:19 +02001721 kfree_skb(skb);
1722
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001723 /* This Intel specific command enables the manufacturer mode of the
1724 * controller.
1725 *
1726 * Only while this mode is enabled, the driver can download the
1727 * firmware patch data and configuration parameters.
1728 */
1729 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1730 if (IS_ERR(skb)) {
1731 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1732 hdev->name, PTR_ERR(skb));
1733 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001734 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001735 }
1736
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001737 kfree_skb(skb);
1738
1739 disable_patch = 1;
1740
1741 /* The firmware data file consists of list of Intel specific HCI
1742 * commands and its expected events. The first byte indicates the
1743 * type of the message, either HCI command or HCI event.
1744 *
1745 * It reads the command and its expected event from the firmware file,
1746 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1747 * the returned event is compared with the event read from the firmware
1748 * file and it will continue until all the messages are downloaded to
1749 * the controller.
1750 *
1751 * Once the firmware patching is completed successfully,
1752 * the manufacturer mode is disabled with reset and activating the
1753 * downloaded patch.
1754 *
1755 * If the firmware patching fails, the manufacturer mode is
1756 * disabled with reset and deactivating the patch.
1757 *
1758 * If the default patch file is used, no reset is done when disabling
1759 * the manufacturer.
1760 */
1761 while (fw->size > fw_ptr - fw->data) {
1762 int ret;
1763
1764 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1765 &disable_patch);
1766 if (ret < 0)
1767 goto exit_mfg_deactivate;
1768 }
1769
1770 release_firmware(fw);
1771
1772 if (disable_patch)
1773 goto exit_mfg_disable;
1774
1775 /* Patching completed successfully and disable the manufacturer mode
1776 * with reset and activate the downloaded firmware patches.
1777 */
1778 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1779 mfg_reset_activate, HCI_INIT_TIMEOUT);
1780 if (IS_ERR(skb)) {
1781 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1782 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001783 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001784 }
1785 kfree_skb(skb);
1786
1787 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1788 hdev->name);
1789
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001790 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001791 return 0;
1792
1793exit_mfg_disable:
1794 /* Disable the manufacturer mode without reset */
1795 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1796 HCI_INIT_TIMEOUT);
1797 if (IS_ERR(skb)) {
1798 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1799 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001800 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001801 }
1802 kfree_skb(skb);
1803
1804 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001805
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001806 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001807 return 0;
1808
1809exit_mfg_deactivate:
1810 release_firmware(fw);
1811
1812 /* Patching failed. Disable the manufacturer mode with reset and
1813 * deactivate the downloaded firmware patches.
1814 */
1815 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1816 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1817 if (IS_ERR(skb)) {
1818 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1819 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001820 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001821 }
1822 kfree_skb(skb);
1823
1824 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1825 hdev->name);
1826
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001827 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001828 return 0;
1829}
1830
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001831static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1832{
1833 struct sk_buff *skb;
1834 struct hci_event_hdr *hdr;
1835 struct hci_ev_cmd_complete *evt;
1836
1837 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1838 if (!skb)
1839 return -ENOMEM;
1840
1841 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1842 hdr->evt = HCI_EV_CMD_COMPLETE;
1843 hdr->plen = sizeof(*evt) + 1;
1844
1845 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1846 evt->ncmd = 0x01;
1847 evt->opcode = cpu_to_le16(opcode);
1848
1849 *skb_put(skb, 1) = 0x00;
1850
1851 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1852
1853 return hci_recv_frame(hdev, skb);
1854}
1855
1856static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1857 int count)
1858{
1859 /* When the device is in bootloader mode, then it can send
1860 * events via the bulk endpoint. These events are treated the
1861 * same way as the ones received from the interrupt endpoint.
1862 */
1863 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1864 return btusb_recv_intr(data, buffer, count);
1865
1866 return btusb_recv_bulk(data, buffer, count);
1867}
1868
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001869static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1870 unsigned int len)
1871{
1872 const struct intel_bootup *evt = ptr;
1873
1874 if (len != sizeof(*evt))
1875 return;
1876
1877 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1878 smp_mb__after_atomic();
1879 wake_up_bit(&data->flags, BTUSB_BOOTING);
1880 }
1881}
1882
1883static void btusb_intel_secure_send_result(struct btusb_data *data,
1884 const void *ptr, unsigned int len)
1885{
1886 const struct intel_secure_send_result *evt = ptr;
1887
1888 if (len != sizeof(*evt))
1889 return;
1890
1891 if (evt->result)
1892 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1893
1894 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1895 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1896 smp_mb__after_atomic();
1897 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1898 }
1899}
1900
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001901static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1902{
1903 struct btusb_data *data = hci_get_drvdata(hdev);
1904
1905 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1906 struct hci_event_hdr *hdr = (void *)skb->data;
1907
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001908 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1909 hdr->plen > 0) {
1910 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1911 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001912
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001913 switch (skb->data[2]) {
1914 case 0x02:
1915 /* When switching to the operational firmware
1916 * the device sends a vendor specific event
1917 * indicating that the bootup completed.
1918 */
1919 btusb_intel_bootup(data, ptr, len);
1920 break;
1921 case 0x06:
1922 /* When the firmware loading completes the
1923 * device sends out a vendor specific event
1924 * indicating the result of the firmware
1925 * loading.
1926 */
1927 btusb_intel_secure_send_result(data, ptr, len);
1928 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001929 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001930 }
1931 }
1932
1933 return hci_recv_frame(hdev, skb);
1934}
1935
1936static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1937{
1938 struct btusb_data *data = hci_get_drvdata(hdev);
1939 struct urb *urb;
1940
1941 BT_DBG("%s", hdev->name);
1942
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001943 switch (bt_cb(skb)->pkt_type) {
1944 case HCI_COMMAND_PKT:
1945 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1946 struct hci_command_hdr *cmd = (void *)skb->data;
1947 __u16 opcode = le16_to_cpu(cmd->opcode);
1948
1949 /* When in bootloader mode and the command 0xfc09
1950 * is received, it needs to be send down the
1951 * bulk endpoint. So allocate a bulk URB instead.
1952 */
1953 if (opcode == 0xfc09)
1954 urb = alloc_bulk_urb(hdev, skb);
1955 else
1956 urb = alloc_ctrl_urb(hdev, skb);
1957
1958 /* When the 0xfc01 command is issued to boot into
1959 * the operational firmware, it will actually not
1960 * send a command complete event. To keep the flow
1961 * control working inject that event here.
1962 */
1963 if (opcode == 0xfc01)
1964 inject_cmd_complete(hdev, opcode);
1965 } else {
1966 urb = alloc_ctrl_urb(hdev, skb);
1967 }
1968 if (IS_ERR(urb))
1969 return PTR_ERR(urb);
1970
1971 hdev->stat.cmd_tx++;
1972 return submit_or_queue_tx_urb(hdev, urb);
1973
1974 case HCI_ACLDATA_PKT:
1975 urb = alloc_bulk_urb(hdev, skb);
1976 if (IS_ERR(urb))
1977 return PTR_ERR(urb);
1978
1979 hdev->stat.acl_tx++;
1980 return submit_or_queue_tx_urb(hdev, urb);
1981
1982 case HCI_SCODATA_PKT:
1983 if (hci_conn_num(hdev, SCO_LINK) < 1)
1984 return -ENODEV;
1985
1986 urb = alloc_isoc_urb(hdev, skb);
1987 if (IS_ERR(urb))
1988 return PTR_ERR(urb);
1989
1990 hdev->stat.sco_tx++;
1991 return submit_tx_urb(hdev, urb);
1992 }
1993
1994 return -EILSEQ;
1995}
1996
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001997static int btusb_setup_intel_new(struct hci_dev *hdev)
1998{
1999 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
2000 0x00, 0x08, 0x04, 0x00 };
2001 struct btusb_data *data = hci_get_drvdata(hdev);
2002 struct sk_buff *skb;
2003 struct intel_version *ver;
2004 struct intel_boot_params *params;
2005 const struct firmware *fw;
2006 const u8 *fw_ptr;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002007 u32 frag_len;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002008 char fwname[64];
2009 ktime_t calltime, delta, rettime;
2010 unsigned long long duration;
2011 int err;
2012
2013 BT_DBG("%s", hdev->name);
2014
2015 calltime = ktime_get();
2016
2017 /* Read the Intel version information to determine if the device
2018 * is in bootloader mode or if it already has operational firmware
2019 * loaded.
2020 */
2021 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
2022 if (IS_ERR(skb)) {
2023 BT_ERR("%s: Reading Intel version information failed (%ld)",
2024 hdev->name, PTR_ERR(skb));
2025 return PTR_ERR(skb);
2026 }
2027
2028 if (skb->len != sizeof(*ver)) {
2029 BT_ERR("%s: Intel version event size mismatch", hdev->name);
2030 kfree_skb(skb);
2031 return -EILSEQ;
2032 }
2033
2034 ver = (struct intel_version *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002035
2036 /* The hardware platform number has a fixed value of 0x37 and
2037 * for now only accept this single value.
2038 */
2039 if (ver->hw_platform != 0x37) {
2040 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2041 hdev->name, ver->hw_platform);
2042 kfree_skb(skb);
2043 return -EINVAL;
2044 }
2045
2046 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
2047 * supported by this firmware loading method. This check has been
2048 * put in place to ensure correct forward compatibility options
2049 * when newer hardware variants come along.
2050 */
2051 if (ver->hw_variant != 0x0b) {
2052 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2053 hdev->name, ver->hw_variant);
2054 kfree_skb(skb);
2055 return -EINVAL;
2056 }
2057
Marcel Holtmann7feb99e2015-07-05 15:02:07 +02002058 btintel_version_info(hdev, ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002059
2060 /* The firmware variant determines if the device is in bootloader
2061 * mode or is running operational firmware. The value 0x06 identifies
2062 * the bootloader and the value 0x23 identifies the operational
2063 * firmware.
2064 *
2065 * When the operational firmware is already present, then only
2066 * the check for valid Bluetooth device address is needed. This
2067 * determines if the device will be added as configured or
2068 * unconfigured controller.
2069 *
2070 * It is not possible to use the Secure Boot Parameters in this
2071 * case since that command is only available in bootloader mode.
2072 */
2073 if (ver->fw_variant == 0x23) {
2074 kfree_skb(skb);
2075 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002076 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002077 return 0;
2078 }
2079
2080 /* If the device is not in bootloader mode, then the only possible
2081 * choice is to return an error and abort the device initialization.
2082 */
2083 if (ver->fw_variant != 0x06) {
2084 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2085 hdev->name, ver->fw_variant);
2086 kfree_skb(skb);
2087 return -ENODEV;
2088 }
2089
2090 kfree_skb(skb);
2091
2092 /* Read the secure boot parameters to identify the operating
2093 * details of the bootloader.
2094 */
2095 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2096 if (IS_ERR(skb)) {
2097 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2098 hdev->name, PTR_ERR(skb));
2099 return PTR_ERR(skb);
2100 }
2101
2102 if (skb->len != sizeof(*params)) {
2103 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2104 kfree_skb(skb);
2105 return -EILSEQ;
2106 }
2107
2108 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002109
2110 BT_INFO("%s: Device revision is %u", hdev->name,
2111 le16_to_cpu(params->dev_revid));
2112
2113 BT_INFO("%s: Secure boot is %s", hdev->name,
2114 params->secure_boot ? "enabled" : "disabled");
2115
Marcel Holtmann2220994e2015-10-13 13:54:55 +02002116 BT_INFO("%s: OTP lock is %s", hdev->name,
2117 params->otp_lock ? "enabled" : "disabled");
2118
2119 BT_INFO("%s: API lock is %s", hdev->name,
2120 params->api_lock ? "enabled" : "disabled");
2121
2122 BT_INFO("%s: Debug lock is %s", hdev->name,
2123 params->debug_lock ? "enabled" : "disabled");
2124
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002125 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2126 params->min_fw_build_nn, params->min_fw_build_cw,
2127 2000 + params->min_fw_build_yy);
2128
2129 /* It is required that every single firmware fragment is acknowledged
2130 * with a command complete event. If the boot parameters indicate
2131 * that this bootloader does not send them, then abort the setup.
2132 */
2133 if (params->limited_cce != 0x00) {
2134 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2135 hdev->name, params->limited_cce);
2136 kfree_skb(skb);
2137 return -EINVAL;
2138 }
2139
2140 /* If the OTP has no valid Bluetooth device address, then there will
2141 * also be no valid address for the operational firmware.
2142 */
2143 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2144 BT_INFO("%s: No device address configured", hdev->name);
2145 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2146 }
2147
2148 /* With this Intel bootloader only the hardware variant and device
2149 * revision information are used to select the right firmware.
2150 *
2151 * Currently this bootloader support is limited to hardware variant
2152 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2153 */
2154 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2155 le16_to_cpu(params->dev_revid));
2156
2157 err = request_firmware(&fw, fwname, &hdev->dev);
2158 if (err < 0) {
2159 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2160 hdev->name, err);
2161 kfree_skb(skb);
2162 return err;
2163 }
2164
2165 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2166
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002167 /* Save the DDC file name for later use to apply once the firmware
2168 * downloading is done.
2169 */
2170 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc",
2171 le16_to_cpu(params->dev_revid));
2172
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002173 kfree_skb(skb);
2174
2175 if (fw->size < 644) {
2176 BT_ERR("%s: Invalid size of firmware file (%zu)",
2177 hdev->name, fw->size);
2178 err = -EBADF;
2179 goto done;
2180 }
2181
2182 set_bit(BTUSB_DOWNLOADING, &data->flags);
2183
2184 /* Start the firmware download transaction with the Init fragment
2185 * represented by the 128 bytes of CSS header.
2186 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002187 err = btintel_secure_send(hdev, 0x00, 128, fw->data);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002188 if (err < 0) {
2189 BT_ERR("%s: Failed to send firmware header (%d)",
2190 hdev->name, err);
2191 goto done;
2192 }
2193
2194 /* Send the 256 bytes of public key information from the firmware
2195 * as the PKey fragment.
2196 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002197 err = btintel_secure_send(hdev, 0x03, 256, fw->data + 128);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002198 if (err < 0) {
2199 BT_ERR("%s: Failed to send firmware public key (%d)",
2200 hdev->name, err);
2201 goto done;
2202 }
2203
2204 /* Send the 256 bytes of signature information from the firmware
2205 * as the Sign fragment.
2206 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002207 err = btintel_secure_send(hdev, 0x02, 256, fw->data + 388);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002208 if (err < 0) {
2209 BT_ERR("%s: Failed to send firmware signature (%d)",
2210 hdev->name, err);
2211 goto done;
2212 }
2213
2214 fw_ptr = fw->data + 644;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002215 frag_len = 0;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002216
2217 while (fw_ptr - fw->data < fw->size) {
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002218 struct hci_command_hdr *cmd = (void *)(fw_ptr + frag_len);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002219
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002220 frag_len += sizeof(*cmd) + cmd->plen;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002221
Minjune Kim5075eda2015-08-27 13:21:52 +09002222 /* The parameter length of the secure send command requires
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002223 * a 4 byte alignment. It happens so that the firmware file
2224 * contains proper Intel_NOP commands to align the fragments
2225 * as needed.
2226 *
2227 * Send set of commands with 4 byte alignment from the
2228 * firmware data buffer as a single Data fragement.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002229 */
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002230 if (!(frag_len % 4)) {
Marcel Holtmann09df1232015-07-05 14:55:36 +02002231 err = btintel_secure_send(hdev, 0x01, frag_len, fw_ptr);
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002232 if (err < 0) {
2233 BT_ERR("%s: Failed to send firmware data (%d)",
2234 hdev->name, err);
2235 goto done;
2236 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002237
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002238 fw_ptr += frag_len;
2239 frag_len = 0;
2240 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002241 }
2242
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002243 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2244
Johan Hedberga087a982015-01-30 10:58:54 +02002245 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2246
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002247 /* Before switching the device into operational mode and with that
2248 * booting the loaded firmware, wait for the bootloader notification
2249 * that all fragments have been successfully received.
2250 *
Johan Hedberga087a982015-01-30 10:58:54 +02002251 * When the event processing receives the notification, then the
2252 * BTUSB_DOWNLOADING flag will be cleared.
2253 *
2254 * The firmware loading should not take longer than 5 seconds
2255 * and thus just timeout if that happens and fail the setup
2256 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002257 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002258 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2259 TASK_INTERRUPTIBLE,
2260 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002261 if (err == 1) {
2262 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2263 err = -EINTR;
2264 goto done;
2265 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002266
Johan Hedberga087a982015-01-30 10:58:54 +02002267 if (err) {
2268 BT_ERR("%s: Firmware loading timeout", hdev->name);
2269 err = -ETIMEDOUT;
2270 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002271 }
2272
2273 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2274 BT_ERR("%s: Firmware loading failed", hdev->name);
2275 err = -ENOEXEC;
2276 goto done;
2277 }
2278
2279 rettime = ktime_get();
2280 delta = ktime_sub(rettime, calltime);
2281 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2282
2283 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2284
2285done:
2286 release_firmware(fw);
2287
2288 if (err < 0)
2289 return err;
2290
2291 calltime = ktime_get();
2292
2293 set_bit(BTUSB_BOOTING, &data->flags);
2294
2295 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2296 HCI_INIT_TIMEOUT);
2297 if (IS_ERR(skb))
2298 return PTR_ERR(skb);
2299
2300 kfree_skb(skb);
2301
2302 /* The bootloader will not indicate when the device is ready. This
2303 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002304 *
2305 * Booting into operational firmware should not take longer than
2306 * 1 second. However if that happens, then just fail the setup
2307 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002308 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002309 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002310
Johan Hedberg129a7692015-02-14 09:33:35 +02002311 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2312 TASK_INTERRUPTIBLE,
2313 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002314
Johan Hedbergfad70972015-01-30 10:58:55 +02002315 if (err == 1) {
2316 BT_ERR("%s: Device boot interrupted", hdev->name);
2317 return -EINTR;
2318 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002319
Johan Hedbergfad70972015-01-30 10:58:55 +02002320 if (err) {
2321 BT_ERR("%s: Device boot timeout", hdev->name);
2322 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002323 }
2324
2325 rettime = ktime_get();
2326 delta = ktime_sub(rettime, calltime);
2327 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2328
2329 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2330
2331 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2332
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002333 /* Once the device is running in operational mode, it needs to apply
2334 * the device configuration (DDC) parameters.
2335 *
2336 * The device can work without DDC parameters, so even if it fails
2337 * to load the file, no need to fail the setup.
2338 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002339 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002340
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002341 return 0;
2342}
2343
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002344static int btusb_shutdown_intel(struct hci_dev *hdev)
2345{
2346 struct sk_buff *skb;
2347 long ret;
2348
2349 /* Some platforms have an issue with BT LED when the interface is
2350 * down or BT radio is turned off, which takes 5 seconds to BT LED
2351 * goes off. This command turns off the BT LED immediately.
2352 */
2353 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2354 if (IS_ERR(skb)) {
2355 ret = PTR_ERR(skb);
2356 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2357 hdev->name, ret);
2358 return ret;
2359 }
2360 kfree_skb(skb);
2361
2362 return 0;
2363}
2364
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002365static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2366 const bdaddr_t *bdaddr)
2367{
2368 struct sk_buff *skb;
2369 u8 buf[8];
2370 long ret;
2371
2372 buf[0] = 0xfe;
2373 buf[1] = sizeof(bdaddr_t);
2374 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2375
2376 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2377 if (IS_ERR(skb)) {
2378 ret = PTR_ERR(skb);
2379 BT_ERR("%s: changing Marvell device address failed (%ld)",
2380 hdev->name, ret);
2381 return ret;
2382 }
2383 kfree_skb(skb);
2384
2385 return 0;
2386}
2387
Toshi Kikuchi58592232014-12-12 10:58:05 -08002388static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2389 const bdaddr_t *bdaddr)
2390{
2391 struct sk_buff *skb;
2392 u8 buf[10];
2393 long ret;
2394
2395 buf[0] = 0x01;
2396 buf[1] = 0x01;
2397 buf[2] = 0x00;
2398 buf[3] = sizeof(bdaddr_t);
2399 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2400
2401 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2402 if (IS_ERR(skb)) {
2403 ret = PTR_ERR(skb);
2404 BT_ERR("%s: Change address command failed (%ld)",
2405 hdev->name, ret);
2406 return ret;
2407 }
2408 kfree_skb(skb);
2409
2410 return 0;
2411}
2412
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002413#define QCA_DFU_PACKET_LEN 4096
2414
2415#define QCA_GET_TARGET_VERSION 0x09
2416#define QCA_CHECK_STATUS 0x05
2417#define QCA_DFU_DOWNLOAD 0x01
2418
2419#define QCA_SYSCFG_UPDATED 0x40
2420#define QCA_PATCH_UPDATED 0x80
2421#define QCA_DFU_TIMEOUT 3000
2422
2423struct qca_version {
2424 __le32 rom_version;
2425 __le32 patch_version;
2426 __le32 ram_version;
2427 __le32 ref_clock;
2428 __u8 reserved[4];
2429} __packed;
2430
2431struct qca_rampatch_version {
2432 __le16 rom_version;
2433 __le16 patch_version;
2434} __packed;
2435
2436struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002437 u32 rom_version;
2438 u8 rampatch_hdr; /* length of header in rampatch */
2439 u8 nvm_hdr; /* length of header in NVM */
2440 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002441};
2442
2443static const struct qca_device_info qca_devices_table[] = {
2444 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2445 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002446 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002447 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2448 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2449 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2450};
2451
2452static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2453 void *data, u16 size)
2454{
2455 struct btusb_data *btdata = hci_get_drvdata(hdev);
2456 struct usb_device *udev = btdata->udev;
2457 int pipe, err;
2458 u8 *buf;
2459
2460 buf = kmalloc(size, GFP_KERNEL);
2461 if (!buf)
2462 return -ENOMEM;
2463
2464 /* Found some of USB hosts have IOT issues with ours so that we should
2465 * not wait until HCI layer is ready.
2466 */
2467 pipe = usb_rcvctrlpipe(udev, 0);
2468 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2469 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2470 if (err < 0) {
2471 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2472 goto done;
2473 }
2474
2475 memcpy(data, buf, size);
2476
2477done:
2478 kfree(buf);
2479
2480 return err;
2481}
2482
2483static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2484 const struct firmware *firmware,
2485 size_t hdr_size)
2486{
2487 struct btusb_data *btdata = hci_get_drvdata(hdev);
2488 struct usb_device *udev = btdata->udev;
2489 size_t count, size, sent = 0;
2490 int pipe, len, err;
2491 u8 *buf;
2492
2493 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2494 if (!buf)
2495 return -ENOMEM;
2496
2497 count = firmware->size;
2498
2499 size = min_t(size_t, count, hdr_size);
2500 memcpy(buf, firmware->data, size);
2501
2502 /* USB patches should go down to controller through USB path
2503 * because binary format fits to go down through USB channel.
2504 * USB control path is for patching headers and USB bulk is for
2505 * patch body.
2506 */
2507 pipe = usb_sndctrlpipe(udev, 0);
2508 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2509 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2510 if (err < 0) {
2511 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2512 goto done;
2513 }
2514
2515 sent += size;
2516 count -= size;
2517
2518 while (count) {
2519 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2520
2521 memcpy(buf, firmware->data + sent, size);
2522
2523 pipe = usb_sndbulkpipe(udev, 0x02);
2524 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2525 QCA_DFU_TIMEOUT);
2526 if (err < 0) {
2527 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2528 hdev->name, sent, firmware->size, err);
2529 break;
2530 }
2531
2532 if (size != len) {
2533 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2534 err = -EILSEQ;
2535 break;
2536 }
2537
2538 sent += size;
2539 count -= size;
2540 }
2541
2542done:
2543 kfree(buf);
2544 return err;
2545}
2546
2547static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2548 struct qca_version *ver,
2549 const struct qca_device_info *info)
2550{
2551 struct qca_rampatch_version *rver;
2552 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002553 u32 ver_rom, ver_patch;
2554 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002555 char fwname[64];
2556 int err;
2557
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002558 ver_rom = le32_to_cpu(ver->rom_version);
2559 ver_patch = le32_to_cpu(ver->patch_version);
2560
2561 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002562
2563 err = request_firmware(&fw, fwname, &hdev->dev);
2564 if (err) {
2565 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2566 hdev->name, fwname, err);
2567 return err;
2568 }
2569
2570 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002571
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002572 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2573 rver_rom = le16_to_cpu(rver->rom_version);
2574 rver_patch = le16_to_cpu(rver->patch_version);
2575
2576 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2577 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2578 ver_patch);
2579
2580 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002581 BT_ERR("%s: rampatch file version did not match with firmware",
2582 hdev->name);
2583 err = -EINVAL;
2584 goto done;
2585 }
2586
2587 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2588
2589done:
2590 release_firmware(fw);
2591
2592 return err;
2593}
2594
2595static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2596 struct qca_version *ver,
2597 const struct qca_device_info *info)
2598{
2599 const struct firmware *fw;
2600 char fwname[64];
2601 int err;
2602
2603 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2604 le32_to_cpu(ver->rom_version));
2605
2606 err = request_firmware(&fw, fwname, &hdev->dev);
2607 if (err) {
2608 BT_ERR("%s: failed to request NVM file: %s (%d)",
2609 hdev->name, fwname, err);
2610 return err;
2611 }
2612
2613 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2614
2615 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2616
2617 release_firmware(fw);
2618
2619 return err;
2620}
2621
2622static int btusb_setup_qca(struct hci_dev *hdev)
2623{
2624 const struct qca_device_info *info = NULL;
2625 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002626 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002627 u8 status;
2628 int i, err;
2629
2630 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002631 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002632 if (err < 0)
2633 return err;
2634
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002635 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002636 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002637 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002638 info = &qca_devices_table[i];
2639 }
2640 if (!info) {
2641 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002642 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002643 return -ENODEV;
2644 }
2645
2646 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2647 sizeof(status));
2648 if (err < 0)
2649 return err;
2650
2651 if (!(status & QCA_PATCH_UPDATED)) {
2652 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2653 if (err < 0)
2654 return err;
2655 }
2656
2657 if (!(status & QCA_SYSCFG_UPDATED)) {
2658 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2659 if (err < 0)
2660 return err;
2661 }
2662
2663 return 0;
2664}
2665
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002666#ifdef CONFIG_BT_HCIBTUSB_BCM
2667static inline int __set_diag_interface(struct hci_dev *hdev)
2668{
2669 struct btusb_data *data = hci_get_drvdata(hdev);
2670 struct usb_interface *intf = data->diag;
2671 int i;
2672
2673 if (!data->diag)
2674 return -ENODEV;
2675
2676 data->diag_tx_ep = NULL;
2677 data->diag_rx_ep = NULL;
2678
2679 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2680 struct usb_endpoint_descriptor *ep_desc;
2681
2682 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2683
2684 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2685 data->diag_tx_ep = ep_desc;
2686 continue;
2687 }
2688
2689 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2690 data->diag_rx_ep = ep_desc;
2691 continue;
2692 }
2693 }
2694
2695 if (!data->diag_tx_ep || !data->diag_rx_ep) {
2696 BT_ERR("%s invalid diagnostic descriptors", hdev->name);
2697 return -ENODEV;
2698 }
2699
2700 return 0;
2701}
2702
2703static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2704{
2705 struct btusb_data *data = hci_get_drvdata(hdev);
2706 struct sk_buff *skb;
2707 struct urb *urb;
2708 unsigned int pipe;
2709
2710 if (!data->diag_tx_ep)
2711 return ERR_PTR(-ENODEV);
2712
2713 urb = usb_alloc_urb(0, GFP_KERNEL);
2714 if (!urb)
2715 return ERR_PTR(-ENOMEM);
2716
2717 skb = bt_skb_alloc(2, GFP_KERNEL);
2718 if (!skb) {
2719 usb_free_urb(urb);
2720 return ERR_PTR(-ENOMEM);
2721 }
2722
2723 *skb_put(skb, 1) = 0xf0;
2724 *skb_put(skb, 1) = enable;
2725
2726 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2727
2728 usb_fill_bulk_urb(urb, data->udev, pipe,
2729 skb->data, skb->len, btusb_tx_complete, skb);
2730
2731 skb->dev = (void *)hdev;
2732
2733 return urb;
2734}
2735
2736static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2737{
2738 struct btusb_data *data = hci_get_drvdata(hdev);
2739 struct urb *urb;
2740
2741 if (!data->diag)
2742 return -ENODEV;
2743
2744 if (!test_bit(HCI_RUNNING, &hdev->flags))
2745 return -ENETDOWN;
2746
2747 urb = alloc_diag_urb(hdev, enable);
2748 if (IS_ERR(urb))
2749 return PTR_ERR(urb);
2750
2751 return submit_or_queue_tx_urb(hdev, urb);
2752}
2753#endif
2754
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002755static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002756 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002757{
2758 struct usb_endpoint_descriptor *ep_desc;
2759 struct btusb_data *data;
2760 struct hci_dev *hdev;
2761 int i, err;
2762
2763 BT_DBG("intf %p id %p", intf, id);
2764
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002765 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002766 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2767 return -ENODEV;
2768
2769 if (!id->driver_info) {
2770 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002771
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002772 match = usb_match_id(intf, blacklist_table);
2773 if (match)
2774 id = match;
2775 }
2776
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002777 if (id->driver_info == BTUSB_IGNORE)
2778 return -ENODEV;
2779
Steven.Li2d25f8b2011-07-01 14:02:36 +08002780 if (id->driver_info & BTUSB_ATH3012) {
2781 struct usb_device *udev = interface_to_usbdev(intf);
2782
2783 /* Old firmware would otherwise let ath3k driver load
2784 * patch and sysconfig files */
2785 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2786 return -ENODEV;
2787 }
2788
Sachin Kamat98921db2012-07-27 12:38:39 +05302789 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002790 if (!data)
2791 return -ENOMEM;
2792
2793 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2794 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2795
2796 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2797 data->intr_ep = ep_desc;
2798 continue;
2799 }
2800
2801 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2802 data->bulk_tx_ep = ep_desc;
2803 continue;
2804 }
2805
2806 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2807 data->bulk_rx_ep = ep_desc;
2808 continue;
2809 }
2810 }
2811
Sachin Kamat98921db2012-07-27 12:38:39 +05302812 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002813 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002814
Marcel Holtmann893ba542015-01-28 20:27:34 -08002815 if (id->driver_info & BTUSB_AMP) {
2816 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2817 data->cmdreq = 0x2b;
2818 } else {
2819 data->cmdreq_type = USB_TYPE_CLASS;
2820 data->cmdreq = 0x00;
2821 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002822
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002823 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002824 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002825
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002826 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002827 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002828 init_usb_anchor(&data->deferred);
2829 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002830 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002831
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002832 init_usb_anchor(&data->intr_anchor);
2833 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002834 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002835 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002836 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002837
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002838 if (id->driver_info & BTUSB_INTEL_NEW) {
2839 data->recv_event = btusb_recv_event_intel;
2840 data->recv_bulk = btusb_recv_bulk_intel;
2841 set_bit(BTUSB_BOOTLOADER, &data->flags);
2842 } else {
2843 data->recv_event = hci_recv_frame;
2844 data->recv_bulk = btusb_recv_bulk;
2845 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002846
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002847 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302848 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002849 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002850
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002851 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002852 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002853
Marcel Holtmann893ba542015-01-28 20:27:34 -08002854 if (id->driver_info & BTUSB_AMP)
2855 hdev->dev_type = HCI_AMP;
2856 else
2857 hdev->dev_type = HCI_BREDR;
2858
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002859 data->hdev = hdev;
2860
2861 SET_HCIDEV_DEV(hdev, &intf->dev);
2862
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002863 hdev->open = btusb_open;
2864 hdev->close = btusb_close;
2865 hdev->flush = btusb_flush;
2866 hdev->send = btusb_send_frame;
2867 hdev->notify = btusb_notify;
2868
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02002869 if (id->driver_info & BTUSB_BCM2045)
2870 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2871
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002872 if (id->driver_info & BTUSB_BCM92035)
2873 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002874
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002875#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002876 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002877 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002878 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002879 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002880 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002881
2882 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2883 data->diag = usb_ifnum_to_if(data->udev, 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002884 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002885
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002886 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002887 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002888 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002889 hdev->set_diag = btusb_bcm_set_diag;
2890
2891 /* Broadcom LM_DIAG Interface numbers are hardcoded */
2892 data->diag = usb_ifnum_to_if(data->udev, 2);
2893 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002894#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002895
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002896 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002897 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002898 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002899 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02002900 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002901 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002902 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002903 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02002904 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002905 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002906
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002907 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002908 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002909 hdev->send = btusb_send_frame_intel;
2910 hdev->setup = btusb_setup_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02002911 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02002912 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002913 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002914 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02002915 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002916 }
2917
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002918 if (id->driver_info & BTUSB_MARVELL)
2919 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2920
Marcel Holtmann661cf882015-01-02 23:35:20 -08002921 if (id->driver_info & BTUSB_SWAVE) {
2922 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002923 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002924 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002925
Marcel Holtmann40df7832014-07-06 13:29:58 +02002926 if (id->driver_info & BTUSB_INTEL_BOOT)
2927 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2928
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002929 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002930 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002931 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002932 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2933 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002934
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002935 if (id->driver_info & BTUSB_QCA_ROME) {
2936 data->setup_on_usb = btusb_setup_qca;
2937 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2938 }
2939
Carlo Caionedb33c772015-05-14 10:49:09 +02002940#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002941 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002942 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002943
2944 /* Realtek devices lose their updated firmware over suspend,
2945 * but the USB hub doesn't notice any status change.
2946 * Explicitly request a device reset on resume.
2947 */
2948 set_bit(BTUSB_RESET_RESUME, &data->flags);
2949 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002950#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002951
Marcel Holtmann893ba542015-01-28 20:27:34 -08002952 if (id->driver_info & BTUSB_AMP) {
2953 /* AMP controllers do not support SCO packets */
2954 data->isoc = NULL;
2955 } else {
2956 /* Interface numbers are hardcoded in the specification */
2957 data->isoc = usb_ifnum_to_if(data->udev, 1);
2958 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002959
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002960 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002961 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002962
2963 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2964 if (!disable_scofix)
2965 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2966 }
2967
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002968 if (id->driver_info & BTUSB_BROKEN_ISOC)
2969 data->isoc = NULL;
2970
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002971 if (id->driver_info & BTUSB_DIGIANSWER) {
2972 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002973 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002974 }
2975
2976 if (id->driver_info & BTUSB_CSR) {
2977 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002978 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002979
2980 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002981 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002982 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002983
2984 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03002985 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08002986 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002987
2988 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002989 }
2990
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002991 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002992 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002993
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002994 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002995 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2996 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2997 }
2998
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002999 if (id->driver_info & BTUSB_INTEL_BOOT) {
3000 /* A bug in the bootloader causes that interrupt interface is
3001 * only enabled after receiving SetInterface(0, AltSetting=0).
3002 */
3003 err = usb_set_interface(data->udev, 0, 0);
3004 if (err < 0) {
3005 BT_ERR("failed to set interface 0, alt 0 %d", err);
3006 hci_free_dev(hdev);
3007 return err;
3008 }
3009 }
3010
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003011 if (data->isoc) {
3012 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003013 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003014 if (err < 0) {
3015 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003016 return err;
3017 }
3018 }
3019
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003020#ifdef CONFIG_BT_HCIBTUSB_BCM
3021 if (data->diag) {
3022 if (!usb_driver_claim_interface(&btusb_driver,
3023 data->diag, data))
3024 __set_diag_interface(hdev);
3025 else
3026 data->diag = NULL;
3027 }
3028#endif
3029
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003030 err = hci_register_dev(hdev);
3031 if (err < 0) {
3032 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003033 return err;
3034 }
3035
3036 usb_set_intfdata(intf, data);
3037
3038 return 0;
3039}
3040
3041static void btusb_disconnect(struct usb_interface *intf)
3042{
3043 struct btusb_data *data = usb_get_intfdata(intf);
3044 struct hci_dev *hdev;
3045
3046 BT_DBG("intf %p", intf);
3047
3048 if (!data)
3049 return;
3050
3051 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003052 usb_set_intfdata(data->intf, NULL);
3053
3054 if (data->isoc)
3055 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003056
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003057 if (data->diag)
3058 usb_set_intfdata(data->diag, NULL);
3059
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003060 hci_unregister_dev(hdev);
3061
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003062 if (intf == data->intf) {
3063 if (data->isoc)
3064 usb_driver_release_interface(&btusb_driver, data->isoc);
3065 if (data->diag)
3066 usb_driver_release_interface(&btusb_driver, data->diag);
3067 } else if (intf == data->isoc) {
3068 if (data->diag)
3069 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003070 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003071 } else if (intf == data->diag) {
3072 usb_driver_release_interface(&btusb_driver, data->intf);
3073 if (data->isoc)
3074 usb_driver_release_interface(&btusb_driver, data->isoc);
3075 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003076
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003077 hci_free_dev(hdev);
3078}
3079
Oliver Neukum7bee5492009-08-24 23:44:59 +02003080#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003081static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3082{
3083 struct btusb_data *data = usb_get_intfdata(intf);
3084
3085 BT_DBG("intf %p", intf);
3086
3087 if (data->suspend_count++)
3088 return 0;
3089
Oliver Neukum7bee5492009-08-24 23:44:59 +02003090 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003091 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003092 set_bit(BTUSB_SUSPENDING, &data->flags);
3093 spin_unlock_irq(&data->txlock);
3094 } else {
3095 spin_unlock_irq(&data->txlock);
3096 data->suspend_count--;
3097 return -EBUSY;
3098 }
3099
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003100 cancel_work_sync(&data->work);
3101
Oliver Neukum7bee5492009-08-24 23:44:59 +02003102 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003103 usb_kill_anchored_urbs(&data->tx_anchor);
3104
Daniel Drake04b8c812015-05-21 08:23:50 -06003105 /* Optionally request a device reset on resume, but only when
3106 * wakeups are disabled. If wakeups are enabled we assume the
3107 * device will stay powered up throughout suspend.
3108 */
3109 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
3110 !device_may_wakeup(&data->udev->dev))
3111 data->udev->reset_resume = 1;
3112
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003113 return 0;
3114}
3115
Oliver Neukum7bee5492009-08-24 23:44:59 +02003116static void play_deferred(struct btusb_data *data)
3117{
3118 struct urb *urb;
3119 int err;
3120
3121 while ((urb = usb_get_from_anchor(&data->deferred))) {
3122 err = usb_submit_urb(urb, GFP_ATOMIC);
3123 if (err < 0)
3124 break;
3125
3126 data->tx_in_flight++;
3127 }
3128 usb_scuttle_anchored_urbs(&data->deferred);
3129}
3130
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003131static int btusb_resume(struct usb_interface *intf)
3132{
3133 struct btusb_data *data = usb_get_intfdata(intf);
3134 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003135 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003136
3137 BT_DBG("intf %p", intf);
3138
3139 if (--data->suspend_count)
3140 return 0;
3141
3142 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003143 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003144
3145 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3146 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3147 if (err < 0) {
3148 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003149 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003150 }
3151 }
3152
3153 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003154 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3155 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003156 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003157 goto failed;
3158 }
3159
3160 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003161 }
3162
3163 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3164 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3165 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3166 else
3167 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3168 }
3169
Oliver Neukum7bee5492009-08-24 23:44:59 +02003170 spin_lock_irq(&data->txlock);
3171 play_deferred(data);
3172 clear_bit(BTUSB_SUSPENDING, &data->flags);
3173 spin_unlock_irq(&data->txlock);
3174 schedule_work(&data->work);
3175
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003176 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003177
3178failed:
3179 usb_scuttle_anchored_urbs(&data->deferred);
3180done:
3181 spin_lock_irq(&data->txlock);
3182 clear_bit(BTUSB_SUSPENDING, &data->flags);
3183 spin_unlock_irq(&data->txlock);
3184
3185 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003186}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003187#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003188
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003189static struct usb_driver btusb_driver = {
3190 .name = "btusb",
3191 .probe = btusb_probe,
3192 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003193#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003194 .suspend = btusb_suspend,
3195 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003196#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003197 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003198 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003199 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003200};
3201
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003202module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003203
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003204module_param(disable_scofix, bool, 0644);
3205MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3206
3207module_param(force_scofix, bool, 0644);
3208MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3209
3210module_param(reset, bool, 0644);
3211MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3212
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003213MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3214MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3215MODULE_VERSION(VERSION);
3216MODULE_LICENSE("GPL");