blob: 699b2dbaf75b2e44b7bcabab7fbfecd00bf7d5b4 [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
Szymon Janc418678b2016-09-01 17:22:37 +020065#define BTUSB_CW6622 0x100000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020066
Marcel Holtmann54265202013-10-11 07:46:18 -070067static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020068 /* Generic Bluetooth USB device */
69 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
70
Marcel Holtmann893ba542015-01-28 20:27:34 -080071 /* Generic Bluetooth AMP device */
72 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
73
Daniel Draked63b2822015-07-17 11:12:25 -060074 /* Generic Bluetooth USB interface */
75 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
76
Henrik Rydberg1fa65352012-08-25 19:28:06 +020077 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010078 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020079 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020080
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080081 /* MediaTek MT76x0E */
82 { USB_DEVICE(0x0e8d, 0x763f) },
83
Oliver Neukumc510eae2011-09-21 11:41:45 +020084 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040085 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020086
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090087 /* Apple MacBookPro 7,1 */
88 { USB_DEVICE(0x05ac, 0x8213) },
89
Cyril Lacoux0a79f672010-07-14 10:29:27 +040090 /* Apple iMac11,1 */
91 { USB_DEVICE(0x05ac, 0x8215) },
92
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090093 /* Apple MacBookPro6,2 */
94 { USB_DEVICE(0x05ac, 0x8218) },
95
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010096 /* Apple MacBookAir3,1, MacBookAir3,2 */
97 { USB_DEVICE(0x05ac, 0x821b) },
98
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040099 /* Apple MacBookAir4,1 */
100 { USB_DEVICE(0x05ac, 0x821f) },
101
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -0300102 /* Apple MacBookPro8,2 */
103 { USB_DEVICE(0x05ac, 0x821a) },
104
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200105 /* Apple MacMini5,1 */
106 { USB_DEVICE(0x05ac, 0x8281) },
107
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200108 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800109 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200110
111 /* Bluetooth Ultraport Module from IBM */
112 { USB_DEVICE(0x04bf, 0x030a) },
113
114 /* ALPS Modules with non-standard id */
115 { USB_DEVICE(0x044e, 0x3001) },
116 { USB_DEVICE(0x044e, 0x3002) },
117
118 /* Ericsson with non-standard id */
119 { USB_DEVICE(0x0bdb, 0x1002) },
120
121 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100122 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200123
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800124 /* Broadcom BCM20702A0 */
125 { USB_DEVICE(0x413c, 0x8197) },
126
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800127 /* Broadcom BCM20702B0 (Dynex/Insignia) */
128 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
129
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300130 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
131 { USB_DEVICE(0x105b, 0xe065), .driver_info = BTUSB_BCM_PATCHRAM },
132
Christoph Haaga57bac42017-02-10 14:02:45 +0100133 /* Broadcom BCM920703 (HTC Vive) */
134 { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
135 .driver_info = BTUSB_BCM_PATCHRAM },
136
Steven Harms98514032012-04-13 14:45:55 -0400137 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100138 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
139 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400140
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100141 /* Lite-On Technology - Broadcom based */
142 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
143 .driver_info = BTUSB_BCM_PATCHRAM },
144
Andy Shevchenko0b880062014-02-18 18:26:19 +0200145 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700146 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
147 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300148
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200149 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abda2015-01-17 05:29:12 +0100150 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
151 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200152
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100153 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700154 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
155 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100156
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100157 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700158 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
159 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100160
Dmitry Tunin1623d0b2015-12-05 14:09:36 +0300161 /* Toshiba Corp - Broadcom based */
162 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
163 .driver_info = BTUSB_BCM_PATCHRAM },
164
Marcel Holtmann40df7832014-07-06 13:29:58 +0200165 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df02014-07-06 14:53:55 +0200166 { USB_DEVICE(0x8087, 0x0a5a),
167 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200168
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200169 { } /* Terminating entry */
170};
171
172MODULE_DEVICE_TABLE(usb, btusb_table);
173
Marcel Holtmann54265202013-10-11 07:46:18 -0700174static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200175 /* CSR BlueCore devices */
176 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
177
178 /* Broadcom BCM2033 without firmware */
179 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
180
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200181 /* Broadcom BCM2045 devices */
182 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
183
Bala Shanmugambe931122010-11-26 17:35:46 +0530184 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200185 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
186 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200187 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200188 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530189 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200190 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700191 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530192
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800193 /* Atheros AR9285 Malbec with sflash firmware */
194 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
195
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530196 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200197 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
198 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
199 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
200 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
201 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300202 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530203 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin28c971d2016-02-10 00:49:11 +0300204 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200205 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
206 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
207 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
208 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700209 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200210 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
211 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c72015-06-18 20:41:51 +0300212 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300213 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200214 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin81d90442016-02-28 11:04:06 +0300215 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200216 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300217 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200218 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100219 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200220 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800221 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800222 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900223 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200224 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100225 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100226 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200227 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800228 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300229 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200230 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800231 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800232 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800233 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200234 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
235 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800236 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300237 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530238 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300239 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300240 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530241 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300242 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300243 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300244 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300245 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530246
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800247 /* Atheros AR5BBU12 with sflash firmware */
248 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
249
Michael Gruetzner85d59722012-05-02 22:33:40 +0200250 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530251 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200252 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200253
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000254 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800255 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Kai-Heng Feng93519932016-08-16 12:50:06 +0800256 { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700257 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
258 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Yvain THONNART47ca5892016-06-11 15:43:30 +0200259 { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
Dmitry Tunin1144a4e2016-09-21 19:13:08 +0300260 { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000261
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200262 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100263 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200264 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
265 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200266
267 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100268 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
269 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200270
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200271 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100272 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
273 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200274
275 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100276 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200277
278 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100279 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200280
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100281 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100282 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100283 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200284
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100285 /* Belkin F8T012 and F8T013 devices */
286 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
287 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200288
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100289 /* Asus WL-BTD202 device */
290 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
291
292 /* Kensington Bluetooth USB adapter */
293 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
294
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200295 /* RTX Telecom based adapters with buggy SCO support */
296 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
297 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
298
299 /* CONWISE Technology based adapters with buggy SCO support */
Szymon Janc418678b2016-09-01 17:22:37 +0200300 { USB_DEVICE(0x0e5e, 0x6622),
301 .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200302
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800303 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300304 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800305
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200306 /* Digianswer devices */
307 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
308 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
309
310 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200311 { USB_DEVICE(0x0a12, 0x0002),
312 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200313
314 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200315 { USB_DEVICE(0x16d3, 0x0002),
316 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200317
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800318 /* Marvell Bluetooth devices */
319 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
320 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
Amitkumar Karwar1165df02016-09-28 16:18:35 +0530321 { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800322
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800323 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800324 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700325 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800326 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800327 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong An439e65d2016-06-20 13:43:40 -0700328 { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700329
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800330 /* Other Intel Bluetooth devices */
331 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
332 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700333
Daniel Drakea2698a92015-04-16 14:09:55 -0600334 /* Realtek Bluetooth devices */
335 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
336 .driver_info = BTUSB_REALTEK },
337
338 /* Additional Realtek 8723AE Bluetooth devices */
339 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
340 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
341
342 /* Additional Realtek 8723BE Bluetooth devices */
343 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
344 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
345 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
346 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
347 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
348
349 /* Additional Realtek 8821AE Bluetooth devices */
350 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
351 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
352 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
353 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
354 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
355
Peter Poklop4481c072015-08-15 20:47:09 +0200356 /* Silicon Wave based devices */
357 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
358
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200359 { } /* Terminating entry */
360};
361
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200362#define BTUSB_MAX_ISOC_FRAMES 10
363
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200364#define BTUSB_INTR_RUNNING 0
365#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200366#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200367#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300368#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800369#define BTUSB_BOOTLOADER 5
370#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800371#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800372#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800373#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600374#define BTUSB_RESET_RESUME 10
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200375#define BTUSB_DIAG_RUNNING 11
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200376
377struct btusb_data {
378 struct hci_dev *hdev;
379 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200380 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200381 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200382 struct usb_interface *diag;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200383
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200384 unsigned long flags;
385
386 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200387 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200388
Marcel Holtmann803b5832014-09-16 08:00:29 +0200389 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200390 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200391 int tx_in_flight;
392 spinlock_t txlock;
393
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200394 struct usb_anchor intr_anchor;
395 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200396 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200397 struct usb_anchor diag_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200398 spinlock_t rxlock;
399
400 struct sk_buff *evt_skb;
401 struct sk_buff *acl_skb;
402 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200403
404 struct usb_endpoint_descriptor *intr_ep;
405 struct usb_endpoint_descriptor *bulk_tx_ep;
406 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200407 struct usb_endpoint_descriptor *isoc_tx_ep;
408 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200409 struct usb_endpoint_descriptor *diag_tx_ep;
410 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200411
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100412 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800413 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100414
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100415 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200416 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100417 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100418
Marcel Holtmann97307f52015-01-12 13:51:10 -0800419 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100420 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000421
422 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200423};
424
Marcel Holtmann803b5832014-09-16 08:00:29 +0200425static inline void btusb_free_frags(struct btusb_data *data)
426{
427 unsigned long flags;
428
429 spin_lock_irqsave(&data->rxlock, flags);
430
431 kfree_skb(data->evt_skb);
432 data->evt_skb = NULL;
433
434 kfree_skb(data->acl_skb);
435 data->acl_skb = NULL;
436
437 kfree_skb(data->sco_skb);
438 data->sco_skb = NULL;
439
440 spin_unlock_irqrestore(&data->rxlock, flags);
441}
442
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200443static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
444{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200445 struct sk_buff *skb;
446 int err = 0;
447
448 spin_lock(&data->rxlock);
449 skb = data->evt_skb;
450
451 while (count) {
452 int len;
453
454 if (!skb) {
455 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
456 if (!skb) {
457 err = -ENOMEM;
458 break;
459 }
460
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100461 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
462 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200463 }
464
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100465 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200466 memcpy(skb_put(skb, len), buffer, len);
467
468 count -= len;
469 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100470 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200471
472 if (skb->len == HCI_EVENT_HDR_SIZE) {
473 /* Complete event header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100474 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200475
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100476 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200477 kfree_skb(skb);
478 skb = NULL;
479
480 err = -EILSEQ;
481 break;
482 }
483 }
484
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100485 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200486 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800487 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200488 skb = NULL;
489 }
490 }
491
492 data->evt_skb = skb;
493 spin_unlock(&data->rxlock);
494
495 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200496}
497
498static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
499{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200500 struct sk_buff *skb;
501 int err = 0;
502
503 spin_lock(&data->rxlock);
504 skb = data->acl_skb;
505
506 while (count) {
507 int len;
508
509 if (!skb) {
510 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
511 if (!skb) {
512 err = -ENOMEM;
513 break;
514 }
515
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100516 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
517 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200518 }
519
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100520 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200521 memcpy(skb_put(skb, len), buffer, len);
522
523 count -= len;
524 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100525 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200526
527 if (skb->len == HCI_ACL_HDR_SIZE) {
528 __le16 dlen = hci_acl_hdr(skb)->dlen;
529
530 /* Complete ACL header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100531 hci_skb_expect(skb) = __le16_to_cpu(dlen);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200532
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100533 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200534 kfree_skb(skb);
535 skb = NULL;
536
537 err = -EILSEQ;
538 break;
539 }
540 }
541
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100542 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200543 /* Complete frame */
544 hci_recv_frame(data->hdev, skb);
545 skb = NULL;
546 }
547 }
548
549 data->acl_skb = skb;
550 spin_unlock(&data->rxlock);
551
552 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200553}
554
555static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
556{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200557 struct sk_buff *skb;
558 int err = 0;
559
560 spin_lock(&data->rxlock);
561 skb = data->sco_skb;
562
563 while (count) {
564 int len;
565
566 if (!skb) {
567 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
568 if (!skb) {
569 err = -ENOMEM;
570 break;
571 }
572
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100573 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
574 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200575 }
576
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100577 len = min_t(uint, hci_skb_expect(skb), count);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200578 memcpy(skb_put(skb, len), buffer, len);
579
580 count -= len;
581 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100582 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200583
584 if (skb->len == HCI_SCO_HDR_SIZE) {
585 /* Complete SCO header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100586 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200587
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100588 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200589 kfree_skb(skb);
590 skb = NULL;
591
592 err = -EILSEQ;
593 break;
594 }
595 }
596
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100597 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200598 /* Complete frame */
599 hci_recv_frame(data->hdev, skb);
600 skb = NULL;
601 }
602 }
603
604 data->sco_skb = skb;
605 spin_unlock(&data->rxlock);
606
607 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200608}
609
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610static void btusb_intr_complete(struct urb *urb)
611{
612 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100613 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200614 int err;
615
Marcel Holtmann89e75332014-09-16 04:44:50 +0200616 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
617 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200618
619 if (!test_bit(HCI_RUNNING, &hdev->flags))
620 return;
621
622 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200623 hdev->stat.byte_rx += urb->actual_length;
624
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200625 if (btusb_recv_intr(data, urb->transfer_buffer,
626 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200627 BT_ERR("%s corrupted event packet", hdev->name);
628 hdev->stat.err_rx++;
629 }
Champion Chen85560c42014-09-06 14:06:08 -0500630 } else if (urb->status == -ENOENT) {
631 /* Avoid suspend failed when usb_kill_urb */
632 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200633 }
634
635 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
636 return;
637
Oliver Neukum7bee5492009-08-24 23:44:59 +0200638 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639 usb_anchor_urb(urb, &data->intr_anchor);
640
641 err = usb_submit_urb(urb, GFP_ATOMIC);
642 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200643 /* -EPERM: urb is being killed;
644 * -ENODEV: device got disconnected */
645 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100646 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200647 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200648 usb_unanchor_urb(urb);
649 }
650}
651
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100652static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200653{
David Herrmann155961e2012-02-09 21:58:32 +0100654 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200655 struct urb *urb;
656 unsigned char *buf;
657 unsigned int pipe;
658 int err, size;
659
660 BT_DBG("%s", hdev->name);
661
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200662 if (!data->intr_ep)
663 return -ENODEV;
664
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100665 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200666 if (!urb)
667 return -ENOMEM;
668
669 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
670
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100671 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200672 if (!buf) {
673 usb_free_urb(urb);
674 return -ENOMEM;
675 }
676
677 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
678
679 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200680 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200681
682 urb->transfer_flags |= URB_FREE_BUFFER;
683
684 usb_anchor_urb(urb, &data->intr_anchor);
685
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100686 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200687 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200688 if (err != -EPERM && err != -ENODEV)
689 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200690 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200691 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200692 }
693
694 usb_free_urb(urb);
695
696 return err;
697}
698
699static void btusb_bulk_complete(struct urb *urb)
700{
701 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100702 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200703 int err;
704
Marcel Holtmann89e75332014-09-16 04:44:50 +0200705 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
706 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200707
708 if (!test_bit(HCI_RUNNING, &hdev->flags))
709 return;
710
711 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200712 hdev->stat.byte_rx += urb->actual_length;
713
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100714 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200715 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200716 BT_ERR("%s corrupted ACL packet", hdev->name);
717 hdev->stat.err_rx++;
718 }
Champion Chen85560c42014-09-06 14:06:08 -0500719 } else if (urb->status == -ENOENT) {
720 /* Avoid suspend failed when usb_kill_urb */
721 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200722 }
723
724 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
725 return;
726
727 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100728 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200729
730 err = usb_submit_urb(urb, GFP_ATOMIC);
731 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200732 /* -EPERM: urb is being killed;
733 * -ENODEV: device got disconnected */
734 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100735 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200736 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200737 usb_unanchor_urb(urb);
738 }
739}
740
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100741static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200742{
David Herrmann155961e2012-02-09 21:58:32 +0100743 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200744 struct urb *urb;
745 unsigned char *buf;
746 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530747 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200748
749 BT_DBG("%s", hdev->name);
750
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200751 if (!data->bulk_rx_ep)
752 return -ENODEV;
753
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100754 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200755 if (!urb)
756 return -ENOMEM;
757
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100758 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200759 if (!buf) {
760 usb_free_urb(urb);
761 return -ENOMEM;
762 }
763
764 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
765
Marcel Holtmann89e75332014-09-16 04:44:50 +0200766 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
767 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200768
769 urb->transfer_flags |= URB_FREE_BUFFER;
770
Oliver Neukum7bee5492009-08-24 23:44:59 +0200771 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200772 usb_anchor_urb(urb, &data->bulk_anchor);
773
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100774 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200775 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200776 if (err != -EPERM && err != -ENODEV)
777 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200778 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200779 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200780 }
781
782 usb_free_urb(urb);
783
784 return err;
785}
786
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200787static void btusb_isoc_complete(struct urb *urb)
788{
789 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100790 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200791 int i, err;
792
Marcel Holtmann89e75332014-09-16 04:44:50 +0200793 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
794 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200795
796 if (!test_bit(HCI_RUNNING, &hdev->flags))
797 return;
798
799 if (urb->status == 0) {
800 for (i = 0; i < urb->number_of_packets; i++) {
801 unsigned int offset = urb->iso_frame_desc[i].offset;
802 unsigned int length = urb->iso_frame_desc[i].actual_length;
803
804 if (urb->iso_frame_desc[i].status)
805 continue;
806
807 hdev->stat.byte_rx += length;
808
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200809 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
810 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200811 BT_ERR("%s corrupted SCO packet", hdev->name);
812 hdev->stat.err_rx++;
813 }
814 }
Champion Chen85560c42014-09-06 14:06:08 -0500815 } else if (urb->status == -ENOENT) {
816 /* Avoid suspend failed when usb_kill_urb */
817 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200818 }
819
820 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
821 return;
822
823 usb_anchor_urb(urb, &data->isoc_anchor);
824
825 err = usb_submit_urb(urb, GFP_ATOMIC);
826 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200827 /* -EPERM: urb is being killed;
828 * -ENODEV: device got disconnected */
829 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100830 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200831 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200832 usb_unanchor_urb(urb);
833 }
834}
835
Jesper Juhl42b16b32011-01-17 00:09:38 +0100836static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200837{
838 int i, offset = 0;
839
840 BT_DBG("len %d mtu %d", len, mtu);
841
842 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
843 i++, offset += mtu, len -= mtu) {
844 urb->iso_frame_desc[i].offset = offset;
845 urb->iso_frame_desc[i].length = mtu;
846 }
847
848 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
849 urb->iso_frame_desc[i].offset = offset;
850 urb->iso_frame_desc[i].length = len;
851 i++;
852 }
853
854 urb->number_of_packets = i;
855}
856
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100857static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858{
David Herrmann155961e2012-02-09 21:58:32 +0100859 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200860 struct urb *urb;
861 unsigned char *buf;
862 unsigned int pipe;
863 int err, size;
864
865 BT_DBG("%s", hdev->name);
866
867 if (!data->isoc_rx_ep)
868 return -ENODEV;
869
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100870 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200871 if (!urb)
872 return -ENOMEM;
873
874 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
875 BTUSB_MAX_ISOC_FRAMES;
876
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100877 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200878 if (!buf) {
879 usb_free_urb(urb);
880 return -ENOMEM;
881 }
882
883 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
884
Bing Zhaofa0fb932011-12-20 18:19:00 -0800885 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200886 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200887
Marcel Holtmann89e75332014-09-16 04:44:50 +0200888 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200889
890 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200891 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200892
893 usb_anchor_urb(urb, &data->isoc_anchor);
894
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100895 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200896 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200897 if (err != -EPERM && err != -ENODEV)
898 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200899 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200900 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200901 }
902
903 usb_free_urb(urb);
904
905 return err;
906}
907
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200908static void btusb_diag_complete(struct urb *urb)
909{
910 struct hci_dev *hdev = urb->context;
911 struct btusb_data *data = hci_get_drvdata(hdev);
912 int err;
913
914 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
915 urb->actual_length);
916
917 if (urb->status == 0) {
918 struct sk_buff *skb;
919
920 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
921 if (skb) {
922 memcpy(skb_put(skb, urb->actual_length),
923 urb->transfer_buffer, urb->actual_length);
924 hci_recv_diag(hdev, skb);
925 }
926 } else if (urb->status == -ENOENT) {
927 /* Avoid suspend failed when usb_kill_urb */
928 return;
929 }
930
931 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
932 return;
933
934 usb_anchor_urb(urb, &data->diag_anchor);
935 usb_mark_last_busy(data->udev);
936
937 err = usb_submit_urb(urb, GFP_ATOMIC);
938 if (err < 0) {
939 /* -EPERM: urb is being killed;
940 * -ENODEV: device got disconnected */
941 if (err != -EPERM && err != -ENODEV)
942 BT_ERR("%s urb %p failed to resubmit (%d)",
943 hdev->name, urb, -err);
944 usb_unanchor_urb(urb);
945 }
946}
947
948static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
949{
950 struct btusb_data *data = hci_get_drvdata(hdev);
951 struct urb *urb;
952 unsigned char *buf;
953 unsigned int pipe;
954 int err, size = HCI_MAX_FRAME_SIZE;
955
956 BT_DBG("%s", hdev->name);
957
958 if (!data->diag_rx_ep)
959 return -ENODEV;
960
961 urb = usb_alloc_urb(0, mem_flags);
962 if (!urb)
963 return -ENOMEM;
964
965 buf = kmalloc(size, mem_flags);
966 if (!buf) {
967 usb_free_urb(urb);
968 return -ENOMEM;
969 }
970
971 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
972
973 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
974 btusb_diag_complete, hdev);
975
976 urb->transfer_flags |= URB_FREE_BUFFER;
977
978 usb_mark_last_busy(data->udev);
979 usb_anchor_urb(urb, &data->diag_anchor);
980
981 err = usb_submit_urb(urb, mem_flags);
982 if (err < 0) {
983 if (err != -EPERM && err != -ENODEV)
984 BT_ERR("%s urb %p submission failed (%d)",
985 hdev->name, urb, -err);
986 usb_unanchor_urb(urb);
987 }
988
989 usb_free_urb(urb);
990
991 return err;
992}
993
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200994static void btusb_tx_complete(struct urb *urb)
995{
996 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200997 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100998 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200999
Marcel Holtmann89e75332014-09-16 04:44:50 +02001000 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1001 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001002
1003 if (!test_bit(HCI_RUNNING, &hdev->flags))
1004 goto done;
1005
1006 if (!urb->status)
1007 hdev->stat.byte_tx += urb->transfer_buffer_length;
1008 else
1009 hdev->stat.err_tx++;
1010
1011done:
1012 spin_lock(&data->txlock);
1013 data->tx_in_flight--;
1014 spin_unlock(&data->txlock);
1015
1016 kfree(urb->setup_packet);
1017
1018 kfree_skb(skb);
1019}
1020
1021static void btusb_isoc_tx_complete(struct urb *urb)
1022{
1023 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001024 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001025
Marcel Holtmann89e75332014-09-16 04:44:50 +02001026 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1027 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001028
1029 if (!test_bit(HCI_RUNNING, &hdev->flags))
1030 goto done;
1031
1032 if (!urb->status)
1033 hdev->stat.byte_tx += urb->transfer_buffer_length;
1034 else
1035 hdev->stat.err_tx++;
1036
1037done:
1038 kfree(urb->setup_packet);
1039
1040 kfree_skb(skb);
1041}
1042
1043static int btusb_open(struct hci_dev *hdev)
1044{
David Herrmann155961e2012-02-09 21:58:32 +01001045 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001046 int err;
1047
1048 BT_DBG("%s", hdev->name);
1049
Ethan Hsiehc7e163f2016-10-07 12:06:42 +08001050 err = usb_autopm_get_interface(data->intf);
1051 if (err < 0)
1052 return err;
1053
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001054 /* Patching USB firmware files prior to starting any URBs of HCI path
1055 * It is more safe to use USB bulk channel for downloading USB patch
1056 */
1057 if (data->setup_on_usb) {
1058 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001059 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001060 return err;
1061 }
1062
Oliver Neukum7bee5492009-08-24 23:44:59 +02001063 data->intf->needs_remote_wakeup = 1;
1064
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001065 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001066 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001067
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001068 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001069 if (err < 0)
1070 goto failed;
1071
1072 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001073 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001074 usb_kill_anchored_urbs(&data->intr_anchor);
1075 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001076 }
1077
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001078 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1079 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1080
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001081 if (data->diag) {
1082 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1083 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1084 }
1085
Oliver Neukum7bee5492009-08-24 23:44:59 +02001086done:
1087 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001088 return 0;
1089
1090failed:
1091 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001092 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001093 return err;
1094}
1095
Oliver Neukum7bee5492009-08-24 23:44:59 +02001096static void btusb_stop_traffic(struct btusb_data *data)
1097{
1098 usb_kill_anchored_urbs(&data->intr_anchor);
1099 usb_kill_anchored_urbs(&data->bulk_anchor);
1100 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001101 usb_kill_anchored_urbs(&data->diag_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001102}
1103
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001104static int btusb_close(struct hci_dev *hdev)
1105{
David Herrmann155961e2012-02-09 21:58:32 +01001106 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001107 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001108
1109 BT_DBG("%s", hdev->name);
1110
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001111 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001112 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001113
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001114 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001115 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001116 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001117 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001118
1119 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001120 btusb_free_frags(data);
1121
Oliver Neukum7bee5492009-08-24 23:44:59 +02001122 err = usb_autopm_get_interface(data->intf);
1123 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001124 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001125
1126 data->intf->needs_remote_wakeup = 0;
1127 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001128
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001129failed:
1130 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001131 return 0;
1132}
1133
1134static int btusb_flush(struct hci_dev *hdev)
1135{
David Herrmann155961e2012-02-09 21:58:32 +01001136 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001137
1138 BT_DBG("%s", hdev->name);
1139
1140 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001141 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001142
1143 return 0;
1144}
1145
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001146static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001147{
David Herrmann155961e2012-02-09 21:58:32 +01001148 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001149 struct usb_ctrlrequest *dr;
1150 struct urb *urb;
1151 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001152
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001153 urb = usb_alloc_urb(0, GFP_KERNEL);
1154 if (!urb)
1155 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001156
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001157 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1158 if (!dr) {
1159 usb_free_urb(urb);
1160 return ERR_PTR(-ENOMEM);
1161 }
1162
1163 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001164 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001165 dr->wIndex = 0;
1166 dr->wValue = 0;
1167 dr->wLength = __cpu_to_le16(skb->len);
1168
1169 pipe = usb_sndctrlpipe(data->udev, 0x00);
1170
Marcel Holtmann89e75332014-09-16 04:44:50 +02001171 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001172 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001173
Marcel Holtmann89e75332014-09-16 04:44:50 +02001174 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001175
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001176 return urb;
1177}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001178
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001179static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1180{
1181 struct btusb_data *data = hci_get_drvdata(hdev);
1182 struct urb *urb;
1183 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001184
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001185 if (!data->bulk_tx_ep)
1186 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001187
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001188 urb = usb_alloc_urb(0, GFP_KERNEL);
1189 if (!urb)
1190 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001192 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001193
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001194 usb_fill_bulk_urb(urb, data->udev, pipe,
1195 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001196
Marcel Holtmann89e75332014-09-16 04:44:50 +02001197 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001198
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001199 return urb;
1200}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001201
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001202static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1203{
1204 struct btusb_data *data = hci_get_drvdata(hdev);
1205 struct urb *urb;
1206 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001207
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001208 if (!data->isoc_tx_ep)
1209 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001210
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001211 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1212 if (!urb)
1213 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001214
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001215 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001216
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001217 usb_fill_int_urb(urb, data->udev, pipe,
1218 skb->data, skb->len, btusb_isoc_tx_complete,
1219 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001220
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001221 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001222
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001223 __fill_isoc_descriptor(urb, skb->len,
1224 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001225
Marcel Holtmann89e75332014-09-16 04:44:50 +02001226 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001227
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001228 return urb;
1229}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001230
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001231static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1232{
1233 struct btusb_data *data = hci_get_drvdata(hdev);
1234 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001235
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001236 usb_anchor_urb(urb, &data->tx_anchor);
1237
Johan Hedberge9753ef2014-09-14 08:49:34 +03001238 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001239 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001240 if (err != -EPERM && err != -ENODEV)
1241 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001242 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001243 kfree(urb->setup_packet);
1244 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001245 } else {
1246 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001247 }
1248
Cong Wang54a8a79c2011-11-22 09:32:57 +08001249 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001250 return err;
1251}
1252
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001253static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1254{
1255 struct btusb_data *data = hci_get_drvdata(hdev);
1256 unsigned long flags;
1257 bool suspending;
1258
1259 spin_lock_irqsave(&data->txlock, flags);
1260 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1261 if (!suspending)
1262 data->tx_in_flight++;
1263 spin_unlock_irqrestore(&data->txlock, flags);
1264
1265 if (!suspending)
1266 return submit_tx_urb(hdev, urb);
1267
1268 usb_anchor_urb(urb, &data->deferred);
1269 schedule_work(&data->waker);
1270
1271 usb_free_urb(urb);
1272 return 0;
1273}
1274
1275static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1276{
1277 struct urb *urb;
1278
1279 BT_DBG("%s", hdev->name);
1280
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001281 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001282 case HCI_COMMAND_PKT:
1283 urb = alloc_ctrl_urb(hdev, skb);
1284 if (IS_ERR(urb))
1285 return PTR_ERR(urb);
1286
1287 hdev->stat.cmd_tx++;
1288 return submit_or_queue_tx_urb(hdev, urb);
1289
1290 case HCI_ACLDATA_PKT:
1291 urb = alloc_bulk_urb(hdev, skb);
1292 if (IS_ERR(urb))
1293 return PTR_ERR(urb);
1294
1295 hdev->stat.acl_tx++;
1296 return submit_or_queue_tx_urb(hdev, urb);
1297
1298 case HCI_SCODATA_PKT:
1299 if (hci_conn_num(hdev, SCO_LINK) < 1)
1300 return -ENODEV;
1301
1302 urb = alloc_isoc_urb(hdev, skb);
1303 if (IS_ERR(urb))
1304 return PTR_ERR(urb);
1305
1306 hdev->stat.sco_tx++;
1307 return submit_tx_urb(hdev, urb);
1308 }
1309
1310 return -EILSEQ;
1311}
1312
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001313static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1314{
David Herrmann155961e2012-02-09 21:58:32 +01001315 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001316
1317 BT_DBG("%s evt %d", hdev->name, evt);
1318
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001319 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1320 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001321 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001322 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001323}
1324
Jesper Juhl42b16b32011-01-17 00:09:38 +01001325static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001326{
David Herrmann155961e2012-02-09 21:58:32 +01001327 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001328 struct usb_interface *intf = data->isoc;
1329 struct usb_endpoint_descriptor *ep_desc;
1330 int i, err;
1331
1332 if (!data->isoc)
1333 return -ENODEV;
1334
1335 err = usb_set_interface(data->udev, 1, altsetting);
1336 if (err < 0) {
1337 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1338 return err;
1339 }
1340
1341 data->isoc_altsetting = altsetting;
1342
1343 data->isoc_tx_ep = NULL;
1344 data->isoc_rx_ep = NULL;
1345
1346 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1347 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1348
1349 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1350 data->isoc_tx_ep = ep_desc;
1351 continue;
1352 }
1353
1354 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1355 data->isoc_rx_ep = ep_desc;
1356 continue;
1357 }
1358 }
1359
1360 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1361 BT_ERR("%s invalid SCO descriptors", hdev->name);
1362 return -ENODEV;
1363 }
1364
1365 return 0;
1366}
1367
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001368static void btusb_work(struct work_struct *work)
1369{
1370 struct btusb_data *data = container_of(work, struct btusb_data, work);
1371 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001372 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001373 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001374
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001375 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001376 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001377 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001378 if (err < 0) {
1379 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1380 usb_kill_anchored_urbs(&data->isoc_anchor);
1381 return;
1382 }
1383
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001384 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001385 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001386
1387 if (hdev->voice_setting & 0x0020) {
1388 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001389
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001390 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001391 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001392 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001393 }
1394
1395 if (data->isoc_altsetting != new_alts) {
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001396 unsigned long flags;
1397
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001398 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1399 usb_kill_anchored_urbs(&data->isoc_anchor);
1400
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001401 /* When isochronous alternate setting needs to be
1402 * changed, because SCO connection has been added
1403 * or removed, a packet fragment may be left in the
1404 * reassembling state. This could lead to wrongly
1405 * assembled fragments.
1406 *
1407 * Clear outstanding fragment when selecting a new
1408 * alternate setting.
1409 */
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001410 spin_lock_irqsave(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001411 kfree_skb(data->sco_skb);
1412 data->sco_skb = NULL;
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001413 spin_unlock_irqrestore(&data->rxlock, flags);
Kuba Pawlak8f9d02f2015-09-10 17:07:00 +01001414
Mikel Astizf4001d22012-04-11 08:48:51 +02001415 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001416 return;
1417 }
1418
1419 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001420 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001421 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1422 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001423 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001424 }
1425 } else {
1426 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1427 usb_kill_anchored_urbs(&data->isoc_anchor);
1428
1429 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001430 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001431 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001432 }
1433}
1434
Oliver Neukum7bee5492009-08-24 23:44:59 +02001435static void btusb_waker(struct work_struct *work)
1436{
1437 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1438 int err;
1439
1440 err = usb_autopm_get_interface(data->intf);
1441 if (err < 0)
1442 return;
1443
1444 usb_autopm_put_interface(data->intf);
1445}
1446
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001447static int btusb_setup_bcm92035(struct hci_dev *hdev)
1448{
1449 struct sk_buff *skb;
1450 u8 val = 0x00;
1451
1452 BT_DBG("%s", hdev->name);
1453
1454 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1455 if (IS_ERR(skb))
1456 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1457 else
1458 kfree_skb(skb);
1459
1460 return 0;
1461}
1462
Marcel Holtmann81cac642014-01-03 03:02:36 -08001463static int btusb_setup_csr(struct hci_dev *hdev)
1464{
1465 struct hci_rp_read_local_version *rp;
1466 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001467
1468 BT_DBG("%s", hdev->name);
1469
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001470 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1471 HCI_INIT_TIMEOUT);
1472 if (IS_ERR(skb)) {
1473 int err = PTR_ERR(skb);
1474 BT_ERR("%s: CSR: Local version failed (%d)", hdev->name, err);
1475 return err;
1476 }
1477
1478 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1479 BT_ERR("%s: CSR: Local version length mismatch", hdev->name);
1480 kfree_skb(skb);
1481 return -EIO;
1482 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001483
Marcel Holtmann89e75332014-09-16 04:44:50 +02001484 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001485
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001486 /* Detect controllers which aren't real CSR ones. */
1487 if (le16_to_cpu(rp->manufacturer) != 10 ||
1488 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001489 /* Clear the reset quirk since this is not an actual
1490 * early Bluetooth 1.1 device from CSR.
1491 */
1492 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001493
Marcel Holtmann9641d342015-06-07 10:01:01 +02001494 /* These fake CSR controllers have all a broken
1495 * stored link key handling and so just disable it.
1496 */
1497 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001498 }
1499
Marcel Holtmann81cac642014-01-03 03:02:36 -08001500 kfree_skb(skb);
1501
Marcel Holtmann9641d342015-06-07 10:01:01 +02001502 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001503}
1504
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001505static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001506 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001507{
1508 const struct firmware *fw;
1509 char fwname[64];
1510 int ret;
1511
1512 snprintf(fwname, sizeof(fwname),
1513 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1514 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1515 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1516 ver->fw_build_ww, ver->fw_build_yy);
1517
1518 ret = request_firmware(&fw, fwname, &hdev->dev);
1519 if (ret < 0) {
1520 if (ret == -EINVAL) {
1521 BT_ERR("%s Intel firmware file request failed (%d)",
1522 hdev->name, ret);
1523 return NULL;
1524 }
1525
1526 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1527 hdev->name, fwname, ret);
1528
1529 /* If the correct firmware patch file is not found, use the
1530 * default firmware patch file instead
1531 */
1532 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1533 ver->hw_platform, ver->hw_variant);
1534 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1535 BT_ERR("%s failed to open default Intel fw file: %s",
1536 hdev->name, fwname);
1537 return NULL;
1538 }
1539 }
1540
1541 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1542
1543 return fw;
1544}
1545
1546static int btusb_setup_intel_patching(struct hci_dev *hdev,
1547 const struct firmware *fw,
1548 const u8 **fw_ptr, int *disable_patch)
1549{
1550 struct sk_buff *skb;
1551 struct hci_command_hdr *cmd;
1552 const u8 *cmd_param;
1553 struct hci_event_hdr *evt = NULL;
1554 const u8 *evt_param = NULL;
1555 int remain = fw->size - (*fw_ptr - fw->data);
1556
1557 /* The first byte indicates the types of the patch command or event.
1558 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1559 * in the current firmware buffer doesn't start with 0x01 or
1560 * the size of remain buffer is smaller than HCI command header,
1561 * the firmware file is corrupted and it should stop the patching
1562 * process.
1563 */
1564 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1565 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1566 return -EINVAL;
1567 }
1568 (*fw_ptr)++;
1569 remain--;
1570
1571 cmd = (struct hci_command_hdr *)(*fw_ptr);
1572 *fw_ptr += sizeof(*cmd);
1573 remain -= sizeof(*cmd);
1574
1575 /* Ensure that the remain firmware data is long enough than the length
1576 * of command parameter. If not, the firmware file is corrupted.
1577 */
1578 if (remain < cmd->plen) {
1579 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1580 return -EFAULT;
1581 }
1582
1583 /* If there is a command that loads a patch in the firmware
1584 * file, then enable the patch upon success, otherwise just
1585 * disable the manufacturer mode, for example patch activation
1586 * is not required when the default firmware patch file is used
1587 * because there are no patch data to load.
1588 */
1589 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1590 *disable_patch = 0;
1591
1592 cmd_param = *fw_ptr;
1593 *fw_ptr += cmd->plen;
1594 remain -= cmd->plen;
1595
1596 /* This reads the expected events when the above command is sent to the
1597 * device. Some vendor commands expects more than one events, for
1598 * example command status event followed by vendor specific event.
1599 * For this case, it only keeps the last expected event. so the command
1600 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1601 * last expected event.
1602 */
1603 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1604 (*fw_ptr)++;
1605 remain--;
1606
1607 evt = (struct hci_event_hdr *)(*fw_ptr);
1608 *fw_ptr += sizeof(*evt);
1609 remain -= sizeof(*evt);
1610
1611 if (remain < evt->plen) {
1612 BT_ERR("%s Intel fw corrupted: invalid evt len",
1613 hdev->name);
1614 return -EFAULT;
1615 }
1616
1617 evt_param = *fw_ptr;
1618 *fw_ptr += evt->plen;
1619 remain -= evt->plen;
1620 }
1621
1622 /* Every HCI commands in the firmware file has its correspond event.
1623 * If event is not found or remain is smaller than zero, the firmware
1624 * file is corrupted.
1625 */
1626 if (!evt || !evt_param || remain < 0) {
1627 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1628 return -EFAULT;
1629 }
1630
1631 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1632 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1633 if (IS_ERR(skb)) {
1634 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1635 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001636 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001637 }
1638
1639 /* It ensures that the returned event matches the event data read from
1640 * the firmware file. At fist, it checks the length and then
1641 * the contents of the event.
1642 */
1643 if (skb->len != evt->plen) {
1644 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1645 le16_to_cpu(cmd->opcode));
1646 kfree_skb(skb);
1647 return -EFAULT;
1648 }
1649
1650 if (memcmp(skb->data, evt_param, evt->plen)) {
1651 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1652 hdev->name, le16_to_cpu(cmd->opcode));
1653 kfree_skb(skb);
1654 return -EFAULT;
1655 }
1656 kfree_skb(skb);
1657
1658 return 0;
1659}
1660
1661static int btusb_setup_intel(struct hci_dev *hdev)
1662{
1663 struct sk_buff *skb;
1664 const struct firmware *fw;
1665 const u8 *fw_ptr;
Loic Poulain28dc4b92015-12-03 16:10:22 +01001666 int disable_patch, err;
Loic Poulain6c483de2015-12-06 16:18:34 +01001667 struct intel_version ver;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001668
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001669 BT_DBG("%s", hdev->name);
1670
1671 /* The controller has a bug with the first HCI command sent to it
1672 * returning number of completed commands as zero. This would stall the
1673 * command processing in the Bluetooth core.
1674 *
1675 * As a workaround, send HCI Reset command first which will reset the
1676 * number of completed commands and allow normal command processing
1677 * from now on.
1678 */
1679 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1680 if (IS_ERR(skb)) {
1681 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1682 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001683 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001684 }
1685 kfree_skb(skb);
1686
1687 /* Read Intel specific controller version first to allow selection of
1688 * which firmware file to load.
1689 *
1690 * The returned information are hardware variant and revision plus
1691 * firmware variant, revision and build number.
1692 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001693 err = btintel_read_version(hdev, &ver);
1694 if (err)
1695 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001696
1697 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
Loic Poulain6c483de2015-12-06 16:18:34 +01001698 hdev->name, ver.hw_platform, ver.hw_variant, ver.hw_revision,
1699 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1700 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001701
1702 /* fw_patch_num indicates the version of patch the device currently
1703 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001704 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001705 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001706 if (ver.fw_patch_num) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001707 BT_INFO("%s: Intel device is already patched. patch num: %02x",
Loic Poulain6c483de2015-12-06 16:18:34 +01001708 hdev->name, ver.fw_patch_num);
Marcel Holtmann213445b2015-10-21 02:45:19 +02001709 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001710 }
1711
1712 /* Opens the firmware patch file based on the firmware version read
1713 * from the controller. If it fails to open the matching firmware
1714 * patch file, it tries to open the default firmware patch file.
1715 * If no patch file is found, allow the device to operate without
1716 * a patch.
1717 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001718 fw = btusb_setup_intel_get_fw(hdev, &ver);
1719 if (!fw)
Marcel Holtmann213445b2015-10-21 02:45:19 +02001720 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001721 fw_ptr = fw->data;
1722
Loic Poulain28dc4b92015-12-03 16:10:22 +01001723 /* Enable the manufacturer mode of the controller.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001724 * Only while this mode is enabled, the driver can download the
1725 * firmware patch data and configuration parameters.
1726 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001727 err = btintel_enter_mfg(hdev);
1728 if (err) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001729 release_firmware(fw);
Loic Poulain28dc4b92015-12-03 16:10:22 +01001730 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001731 }
1732
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001733 disable_patch = 1;
1734
1735 /* The firmware data file consists of list of Intel specific HCI
1736 * commands and its expected events. The first byte indicates the
1737 * type of the message, either HCI command or HCI event.
1738 *
1739 * It reads the command and its expected event from the firmware file,
1740 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1741 * the returned event is compared with the event read from the firmware
1742 * file and it will continue until all the messages are downloaded to
1743 * the controller.
1744 *
1745 * Once the firmware patching is completed successfully,
1746 * the manufacturer mode is disabled with reset and activating the
1747 * downloaded patch.
1748 *
1749 * If the firmware patching fails, the manufacturer mode is
1750 * disabled with reset and deactivating the patch.
1751 *
1752 * If the default patch file is used, no reset is done when disabling
1753 * the manufacturer.
1754 */
1755 while (fw->size > fw_ptr - fw->data) {
1756 int ret;
1757
1758 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1759 &disable_patch);
1760 if (ret < 0)
1761 goto exit_mfg_deactivate;
1762 }
1763
1764 release_firmware(fw);
1765
1766 if (disable_patch)
1767 goto exit_mfg_disable;
1768
1769 /* Patching completed successfully and disable the manufacturer mode
1770 * with reset and activate the downloaded firmware patches.
1771 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001772 err = btintel_exit_mfg(hdev, true, true);
1773 if (err)
1774 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001775
1776 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1777 hdev->name);
1778
Marcel Holtmann213445b2015-10-21 02:45:19 +02001779 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001780
1781exit_mfg_disable:
1782 /* Disable the manufacturer mode without reset */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001783 err = btintel_exit_mfg(hdev, false, false);
1784 if (err)
1785 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001786
1787 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001788
Marcel Holtmann213445b2015-10-21 02:45:19 +02001789 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001790
1791exit_mfg_deactivate:
1792 release_firmware(fw);
1793
1794 /* Patching failed. Disable the manufacturer mode with reset and
1795 * deactivate the downloaded firmware patches.
1796 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001797 err = btintel_exit_mfg(hdev, true, false);
1798 if (err)
1799 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001800
1801 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1802 hdev->name);
1803
Marcel Holtmann213445b2015-10-21 02:45:19 +02001804complete:
1805 /* Set the event mask for Intel specific vendor events. This enables
1806 * a few extra events that are useful during general operation.
1807 */
1808 btintel_set_event_mask_mfg(hdev, false);
1809
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001810 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001811 return 0;
1812}
1813
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001814static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1815{
1816 struct sk_buff *skb;
1817 struct hci_event_hdr *hdr;
1818 struct hci_ev_cmd_complete *evt;
1819
1820 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1821 if (!skb)
1822 return -ENOMEM;
1823
1824 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1825 hdr->evt = HCI_EV_CMD_COMPLETE;
1826 hdr->plen = sizeof(*evt) + 1;
1827
1828 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1829 evt->ncmd = 0x01;
1830 evt->opcode = cpu_to_le16(opcode);
1831
1832 *skb_put(skb, 1) = 0x00;
1833
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001834 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001835
1836 return hci_recv_frame(hdev, skb);
1837}
1838
1839static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1840 int count)
1841{
1842 /* When the device is in bootloader mode, then it can send
1843 * events via the bulk endpoint. These events are treated the
1844 * same way as the ones received from the interrupt endpoint.
1845 */
1846 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1847 return btusb_recv_intr(data, buffer, count);
1848
1849 return btusb_recv_bulk(data, buffer, count);
1850}
1851
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001852static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1853 unsigned int len)
1854{
1855 const struct intel_bootup *evt = ptr;
1856
1857 if (len != sizeof(*evt))
1858 return;
1859
1860 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1861 smp_mb__after_atomic();
1862 wake_up_bit(&data->flags, BTUSB_BOOTING);
1863 }
1864}
1865
1866static void btusb_intel_secure_send_result(struct btusb_data *data,
1867 const void *ptr, unsigned int len)
1868{
1869 const struct intel_secure_send_result *evt = ptr;
1870
1871 if (len != sizeof(*evt))
1872 return;
1873
1874 if (evt->result)
1875 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1876
1877 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1878 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1879 smp_mb__after_atomic();
1880 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1881 }
1882}
1883
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001884static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1885{
1886 struct btusb_data *data = hci_get_drvdata(hdev);
1887
1888 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1889 struct hci_event_hdr *hdr = (void *)skb->data;
1890
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001891 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1892 hdr->plen > 0) {
1893 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1894 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001895
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001896 switch (skb->data[2]) {
1897 case 0x02:
1898 /* When switching to the operational firmware
1899 * the device sends a vendor specific event
1900 * indicating that the bootup completed.
1901 */
1902 btusb_intel_bootup(data, ptr, len);
1903 break;
1904 case 0x06:
1905 /* When the firmware loading completes the
1906 * device sends out a vendor specific event
1907 * indicating the result of the firmware
1908 * loading.
1909 */
1910 btusb_intel_secure_send_result(data, ptr, len);
1911 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001912 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001913 }
1914 }
1915
1916 return hci_recv_frame(hdev, skb);
1917}
1918
1919static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1920{
1921 struct btusb_data *data = hci_get_drvdata(hdev);
1922 struct urb *urb;
1923
1924 BT_DBG("%s", hdev->name);
1925
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001926 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001927 case HCI_COMMAND_PKT:
1928 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1929 struct hci_command_hdr *cmd = (void *)skb->data;
1930 __u16 opcode = le16_to_cpu(cmd->opcode);
1931
1932 /* When in bootloader mode and the command 0xfc09
1933 * is received, it needs to be send down the
1934 * bulk endpoint. So allocate a bulk URB instead.
1935 */
1936 if (opcode == 0xfc09)
1937 urb = alloc_bulk_urb(hdev, skb);
1938 else
1939 urb = alloc_ctrl_urb(hdev, skb);
1940
1941 /* When the 0xfc01 command is issued to boot into
1942 * the operational firmware, it will actually not
1943 * send a command complete event. To keep the flow
1944 * control working inject that event here.
1945 */
1946 if (opcode == 0xfc01)
1947 inject_cmd_complete(hdev, opcode);
1948 } else {
1949 urb = alloc_ctrl_urb(hdev, skb);
1950 }
1951 if (IS_ERR(urb))
1952 return PTR_ERR(urb);
1953
1954 hdev->stat.cmd_tx++;
1955 return submit_or_queue_tx_urb(hdev, urb);
1956
1957 case HCI_ACLDATA_PKT:
1958 urb = alloc_bulk_urb(hdev, skb);
1959 if (IS_ERR(urb))
1960 return PTR_ERR(urb);
1961
1962 hdev->stat.acl_tx++;
1963 return submit_or_queue_tx_urb(hdev, urb);
1964
1965 case HCI_SCODATA_PKT:
1966 if (hci_conn_num(hdev, SCO_LINK) < 1)
1967 return -ENODEV;
1968
1969 urb = alloc_isoc_urb(hdev, skb);
1970 if (IS_ERR(urb))
1971 return PTR_ERR(urb);
1972
1973 hdev->stat.sco_tx++;
1974 return submit_tx_urb(hdev, urb);
1975 }
1976
1977 return -EILSEQ;
1978}
1979
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001980static int btusb_setup_intel_new(struct hci_dev *hdev)
1981{
1982 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1983 0x00, 0x08, 0x04, 0x00 };
1984 struct btusb_data *data = hci_get_drvdata(hdev);
1985 struct sk_buff *skb;
Loic Poulain6c483de2015-12-06 16:18:34 +01001986 struct intel_version ver;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001987 struct intel_boot_params *params;
1988 const struct firmware *fw;
1989 const u8 *fw_ptr;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02001990 u32 frag_len;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001991 char fwname[64];
1992 ktime_t calltime, delta, rettime;
1993 unsigned long long duration;
1994 int err;
1995
1996 BT_DBG("%s", hdev->name);
1997
1998 calltime = ktime_get();
1999
2000 /* Read the Intel version information to determine if the device
2001 * is in bootloader mode or if it already has operational firmware
2002 * loaded.
2003 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002004 err = btintel_read_version(hdev, &ver);
2005 if (err)
2006 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002007
2008 /* The hardware platform number has a fixed value of 0x37 and
2009 * for now only accept this single value.
2010 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002011 if (ver.hw_platform != 0x37) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002012 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002013 hdev->name, ver.hw_platform);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002014 return -EINVAL;
2015 }
2016
Tedd Ho-Jeong Ana0af53b2016-05-06 11:53:46 -07002017 /* At the moment the iBT 3.0 hardware variants 0x0b (LnP/SfP)
2018 * and 0x0c (WsP) are supported by this firmware loading method.
2019 *
2020 * This check has been put in place to ensure correct forward
2021 * compatibility options when newer hardware variants come along.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002022 */
Tedd Ho-Jeong Ana0af53b2016-05-06 11:53:46 -07002023 if (ver.hw_variant != 0x0b && ver.hw_variant != 0x0c) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002024 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002025 hdev->name, ver.hw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002026 return -EINVAL;
2027 }
2028
Loic Poulain6c483de2015-12-06 16:18:34 +01002029 btintel_version_info(hdev, &ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002030
2031 /* The firmware variant determines if the device is in bootloader
2032 * mode or is running operational firmware. The value 0x06 identifies
2033 * the bootloader and the value 0x23 identifies the operational
2034 * firmware.
2035 *
2036 * When the operational firmware is already present, then only
2037 * the check for valid Bluetooth device address is needed. This
2038 * determines if the device will be added as configured or
2039 * unconfigured controller.
2040 *
2041 * It is not possible to use the Secure Boot Parameters in this
2042 * case since that command is only available in bootloader mode.
2043 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002044 if (ver.fw_variant == 0x23) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002045 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002046 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002047 return 0;
2048 }
2049
2050 /* If the device is not in bootloader mode, then the only possible
2051 * choice is to return an error and abort the device initialization.
2052 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002053 if (ver.fw_variant != 0x06) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002054 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
Loic Poulain6c483de2015-12-06 16:18:34 +01002055 hdev->name, ver.fw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002056 return -ENODEV;
2057 }
2058
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002059 /* Read the secure boot parameters to identify the operating
2060 * details of the bootloader.
2061 */
2062 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2063 if (IS_ERR(skb)) {
2064 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2065 hdev->name, PTR_ERR(skb));
2066 return PTR_ERR(skb);
2067 }
2068
2069 if (skb->len != sizeof(*params)) {
2070 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2071 kfree_skb(skb);
2072 return -EILSEQ;
2073 }
2074
2075 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002076
2077 BT_INFO("%s: Device revision is %u", hdev->name,
2078 le16_to_cpu(params->dev_revid));
2079
2080 BT_INFO("%s: Secure boot is %s", hdev->name,
2081 params->secure_boot ? "enabled" : "disabled");
2082
Marcel Holtmann2220994e2015-10-13 13:54:55 +02002083 BT_INFO("%s: OTP lock is %s", hdev->name,
2084 params->otp_lock ? "enabled" : "disabled");
2085
2086 BT_INFO("%s: API lock is %s", hdev->name,
2087 params->api_lock ? "enabled" : "disabled");
2088
2089 BT_INFO("%s: Debug lock is %s", hdev->name,
2090 params->debug_lock ? "enabled" : "disabled");
2091
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002092 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2093 params->min_fw_build_nn, params->min_fw_build_cw,
2094 2000 + params->min_fw_build_yy);
2095
2096 /* It is required that every single firmware fragment is acknowledged
2097 * with a command complete event. If the boot parameters indicate
2098 * that this bootloader does not send them, then abort the setup.
2099 */
2100 if (params->limited_cce != 0x00) {
2101 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2102 hdev->name, params->limited_cce);
2103 kfree_skb(skb);
2104 return -EINVAL;
2105 }
2106
2107 /* If the OTP has no valid Bluetooth device address, then there will
2108 * also be no valid address for the operational firmware.
2109 */
2110 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2111 BT_INFO("%s: No device address configured", hdev->name);
2112 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2113 }
2114
2115 /* With this Intel bootloader only the hardware variant and device
2116 * revision information are used to select the right firmware.
2117 *
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002118 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2119 *
2120 * Currently the supported hardware variants are:
2121 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2122 * 12 (0x0c) for iBT3.5 (WsP)
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002123 */
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002124 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.sfi",
2125 le16_to_cpu(ver.hw_variant),
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002126 le16_to_cpu(params->dev_revid));
2127
2128 err = request_firmware(&fw, fwname, &hdev->dev);
2129 if (err < 0) {
2130 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2131 hdev->name, err);
2132 kfree_skb(skb);
2133 return err;
2134 }
2135
2136 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2137
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002138 /* Save the DDC file name for later use to apply once the firmware
2139 * downloading is done.
2140 */
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002141 snprintf(fwname, sizeof(fwname), "intel/ibt-%u-%u.ddc",
2142 le16_to_cpu(ver.hw_variant),
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002143 le16_to_cpu(params->dev_revid));
2144
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002145 kfree_skb(skb);
2146
2147 if (fw->size < 644) {
2148 BT_ERR("%s: Invalid size of firmware file (%zu)",
2149 hdev->name, fw->size);
2150 err = -EBADF;
2151 goto done;
2152 }
2153
2154 set_bit(BTUSB_DOWNLOADING, &data->flags);
2155
2156 /* Start the firmware download transaction with the Init fragment
2157 * represented by the 128 bytes of CSS header.
2158 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002159 err = btintel_secure_send(hdev, 0x00, 128, fw->data);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002160 if (err < 0) {
2161 BT_ERR("%s: Failed to send firmware header (%d)",
2162 hdev->name, err);
2163 goto done;
2164 }
2165
2166 /* Send the 256 bytes of public key information from the firmware
2167 * as the PKey fragment.
2168 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002169 err = btintel_secure_send(hdev, 0x03, 256, fw->data + 128);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002170 if (err < 0) {
2171 BT_ERR("%s: Failed to send firmware public key (%d)",
2172 hdev->name, err);
2173 goto done;
2174 }
2175
2176 /* Send the 256 bytes of signature information from the firmware
2177 * as the Sign fragment.
2178 */
Marcel Holtmann09df1232015-07-05 14:55:36 +02002179 err = btintel_secure_send(hdev, 0x02, 256, fw->data + 388);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002180 if (err < 0) {
2181 BT_ERR("%s: Failed to send firmware signature (%d)",
2182 hdev->name, err);
2183 goto done;
2184 }
2185
2186 fw_ptr = fw->data + 644;
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002187 frag_len = 0;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002188
2189 while (fw_ptr - fw->data < fw->size) {
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002190 struct hci_command_hdr *cmd = (void *)(fw_ptr + frag_len);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002191
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002192 frag_len += sizeof(*cmd) + cmd->plen;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002193
Minjune Kim5075eda2015-08-27 13:21:52 +09002194 /* The parameter length of the secure send command requires
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002195 * a 4 byte alignment. It happens so that the firmware file
2196 * contains proper Intel_NOP commands to align the fragments
2197 * as needed.
2198 *
2199 * Send set of commands with 4 byte alignment from the
2200 * firmware data buffer as a single Data fragement.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002201 */
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002202 if (!(frag_len % 4)) {
Marcel Holtmann09df1232015-07-05 14:55:36 +02002203 err = btintel_secure_send(hdev, 0x01, frag_len, fw_ptr);
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002204 if (err < 0) {
2205 BT_ERR("%s: Failed to send firmware data (%d)",
2206 hdev->name, err);
2207 goto done;
2208 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002209
Marcel Holtmanne66890a92015-06-07 09:47:08 +02002210 fw_ptr += frag_len;
2211 frag_len = 0;
2212 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002213 }
2214
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002215 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2216
Johan Hedberga087a982015-01-30 10:58:54 +02002217 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2218
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002219 /* Before switching the device into operational mode and with that
2220 * booting the loaded firmware, wait for the bootloader notification
2221 * that all fragments have been successfully received.
2222 *
Johan Hedberga087a982015-01-30 10:58:54 +02002223 * When the event processing receives the notification, then the
2224 * BTUSB_DOWNLOADING flag will be cleared.
2225 *
2226 * The firmware loading should not take longer than 5 seconds
2227 * and thus just timeout if that happens and fail the setup
2228 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002229 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002230 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2231 TASK_INTERRUPTIBLE,
2232 msecs_to_jiffies(5000));
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002233 if (err == -EINTR) {
Johan Hedberga087a982015-01-30 10:58:54 +02002234 BT_ERR("%s: Firmware loading interrupted", hdev->name);
Johan Hedberga087a982015-01-30 10:58:54 +02002235 goto done;
2236 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002237
Johan Hedberga087a982015-01-30 10:58:54 +02002238 if (err) {
2239 BT_ERR("%s: Firmware loading timeout", hdev->name);
2240 err = -ETIMEDOUT;
2241 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002242 }
2243
2244 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2245 BT_ERR("%s: Firmware loading failed", hdev->name);
2246 err = -ENOEXEC;
2247 goto done;
2248 }
2249
2250 rettime = ktime_get();
2251 delta = ktime_sub(rettime, calltime);
2252 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2253
2254 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2255
2256done:
2257 release_firmware(fw);
2258
2259 if (err < 0)
2260 return err;
2261
2262 calltime = ktime_get();
2263
2264 set_bit(BTUSB_BOOTING, &data->flags);
2265
2266 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2267 HCI_INIT_TIMEOUT);
2268 if (IS_ERR(skb))
2269 return PTR_ERR(skb);
2270
2271 kfree_skb(skb);
2272
2273 /* The bootloader will not indicate when the device is ready. This
2274 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002275 *
2276 * Booting into operational firmware should not take longer than
2277 * 1 second. However if that happens, then just fail the setup
2278 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002279 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002280 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002281
Johan Hedberg129a7692015-02-14 09:33:35 +02002282 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2283 TASK_INTERRUPTIBLE,
2284 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002285
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002286 if (err == -EINTR) {
Johan Hedbergfad70972015-01-30 10:58:55 +02002287 BT_ERR("%s: Device boot interrupted", hdev->name);
2288 return -EINTR;
2289 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002290
Johan Hedbergfad70972015-01-30 10:58:55 +02002291 if (err) {
2292 BT_ERR("%s: Device boot timeout", hdev->name);
2293 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002294 }
2295
2296 rettime = ktime_get();
2297 delta = ktime_sub(rettime, calltime);
2298 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2299
2300 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2301
2302 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2303
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002304 /* Once the device is running in operational mode, it needs to apply
2305 * the device configuration (DDC) parameters.
2306 *
2307 * The device can work without DDC parameters, so even if it fails
2308 * to load the file, no need to fail the setup.
2309 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002310 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002311
Marcel Holtmann213445b2015-10-21 02:45:19 +02002312 /* Set the event mask for Intel specific vendor events. This enables
2313 * a few extra events that are useful during general operation. It
2314 * does not enable any debugging related events.
2315 *
2316 * The device will function correctly without these events enabled
2317 * and thus no need to fail the setup.
2318 */
2319 btintel_set_event_mask(hdev, false);
2320
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002321 return 0;
2322}
2323
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002324static int btusb_shutdown_intel(struct hci_dev *hdev)
2325{
2326 struct sk_buff *skb;
2327 long ret;
2328
2329 /* Some platforms have an issue with BT LED when the interface is
2330 * down or BT radio is turned off, which takes 5 seconds to BT LED
2331 * goes off. This command turns off the BT LED immediately.
2332 */
2333 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2334 if (IS_ERR(skb)) {
2335 ret = PTR_ERR(skb);
2336 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2337 hdev->name, ret);
2338 return ret;
2339 }
2340 kfree_skb(skb);
2341
2342 return 0;
2343}
2344
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002345static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2346 const bdaddr_t *bdaddr)
2347{
2348 struct sk_buff *skb;
2349 u8 buf[8];
2350 long ret;
2351
2352 buf[0] = 0xfe;
2353 buf[1] = sizeof(bdaddr_t);
2354 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2355
2356 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2357 if (IS_ERR(skb)) {
2358 ret = PTR_ERR(skb);
2359 BT_ERR("%s: changing Marvell device address failed (%ld)",
2360 hdev->name, ret);
2361 return ret;
2362 }
2363 kfree_skb(skb);
2364
2365 return 0;
2366}
2367
Toshi Kikuchi58592232014-12-12 10:58:05 -08002368static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2369 const bdaddr_t *bdaddr)
2370{
2371 struct sk_buff *skb;
2372 u8 buf[10];
2373 long ret;
2374
2375 buf[0] = 0x01;
2376 buf[1] = 0x01;
2377 buf[2] = 0x00;
2378 buf[3] = sizeof(bdaddr_t);
2379 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2380
2381 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2382 if (IS_ERR(skb)) {
2383 ret = PTR_ERR(skb);
2384 BT_ERR("%s: Change address command failed (%ld)",
2385 hdev->name, ret);
2386 return ret;
2387 }
2388 kfree_skb(skb);
2389
2390 return 0;
2391}
2392
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002393#define QCA_DFU_PACKET_LEN 4096
2394
2395#define QCA_GET_TARGET_VERSION 0x09
2396#define QCA_CHECK_STATUS 0x05
2397#define QCA_DFU_DOWNLOAD 0x01
2398
2399#define QCA_SYSCFG_UPDATED 0x40
2400#define QCA_PATCH_UPDATED 0x80
2401#define QCA_DFU_TIMEOUT 3000
2402
2403struct qca_version {
2404 __le32 rom_version;
2405 __le32 patch_version;
2406 __le32 ram_version;
2407 __le32 ref_clock;
2408 __u8 reserved[4];
2409} __packed;
2410
2411struct qca_rampatch_version {
2412 __le16 rom_version;
2413 __le16 patch_version;
2414} __packed;
2415
2416struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002417 u32 rom_version;
2418 u8 rampatch_hdr; /* length of header in rampatch */
2419 u8 nvm_hdr; /* length of header in NVM */
2420 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002421};
2422
2423static const struct qca_device_info qca_devices_table[] = {
2424 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2425 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002426 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002427 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2428 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2429 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2430};
2431
2432static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2433 void *data, u16 size)
2434{
2435 struct btusb_data *btdata = hci_get_drvdata(hdev);
2436 struct usb_device *udev = btdata->udev;
2437 int pipe, err;
2438 u8 *buf;
2439
2440 buf = kmalloc(size, GFP_KERNEL);
2441 if (!buf)
2442 return -ENOMEM;
2443
2444 /* Found some of USB hosts have IOT issues with ours so that we should
2445 * not wait until HCI layer is ready.
2446 */
2447 pipe = usb_rcvctrlpipe(udev, 0);
2448 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2449 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2450 if (err < 0) {
2451 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2452 goto done;
2453 }
2454
2455 memcpy(data, buf, size);
2456
2457done:
2458 kfree(buf);
2459
2460 return err;
2461}
2462
2463static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2464 const struct firmware *firmware,
2465 size_t hdr_size)
2466{
2467 struct btusb_data *btdata = hci_get_drvdata(hdev);
2468 struct usb_device *udev = btdata->udev;
2469 size_t count, size, sent = 0;
2470 int pipe, len, err;
2471 u8 *buf;
2472
2473 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2474 if (!buf)
2475 return -ENOMEM;
2476
2477 count = firmware->size;
2478
2479 size = min_t(size_t, count, hdr_size);
2480 memcpy(buf, firmware->data, size);
2481
2482 /* USB patches should go down to controller through USB path
2483 * because binary format fits to go down through USB channel.
2484 * USB control path is for patching headers and USB bulk is for
2485 * patch body.
2486 */
2487 pipe = usb_sndctrlpipe(udev, 0);
2488 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2489 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2490 if (err < 0) {
2491 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2492 goto done;
2493 }
2494
2495 sent += size;
2496 count -= size;
2497
2498 while (count) {
2499 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2500
2501 memcpy(buf, firmware->data + sent, size);
2502
2503 pipe = usb_sndbulkpipe(udev, 0x02);
2504 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2505 QCA_DFU_TIMEOUT);
2506 if (err < 0) {
2507 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2508 hdev->name, sent, firmware->size, err);
2509 break;
2510 }
2511
2512 if (size != len) {
2513 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2514 err = -EILSEQ;
2515 break;
2516 }
2517
2518 sent += size;
2519 count -= size;
2520 }
2521
2522done:
2523 kfree(buf);
2524 return err;
2525}
2526
2527static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2528 struct qca_version *ver,
2529 const struct qca_device_info *info)
2530{
2531 struct qca_rampatch_version *rver;
2532 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002533 u32 ver_rom, ver_patch;
2534 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002535 char fwname[64];
2536 int err;
2537
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002538 ver_rom = le32_to_cpu(ver->rom_version);
2539 ver_patch = le32_to_cpu(ver->patch_version);
2540
2541 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002542
2543 err = request_firmware(&fw, fwname, &hdev->dev);
2544 if (err) {
2545 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2546 hdev->name, fwname, err);
2547 return err;
2548 }
2549
2550 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002551
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002552 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2553 rver_rom = le16_to_cpu(rver->rom_version);
2554 rver_patch = le16_to_cpu(rver->patch_version);
2555
2556 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2557 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2558 ver_patch);
2559
2560 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002561 BT_ERR("%s: rampatch file version did not match with firmware",
2562 hdev->name);
2563 err = -EINVAL;
2564 goto done;
2565 }
2566
2567 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2568
2569done:
2570 release_firmware(fw);
2571
2572 return err;
2573}
2574
2575static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2576 struct qca_version *ver,
2577 const struct qca_device_info *info)
2578{
2579 const struct firmware *fw;
2580 char fwname[64];
2581 int err;
2582
2583 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2584 le32_to_cpu(ver->rom_version));
2585
2586 err = request_firmware(&fw, fwname, &hdev->dev);
2587 if (err) {
2588 BT_ERR("%s: failed to request NVM file: %s (%d)",
2589 hdev->name, fwname, err);
2590 return err;
2591 }
2592
2593 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2594
2595 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2596
2597 release_firmware(fw);
2598
2599 return err;
2600}
2601
2602static int btusb_setup_qca(struct hci_dev *hdev)
2603{
2604 const struct qca_device_info *info = NULL;
2605 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002606 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002607 u8 status;
2608 int i, err;
2609
2610 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002611 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002612 if (err < 0)
2613 return err;
2614
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002615 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002616 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002617 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002618 info = &qca_devices_table[i];
2619 }
2620 if (!info) {
2621 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002622 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002623 return -ENODEV;
2624 }
2625
2626 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2627 sizeof(status));
2628 if (err < 0)
2629 return err;
2630
2631 if (!(status & QCA_PATCH_UPDATED)) {
2632 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2633 if (err < 0)
2634 return err;
2635 }
2636
2637 if (!(status & QCA_SYSCFG_UPDATED)) {
2638 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2639 if (err < 0)
2640 return err;
2641 }
2642
2643 return 0;
2644}
2645
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002646#ifdef CONFIG_BT_HCIBTUSB_BCM
2647static inline int __set_diag_interface(struct hci_dev *hdev)
2648{
2649 struct btusb_data *data = hci_get_drvdata(hdev);
2650 struct usb_interface *intf = data->diag;
2651 int i;
2652
2653 if (!data->diag)
2654 return -ENODEV;
2655
2656 data->diag_tx_ep = NULL;
2657 data->diag_rx_ep = NULL;
2658
2659 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2660 struct usb_endpoint_descriptor *ep_desc;
2661
2662 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2663
2664 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2665 data->diag_tx_ep = ep_desc;
2666 continue;
2667 }
2668
2669 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2670 data->diag_rx_ep = ep_desc;
2671 continue;
2672 }
2673 }
2674
2675 if (!data->diag_tx_ep || !data->diag_rx_ep) {
2676 BT_ERR("%s invalid diagnostic descriptors", hdev->name);
2677 return -ENODEV;
2678 }
2679
2680 return 0;
2681}
2682
2683static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
2684{
2685 struct btusb_data *data = hci_get_drvdata(hdev);
2686 struct sk_buff *skb;
2687 struct urb *urb;
2688 unsigned int pipe;
2689
2690 if (!data->diag_tx_ep)
2691 return ERR_PTR(-ENODEV);
2692
2693 urb = usb_alloc_urb(0, GFP_KERNEL);
2694 if (!urb)
2695 return ERR_PTR(-ENOMEM);
2696
2697 skb = bt_skb_alloc(2, GFP_KERNEL);
2698 if (!skb) {
2699 usb_free_urb(urb);
2700 return ERR_PTR(-ENOMEM);
2701 }
2702
2703 *skb_put(skb, 1) = 0xf0;
2704 *skb_put(skb, 1) = enable;
2705
2706 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
2707
2708 usb_fill_bulk_urb(urb, data->udev, pipe,
2709 skb->data, skb->len, btusb_tx_complete, skb);
2710
2711 skb->dev = (void *)hdev;
2712
2713 return urb;
2714}
2715
2716static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
2717{
2718 struct btusb_data *data = hci_get_drvdata(hdev);
2719 struct urb *urb;
2720
2721 if (!data->diag)
2722 return -ENODEV;
2723
2724 if (!test_bit(HCI_RUNNING, &hdev->flags))
2725 return -ENETDOWN;
2726
2727 urb = alloc_diag_urb(hdev, enable);
2728 if (IS_ERR(urb))
2729 return PTR_ERR(urb);
2730
2731 return submit_or_queue_tx_urb(hdev, urb);
2732}
2733#endif
2734
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002735static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002736 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002737{
2738 struct usb_endpoint_descriptor *ep_desc;
2739 struct btusb_data *data;
2740 struct hci_dev *hdev;
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002741 unsigned ifnum_base;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002742 int i, err;
2743
2744 BT_DBG("intf %p id %p", intf, id);
2745
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002746 /* interface numbers are hardcoded in the spec */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002747 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
2748 if (!(id->driver_info & BTUSB_IFNUM_2))
2749 return -ENODEV;
2750 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
2751 return -ENODEV;
2752 }
2753
2754 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002755
2756 if (!id->driver_info) {
2757 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002758
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002759 match = usb_match_id(intf, blacklist_table);
2760 if (match)
2761 id = match;
2762 }
2763
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002764 if (id->driver_info == BTUSB_IGNORE)
2765 return -ENODEV;
2766
Steven.Li2d25f8b2011-07-01 14:02:36 +08002767 if (id->driver_info & BTUSB_ATH3012) {
2768 struct usb_device *udev = interface_to_usbdev(intf);
2769
2770 /* Old firmware would otherwise let ath3k driver load
2771 * patch and sysconfig files */
2772 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2773 return -ENODEV;
2774 }
2775
Sachin Kamat98921db2012-07-27 12:38:39 +05302776 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002777 if (!data)
2778 return -ENOMEM;
2779
2780 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2781 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2782
2783 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2784 data->intr_ep = ep_desc;
2785 continue;
2786 }
2787
2788 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2789 data->bulk_tx_ep = ep_desc;
2790 continue;
2791 }
2792
2793 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2794 data->bulk_rx_ep = ep_desc;
2795 continue;
2796 }
2797 }
2798
Sachin Kamat98921db2012-07-27 12:38:39 +05302799 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002800 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002801
Marcel Holtmann893ba542015-01-28 20:27:34 -08002802 if (id->driver_info & BTUSB_AMP) {
2803 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2804 data->cmdreq = 0x2b;
2805 } else {
2806 data->cmdreq_type = USB_TYPE_CLASS;
2807 data->cmdreq = 0x00;
2808 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002809
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002810 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002811 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002812
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002813 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002814 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002815 init_usb_anchor(&data->deferred);
2816 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002817 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002818
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002819 init_usb_anchor(&data->intr_anchor);
2820 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002821 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002822 init_usb_anchor(&data->diag_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002823 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002824
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002825 if (id->driver_info & BTUSB_INTEL_NEW) {
2826 data->recv_event = btusb_recv_event_intel;
2827 data->recv_bulk = btusb_recv_bulk_intel;
2828 set_bit(BTUSB_BOOTLOADER, &data->flags);
2829 } else {
2830 data->recv_event = hci_recv_frame;
2831 data->recv_bulk = btusb_recv_bulk;
2832 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002833
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002834 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302835 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002836 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002837
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002838 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002839 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002840
Marcel Holtmann893ba542015-01-28 20:27:34 -08002841 if (id->driver_info & BTUSB_AMP)
2842 hdev->dev_type = HCI_AMP;
2843 else
Marcel Holtmannca8bee52016-07-05 14:30:14 +02002844 hdev->dev_type = HCI_PRIMARY;
Marcel Holtmann893ba542015-01-28 20:27:34 -08002845
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002846 data->hdev = hdev;
2847
2848 SET_HCIDEV_DEV(hdev, &intf->dev);
2849
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002850 hdev->open = btusb_open;
2851 hdev->close = btusb_close;
2852 hdev->flush = btusb_flush;
2853 hdev->send = btusb_send_frame;
2854 hdev->notify = btusb_notify;
2855
Szymon Janc418678b2016-09-01 17:22:37 +02002856 if (id->driver_info & BTUSB_CW6622)
2857 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2858
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02002859 if (id->driver_info & BTUSB_BCM2045)
2860 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
2861
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002862 if (id->driver_info & BTUSB_BCM92035)
2863 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002864
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002865#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002866 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002867 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002868 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002869 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002870 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002871
2872 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002873 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002874 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002875
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002876 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002877 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002878 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002879 hdev->set_diag = btusb_bcm_set_diag;
2880
2881 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002882 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02002883 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002884#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002885
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002886 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002887 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002888 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002889 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02002890 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002891 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002892 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002893 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02002894 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002895 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002896
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002897 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02002898 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002899 hdev->send = btusb_send_frame_intel;
2900 hdev->setup = btusb_setup_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02002901 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02002902 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002903 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002904 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02002905 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002906 }
2907
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002908 if (id->driver_info & BTUSB_MARVELL)
2909 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2910
Marcel Holtmann661cf882015-01-02 23:35:20 -08002911 if (id->driver_info & BTUSB_SWAVE) {
2912 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002913 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002914 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002915
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02002916 if (id->driver_info & BTUSB_INTEL_BOOT) {
2917 hdev->manufacturer = 2;
Marcel Holtmann40df7832014-07-06 13:29:58 +02002918 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02002919 }
Marcel Holtmann40df7832014-07-06 13:29:58 +02002920
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002921 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002922 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002923 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002924 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2925 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002926
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002927 if (id->driver_info & BTUSB_QCA_ROME) {
2928 data->setup_on_usb = btusb_setup_qca;
2929 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2930 }
2931
Carlo Caionedb33c772015-05-14 10:49:09 +02002932#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002933 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002934 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002935
2936 /* Realtek devices lose their updated firmware over suspend,
2937 * but the USB hub doesn't notice any status change.
2938 * Explicitly request a device reset on resume.
2939 */
2940 set_bit(BTUSB_RESET_RESUME, &data->flags);
2941 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002942#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002943
Marcel Holtmann893ba542015-01-28 20:27:34 -08002944 if (id->driver_info & BTUSB_AMP) {
2945 /* AMP controllers do not support SCO packets */
2946 data->isoc = NULL;
2947 } else {
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02002948 /* Interface orders are hardcoded in the specification */
2949 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
Marcel Holtmann893ba542015-01-28 20:27:34 -08002950 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002951
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002952 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002953 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002954
2955 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2956 if (!disable_scofix)
2957 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2958 }
2959
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002960 if (id->driver_info & BTUSB_BROKEN_ISOC)
2961 data->isoc = NULL;
2962
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002963 if (id->driver_info & BTUSB_DIGIANSWER) {
2964 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002965 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002966 }
2967
2968 if (id->driver_info & BTUSB_CSR) {
2969 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002970 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002971
2972 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002973 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002974 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002975
2976 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03002977 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08002978 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002979
2980 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002981 }
2982
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002983 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002984 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002985
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002986 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002987 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2988 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2989 }
2990
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002991 if (id->driver_info & BTUSB_INTEL_BOOT) {
2992 /* A bug in the bootloader causes that interrupt interface is
2993 * only enabled after receiving SetInterface(0, AltSetting=0).
2994 */
2995 err = usb_set_interface(data->udev, 0, 0);
2996 if (err < 0) {
2997 BT_ERR("failed to set interface 0, alt 0 %d", err);
Rajat Jain10ab1332017-02-01 14:24:08 -08002998 goto out_free_dev;
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002999 }
3000 }
3001
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003002 if (data->isoc) {
3003 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003004 data->isoc, data);
Rajat Jain10ab1332017-02-01 14:24:08 -08003005 if (err < 0)
3006 goto out_free_dev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003007 }
3008
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003009#ifdef CONFIG_BT_HCIBTUSB_BCM
3010 if (data->diag) {
3011 if (!usb_driver_claim_interface(&btusb_driver,
3012 data->diag, data))
3013 __set_diag_interface(hdev);
3014 else
3015 data->diag = NULL;
3016 }
3017#endif
3018
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003019 err = hci_register_dev(hdev);
Rajat Jain10ab1332017-02-01 14:24:08 -08003020 if (err < 0)
3021 goto out_free_dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003022
3023 usb_set_intfdata(intf, data);
3024
3025 return 0;
Rajat Jain10ab1332017-02-01 14:24:08 -08003026
3027out_free_dev:
3028 hci_free_dev(hdev);
3029 return err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003030}
3031
3032static void btusb_disconnect(struct usb_interface *intf)
3033{
3034 struct btusb_data *data = usb_get_intfdata(intf);
3035 struct hci_dev *hdev;
3036
3037 BT_DBG("intf %p", intf);
3038
3039 if (!data)
3040 return;
3041
3042 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003043 usb_set_intfdata(data->intf, NULL);
3044
3045 if (data->isoc)
3046 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003047
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003048 if (data->diag)
3049 usb_set_intfdata(data->diag, NULL);
3050
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003051 hci_unregister_dev(hdev);
3052
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003053 if (intf == data->intf) {
3054 if (data->isoc)
3055 usb_driver_release_interface(&btusb_driver, data->isoc);
3056 if (data->diag)
3057 usb_driver_release_interface(&btusb_driver, data->diag);
3058 } else if (intf == data->isoc) {
3059 if (data->diag)
3060 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003061 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003062 } else if (intf == data->diag) {
3063 usb_driver_release_interface(&btusb_driver, data->intf);
3064 if (data->isoc)
3065 usb_driver_release_interface(&btusb_driver, data->isoc);
3066 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003067
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003068 hci_free_dev(hdev);
3069}
3070
Oliver Neukum7bee5492009-08-24 23:44:59 +02003071#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003072static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
3073{
3074 struct btusb_data *data = usb_get_intfdata(intf);
3075
3076 BT_DBG("intf %p", intf);
3077
3078 if (data->suspend_count++)
3079 return 0;
3080
Oliver Neukum7bee5492009-08-24 23:44:59 +02003081 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02003082 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02003083 set_bit(BTUSB_SUSPENDING, &data->flags);
3084 spin_unlock_irq(&data->txlock);
3085 } else {
3086 spin_unlock_irq(&data->txlock);
3087 data->suspend_count--;
3088 return -EBUSY;
3089 }
3090
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003091 cancel_work_sync(&data->work);
3092
Oliver Neukum7bee5492009-08-24 23:44:59 +02003093 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003094 usb_kill_anchored_urbs(&data->tx_anchor);
3095
Daniel Drake04b8c812015-05-21 08:23:50 -06003096 /* Optionally request a device reset on resume, but only when
3097 * wakeups are disabled. If wakeups are enabled we assume the
3098 * device will stay powered up throughout suspend.
3099 */
3100 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
3101 !device_may_wakeup(&data->udev->dev))
3102 data->udev->reset_resume = 1;
3103
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003104 return 0;
3105}
3106
Oliver Neukum7bee5492009-08-24 23:44:59 +02003107static void play_deferred(struct btusb_data *data)
3108{
3109 struct urb *urb;
3110 int err;
3111
3112 while ((urb = usb_get_from_anchor(&data->deferred))) {
3113 err = usb_submit_urb(urb, GFP_ATOMIC);
3114 if (err < 0)
3115 break;
3116
3117 data->tx_in_flight++;
3118 }
3119 usb_scuttle_anchored_urbs(&data->deferred);
3120}
3121
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003122static int btusb_resume(struct usb_interface *intf)
3123{
3124 struct btusb_data *data = usb_get_intfdata(intf);
3125 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003126 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003127
3128 BT_DBG("intf %p", intf);
3129
3130 if (--data->suspend_count)
3131 return 0;
3132
3133 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003134 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003135
3136 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3137 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3138 if (err < 0) {
3139 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003140 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003141 }
3142 }
3143
3144 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003145 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3146 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003147 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003148 goto failed;
3149 }
3150
3151 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003152 }
3153
3154 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3155 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3156 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3157 else
3158 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3159 }
3160
Oliver Neukum7bee5492009-08-24 23:44:59 +02003161 spin_lock_irq(&data->txlock);
3162 play_deferred(data);
3163 clear_bit(BTUSB_SUSPENDING, &data->flags);
3164 spin_unlock_irq(&data->txlock);
3165 schedule_work(&data->work);
3166
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003167 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003168
3169failed:
3170 usb_scuttle_anchored_urbs(&data->deferred);
3171done:
3172 spin_lock_irq(&data->txlock);
3173 clear_bit(BTUSB_SUSPENDING, &data->flags);
3174 spin_unlock_irq(&data->txlock);
3175
3176 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003177}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003178#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003179
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003180static struct usb_driver btusb_driver = {
3181 .name = "btusb",
3182 .probe = btusb_probe,
3183 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003184#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003185 .suspend = btusb_suspend,
3186 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003187#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003188 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003189 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003190 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003191};
3192
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003193module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003194
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003195module_param(disable_scofix, bool, 0644);
3196MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3197
3198module_param(force_scofix, bool, 0644);
3199MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3200
3201module_param(reset, bool, 0644);
3202MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3203
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003204MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3205MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3206MODULE_VERSION(VERSION);
3207MODULE_LICENSE("GPL");