blob: ab6328c2d0d02530e25ba5266c098d8c9023b9f0 [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 Holtmann22f8e9d2015-10-20 00:53:33 +020064#define BTUSB_IFNUM_2 0x80000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020065
Marcel Holtmann54265202013-10-11 07:46:18 -070066static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020067 /* Generic Bluetooth USB device */
68 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
69
Marcel Holtmann893ba542015-01-28 20:27:34 -080070 /* Generic Bluetooth AMP device */
71 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
72
Daniel Draked63b2822015-07-17 11:12:25 -060073 /* Generic Bluetooth USB interface */
74 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
75
Henrik Rydberg1fa65352012-08-25 19:28:06 +020076 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010077 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020078 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020079
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080080 /* MediaTek MT76x0E */
81 { USB_DEVICE(0x0e8d, 0x763f) },
82
Oliver Neukumc510eae2011-09-21 11:41:45 +020083 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040084 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020085
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090086 /* Apple MacBookPro 7,1 */
87 { USB_DEVICE(0x05ac, 0x8213) },
88
Cyril Lacoux0a79f672010-07-14 10:29:27 +040089 /* Apple iMac11,1 */
90 { USB_DEVICE(0x05ac, 0x8215) },
91
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090092 /* Apple MacBookPro6,2 */
93 { USB_DEVICE(0x05ac, 0x8218) },
94
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010095 /* Apple MacBookAir3,1, MacBookAir3,2 */
96 { USB_DEVICE(0x05ac, 0x821b) },
97
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040098 /* Apple MacBookAir4,1 */
99 { USB_DEVICE(0x05ac, 0x821f) },
100
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -0300101 /* Apple MacBookPro8,2 */
102 { USB_DEVICE(0x05ac, 0x821a) },
103
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200104 /* Apple MacMini5,1 */
105 { USB_DEVICE(0x05ac, 0x8281) },
106
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200107 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800108 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200109
110 /* Bluetooth Ultraport Module from IBM */
111 { USB_DEVICE(0x04bf, 0x030a) },
112
113 /* ALPS Modules with non-standard id */
114 { USB_DEVICE(0x044e, 0x3001) },
115 { USB_DEVICE(0x044e, 0x3002) },
116
117 /* Ericsson with non-standard id */
118 { USB_DEVICE(0x0bdb, 0x1002) },
119
120 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100121 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200122
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800123 /* Broadcom BCM20702A0 */
124 { USB_DEVICE(0x413c, 0x8197) },
125
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800126 /* Broadcom BCM20702B0 (Dynex/Insignia) */
127 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
128
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300129 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
130 { USB_DEVICE(0x105b, 0xe065), .driver_info = BTUSB_BCM_PATCHRAM },
131
Steven Harms98514032012-04-13 14:45:55 -0400132 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100133 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
134 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400135
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100136 /* Lite-On Technology - Broadcom based */
137 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
138 .driver_info = BTUSB_BCM_PATCHRAM },
139
Andy Shevchenko0b880062014-02-18 18:26:19 +0200140 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700141 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
142 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300143
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200144 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abda2015-01-17 05:29:12 +0100145 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
146 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200147
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100148 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700149 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
150 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100151
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100152 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700153 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
154 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100155
Dmitry Tunin1623d0b2015-12-05 14:09:36 +0300156 /* Toshiba Corp - Broadcom based */
157 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
158 .driver_info = BTUSB_BCM_PATCHRAM },
159
Marcel Holtmann40df7832014-07-06 13:29:58 +0200160 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df02014-07-06 14:53:55 +0200161 { USB_DEVICE(0x8087, 0x0a5a),
162 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200163
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200164 { } /* Terminating entry */
165};
166
167MODULE_DEVICE_TABLE(usb, btusb_table);
168
Marcel Holtmann54265202013-10-11 07:46:18 -0700169static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200170 /* CSR BlueCore devices */
171 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
172
173 /* Broadcom BCM2033 without firmware */
174 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
175
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200176 /* Broadcom BCM2045 devices */
177 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
178
Bala Shanmugambe931122010-11-26 17:35:46 +0530179 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200180 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
181 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200182 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200183 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530184 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200185 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700186 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530187
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800188 /* Atheros AR9285 Malbec with sflash firmware */
189 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
190
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530191 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200192 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
193 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
194 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
195 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
196 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300197 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530198 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200199 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
200 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
201 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
202 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700203 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200204 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
205 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c72015-06-18 20:41:51 +0300206 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300207 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200208 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200209 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300210 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200211 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100212 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200213 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800214 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800215 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900216 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200217 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100218 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100219 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200220 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800221 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300222 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200223 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800224 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800225 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800226 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200227 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
228 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800229 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300230 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530231 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300232 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300233 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530234 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300235 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530236
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800237 /* Atheros AR5BBU12 with sflash firmware */
238 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
239
Michael Gruetzner85d59722012-05-02 22:33:40 +0200240 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530241 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200242 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200243
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000244 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800245 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700246 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
247 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000248
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200249 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100250 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200251 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
252 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200253
254 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100255 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
256 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200257
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200258 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100259 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
260 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200261
262 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100263 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200264
265 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100266 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200267
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100268 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100269 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100270 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200271
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100272 /* Belkin F8T012 and F8T013 devices */
273 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
274 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200275
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100276 /* Asus WL-BTD202 device */
277 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
278
279 /* Kensington Bluetooth USB adapter */
280 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
281
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200282 /* RTX Telecom based adapters with buggy SCO support */
283 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
284 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
285
286 /* CONWISE Technology based adapters with buggy SCO support */
287 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
288
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800289 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300290 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800291
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200292 /* Digianswer devices */
293 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
294 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
295
296 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200297 { USB_DEVICE(0x0a12, 0x0002),
298 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200299
300 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200301 { USB_DEVICE(0x16d3, 0x0002),
302 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200303
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800304 /* Marvell Bluetooth devices */
305 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
306 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
307
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800308 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800309 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700310 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800311 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800312 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700313
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800314 /* Other Intel Bluetooth devices */
315 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
316 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700317
Daniel Drakea2698a92015-04-16 14:09:55 -0600318 /* Realtek Bluetooth devices */
319 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
320 .driver_info = BTUSB_REALTEK },
321
322 /* Additional Realtek 8723AE Bluetooth devices */
323 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
324 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
325
326 /* Additional Realtek 8723BE Bluetooth devices */
327 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
328 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
329 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
330 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
331 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
332
333 /* Additional Realtek 8821AE Bluetooth devices */
334 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
335 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
336 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
337 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
338 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
339
Peter Poklop4481c072015-08-15 20:47:09 +0200340 /* Silicon Wave based devices */
341 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
342
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200343 { } /* Terminating entry */
344};
345
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200346#define BTUSB_MAX_ISOC_FRAMES 10
347
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348#define BTUSB_INTR_RUNNING 0
349#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200350#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200351#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300352#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800353#define BTUSB_BOOTLOADER 5
354#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800355#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800356#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800357#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600358#define BTUSB_RESET_RESUME 10
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200359#define BTUSB_DIAG_RUNNING 11
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200360
361struct btusb_data {
362 struct hci_dev *hdev;
363 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200364 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200365 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200366 struct usb_interface *diag;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200367
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200368 unsigned long flags;
369
370 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200371 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200372
Marcel Holtmann803b5832014-09-16 08:00:29 +0200373 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200374 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200375 int tx_in_flight;
376 spinlock_t txlock;
377
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200378 struct usb_anchor intr_anchor;
379 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200380 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200381 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200382 spinlock_t rxlock;
383
384 struct sk_buff *evt_skb;
385 struct sk_buff *acl_skb;
386 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200387
388 struct usb_endpoint_descriptor *intr_ep;
389 struct usb_endpoint_descriptor *bulk_tx_ep;
390 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200391 struct usb_endpoint_descriptor *isoc_tx_ep;
392 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200393 struct usb_endpoint_descriptor *diag_tx_ep;
394 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200395
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100396 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800397 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100398
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100399 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200400 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100401 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100402
Marcel Holtmann97307f52015-01-12 13:51:10 -0800403 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100404 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000405
406 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200407};
408
Marcel Holtmann803b5832014-09-16 08:00:29 +0200409static inline void btusb_free_frags(struct btusb_data *data)
410{
411 unsigned long flags;
412
413 spin_lock_irqsave(&data->rxlock, flags);
414
415 kfree_skb(data->evt_skb);
416 data->evt_skb = NULL;
417
418 kfree_skb(data->acl_skb);
419 data->acl_skb = NULL;
420
421 kfree_skb(data->sco_skb);
422 data->sco_skb = NULL;
423
424 spin_unlock_irqrestore(&data->rxlock, flags);
425}
426
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200427static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
428{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200429 struct sk_buff *skb;
430 int err = 0;
431
432 spin_lock(&data->rxlock);
433 skb = data->evt_skb;
434
435 while (count) {
436 int len;
437
438 if (!skb) {
439 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
440 if (!skb) {
441 err = -ENOMEM;
442 break;
443 }
444
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100445 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
446 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200447 }
448
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100449 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200450 memcpy(skb_put(skb, len), buffer, len);
451
452 count -= len;
453 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100454 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200455
456 if (skb->len == HCI_EVENT_HDR_SIZE) {
457 /* Complete event header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100458 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200459
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100460 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200461 kfree_skb(skb);
462 skb = NULL;
463
464 err = -EILSEQ;
465 break;
466 }
467 }
468
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100469 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200470 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800471 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200472 skb = NULL;
473 }
474 }
475
476 data->evt_skb = skb;
477 spin_unlock(&data->rxlock);
478
479 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200480}
481
482static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
483{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200484 struct sk_buff *skb;
485 int err = 0;
486
487 spin_lock(&data->rxlock);
488 skb = data->acl_skb;
489
490 while (count) {
491 int len;
492
493 if (!skb) {
494 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
495 if (!skb) {
496 err = -ENOMEM;
497 break;
498 }
499
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100500 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
501 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200502 }
503
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100504 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200505 memcpy(skb_put(skb, len), buffer, len);
506
507 count -= len;
508 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100509 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200510
511 if (skb->len == HCI_ACL_HDR_SIZE) {
512 __le16 dlen = hci_acl_hdr(skb)->dlen;
513
514 /* Complete ACL header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100515 hci_skb_expect(skb) = __le16_to_cpu(dlen);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200516
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100517 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200518 kfree_skb(skb);
519 skb = NULL;
520
521 err = -EILSEQ;
522 break;
523 }
524 }
525
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100526 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200527 /* Complete frame */
528 hci_recv_frame(data->hdev, skb);
529 skb = NULL;
530 }
531 }
532
533 data->acl_skb = skb;
534 spin_unlock(&data->rxlock);
535
536 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200537}
538
539static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
540{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200541 struct sk_buff *skb;
542 int err = 0;
543
544 spin_lock(&data->rxlock);
545 skb = data->sco_skb;
546
547 while (count) {
548 int len;
549
550 if (!skb) {
551 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
552 if (!skb) {
553 err = -ENOMEM;
554 break;
555 }
556
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100557 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
558 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200559 }
560
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100561 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200562 memcpy(skb_put(skb, len), buffer, len);
563
564 count -= len;
565 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100566 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200567
568 if (skb->len == HCI_SCO_HDR_SIZE) {
569 /* Complete SCO header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100570 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200571
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100572 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200573 kfree_skb(skb);
574 skb = NULL;
575
576 err = -EILSEQ;
577 break;
578 }
579 }
580
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100581 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200582 /* Complete frame */
583 hci_recv_frame(data->hdev, skb);
584 skb = NULL;
585 }
586 }
587
588 data->sco_skb = skb;
589 spin_unlock(&data->rxlock);
590
591 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200592}
593
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200594static void btusb_intr_complete(struct urb *urb)
595{
596 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100597 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200598 int err;
599
Marcel Holtmann89e75332014-09-16 04:44:50 +0200600 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
601 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200602
603 if (!test_bit(HCI_RUNNING, &hdev->flags))
604 return;
605
606 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200607 hdev->stat.byte_rx += urb->actual_length;
608
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200609 if (btusb_recv_intr(data, urb->transfer_buffer,
610 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200611 BT_ERR("%s corrupted event packet", hdev->name);
612 hdev->stat.err_rx++;
613 }
Champion Chen85560c42014-09-06 14:06:08 -0500614 } else if (urb->status == -ENOENT) {
615 /* Avoid suspend failed when usb_kill_urb */
616 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200617 }
618
619 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
620 return;
621
Oliver Neukum7bee5492009-08-24 23:44:59 +0200622 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 usb_anchor_urb(urb, &data->intr_anchor);
624
625 err = usb_submit_urb(urb, GFP_ATOMIC);
626 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200627 /* -EPERM: urb is being killed;
628 * -ENODEV: device got disconnected */
629 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100630 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200631 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632 usb_unanchor_urb(urb);
633 }
634}
635
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100636static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200637{
David Herrmann155961e2012-02-09 21:58:32 +0100638 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639 struct urb *urb;
640 unsigned char *buf;
641 unsigned int pipe;
642 int err, size;
643
644 BT_DBG("%s", hdev->name);
645
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200646 if (!data->intr_ep)
647 return -ENODEV;
648
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100649 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200650 if (!urb)
651 return -ENOMEM;
652
653 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
654
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100655 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200656 if (!buf) {
657 usb_free_urb(urb);
658 return -ENOMEM;
659 }
660
661 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
662
663 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200664 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200665
666 urb->transfer_flags |= URB_FREE_BUFFER;
667
668 usb_anchor_urb(urb, &data->intr_anchor);
669
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100670 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200671 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200672 if (err != -EPERM && err != -ENODEV)
673 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200674 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200675 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200676 }
677
678 usb_free_urb(urb);
679
680 return err;
681}
682
683static void btusb_bulk_complete(struct urb *urb)
684{
685 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100686 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200687 int err;
688
Marcel Holtmann89e75332014-09-16 04:44:50 +0200689 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
690 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200691
692 if (!test_bit(HCI_RUNNING, &hdev->flags))
693 return;
694
695 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200696 hdev->stat.byte_rx += urb->actual_length;
697
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100698 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200699 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200700 BT_ERR("%s corrupted ACL packet", hdev->name);
701 hdev->stat.err_rx++;
702 }
Champion Chen85560c42014-09-06 14:06:08 -0500703 } else if (urb->status == -ENOENT) {
704 /* Avoid suspend failed when usb_kill_urb */
705 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200706 }
707
708 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
709 return;
710
711 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100712 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200713
714 err = usb_submit_urb(urb, GFP_ATOMIC);
715 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200716 /* -EPERM: urb is being killed;
717 * -ENODEV: device got disconnected */
718 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100719 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200720 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200721 usb_unanchor_urb(urb);
722 }
723}
724
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100725static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200726{
David Herrmann155961e2012-02-09 21:58:32 +0100727 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200728 struct urb *urb;
729 unsigned char *buf;
730 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530731 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200732
733 BT_DBG("%s", hdev->name);
734
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200735 if (!data->bulk_rx_ep)
736 return -ENODEV;
737
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100738 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200739 if (!urb)
740 return -ENOMEM;
741
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100742 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200743 if (!buf) {
744 usb_free_urb(urb);
745 return -ENOMEM;
746 }
747
748 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
749
Marcel Holtmann89e75332014-09-16 04:44:50 +0200750 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
751 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200752
753 urb->transfer_flags |= URB_FREE_BUFFER;
754
Oliver Neukum7bee5492009-08-24 23:44:59 +0200755 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200756 usb_anchor_urb(urb, &data->bulk_anchor);
757
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100758 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200759 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200760 if (err != -EPERM && err != -ENODEV)
761 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200762 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200763 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200764 }
765
766 usb_free_urb(urb);
767
768 return err;
769}
770
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200771static void btusb_isoc_complete(struct urb *urb)
772{
773 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100774 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200775 int i, err;
776
Marcel Holtmann89e75332014-09-16 04:44:50 +0200777 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
778 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200779
780 if (!test_bit(HCI_RUNNING, &hdev->flags))
781 return;
782
783 if (urb->status == 0) {
784 for (i = 0; i < urb->number_of_packets; i++) {
785 unsigned int offset = urb->iso_frame_desc[i].offset;
786 unsigned int length = urb->iso_frame_desc[i].actual_length;
787
788 if (urb->iso_frame_desc[i].status)
789 continue;
790
791 hdev->stat.byte_rx += length;
792
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200793 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
794 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200795 BT_ERR("%s corrupted SCO packet", hdev->name);
796 hdev->stat.err_rx++;
797 }
798 }
Champion Chen85560c42014-09-06 14:06:08 -0500799 } else if (urb->status == -ENOENT) {
800 /* Avoid suspend failed when usb_kill_urb */
801 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200802 }
803
804 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
805 return;
806
807 usb_anchor_urb(urb, &data->isoc_anchor);
808
809 err = usb_submit_urb(urb, GFP_ATOMIC);
810 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200811 /* -EPERM: urb is being killed;
812 * -ENODEV: device got disconnected */
813 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100814 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200815 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200816 usb_unanchor_urb(urb);
817 }
818}
819
Jesper Juhl42b16b32011-01-17 00:09:38 +0100820static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200821{
822 int i, offset = 0;
823
824 BT_DBG("len %d mtu %d", len, mtu);
825
826 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
827 i++, offset += mtu, len -= mtu) {
828 urb->iso_frame_desc[i].offset = offset;
829 urb->iso_frame_desc[i].length = mtu;
830 }
831
832 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
833 urb->iso_frame_desc[i].offset = offset;
834 urb->iso_frame_desc[i].length = len;
835 i++;
836 }
837
838 urb->number_of_packets = i;
839}
840
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100841static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200842{
David Herrmann155961e2012-02-09 21:58:32 +0100843 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200844 struct urb *urb;
845 unsigned char *buf;
846 unsigned int pipe;
847 int err, size;
848
849 BT_DBG("%s", hdev->name);
850
851 if (!data->isoc_rx_ep)
852 return -ENODEV;
853
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100854 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200855 if (!urb)
856 return -ENOMEM;
857
858 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
859 BTUSB_MAX_ISOC_FRAMES;
860
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100861 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200862 if (!buf) {
863 usb_free_urb(urb);
864 return -ENOMEM;
865 }
866
867 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
868
Bing Zhaofa0fb932011-12-20 18:19:00 -0800869 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200870 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200871
Marcel Holtmann89e75332014-09-16 04:44:50 +0200872 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200873
874 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200875 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200876
877 usb_anchor_urb(urb, &data->isoc_anchor);
878
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100879 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200880 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200881 if (err != -EPERM && err != -ENODEV)
882 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200883 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200884 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200885 }
886
887 usb_free_urb(urb);
888
889 return err;
890}
891
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200892static void btusb_diag_complete(struct urb *urb)
893{
894 struct hci_dev *hdev = urb->context;
895 struct btusb_data *data = hci_get_drvdata(hdev);
896 int err;
897
898 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
899 urb->actual_length);
900
901 if (urb->status == 0) {
902 struct sk_buff *skb;
903
904 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
905 if (skb) {
906 memcpy(skb_put(skb, urb->actual_length),
907 urb->transfer_buffer, urb->actual_length);
908 hci_recv_diag(hdev, skb);
909 }
910 } else if (urb->status == -ENOENT) {
911 /* Avoid suspend failed when usb_kill_urb */
912 return;
913 }
914
915 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
916 return;
917
918 usb_anchor_urb(urb, &data->diag_anchor);
919 usb_mark_last_busy(data->udev);
920
921 err = usb_submit_urb(urb, GFP_ATOMIC);
922 if (err < 0) {
923 /* -EPERM: urb is being killed;
924 * -ENODEV: device got disconnected */
925 if (err != -EPERM && err != -ENODEV)
926 BT_ERR("%s urb %p failed to resubmit (%d)",
927 hdev->name, urb, -err);
928 usb_unanchor_urb(urb);
929 }
930}
931
932static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
933{
934 struct btusb_data *data = hci_get_drvdata(hdev);
935 struct urb *urb;
936 unsigned char *buf;
937 unsigned int pipe;
938 int err, size = HCI_MAX_FRAME_SIZE;
939
940 BT_DBG("%s", hdev->name);
941
942 if (!data->diag_rx_ep)
943 return -ENODEV;
944
945 urb = usb_alloc_urb(0, mem_flags);
946 if (!urb)
947 return -ENOMEM;
948
949 buf = kmalloc(size, mem_flags);
950 if (!buf) {
951 usb_free_urb(urb);
952 return -ENOMEM;
953 }
954
955 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
956
957 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
958 btusb_diag_complete, hdev);
959
960 urb->transfer_flags |= URB_FREE_BUFFER;
961
962 usb_mark_last_busy(data->udev);
963 usb_anchor_urb(urb, &data->diag_anchor);
964
965 err = usb_submit_urb(urb, mem_flags);
966 if (err < 0) {
967 if (err != -EPERM && err != -ENODEV)
968 BT_ERR("%s urb %p submission failed (%d)",
969 hdev->name, urb, -err);
970 usb_unanchor_urb(urb);
971 }
972
973 usb_free_urb(urb);
974
975 return err;
976}
977
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200978static void btusb_tx_complete(struct urb *urb)
979{
980 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200981 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100982 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200983
Marcel Holtmann89e75332014-09-16 04:44:50 +0200984 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
985 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200986
987 if (!test_bit(HCI_RUNNING, &hdev->flags))
988 goto done;
989
990 if (!urb->status)
991 hdev->stat.byte_tx += urb->transfer_buffer_length;
992 else
993 hdev->stat.err_tx++;
994
995done:
996 spin_lock(&data->txlock);
997 data->tx_in_flight--;
998 spin_unlock(&data->txlock);
999
1000 kfree(urb->setup_packet);
1001
1002 kfree_skb(skb);
1003}
1004
1005static void btusb_isoc_tx_complete(struct urb *urb)
1006{
1007 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001008 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001009
Marcel Holtmann89e75332014-09-16 04:44:50 +02001010 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1011 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001012
1013 if (!test_bit(HCI_RUNNING, &hdev->flags))
1014 goto done;
1015
1016 if (!urb->status)
1017 hdev->stat.byte_tx += urb->transfer_buffer_length;
1018 else
1019 hdev->stat.err_tx++;
1020
1021done:
1022 kfree(urb->setup_packet);
1023
1024 kfree_skb(skb);
1025}
1026
1027static int btusb_open(struct hci_dev *hdev)
1028{
David Herrmann155961e2012-02-09 21:58:32 +01001029 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001030 int err;
1031
1032 BT_DBG("%s", hdev->name);
1033
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001034 /* Patching USB firmware files prior to starting any URBs of HCI path
1035 * It is more safe to use USB bulk channel for downloading USB patch
1036 */
1037 if (data->setup_on_usb) {
1038 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001039 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001040 return err;
1041 }
1042
Oliver Neukum7bee5492009-08-24 23:44:59 +02001043 err = usb_autopm_get_interface(data->intf);
1044 if (err < 0)
1045 return err;
1046
1047 data->intf->needs_remote_wakeup = 1;
1048
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001049 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001050 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001051
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001052 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001053 if (err < 0)
1054 goto failed;
1055
1056 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001057 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001058 usb_kill_anchored_urbs(&data->intr_anchor);
1059 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001060 }
1061
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001062 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1063 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1064
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001065 if (data->diag) {
1066 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1067 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1068 }
1069
Oliver Neukum7bee5492009-08-24 23:44:59 +02001070done:
1071 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001072 return 0;
1073
1074failed:
1075 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001076 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001077 return err;
1078}
1079
Oliver Neukum7bee5492009-08-24 23:44:59 +02001080static void btusb_stop_traffic(struct btusb_data *data)
1081{
1082 usb_kill_anchored_urbs(&data->intr_anchor);
1083 usb_kill_anchored_urbs(&data->bulk_anchor);
1084 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001085 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001086}
1087
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001088static int btusb_close(struct hci_dev *hdev)
1089{
David Herrmann155961e2012-02-09 21:58:32 +01001090 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001091 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001092
1093 BT_DBG("%s", hdev->name);
1094
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001095 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001096 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001097
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001098 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001099 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001100 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001101 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102
1103 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001104 btusb_free_frags(data);
1105
Oliver Neukum7bee5492009-08-24 23:44:59 +02001106 err = usb_autopm_get_interface(data->intf);
1107 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001108 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001109
1110 data->intf->needs_remote_wakeup = 0;
1111 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001112
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001113failed:
1114 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001115 return 0;
1116}
1117
1118static int btusb_flush(struct hci_dev *hdev)
1119{
David Herrmann155961e2012-02-09 21:58:32 +01001120 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001121
1122 BT_DBG("%s", hdev->name);
1123
1124 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001125 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001126
1127 return 0;
1128}
1129
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001130static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001131{
David Herrmann155961e2012-02-09 21:58:32 +01001132 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001133 struct usb_ctrlrequest *dr;
1134 struct urb *urb;
1135 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001136
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001137 urb = usb_alloc_urb(0, GFP_KERNEL);
1138 if (!urb)
1139 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001140
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001141 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1142 if (!dr) {
1143 usb_free_urb(urb);
1144 return ERR_PTR(-ENOMEM);
1145 }
1146
1147 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001148 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001149 dr->wIndex = 0;
1150 dr->wValue = 0;
1151 dr->wLength = __cpu_to_le16(skb->len);
1152
1153 pipe = usb_sndctrlpipe(data->udev, 0x00);
1154
Marcel Holtmann89e75332014-09-16 04:44:50 +02001155 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001156 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001157
Marcel Holtmann89e75332014-09-16 04:44:50 +02001158 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001159
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001160 return urb;
1161}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001162
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001163static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1164{
1165 struct btusb_data *data = hci_get_drvdata(hdev);
1166 struct urb *urb;
1167 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001168
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001169 if (!data->bulk_tx_ep)
1170 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001171
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001172 urb = usb_alloc_urb(0, GFP_KERNEL);
1173 if (!urb)
1174 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001175
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001176 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001177
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001178 usb_fill_bulk_urb(urb, data->udev, pipe,
1179 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001180
Marcel Holtmann89e75332014-09-16 04:44:50 +02001181 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001182
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001183 return urb;
1184}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001185
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001186static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1187{
1188 struct btusb_data *data = hci_get_drvdata(hdev);
1189 struct urb *urb;
1190 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001192 if (!data->isoc_tx_ep)
1193 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001194
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001195 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1196 if (!urb)
1197 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001198
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001199 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001200
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001201 usb_fill_int_urb(urb, data->udev, pipe,
1202 skb->data, skb->len, btusb_isoc_tx_complete,
1203 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001204
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001205 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001206
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001207 __fill_isoc_descriptor(urb, skb->len,
1208 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001209
Marcel Holtmann89e75332014-09-16 04:44:50 +02001210 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001211
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001212 return urb;
1213}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001214
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001215static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1216{
1217 struct btusb_data *data = hci_get_drvdata(hdev);
1218 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001219
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220 usb_anchor_urb(urb, &data->tx_anchor);
1221
Johan Hedberge9753ef2014-09-14 08:49:34 +03001222 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001223 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001224 if (err != -EPERM && err != -ENODEV)
1225 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001226 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001227 kfree(urb->setup_packet);
1228 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001229 } else {
1230 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001231 }
1232
Cong Wang54a8a79c2011-11-22 09:32:57 +08001233 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001234 return err;
1235}
1236
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001237static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1238{
1239 struct btusb_data *data = hci_get_drvdata(hdev);
1240 unsigned long flags;
1241 bool suspending;
1242
1243 spin_lock_irqsave(&data->txlock, flags);
1244 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1245 if (!suspending)
1246 data->tx_in_flight++;
1247 spin_unlock_irqrestore(&data->txlock, flags);
1248
1249 if (!suspending)
1250 return submit_tx_urb(hdev, urb);
1251
1252 usb_anchor_urb(urb, &data->deferred);
1253 schedule_work(&data->waker);
1254
1255 usb_free_urb(urb);
1256 return 0;
1257}
1258
1259static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1260{
1261 struct urb *urb;
1262
1263 BT_DBG("%s", hdev->name);
1264
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001265 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001266 case HCI_COMMAND_PKT:
1267 urb = alloc_ctrl_urb(hdev, skb);
1268 if (IS_ERR(urb))
1269 return PTR_ERR(urb);
1270
1271 hdev->stat.cmd_tx++;
1272 return submit_or_queue_tx_urb(hdev, urb);
1273
1274 case HCI_ACLDATA_PKT:
1275 urb = alloc_bulk_urb(hdev, skb);
1276 if (IS_ERR(urb))
1277 return PTR_ERR(urb);
1278
1279 hdev->stat.acl_tx++;
1280 return submit_or_queue_tx_urb(hdev, urb);
1281
1282 case HCI_SCODATA_PKT:
1283 if (hci_conn_num(hdev, SCO_LINK) < 1)
1284 return -ENODEV;
1285
1286 urb = alloc_isoc_urb(hdev, skb);
1287 if (IS_ERR(urb))
1288 return PTR_ERR(urb);
1289
1290 hdev->stat.sco_tx++;
1291 return submit_tx_urb(hdev, urb);
1292 }
1293
1294 return -EILSEQ;
1295}
1296
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001297static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1298{
David Herrmann155961e2012-02-09 21:58:32 +01001299 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001300
1301 BT_DBG("%s evt %d", hdev->name, evt);
1302
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001303 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1304 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001305 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001306 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001307}
1308
Jesper Juhl42b16b32011-01-17 00:09:38 +01001309static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001310{
David Herrmann155961e2012-02-09 21:58:32 +01001311 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001312 struct usb_interface *intf = data->isoc;
1313 struct usb_endpoint_descriptor *ep_desc;
1314 int i, err;
1315
1316 if (!data->isoc)
1317 return -ENODEV;
1318
1319 err = usb_set_interface(data->udev, 1, altsetting);
1320 if (err < 0) {
1321 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1322 return err;
1323 }
1324
1325 data->isoc_altsetting = altsetting;
1326
1327 data->isoc_tx_ep = NULL;
1328 data->isoc_rx_ep = NULL;
1329
1330 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1331 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1332
1333 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1334 data->isoc_tx_ep = ep_desc;
1335 continue;
1336 }
1337
1338 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1339 data->isoc_rx_ep = ep_desc;
1340 continue;
1341 }
1342 }
1343
1344 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1345 BT_ERR("%s invalid SCO descriptors", hdev->name);
1346 return -ENODEV;
1347 }
1348
1349 return 0;
1350}
1351
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001352static void btusb_work(struct work_struct *work)
1353{
1354 struct btusb_data *data = container_of(work, struct btusb_data, work);
1355 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001356 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001357 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001358
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001359 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001360 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001361 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001362 if (err < 0) {
1363 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1364 usb_kill_anchored_urbs(&data->isoc_anchor);
1365 return;
1366 }
1367
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001368 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001369 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001370
1371 if (hdev->voice_setting & 0x0020) {
1372 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001373
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001374 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001375 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001376 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001377 }
1378
1379 if (data->isoc_altsetting != new_alts) {
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001380 unsigned long flags;
1381
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001382 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1383 usb_kill_anchored_urbs(&data->isoc_anchor);
1384
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001385 /* When isochronous alternate setting needs to be
1386 * changed, because SCO connection has been added
1387 * or removed, a packet fragment may be left in the
1388 * reassembling state. This could lead to wrongly
1389 * assembled fragments.
1390 *
1391 * Clear outstanding fragment when selecting a new
1392 * alternate setting.
1393 */
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001394 spin_lock_irqsave(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001395 kfree_skb(data->sco_skb);
1396 data->sco_skb = NULL;
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001397 spin_unlock_irqrestore(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001398
Mikel Astizf4001d22012-04-11 08:48:51 +02001399 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001400 return;
1401 }
1402
1403 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001404 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001405 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1406 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001407 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001408 }
1409 } else {
1410 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1411 usb_kill_anchored_urbs(&data->isoc_anchor);
1412
1413 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001414 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001415 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001416 }
1417}
1418
Oliver Neukum7bee5492009-08-24 23:44:59 +02001419static void btusb_waker(struct work_struct *work)
1420{
1421 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1422 int err;
1423
1424 err = usb_autopm_get_interface(data->intf);
1425 if (err < 0)
1426 return;
1427
1428 usb_autopm_put_interface(data->intf);
1429}
1430
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001431static int btusb_setup_bcm92035(struct hci_dev *hdev)
1432{
1433 struct sk_buff *skb;
1434 u8 val = 0x00;
1435
1436 BT_DBG("%s", hdev->name);
1437
1438 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1439 if (IS_ERR(skb))
1440 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1441 else
1442 kfree_skb(skb);
1443
1444 return 0;
1445}
1446
Marcel Holtmann81cac642014-01-03 03:02:36 -08001447static int btusb_setup_csr(struct hci_dev *hdev)
1448{
1449 struct hci_rp_read_local_version *rp;
1450 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001451
1452 BT_DBG("%s", hdev->name);
1453
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001454 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1455 HCI_INIT_TIMEOUT);
1456 if (IS_ERR(skb)) {
1457 int err = PTR_ERR(skb);
1458 BT_ERR("%s: CSR: Local version failed (%d)", hdev->name, err);
1459 return err;
1460 }
1461
1462 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1463 BT_ERR("%s: CSR: Local version length mismatch", hdev->name);
1464 kfree_skb(skb);
1465 return -EIO;
1466 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001467
Marcel Holtmann89e75332014-09-16 04:44:50 +02001468 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001469
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001470 /* Detect controllers which aren't real CSR ones. */
1471 if (le16_to_cpu(rp->manufacturer) != 10 ||
1472 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001473 /* Clear the reset quirk since this is not an actual
1474 * early Bluetooth 1.1 device from CSR.
1475 */
1476 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001477
Marcel Holtmann9641d342015-06-07 10:01:01 +02001478 /* These fake CSR controllers have all a broken
1479 * stored link key handling and so just disable it.
1480 */
1481 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001482 }
1483
Marcel Holtmann81cac642014-01-03 03:02:36 -08001484 kfree_skb(skb);
1485
Marcel Holtmann9641d342015-06-07 10:01:01 +02001486 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001487}
1488
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001489static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001490 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001491{
1492 const struct firmware *fw;
1493 char fwname[64];
1494 int ret;
1495
1496 snprintf(fwname, sizeof(fwname),
1497 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1498 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1499 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1500 ver->fw_build_ww, ver->fw_build_yy);
1501
1502 ret = request_firmware(&fw, fwname, &hdev->dev);
1503 if (ret < 0) {
1504 if (ret == -EINVAL) {
1505 BT_ERR("%s Intel firmware file request failed (%d)",
1506 hdev->name, ret);
1507 return NULL;
1508 }
1509
1510 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1511 hdev->name, fwname, ret);
1512
1513 /* If the correct firmware patch file is not found, use the
1514 * default firmware patch file instead
1515 */
1516 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1517 ver->hw_platform, ver->hw_variant);
1518 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1519 BT_ERR("%s failed to open default Intel fw file: %s",
1520 hdev->name, fwname);
1521 return NULL;
1522 }
1523 }
1524
1525 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1526
1527 return fw;
1528}
1529
1530static int btusb_setup_intel_patching(struct hci_dev *hdev,
1531 const struct firmware *fw,
1532 const u8 **fw_ptr, int *disable_patch)
1533{
1534 struct sk_buff *skb;
1535 struct hci_command_hdr *cmd;
1536 const u8 *cmd_param;
1537 struct hci_event_hdr *evt = NULL;
1538 const u8 *evt_param = NULL;
1539 int remain = fw->size - (*fw_ptr - fw->data);
1540
1541 /* The first byte indicates the types of the patch command or event.
1542 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1543 * in the current firmware buffer doesn't start with 0x01 or
1544 * the size of remain buffer is smaller than HCI command header,
1545 * the firmware file is corrupted and it should stop the patching
1546 * process.
1547 */
1548 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1549 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1550 return -EINVAL;
1551 }
1552 (*fw_ptr)++;
1553 remain--;
1554
1555 cmd = (struct hci_command_hdr *)(*fw_ptr);
1556 *fw_ptr += sizeof(*cmd);
1557 remain -= sizeof(*cmd);
1558
1559 /* Ensure that the remain firmware data is long enough than the length
1560 * of command parameter. If not, the firmware file is corrupted.
1561 */
1562 if (remain < cmd->plen) {
1563 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1564 return -EFAULT;
1565 }
1566
1567 /* If there is a command that loads a patch in the firmware
1568 * file, then enable the patch upon success, otherwise just
1569 * disable the manufacturer mode, for example patch activation
1570 * is not required when the default firmware patch file is used
1571 * because there are no patch data to load.
1572 */
1573 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1574 *disable_patch = 0;
1575
1576 cmd_param = *fw_ptr;
1577 *fw_ptr += cmd->plen;
1578 remain -= cmd->plen;
1579
1580 /* This reads the expected events when the above command is sent to the
1581 * device. Some vendor commands expects more than one events, for
1582 * example command status event followed by vendor specific event.
1583 * For this case, it only keeps the last expected event. so the command
1584 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1585 * last expected event.
1586 */
1587 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1588 (*fw_ptr)++;
1589 remain--;
1590
1591 evt = (struct hci_event_hdr *)(*fw_ptr);
1592 *fw_ptr += sizeof(*evt);
1593 remain -= sizeof(*evt);
1594
1595 if (remain < evt->plen) {
1596 BT_ERR("%s Intel fw corrupted: invalid evt len",
1597 hdev->name);
1598 return -EFAULT;
1599 }
1600
1601 evt_param = *fw_ptr;
1602 *fw_ptr += evt->plen;
1603 remain -= evt->plen;
1604 }
1605
1606 /* Every HCI commands in the firmware file has its correspond event.
1607 * If event is not found or remain is smaller than zero, the firmware
1608 * file is corrupted.
1609 */
1610 if (!evt || !evt_param || remain < 0) {
1611 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1612 return -EFAULT;
1613 }
1614
1615 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1616 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1617 if (IS_ERR(skb)) {
1618 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1619 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001620 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001621 }
1622
1623 /* It ensures that the returned event matches the event data read from
1624 * the firmware file. At fist, it checks the length and then
1625 * the contents of the event.
1626 */
1627 if (skb->len != evt->plen) {
1628 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1629 le16_to_cpu(cmd->opcode));
1630 kfree_skb(skb);
1631 return -EFAULT;
1632 }
1633
1634 if (memcmp(skb->data, evt_param, evt->plen)) {
1635 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1636 hdev->name, le16_to_cpu(cmd->opcode));
1637 kfree_skb(skb);
1638 return -EFAULT;
1639 }
1640 kfree_skb(skb);
1641
1642 return 0;
1643}
1644
1645static int btusb_setup_intel(struct hci_dev *hdev)
1646{
1647 struct sk_buff *skb;
1648 const struct firmware *fw;
1649 const u8 *fw_ptr;
Loic Poulain28dc4b92015-12-03 16:10:22 +01001650 int disable_patch, err;
Loic Poulain6c483de2015-12-06 16:18:34 +01001651 struct intel_version ver;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001652
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001653 BT_DBG("%s", hdev->name);
1654
1655 /* The controller has a bug with the first HCI command sent to it
1656 * returning number of completed commands as zero. This would stall the
1657 * command processing in the Bluetooth core.
1658 *
1659 * As a workaround, send HCI Reset command first which will reset the
1660 * number of completed commands and allow normal command processing
1661 * from now on.
1662 */
1663 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1664 if (IS_ERR(skb)) {
1665 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1666 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001667 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001668 }
1669 kfree_skb(skb);
1670
1671 /* Read Intel specific controller version first to allow selection of
1672 * which firmware file to load.
1673 *
1674 * The returned information are hardware variant and revision plus
1675 * firmware variant, revision and build number.
1676 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001677 err = btintel_read_version(hdev, &ver);
1678 if (err)
1679 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001680
1681 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
Loic Poulain6c483de2015-12-06 16:18:34 +01001682 hdev->name, ver.hw_platform, ver.hw_variant, ver.hw_revision,
1683 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1684 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001685
1686 /* fw_patch_num indicates the version of patch the device currently
1687 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001688 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001689 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001690 if (ver.fw_patch_num) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001691 BT_INFO("%s: Intel device is already patched. patch num: %02x",
Loic Poulain6c483de2015-12-06 16:18:34 +01001692 hdev->name, ver.fw_patch_num);
Marcel Holtmann213445b2015-10-21 02:45:19 +02001693 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001694 }
1695
1696 /* Opens the firmware patch file based on the firmware version read
1697 * from the controller. If it fails to open the matching firmware
1698 * patch file, it tries to open the default firmware patch file.
1699 * If no patch file is found, allow the device to operate without
1700 * a patch.
1701 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001702 fw = btusb_setup_intel_get_fw(hdev, &ver);
1703 if (!fw)
Marcel Holtmann213445b2015-10-21 02:45:19 +02001704 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001705 fw_ptr = fw->data;
1706
Loic Poulain28dc4b92015-12-03 16:10:22 +01001707 /* Enable the manufacturer mode of the controller.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001708 * Only while this mode is enabled, the driver can download the
1709 * firmware patch data and configuration parameters.
1710 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001711 err = btintel_enter_mfg(hdev);
1712 if (err) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001713 release_firmware(fw);
Loic Poulain28dc4b92015-12-03 16:10:22 +01001714 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001715 }
1716
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001717 disable_patch = 1;
1718
1719 /* The firmware data file consists of list of Intel specific HCI
1720 * commands and its expected events. The first byte indicates the
1721 * type of the message, either HCI command or HCI event.
1722 *
1723 * It reads the command and its expected event from the firmware file,
1724 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1725 * the returned event is compared with the event read from the firmware
1726 * file and it will continue until all the messages are downloaded to
1727 * the controller.
1728 *
1729 * Once the firmware patching is completed successfully,
1730 * the manufacturer mode is disabled with reset and activating the
1731 * downloaded patch.
1732 *
1733 * If the firmware patching fails, the manufacturer mode is
1734 * disabled with reset and deactivating the patch.
1735 *
1736 * If the default patch file is used, no reset is done when disabling
1737 * the manufacturer.
1738 */
1739 while (fw->size > fw_ptr - fw->data) {
1740 int ret;
1741
1742 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1743 &disable_patch);
1744 if (ret < 0)
1745 goto exit_mfg_deactivate;
1746 }
1747
1748 release_firmware(fw);
1749
1750 if (disable_patch)
1751 goto exit_mfg_disable;
1752
1753 /* Patching completed successfully and disable the manufacturer mode
1754 * with reset and activate the downloaded firmware patches.
1755 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001756 err = btintel_exit_mfg(hdev, true, true);
1757 if (err)
1758 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001759
1760 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1761 hdev->name);
1762
Marcel Holtmann213445b2015-10-21 02:45:19 +02001763 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001764
1765exit_mfg_disable:
1766 /* Disable the manufacturer mode without reset */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001767 err = btintel_exit_mfg(hdev, false, false);
1768 if (err)
1769 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001770
1771 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001772
Marcel Holtmann213445b2015-10-21 02:45:19 +02001773 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001774
1775exit_mfg_deactivate:
1776 release_firmware(fw);
1777
1778 /* Patching failed. Disable the manufacturer mode with reset and
1779 * deactivate the downloaded firmware patches.
1780 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001781 err = btintel_exit_mfg(hdev, true, false);
1782 if (err)
1783 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001784
1785 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1786 hdev->name);
1787
Marcel Holtmann213445b2015-10-21 02:45:19 +02001788complete:
1789 /* Set the event mask for Intel specific vendor events. This enables
1790 * a few extra events that are useful during general operation.
1791 */
1792 btintel_set_event_mask_mfg(hdev, false);
1793
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001794 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001795 return 0;
1796}
1797
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001798static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1799{
1800 struct sk_buff *skb;
1801 struct hci_event_hdr *hdr;
1802 struct hci_ev_cmd_complete *evt;
1803
1804 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1805 if (!skb)
1806 return -ENOMEM;
1807
1808 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1809 hdr->evt = HCI_EV_CMD_COMPLETE;
1810 hdr->plen = sizeof(*evt) + 1;
1811
1812 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1813 evt->ncmd = 0x01;
1814 evt->opcode = cpu_to_le16(opcode);
1815
1816 *skb_put(skb, 1) = 0x00;
1817
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001818 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001819
1820 return hci_recv_frame(hdev, skb);
1821}
1822
1823static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1824 int count)
1825{
1826 /* When the device is in bootloader mode, then it can send
1827 * events via the bulk endpoint. These events are treated the
1828 * same way as the ones received from the interrupt endpoint.
1829 */
1830 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1831 return btusb_recv_intr(data, buffer, count);
1832
1833 return btusb_recv_bulk(data, buffer, count);
1834}
1835
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001836static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1837 unsigned int len)
1838{
1839 const struct intel_bootup *evt = ptr;
1840
1841 if (len != sizeof(*evt))
1842 return;
1843
1844 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1845 smp_mb__after_atomic();
1846 wake_up_bit(&data->flags, BTUSB_BOOTING);
1847 }
1848}
1849
1850static void btusb_intel_secure_send_result(struct btusb_data *data,
1851 const void *ptr, unsigned int len)
1852{
1853 const struct intel_secure_send_result *evt = ptr;
1854
1855 if (len != sizeof(*evt))
1856 return;
1857
1858 if (evt->result)
1859 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1860
1861 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1862 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1863 smp_mb__after_atomic();
1864 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1865 }
1866}
1867
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001868static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1869{
1870 struct btusb_data *data = hci_get_drvdata(hdev);
1871
1872 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1873 struct hci_event_hdr *hdr = (void *)skb->data;
1874
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001875 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1876 hdr->plen > 0) {
1877 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1878 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001879
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001880 switch (skb->data[2]) {
1881 case 0x02:
1882 /* When switching to the operational firmware
1883 * the device sends a vendor specific event
1884 * indicating that the bootup completed.
1885 */
1886 btusb_intel_bootup(data, ptr, len);
1887 break;
1888 case 0x06:
1889 /* When the firmware loading completes the
1890 * device sends out a vendor specific event
1891 * indicating the result of the firmware
1892 * loading.
1893 */
1894 btusb_intel_secure_send_result(data, ptr, len);
1895 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001896 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001897 }
1898 }
1899
1900 return hci_recv_frame(hdev, skb);
1901}
1902
1903static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1904{
1905 struct btusb_data *data = hci_get_drvdata(hdev);
1906 struct urb *urb;
1907
1908 BT_DBG("%s", hdev->name);
1909
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001910 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001911 case HCI_COMMAND_PKT:
1912 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1913 struct hci_command_hdr *cmd = (void *)skb->data;
1914 __u16 opcode = le16_to_cpu(cmd->opcode);
1915
1916 /* When in bootloader mode and the command 0xfc09
1917 * is received, it needs to be send down the
1918 * bulk endpoint. So allocate a bulk URB instead.
1919 */
1920 if (opcode == 0xfc09)
1921 urb = alloc_bulk_urb(hdev, skb);
1922 else
1923 urb = alloc_ctrl_urb(hdev, skb);
1924
1925 /* When the 0xfc01 command is issued to boot into
1926 * the operational firmware, it will actually not
1927 * send a command complete event. To keep the flow
1928 * control working inject that event here.
1929 */
1930 if (opcode == 0xfc01)
1931 inject_cmd_complete(hdev, opcode);
1932 } else {
1933 urb = alloc_ctrl_urb(hdev, skb);
1934 }
1935 if (IS_ERR(urb))
1936 return PTR_ERR(urb);
1937
1938 hdev->stat.cmd_tx++;
1939 return submit_or_queue_tx_urb(hdev, urb);
1940
1941 case HCI_ACLDATA_PKT:
1942 urb = alloc_bulk_urb(hdev, skb);
1943 if (IS_ERR(urb))
1944 return PTR_ERR(urb);
1945
1946 hdev->stat.acl_tx++;
1947 return submit_or_queue_tx_urb(hdev, urb);
1948
1949 case HCI_SCODATA_PKT:
1950 if (hci_conn_num(hdev, SCO_LINK) < 1)
1951 return -ENODEV;
1952
1953 urb = alloc_isoc_urb(hdev, skb);
1954 if (IS_ERR(urb))
1955 return PTR_ERR(urb);
1956
1957 hdev->stat.sco_tx++;
1958 return submit_tx_urb(hdev, urb);
1959 }
1960
1961 return -EILSEQ;
1962}
1963
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001964static int btusb_setup_intel_new(struct hci_dev *hdev)
1965{
1966 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1967 0x00, 0x08, 0x04, 0x00 };
1968 struct btusb_data *data = hci_get_drvdata(hdev);
1969 struct sk_buff *skb;
Loic Poulain6c483de2015-12-06 16:18:34 +01001970 struct intel_version ver;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001971 struct intel_boot_params *params;
1972 const struct firmware *fw;
1973 const u8 *fw_ptr;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02001974 u32 frag_len;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001975 char fwname[64];
1976 ktime_t calltime, delta, rettime;
1977 unsigned long long duration;
1978 int err;
1979
1980 BT_DBG("%s", hdev->name);
1981
1982 calltime = ktime_get();
1983
1984 /* Read the Intel version information to determine if the device
1985 * is in bootloader mode or if it already has operational firmware
1986 * loaded.
1987 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001988 err = btintel_read_version(hdev, &ver);
1989 if (err)
1990 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001991
1992 /* The hardware platform number has a fixed value of 0x37 and
1993 * for now only accept this single value.
1994 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001995 if (ver.hw_platform != 0x37) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001996 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01001997 hdev->name, ver.hw_platform);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001998 return -EINVAL;
1999 }
2000
2001 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
2002 * supported by this firmware loading method. This check has been
2003 * put in place to ensure correct forward compatibility options
2004 * when newer hardware variants come along.
2005 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002006 if (ver.hw_variant != 0x0b) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002007 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002008 hdev->name, ver.hw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002009 return -EINVAL;
2010 }
2011
Loic Poulain6c483de2015-12-06 16:18:34 +01002012 btintel_version_info(hdev, &ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002013
2014 /* The firmware variant determines if the device is in bootloader
2015 * mode or is running operational firmware. The value 0x06 identifies
2016 * the bootloader and the value 0x23 identifies the operational
2017 * firmware.
2018 *
2019 * When the operational firmware is already present, then only
2020 * the check for valid Bluetooth device address is needed. This
2021 * determines if the device will be added as configured or
2022 * unconfigured controller.
2023 *
2024 * It is not possible to use the Secure Boot Parameters in this
2025 * case since that command is only available in bootloader mode.
2026 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002027 if (ver.fw_variant == 0x23) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002028 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002029 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002030 return 0;
2031 }
2032
2033 /* If the device is not in bootloader mode, then the only possible
2034 * choice is to return an error and abort the device initialization.
2035 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002036 if (ver.fw_variant != 0x06) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002037 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002038 hdev->name, ver.fw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002039 return -ENODEV;
2040 }
2041
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002042 /* Read the secure boot parameters to identify the operating
2043 * details of the bootloader.
2044 */
2045 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2046 if (IS_ERR(skb)) {
2047 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2048 hdev->name, PTR_ERR(skb));
2049 return PTR_ERR(skb);
2050 }
2051
2052 if (skb->len != sizeof(*params)) {
2053 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2054 kfree_skb(skb);
2055 return -EILSEQ;
2056 }
2057
2058 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002059
2060 BT_INFO("%s: Device revision is %u", hdev->name,
2061 le16_to_cpu(params->dev_revid));
2062
2063 BT_INFO("%s: Secure boot is %s", hdev->name,
2064 params->secure_boot ? "enabled" : "disabled");
2065
Marcel Holtmann2220994e2015-10-13 13:54:55 +02002066 BT_INFO("%s: OTP lock is %s", hdev->name,
2067 params->otp_lock ? "enabled" : "disabled");
2068
2069 BT_INFO("%s: API lock is %s", hdev->name,
2070 params->api_lock ? "enabled" : "disabled");
2071
2072 BT_INFO("%s: Debug lock is %s", hdev->name,
2073 params->debug_lock ? "enabled" : "disabled");
2074
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002075 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2076 params->min_fw_build_nn, params->min_fw_build_cw,
2077 2000 + params->min_fw_build_yy);
2078
2079 /* It is required that every single firmware fragment is acknowledged
2080 * with a command complete event. If the boot parameters indicate
2081 * that this bootloader does not send them, then abort the setup.
2082 */
2083 if (params->limited_cce != 0x00) {
2084 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2085 hdev->name, params->limited_cce);
2086 kfree_skb(skb);
2087 return -EINVAL;
2088 }
2089
2090 /* If the OTP has no valid Bluetooth device address, then there will
2091 * also be no valid address for the operational firmware.
2092 */
2093 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2094 BT_INFO("%s: No device address configured", hdev->name);
2095 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2096 }
2097
2098 /* With this Intel bootloader only the hardware variant and device
2099 * revision information are used to select the right firmware.
2100 *
2101 * Currently this bootloader support is limited to hardware variant
2102 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2103 */
2104 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2105 le16_to_cpu(params->dev_revid));
2106
2107 err = request_firmware(&fw, fwname, &hdev->dev);
2108 if (err < 0) {
2109 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2110 hdev->name, err);
2111 kfree_skb(skb);
2112 return err;
2113 }
2114
2115 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2116
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002117 /* Save the DDC file name for later use to apply once the firmware
2118 * downloading is done.
2119 */
2120 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.ddc",
2121 le16_to_cpu(params->dev_revid));
2122
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002123 kfree_skb(skb);
2124
2125 if (fw->size < 644) {
2126 BT_ERR("%s: Invalid size of firmware file (%zu)",
2127 hdev->name, fw->size);
2128 err = -EBADF;
2129 goto done;
2130 }
2131
2132 set_bit(BTUSB_DOWNLOADING, &data->flags);
2133
2134 /* Start the firmware download transaction with the Init fragment
2135 * represented by the 128 bytes of CSS header.
2136 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002137 err = btintel_secure_send(hdev, 0x00, 128, fw->data);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002138 if (err < 0) {
2139 BT_ERR("%s: Failed to send firmware header (%d)",
2140 hdev->name, err);
2141 goto done;
2142 }
2143
2144 /* Send the 256 bytes of public key information from the firmware
2145 * as the PKey fragment.
2146 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002147 err = btintel_secure_send(hdev, 0x03, 256, fw->data + 128);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002148 if (err < 0) {
2149 BT_ERR("%s: Failed to send firmware public key (%d)",
2150 hdev->name, err);
2151 goto done;
2152 }
2153
2154 /* Send the 256 bytes of signature information from the firmware
2155 * as the Sign fragment.
2156 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002157 err = btintel_secure_send(hdev, 0x02, 256, fw->data + 388);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002158 if (err < 0) {
2159 BT_ERR("%s: Failed to send firmware signature (%d)",
2160 hdev->name, err);
2161 goto done;
2162 }
2163
2164 fw_ptr = fw->data + 644;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002165 frag_len = 0;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002166
2167 while (fw_ptr - fw->data < fw->size) {
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002168 struct hci_command_hdr *cmd = (void *)(fw_ptr + frag_len);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002169
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002170 frag_len += sizeof(*cmd) + cmd->plen;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002171
Minjune Kim5075eda2015-08-27 13:21:52 +09002172 /* The parameter length of the secure send command requires
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002173 * a 4 byte alignment. It happens so that the firmware file
2174 * contains proper Intel_NOP commands to align the fragments
2175 * as needed.
2176 *
2177 * Send set of commands with 4 byte alignment from the
2178 * firmware data buffer as a single Data fragement.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002179 */
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002180 if (!(frag_len % 4)) {
Marcel Holtmann09df1232015-07-05 14:55:36 +02002181 err = btintel_secure_send(hdev, 0x01, frag_len, fw_ptr);
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002182 if (err < 0) {
2183 BT_ERR("%s: Failed to send firmware data (%d)",
2184 hdev->name, err);
2185 goto done;
2186 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002187
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002188 fw_ptr += frag_len;
2189 frag_len = 0;
2190 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002191 }
2192
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002193 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2194
Johan Hedberga087a982015-01-30 10:58:54 +02002195 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2196
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002197 /* Before switching the device into operational mode and with that
2198 * booting the loaded firmware, wait for the bootloader notification
2199 * that all fragments have been successfully received.
2200 *
Johan Hedberga087a982015-01-30 10:58:54 +02002201 * When the event processing receives the notification, then the
2202 * BTUSB_DOWNLOADING flag will be cleared.
2203 *
2204 * The firmware loading should not take longer than 5 seconds
2205 * and thus just timeout if that happens and fail the setup
2206 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002207 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002208 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2209 TASK_INTERRUPTIBLE,
2210 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002211 if (err == 1) {
2212 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2213 err = -EINTR;
2214 goto done;
2215 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002216
Johan Hedberga087a982015-01-30 10:58:54 +02002217 if (err) {
2218 BT_ERR("%s: Firmware loading timeout", hdev->name);
2219 err = -ETIMEDOUT;
2220 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002221 }
2222
2223 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2224 BT_ERR("%s: Firmware loading failed", hdev->name);
2225 err = -ENOEXEC;
2226 goto done;
2227 }
2228
2229 rettime = ktime_get();
2230 delta = ktime_sub(rettime, calltime);
2231 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2232
2233 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2234
2235done:
2236 release_firmware(fw);
2237
2238 if (err < 0)
2239 return err;
2240
2241 calltime = ktime_get();
2242
2243 set_bit(BTUSB_BOOTING, &data->flags);
2244
2245 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2246 HCI_INIT_TIMEOUT);
2247 if (IS_ERR(skb))
2248 return PTR_ERR(skb);
2249
2250 kfree_skb(skb);
2251
2252 /* The bootloader will not indicate when the device is ready. This
2253 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002254 *
2255 * Booting into operational firmware should not take longer than
2256 * 1 second. However if that happens, then just fail the setup
2257 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002258 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002259 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002260
Johan Hedberg129a7692015-02-14 09:33:35 +02002261 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2262 TASK_INTERRUPTIBLE,
2263 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002264
Johan Hedbergfad70972015-01-30 10:58:55 +02002265 if (err == 1) {
2266 BT_ERR("%s: Device boot interrupted", hdev->name);
2267 return -EINTR;
2268 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002269
Johan Hedbergfad70972015-01-30 10:58:55 +02002270 if (err) {
2271 BT_ERR("%s: Device boot timeout", hdev->name);
2272 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002273 }
2274
2275 rettime = ktime_get();
2276 delta = ktime_sub(rettime, calltime);
2277 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2278
2279 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2280
2281 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2282
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002283 /* Once the device is running in operational mode, it needs to apply
2284 * the device configuration (DDC) parameters.
2285 *
2286 * The device can work without DDC parameters, so even if it fails
2287 * to load the file, no need to fail the setup.
2288 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002289 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002290
Marcel Holtmann213445b2015-10-21 02:45:19 +02002291 /* Set the event mask for Intel specific vendor events. This enables
2292 * a few extra events that are useful during general operation. It
2293 * does not enable any debugging related events.
2294 *
2295 * The device will function correctly without these events enabled
2296 * and thus no need to fail the setup.
2297 */
2298 btintel_set_event_mask(hdev, false);
2299
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002300 return 0;
2301}
2302
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002303static int btusb_shutdown_intel(struct hci_dev *hdev)
2304{
2305 struct sk_buff *skb;
2306 long ret;
2307
2308 /* Some platforms have an issue with BT LED when the interface is
2309 * down or BT radio is turned off, which takes 5 seconds to BT LED
2310 * goes off. This command turns off the BT LED immediately.
2311 */
2312 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2313 if (IS_ERR(skb)) {
2314 ret = PTR_ERR(skb);
2315 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2316 hdev->name, ret);
2317 return ret;
2318 }
2319 kfree_skb(skb);
2320
2321 return 0;
2322}
2323
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002324static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2325 const bdaddr_t *bdaddr)
2326{
2327 struct sk_buff *skb;
2328 u8 buf[8];
2329 long ret;
2330
2331 buf[0] = 0xfe;
2332 buf[1] = sizeof(bdaddr_t);
2333 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2334
2335 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2336 if (IS_ERR(skb)) {
2337 ret = PTR_ERR(skb);
2338 BT_ERR("%s: changing Marvell device address failed (%ld)",
2339 hdev->name, ret);
2340 return ret;
2341 }
2342 kfree_skb(skb);
2343
2344 return 0;
2345}
2346
Toshi Kikuchi58592232014-12-12 10:58:05 -08002347static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2348 const bdaddr_t *bdaddr)
2349{
2350 struct sk_buff *skb;
2351 u8 buf[10];
2352 long ret;
2353
2354 buf[0] = 0x01;
2355 buf[1] = 0x01;
2356 buf[2] = 0x00;
2357 buf[3] = sizeof(bdaddr_t);
2358 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2359
2360 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2361 if (IS_ERR(skb)) {
2362 ret = PTR_ERR(skb);
2363 BT_ERR("%s: Change address command failed (%ld)",
2364 hdev->name, ret);
2365 return ret;
2366 }
2367 kfree_skb(skb);
2368
2369 return 0;
2370}
2371
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002372#define QCA_DFU_PACKET_LEN 4096
2373
2374#define QCA_GET_TARGET_VERSION 0x09
2375#define QCA_CHECK_STATUS 0x05
2376#define QCA_DFU_DOWNLOAD 0x01
2377
2378#define QCA_SYSCFG_UPDATED 0x40
2379#define QCA_PATCH_UPDATED 0x80
2380#define QCA_DFU_TIMEOUT 3000
2381
2382struct qca_version {
2383 __le32 rom_version;
2384 __le32 patch_version;
2385 __le32 ram_version;
2386 __le32 ref_clock;
2387 __u8 reserved[4];
2388} __packed;
2389
2390struct qca_rampatch_version {
2391 __le16 rom_version;
2392 __le16 patch_version;
2393} __packed;
2394
2395struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002396 u32 rom_version;
2397 u8 rampatch_hdr; /* length of header in rampatch */
2398 u8 nvm_hdr; /* length of header in NVM */
2399 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002400};
2401
2402static const struct qca_device_info qca_devices_table[] = {
2403 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2404 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002405 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002406 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2407 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2408 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2409};
2410
2411static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2412 void *data, u16 size)
2413{
2414 struct btusb_data *btdata = hci_get_drvdata(hdev);
2415 struct usb_device *udev = btdata->udev;
2416 int pipe, err;
2417 u8 *buf;
2418
2419 buf = kmalloc(size, GFP_KERNEL);
2420 if (!buf)
2421 return -ENOMEM;
2422
2423 /* Found some of USB hosts have IOT issues with ours so that we should
2424 * not wait until HCI layer is ready.
2425 */
2426 pipe = usb_rcvctrlpipe(udev, 0);
2427 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2428 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2429 if (err < 0) {
2430 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2431 goto done;
2432 }
2433
2434 memcpy(data, buf, size);
2435
2436done:
2437 kfree(buf);
2438
2439 return err;
2440}
2441
2442static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2443 const struct firmware *firmware,
2444 size_t hdr_size)
2445{
2446 struct btusb_data *btdata = hci_get_drvdata(hdev);
2447 struct usb_device *udev = btdata->udev;
2448 size_t count, size, sent = 0;
2449 int pipe, len, err;
2450 u8 *buf;
2451
2452 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2453 if (!buf)
2454 return -ENOMEM;
2455
2456 count = firmware->size;
2457
2458 size = min_t(size_t, count, hdr_size);
2459 memcpy(buf, firmware->data, size);
2460
2461 /* USB patches should go down to controller through USB path
2462 * because binary format fits to go down through USB channel.
2463 * USB control path is for patching headers and USB bulk is for
2464 * patch body.
2465 */
2466 pipe = usb_sndctrlpipe(udev, 0);
2467 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2468 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2469 if (err < 0) {
2470 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2471 goto done;
2472 }
2473
2474 sent += size;
2475 count -= size;
2476
2477 while (count) {
2478 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2479
2480 memcpy(buf, firmware->data + sent, size);
2481
2482 pipe = usb_sndbulkpipe(udev, 0x02);
2483 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2484 QCA_DFU_TIMEOUT);
2485 if (err < 0) {
2486 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2487 hdev->name, sent, firmware->size, err);
2488 break;
2489 }
2490
2491 if (size != len) {
2492 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2493 err = -EILSEQ;
2494 break;
2495 }
2496
2497 sent += size;
2498 count -= size;
2499 }
2500
2501done:
2502 kfree(buf);
2503 return err;
2504}
2505
2506static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2507 struct qca_version *ver,
2508 const struct qca_device_info *info)
2509{
2510 struct qca_rampatch_version *rver;
2511 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002512 u32 ver_rom, ver_patch;
2513 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002514 char fwname[64];
2515 int err;
2516
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002517 ver_rom = le32_to_cpu(ver->rom_version);
2518 ver_patch = le32_to_cpu(ver->patch_version);
2519
2520 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002521
2522 err = request_firmware(&fw, fwname, &hdev->dev);
2523 if (err) {
2524 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2525 hdev->name, fwname, err);
2526 return err;
2527 }
2528
2529 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002530
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002531 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2532 rver_rom = le16_to_cpu(rver->rom_version);
2533 rver_patch = le16_to_cpu(rver->patch_version);
2534
2535 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2536 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2537 ver_patch);
2538
2539 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002540 BT_ERR("%s: rampatch file version did not match with firmware",
2541 hdev->name);
2542 err = -EINVAL;
2543 goto done;
2544 }
2545
2546 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2547
2548done:
2549 release_firmware(fw);
2550
2551 return err;
2552}
2553
2554static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2555 struct qca_version *ver,
2556 const struct qca_device_info *info)
2557{
2558 const struct firmware *fw;
2559 char fwname[64];
2560 int err;
2561
2562 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2563 le32_to_cpu(ver->rom_version));
2564
2565 err = request_firmware(&fw, fwname, &hdev->dev);
2566 if (err) {
2567 BT_ERR("%s: failed to request NVM file: %s (%d)",
2568 hdev->name, fwname, err);
2569 return err;
2570 }
2571
2572 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2573
2574 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2575
2576 release_firmware(fw);
2577
2578 return err;
2579}
2580
2581static int btusb_setup_qca(struct hci_dev *hdev)
2582{
2583 const struct qca_device_info *info = NULL;
2584 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002585 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002586 u8 status;
2587 int i, err;
2588
2589 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002590 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002591 if (err < 0)
2592 return err;
2593
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002594 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002595 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002596 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002597 info = &qca_devices_table[i];
2598 }
2599 if (!info) {
2600 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002601 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002602 return -ENODEV;
2603 }
2604
2605 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2606 sizeof(status));
2607 if (err < 0)
2608 return err;
2609
2610 if (!(status & QCA_PATCH_UPDATED)) {
2611 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2612 if (err < 0)
2613 return err;
2614 }
2615
2616 if (!(status & QCA_SYSCFG_UPDATED)) {
2617 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2618 if (err < 0)
2619 return err;
2620 }
2621
2622 return 0;
2623}
2624
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002625#ifdef CONFIG_BT_HCIBTUSB_BCM
2626static inline int __set_diag_interface(struct hci_dev *hdev)
2627{
2628 struct btusb_data *data = hci_get_drvdata(hdev);
2629 struct usb_interface *intf = data->diag;
2630 int i;
2631
2632 if (!data->diag)
2633 return -ENODEV;
2634
2635 data->diag_tx_ep = NULL;
2636 data->diag_rx_ep = NULL;
2637
2638 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2639 struct usb_endpoint_descriptor *ep_desc;
2640
2641 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2642
2643 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2644 data->diag_tx_ep = ep_desc;
2645 continue;
2646 }
2647
2648 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2649 data->diag_rx_ep = ep_desc;
2650 continue;
2651 }
2652 }
2653
2654 if (!data->diag_tx_ep || !data->diag_rx_ep) {
2655 BT_ERR("%s invalid diagnostic descriptors", hdev->name);
2656 return -ENODEV;
2657 }
2658
2659 return 0;
2660}
2661
2662static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2663{
2664 struct btusb_data *data = hci_get_drvdata(hdev);
2665 struct sk_buff *skb;
2666 struct urb *urb;
2667 unsigned int pipe;
2668
2669 if (!data->diag_tx_ep)
2670 return ERR_PTR(-ENODEV);
2671
2672 urb = usb_alloc_urb(0, GFP_KERNEL);
2673 if (!urb)
2674 return ERR_PTR(-ENOMEM);
2675
2676 skb = bt_skb_alloc(2, GFP_KERNEL);
2677 if (!skb) {
2678 usb_free_urb(urb);
2679 return ERR_PTR(-ENOMEM);
2680 }
2681
2682 *skb_put(skb, 1) = 0xf0;
2683 *skb_put(skb, 1) = enable;
2684
2685 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2686
2687 usb_fill_bulk_urb(urb, data->udev, pipe,
2688 skb->data, skb->len, btusb_tx_complete, skb);
2689
2690 skb->dev = (void *)hdev;
2691
2692 return urb;
2693}
2694
2695static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2696{
2697 struct btusb_data *data = hci_get_drvdata(hdev);
2698 struct urb *urb;
2699
2700 if (!data->diag)
2701 return -ENODEV;
2702
2703 if (!test_bit(HCI_RUNNING, &hdev->flags))
2704 return -ENETDOWN;
2705
2706 urb = alloc_diag_urb(hdev, enable);
2707 if (IS_ERR(urb))
2708 return PTR_ERR(urb);
2709
2710 return submit_or_queue_tx_urb(hdev, urb);
2711}
2712#endif
2713
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002714static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002715 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002716{
2717 struct usb_endpoint_descriptor *ep_desc;
2718 struct btusb_data *data;
2719 struct hci_dev *hdev;
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002720 unsigned ifnum_base;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002721 int i, err;
2722
2723 BT_DBG("intf %p id %p", intf, id);
2724
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002725 /* interface numbers are hardcoded in the spec */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002726 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
2727 if (!(id->driver_info & BTUSB_IFNUM_2))
2728 return -ENODEV;
2729 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
2730 return -ENODEV;
2731 }
2732
2733 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002734
2735 if (!id->driver_info) {
2736 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002737
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002738 match = usb_match_id(intf, blacklist_table);
2739 if (match)
2740 id = match;
2741 }
2742
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002743 if (id->driver_info == BTUSB_IGNORE)
2744 return -ENODEV;
2745
Steven.Li2d25f8b2011-07-01 14:02:36 +08002746 if (id->driver_info & BTUSB_ATH3012) {
2747 struct usb_device *udev = interface_to_usbdev(intf);
2748
2749 /* Old firmware would otherwise let ath3k driver load
2750 * patch and sysconfig files */
2751 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2752 return -ENODEV;
2753 }
2754
Sachin Kamat98921db2012-07-27 12:38:39 +05302755 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002756 if (!data)
2757 return -ENOMEM;
2758
2759 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2760 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2761
2762 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2763 data->intr_ep = ep_desc;
2764 continue;
2765 }
2766
2767 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2768 data->bulk_tx_ep = ep_desc;
2769 continue;
2770 }
2771
2772 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2773 data->bulk_rx_ep = ep_desc;
2774 continue;
2775 }
2776 }
2777
Sachin Kamat98921db2012-07-27 12:38:39 +05302778 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002779 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002780
Marcel Holtmann893ba542015-01-28 20:27:34 -08002781 if (id->driver_info & BTUSB_AMP) {
2782 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2783 data->cmdreq = 0x2b;
2784 } else {
2785 data->cmdreq_type = USB_TYPE_CLASS;
2786 data->cmdreq = 0x00;
2787 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002788
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002789 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002790 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002791
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002792 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002793 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002794 init_usb_anchor(&data->deferred);
2795 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002796 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002797
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002798 init_usb_anchor(&data->intr_anchor);
2799 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002800 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002801 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002802 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002803
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002804 if (id->driver_info & BTUSB_INTEL_NEW) {
2805 data->recv_event = btusb_recv_event_intel;
2806 data->recv_bulk = btusb_recv_bulk_intel;
2807 set_bit(BTUSB_BOOTLOADER, &data->flags);
2808 } else {
2809 data->recv_event = hci_recv_frame;
2810 data->recv_bulk = btusb_recv_bulk;
2811 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002812
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002813 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302814 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002815 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002816
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002817 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002818 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002819
Marcel Holtmann893ba542015-01-28 20:27:34 -08002820 if (id->driver_info & BTUSB_AMP)
2821 hdev->dev_type = HCI_AMP;
2822 else
2823 hdev->dev_type = HCI_BREDR;
2824
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002825 data->hdev = hdev;
2826
2827 SET_HCIDEV_DEV(hdev, &intf->dev);
2828
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002829 hdev->open = btusb_open;
2830 hdev->close = btusb_close;
2831 hdev->flush = btusb_flush;
2832 hdev->send = btusb_send_frame;
2833 hdev->notify = btusb_notify;
2834
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02002835 if (id->driver_info & BTUSB_BCM2045)
2836 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2837
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002838 if (id->driver_info & BTUSB_BCM92035)
2839 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002840
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002841#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002842 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002843 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002844 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002845 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002846 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002847
2848 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002849 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002850 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002851
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002852 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002853 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002854 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002855 hdev->set_diag = btusb_bcm_set_diag;
2856
2857 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002858 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002859 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002860#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002861
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002862 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002863 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002864 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002865 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02002866 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002867 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002868 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002869 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02002870 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002871 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002872
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002873 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002874 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002875 hdev->send = btusb_send_frame_intel;
2876 hdev->setup = btusb_setup_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02002877 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02002878 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002879 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002880 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02002881 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002882 }
2883
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002884 if (id->driver_info & BTUSB_MARVELL)
2885 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2886
Marcel Holtmann661cf882015-01-02 23:35:20 -08002887 if (id->driver_info & BTUSB_SWAVE) {
2888 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002889 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002890 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002891
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02002892 if (id->driver_info & BTUSB_INTEL_BOOT) {
2893 hdev->manufacturer = 2;
Marcel Holtmann40df7832014-07-06 13:29:58 +02002894 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02002895 }
Marcel Holtmann40df7832014-07-06 13:29:58 +02002896
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002897 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002898 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002899 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002900 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2901 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002902
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002903 if (id->driver_info & BTUSB_QCA_ROME) {
2904 data->setup_on_usb = btusb_setup_qca;
2905 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2906 }
2907
Carlo Caionedb33c772015-05-14 10:49:09 +02002908#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002909 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002910 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002911
2912 /* Realtek devices lose their updated firmware over suspend,
2913 * but the USB hub doesn't notice any status change.
2914 * Explicitly request a device reset on resume.
2915 */
2916 set_bit(BTUSB_RESET_RESUME, &data->flags);
2917 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002918#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002919
Marcel Holtmann893ba542015-01-28 20:27:34 -08002920 if (id->driver_info & BTUSB_AMP) {
2921 /* AMP controllers do not support SCO packets */
2922 data->isoc = NULL;
2923 } else {
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002924 /* Interface orders are hardcoded in the specification */
2925 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
Marcel Holtmann893ba542015-01-28 20:27:34 -08002926 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002927
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002928 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002929 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002930
2931 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2932 if (!disable_scofix)
2933 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2934 }
2935
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002936 if (id->driver_info & BTUSB_BROKEN_ISOC)
2937 data->isoc = NULL;
2938
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002939 if (id->driver_info & BTUSB_DIGIANSWER) {
2940 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002941 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002942 }
2943
2944 if (id->driver_info & BTUSB_CSR) {
2945 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002946 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002947
2948 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002949 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002950 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002951
2952 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03002953 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08002954 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002955
2956 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002957 }
2958
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002959 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002960 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002961
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002962 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002963 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2964 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2965 }
2966
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002967 if (id->driver_info & BTUSB_INTEL_BOOT) {
2968 /* A bug in the bootloader causes that interrupt interface is
2969 * only enabled after receiving SetInterface(0, AltSetting=0).
2970 */
2971 err = usb_set_interface(data->udev, 0, 0);
2972 if (err < 0) {
2973 BT_ERR("failed to set interface 0, alt 0 %d", err);
2974 hci_free_dev(hdev);
2975 return err;
2976 }
2977 }
2978
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002979 if (data->isoc) {
2980 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002981 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002982 if (err < 0) {
2983 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002984 return err;
2985 }
2986 }
2987
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002988#ifdef CONFIG_BT_HCIBTUSB_BCM
2989 if (data->diag) {
2990 if (!usb_driver_claim_interface(&btusb_driver,
2991 data->diag, data))
2992 __set_diag_interface(hdev);
2993 else
2994 data->diag = NULL;
2995 }
2996#endif
2997
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002998 err = hci_register_dev(hdev);
2999 if (err < 0) {
3000 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003001 return err;
3002 }
3003
3004 usb_set_intfdata(intf, data);
3005
3006 return 0;
3007}
3008
3009static void btusb_disconnect(struct usb_interface *intf)
3010{
3011 struct btusb_data *data = usb_get_intfdata(intf);
3012 struct hci_dev *hdev;
3013
3014 BT_DBG("intf %p", intf);
3015
3016 if (!data)
3017 return;
3018
3019 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003020 usb_set_intfdata(data->intf, NULL);
3021
3022 if (data->isoc)
3023 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003024
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003025 if (data->diag)
3026 usb_set_intfdata(data->diag, NULL);
3027
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003028 hci_unregister_dev(hdev);
3029
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003030 if (intf == data->intf) {
3031 if (data->isoc)
3032 usb_driver_release_interface(&btusb_driver, data->isoc);
3033 if (data->diag)
3034 usb_driver_release_interface(&btusb_driver, data->diag);
3035 } else if (intf == data->isoc) {
3036 if (data->diag)
3037 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003038 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003039 } else if (intf == data->diag) {
3040 usb_driver_release_interface(&btusb_driver, data->intf);
3041 if (data->isoc)
3042 usb_driver_release_interface(&btusb_driver, data->isoc);
3043 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003044
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003045 hci_free_dev(hdev);
3046}
3047
Oliver Neukum7bee5492009-08-24 23:44:59 +02003048#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003049static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3050{
3051 struct btusb_data *data = usb_get_intfdata(intf);
3052
3053 BT_DBG("intf %p", intf);
3054
3055 if (data->suspend_count++)
3056 return 0;
3057
Oliver Neukum7bee5492009-08-24 23:44:59 +02003058 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003059 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003060 set_bit(BTUSB_SUSPENDING, &data->flags);
3061 spin_unlock_irq(&data->txlock);
3062 } else {
3063 spin_unlock_irq(&data->txlock);
3064 data->suspend_count--;
3065 return -EBUSY;
3066 }
3067
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003068 cancel_work_sync(&data->work);
3069
Oliver Neukum7bee5492009-08-24 23:44:59 +02003070 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003071 usb_kill_anchored_urbs(&data->tx_anchor);
3072
Daniel Drake04b8c812015-05-21 08:23:50 -06003073 /* Optionally request a device reset on resume, but only when
3074 * wakeups are disabled. If wakeups are enabled we assume the
3075 * device will stay powered up throughout suspend.
3076 */
3077 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
3078 !device_may_wakeup(&data->udev->dev))
3079 data->udev->reset_resume = 1;
3080
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003081 return 0;
3082}
3083
Oliver Neukum7bee5492009-08-24 23:44:59 +02003084static void play_deferred(struct btusb_data *data)
3085{
3086 struct urb *urb;
3087 int err;
3088
3089 while ((urb = usb_get_from_anchor(&data->deferred))) {
3090 err = usb_submit_urb(urb, GFP_ATOMIC);
3091 if (err < 0)
3092 break;
3093
3094 data->tx_in_flight++;
3095 }
3096 usb_scuttle_anchored_urbs(&data->deferred);
3097}
3098
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003099static int btusb_resume(struct usb_interface *intf)
3100{
3101 struct btusb_data *data = usb_get_intfdata(intf);
3102 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003103 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003104
3105 BT_DBG("intf %p", intf);
3106
3107 if (--data->suspend_count)
3108 return 0;
3109
3110 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003111 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003112
3113 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3114 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3115 if (err < 0) {
3116 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003117 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003118 }
3119 }
3120
3121 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003122 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3123 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003124 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003125 goto failed;
3126 }
3127
3128 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003129 }
3130
3131 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3132 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3133 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3134 else
3135 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3136 }
3137
Oliver Neukum7bee5492009-08-24 23:44:59 +02003138 spin_lock_irq(&data->txlock);
3139 play_deferred(data);
3140 clear_bit(BTUSB_SUSPENDING, &data->flags);
3141 spin_unlock_irq(&data->txlock);
3142 schedule_work(&data->work);
3143
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003144 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003145
3146failed:
3147 usb_scuttle_anchored_urbs(&data->deferred);
3148done:
3149 spin_lock_irq(&data->txlock);
3150 clear_bit(BTUSB_SUSPENDING, &data->flags);
3151 spin_unlock_irq(&data->txlock);
3152
3153 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003154}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003155#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003156
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003157static struct usb_driver btusb_driver = {
3158 .name = "btusb",
3159 .probe = btusb_probe,
3160 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003161#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003162 .suspend = btusb_suspend,
3163 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003164#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003165 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003166 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003167 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003168};
3169
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003170module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003171
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003172module_param(disable_scofix, bool, 0644);
3173MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3174
3175module_param(force_scofix, bool, 0644);
3176MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3177
3178module_param(reset, bool, 0644);
3179MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3180
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003181MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3182MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3183MODULE_VERSION(VERSION);
3184MODULE_LICENSE("GPL");