blob: 9d2d059a7540da018505decf7f12b5c136f5b8a9 [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>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020027
28#include <net/bluetooth/bluetooth.h>
29#include <net/bluetooth/hci_core.h>
30
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080031#define VERSION "0.7"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020032
Rusty Russell90ab5ee2012-01-13 09:32:20 +103033static bool disable_scofix;
34static bool force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010035
Rusty Russell90ab5ee2012-01-13 09:32:20 +103036static bool reset = 1;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020037
38static struct usb_driver btusb_driver;
39
40#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010041#define BTUSB_DIGIANSWER 0x02
42#define BTUSB_CSR 0x04
43#define BTUSB_SNIFFER 0x08
44#define BTUSB_BCM92035 0x10
45#define BTUSB_BROKEN_ISOC 0x20
46#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080047#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070048#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020049#define BTUSB_INTEL_BOOT 0x200
50#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070051#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080052#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080053#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020054
Marcel Holtmann54265202013-10-11 07:46:18 -070055static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020056 /* Generic Bluetooth USB device */
57 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
58
Henrik Rydberg1fa65352012-08-25 19:28:06 +020059 /* Apple-specific (Broadcom) devices */
60 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01) },
61
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080062 /* MediaTek MT76x0E */
63 { USB_DEVICE(0x0e8d, 0x763f) },
64
Oliver Neukumc510eae2011-09-21 11:41:45 +020065 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040066 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020067
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090068 /* Apple MacBookPro 7,1 */
69 { USB_DEVICE(0x05ac, 0x8213) },
70
Cyril Lacoux0a79f672010-07-14 10:29:27 +040071 /* Apple iMac11,1 */
72 { USB_DEVICE(0x05ac, 0x8215) },
73
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090074 /* Apple MacBookPro6,2 */
75 { USB_DEVICE(0x05ac, 0x8218) },
76
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010077 /* Apple MacBookAir3,1, MacBookAir3,2 */
78 { USB_DEVICE(0x05ac, 0x821b) },
79
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040080 /* Apple MacBookAir4,1 */
81 { USB_DEVICE(0x05ac, 0x821f) },
82
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030083 /* Apple MacBookPro8,2 */
84 { USB_DEVICE(0x05ac, 0x821a) },
85
Jurgen Kramerf78b68262011-09-04 18:01:42 +020086 /* Apple MacMini5,1 */
87 { USB_DEVICE(0x05ac, 0x8281) },
88
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020089 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080090 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020091
92 /* Bluetooth Ultraport Module from IBM */
93 { USB_DEVICE(0x04bf, 0x030a) },
94
95 /* ALPS Modules with non-standard id */
96 { USB_DEVICE(0x044e, 0x3001) },
97 { USB_DEVICE(0x044e, 0x3002) },
98
99 /* Ericsson with non-standard id */
100 { USB_DEVICE(0x0bdb, 0x1002) },
101
102 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100103 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200104
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800105 /* Broadcom BCM20702A0 */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200106 { USB_DEVICE(0x0489, 0xe042) },
107 { USB_DEVICE(0x04ca, 0x2003) },
Jeff Cook1ee3ff62012-11-09 16:39:48 -0700108 { USB_DEVICE(0x0b05, 0x17b5) },
Raphael Kubo da Costa38a172b2013-09-02 14:57:51 +0300109 { USB_DEVICE(0x0b05, 0x17cb) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800110 { USB_DEVICE(0x413c, 0x8197) },
Fabio Ka86c02e2014-11-18 00:46:28 -0200111 { USB_DEVICE(0x13d3, 0x3404),
112 .driver_info = BTUSB_BCM_PATCHRAM },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800113
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800114 /* Broadcom BCM20702B0 (Dynex/Insignia) */
115 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
116
Steven Harms98514032012-04-13 14:45:55 -0400117 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100118 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
119 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400120
Andy Shevchenko0b880062014-02-18 18:26:19 +0200121 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700122 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
123 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300124
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200125 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abda2015-01-17 05:29:12 +0100126 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
127 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200128
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100129 /* Belkin F8065bf - Broadcom based */
130 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01) },
131
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100132 /* IMC Networks - Broadcom based */
133 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) },
134
Marcel Holtmann40df7832014-07-06 13:29:58 +0200135 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200136 { USB_DEVICE(0x8087, 0x0a5a),
137 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200138
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200139 { } /* Terminating entry */
140};
141
142MODULE_DEVICE_TABLE(usb, btusb_table);
143
Marcel Holtmann54265202013-10-11 07:46:18 -0700144static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200145 /* CSR BlueCore devices */
146 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
147
148 /* Broadcom BCM2033 without firmware */
149 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
150
Bala Shanmugambe931122010-11-26 17:35:46 +0530151 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200152 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
153 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
154 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530155 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200156 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700157 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530158
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800159 /* Atheros AR9285 Malbec with sflash firmware */
160 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
161
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530162 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200163 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
164 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
165 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
166 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
167 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530168 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200169 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
170 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
171 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
172 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700173 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200174 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
175 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200176 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200177 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
178 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100179 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200180 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800181 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800182 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900183 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200184 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100185 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100186 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200187 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800188 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200189 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800190 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800191 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200192 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
193 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800194 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530195 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300196 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300197 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530198 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530199
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800200 /* Atheros AR5BBU12 with sflash firmware */
201 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
202
Michael Gruetzner85d59722012-05-02 22:33:40 +0200203 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530204 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200205 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200206
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200207 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100208 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200209 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
210 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200211
212 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100213 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
214 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200215
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200216 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100217 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
218 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200219
220 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100221 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200222
223 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100224 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200225
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100226 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100227 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100228 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200229
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100230 /* Belkin F8T012 and F8T013 devices */
231 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
232 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200233
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100234 /* Asus WL-BTD202 device */
235 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
236
237 /* Kensington Bluetooth USB adapter */
238 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
239
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200240 /* RTX Telecom based adapters with buggy SCO support */
241 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
242 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
243
244 /* CONWISE Technology based adapters with buggy SCO support */
245 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
246
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800247 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
248 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
249
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200250 /* Digianswer devices */
251 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
252 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
253
254 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200255 { USB_DEVICE(0x0a12, 0x0002),
256 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200257
258 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200259 { USB_DEVICE(0x16d3, 0x0002),
260 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200261
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800262 /* Marvell Bluetooth devices */
263 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
264 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
265
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800266 /* Intel Bluetooth devices */
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700267 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800268 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800269 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700270
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800271 /* Other Intel Bluetooth devices */
272 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
273 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700274
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200275 { } /* Terminating entry */
276};
277
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200278#define BTUSB_MAX_ISOC_FRAMES 10
279
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200280#define BTUSB_INTR_RUNNING 0
281#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200282#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200283#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300284#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800285#define BTUSB_BOOTLOADER 5
286#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800287#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800288#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800289#define BTUSB_BOOTING 9
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200290
291struct btusb_data {
292 struct hci_dev *hdev;
293 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200294 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200295 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200296
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200297 unsigned long flags;
298
299 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200300 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200301
Marcel Holtmann803b5832014-09-16 08:00:29 +0200302 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200303 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200304 int tx_in_flight;
305 spinlock_t txlock;
306
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200307 struct usb_anchor intr_anchor;
308 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200309 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200310 spinlock_t rxlock;
311
312 struct sk_buff *evt_skb;
313 struct sk_buff *acl_skb;
314 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200315
316 struct usb_endpoint_descriptor *intr_ep;
317 struct usb_endpoint_descriptor *bulk_tx_ep;
318 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200319 struct usb_endpoint_descriptor *isoc_tx_ep;
320 struct usb_endpoint_descriptor *isoc_rx_ep;
321
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100322 __u8 cmdreq_type;
323
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100324 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200325 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100326 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100327
Marcel Holtmann97307f52015-01-12 13:51:10 -0800328 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100329 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200330};
331
Marcel Holtmann803b5832014-09-16 08:00:29 +0200332static inline void btusb_free_frags(struct btusb_data *data)
333{
334 unsigned long flags;
335
336 spin_lock_irqsave(&data->rxlock, flags);
337
338 kfree_skb(data->evt_skb);
339 data->evt_skb = NULL;
340
341 kfree_skb(data->acl_skb);
342 data->acl_skb = NULL;
343
344 kfree_skb(data->sco_skb);
345 data->sco_skb = NULL;
346
347 spin_unlock_irqrestore(&data->rxlock, flags);
348}
349
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200350static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
351{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200352 struct sk_buff *skb;
353 int err = 0;
354
355 spin_lock(&data->rxlock);
356 skb = data->evt_skb;
357
358 while (count) {
359 int len;
360
361 if (!skb) {
362 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
363 if (!skb) {
364 err = -ENOMEM;
365 break;
366 }
367
368 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
369 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
370 }
371
372 len = min_t(uint, bt_cb(skb)->expect, count);
373 memcpy(skb_put(skb, len), buffer, len);
374
375 count -= len;
376 buffer += len;
377 bt_cb(skb)->expect -= len;
378
379 if (skb->len == HCI_EVENT_HDR_SIZE) {
380 /* Complete event header */
381 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
382
383 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
384 kfree_skb(skb);
385 skb = NULL;
386
387 err = -EILSEQ;
388 break;
389 }
390 }
391
392 if (bt_cb(skb)->expect == 0) {
393 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800394 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200395 skb = NULL;
396 }
397 }
398
399 data->evt_skb = skb;
400 spin_unlock(&data->rxlock);
401
402 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200403}
404
405static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
406{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200407 struct sk_buff *skb;
408 int err = 0;
409
410 spin_lock(&data->rxlock);
411 skb = data->acl_skb;
412
413 while (count) {
414 int len;
415
416 if (!skb) {
417 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
418 if (!skb) {
419 err = -ENOMEM;
420 break;
421 }
422
423 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
424 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
425 }
426
427 len = min_t(uint, bt_cb(skb)->expect, count);
428 memcpy(skb_put(skb, len), buffer, len);
429
430 count -= len;
431 buffer += len;
432 bt_cb(skb)->expect -= len;
433
434 if (skb->len == HCI_ACL_HDR_SIZE) {
435 __le16 dlen = hci_acl_hdr(skb)->dlen;
436
437 /* Complete ACL header */
438 bt_cb(skb)->expect = __le16_to_cpu(dlen);
439
440 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
441 kfree_skb(skb);
442 skb = NULL;
443
444 err = -EILSEQ;
445 break;
446 }
447 }
448
449 if (bt_cb(skb)->expect == 0) {
450 /* Complete frame */
451 hci_recv_frame(data->hdev, skb);
452 skb = NULL;
453 }
454 }
455
456 data->acl_skb = skb;
457 spin_unlock(&data->rxlock);
458
459 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200460}
461
462static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
463{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200464 struct sk_buff *skb;
465 int err = 0;
466
467 spin_lock(&data->rxlock);
468 skb = data->sco_skb;
469
470 while (count) {
471 int len;
472
473 if (!skb) {
474 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
475 if (!skb) {
476 err = -ENOMEM;
477 break;
478 }
479
480 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
481 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
482 }
483
484 len = min_t(uint, bt_cb(skb)->expect, count);
485 memcpy(skb_put(skb, len), buffer, len);
486
487 count -= len;
488 buffer += len;
489 bt_cb(skb)->expect -= len;
490
491 if (skb->len == HCI_SCO_HDR_SIZE) {
492 /* Complete SCO header */
493 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
494
495 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
496 kfree_skb(skb);
497 skb = NULL;
498
499 err = -EILSEQ;
500 break;
501 }
502 }
503
504 if (bt_cb(skb)->expect == 0) {
505 /* Complete frame */
506 hci_recv_frame(data->hdev, skb);
507 skb = NULL;
508 }
509 }
510
511 data->sco_skb = skb;
512 spin_unlock(&data->rxlock);
513
514 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200515}
516
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200517static void btusb_intr_complete(struct urb *urb)
518{
519 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100520 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200521 int err;
522
Marcel Holtmann89e75332014-09-16 04:44:50 +0200523 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
524 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200525
526 if (!test_bit(HCI_RUNNING, &hdev->flags))
527 return;
528
529 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200530 hdev->stat.byte_rx += urb->actual_length;
531
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200532 if (btusb_recv_intr(data, urb->transfer_buffer,
533 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200534 BT_ERR("%s corrupted event packet", hdev->name);
535 hdev->stat.err_rx++;
536 }
Champion Chen85560c42014-09-06 14:06:08 -0500537 } else if (urb->status == -ENOENT) {
538 /* Avoid suspend failed when usb_kill_urb */
539 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200540 }
541
542 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
543 return;
544
Oliver Neukum7bee5492009-08-24 23:44:59 +0200545 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200546 usb_anchor_urb(urb, &data->intr_anchor);
547
548 err = usb_submit_urb(urb, GFP_ATOMIC);
549 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200550 /* -EPERM: urb is being killed;
551 * -ENODEV: device got disconnected */
552 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100553 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200554 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200555 usb_unanchor_urb(urb);
556 }
557}
558
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100559static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200560{
David Herrmann155961e2012-02-09 21:58:32 +0100561 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200562 struct urb *urb;
563 unsigned char *buf;
564 unsigned int pipe;
565 int err, size;
566
567 BT_DBG("%s", hdev->name);
568
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200569 if (!data->intr_ep)
570 return -ENODEV;
571
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100572 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573 if (!urb)
574 return -ENOMEM;
575
576 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
577
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100578 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200579 if (!buf) {
580 usb_free_urb(urb);
581 return -ENOMEM;
582 }
583
584 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
585
586 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200587 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200588
589 urb->transfer_flags |= URB_FREE_BUFFER;
590
591 usb_anchor_urb(urb, &data->intr_anchor);
592
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100593 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200594 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200595 if (err != -EPERM && err != -ENODEV)
596 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200597 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200598 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200599 }
600
601 usb_free_urb(urb);
602
603 return err;
604}
605
606static void btusb_bulk_complete(struct urb *urb)
607{
608 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100609 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610 int err;
611
Marcel Holtmann89e75332014-09-16 04:44:50 +0200612 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
613 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200614
615 if (!test_bit(HCI_RUNNING, &hdev->flags))
616 return;
617
618 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200619 hdev->stat.byte_rx += urb->actual_length;
620
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100621 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200622 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 BT_ERR("%s corrupted ACL packet", hdev->name);
624 hdev->stat.err_rx++;
625 }
Champion Chen85560c42014-09-06 14:06:08 -0500626 } else if (urb->status == -ENOENT) {
627 /* Avoid suspend failed when usb_kill_urb */
628 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629 }
630
631 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
632 return;
633
634 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100635 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200636
637 err = usb_submit_urb(urb, GFP_ATOMIC);
638 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200639 /* -EPERM: urb is being killed;
640 * -ENODEV: device got disconnected */
641 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100642 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200643 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644 usb_unanchor_urb(urb);
645 }
646}
647
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100648static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200649{
David Herrmann155961e2012-02-09 21:58:32 +0100650 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200651 struct urb *urb;
652 unsigned char *buf;
653 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530654 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200655
656 BT_DBG("%s", hdev->name);
657
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200658 if (!data->bulk_rx_ep)
659 return -ENODEV;
660
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100661 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200662 if (!urb)
663 return -ENOMEM;
664
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100665 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200666 if (!buf) {
667 usb_free_urb(urb);
668 return -ENOMEM;
669 }
670
671 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
672
Marcel Holtmann89e75332014-09-16 04:44:50 +0200673 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
674 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200675
676 urb->transfer_flags |= URB_FREE_BUFFER;
677
Oliver Neukum7bee5492009-08-24 23:44:59 +0200678 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200679 usb_anchor_urb(urb, &data->bulk_anchor);
680
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100681 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200682 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200683 if (err != -EPERM && err != -ENODEV)
684 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200685 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200686 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200687 }
688
689 usb_free_urb(urb);
690
691 return err;
692}
693
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200694static void btusb_isoc_complete(struct urb *urb)
695{
696 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100697 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200698 int i, err;
699
Marcel Holtmann89e75332014-09-16 04:44:50 +0200700 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
701 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200702
703 if (!test_bit(HCI_RUNNING, &hdev->flags))
704 return;
705
706 if (urb->status == 0) {
707 for (i = 0; i < urb->number_of_packets; i++) {
708 unsigned int offset = urb->iso_frame_desc[i].offset;
709 unsigned int length = urb->iso_frame_desc[i].actual_length;
710
711 if (urb->iso_frame_desc[i].status)
712 continue;
713
714 hdev->stat.byte_rx += length;
715
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200716 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
717 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200718 BT_ERR("%s corrupted SCO packet", hdev->name);
719 hdev->stat.err_rx++;
720 }
721 }
Champion Chen85560c42014-09-06 14:06:08 -0500722 } else if (urb->status == -ENOENT) {
723 /* Avoid suspend failed when usb_kill_urb */
724 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200725 }
726
727 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
728 return;
729
730 usb_anchor_urb(urb, &data->isoc_anchor);
731
732 err = usb_submit_urb(urb, GFP_ATOMIC);
733 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200734 /* -EPERM: urb is being killed;
735 * -ENODEV: device got disconnected */
736 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100737 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200738 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200739 usb_unanchor_urb(urb);
740 }
741}
742
Jesper Juhl42b16b32011-01-17 00:09:38 +0100743static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200744{
745 int i, offset = 0;
746
747 BT_DBG("len %d mtu %d", len, mtu);
748
749 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
750 i++, offset += mtu, len -= mtu) {
751 urb->iso_frame_desc[i].offset = offset;
752 urb->iso_frame_desc[i].length = mtu;
753 }
754
755 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
756 urb->iso_frame_desc[i].offset = offset;
757 urb->iso_frame_desc[i].length = len;
758 i++;
759 }
760
761 urb->number_of_packets = i;
762}
763
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100764static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200765{
David Herrmann155961e2012-02-09 21:58:32 +0100766 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200767 struct urb *urb;
768 unsigned char *buf;
769 unsigned int pipe;
770 int err, size;
771
772 BT_DBG("%s", hdev->name);
773
774 if (!data->isoc_rx_ep)
775 return -ENODEV;
776
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100777 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200778 if (!urb)
779 return -ENOMEM;
780
781 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
782 BTUSB_MAX_ISOC_FRAMES;
783
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100784 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200785 if (!buf) {
786 usb_free_urb(urb);
787 return -ENOMEM;
788 }
789
790 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
791
Bing Zhaofa0fb932011-12-20 18:19:00 -0800792 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200793 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200794
Marcel Holtmann89e75332014-09-16 04:44:50 +0200795 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200796
797 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200798 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200799
800 usb_anchor_urb(urb, &data->isoc_anchor);
801
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100802 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200803 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200804 if (err != -EPERM && err != -ENODEV)
805 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200806 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200807 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200808 }
809
810 usb_free_urb(urb);
811
812 return err;
813}
814
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200815static void btusb_tx_complete(struct urb *urb)
816{
817 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200818 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100819 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200820
Marcel Holtmann89e75332014-09-16 04:44:50 +0200821 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
822 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200823
824 if (!test_bit(HCI_RUNNING, &hdev->flags))
825 goto done;
826
827 if (!urb->status)
828 hdev->stat.byte_tx += urb->transfer_buffer_length;
829 else
830 hdev->stat.err_tx++;
831
832done:
833 spin_lock(&data->txlock);
834 data->tx_in_flight--;
835 spin_unlock(&data->txlock);
836
837 kfree(urb->setup_packet);
838
839 kfree_skb(skb);
840}
841
842static void btusb_isoc_tx_complete(struct urb *urb)
843{
844 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200845 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200846
Marcel Holtmann89e75332014-09-16 04:44:50 +0200847 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
848 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200849
850 if (!test_bit(HCI_RUNNING, &hdev->flags))
851 goto done;
852
853 if (!urb->status)
854 hdev->stat.byte_tx += urb->transfer_buffer_length;
855 else
856 hdev->stat.err_tx++;
857
858done:
859 kfree(urb->setup_packet);
860
861 kfree_skb(skb);
862}
863
864static int btusb_open(struct hci_dev *hdev)
865{
David Herrmann155961e2012-02-09 21:58:32 +0100866 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200867 int err;
868
869 BT_DBG("%s", hdev->name);
870
Oliver Neukum7bee5492009-08-24 23:44:59 +0200871 err = usb_autopm_get_interface(data->intf);
872 if (err < 0)
873 return err;
874
875 data->intf->needs_remote_wakeup = 1;
876
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200877 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200878 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200879
880 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200881 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200882
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100883 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100884 if (err < 0)
885 goto failed;
886
887 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200888 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100889 usb_kill_anchored_urbs(&data->intr_anchor);
890 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200891 }
892
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100893 set_bit(BTUSB_BULK_RUNNING, &data->flags);
894 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
895
Oliver Neukum7bee5492009-08-24 23:44:59 +0200896done:
897 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100898 return 0;
899
900failed:
901 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
902 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200903 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200904 return err;
905}
906
Oliver Neukum7bee5492009-08-24 23:44:59 +0200907static void btusb_stop_traffic(struct btusb_data *data)
908{
909 usb_kill_anchored_urbs(&data->intr_anchor);
910 usb_kill_anchored_urbs(&data->bulk_anchor);
911 usb_kill_anchored_urbs(&data->isoc_anchor);
912}
913
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200914static int btusb_close(struct hci_dev *hdev)
915{
David Herrmann155961e2012-02-09 21:58:32 +0100916 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200917 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200918
919 BT_DBG("%s", hdev->name);
920
921 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
922 return 0;
923
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200924 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800925 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200926
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200927 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200928 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200929 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200930
931 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200932 btusb_free_frags(data);
933
Oliver Neukum7bee5492009-08-24 23:44:59 +0200934 err = usb_autopm_get_interface(data->intf);
935 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100936 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200937
938 data->intf->needs_remote_wakeup = 0;
939 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200940
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100941failed:
942 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200943 return 0;
944}
945
946static int btusb_flush(struct hci_dev *hdev)
947{
David Herrmann155961e2012-02-09 21:58:32 +0100948 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200949
950 BT_DBG("%s", hdev->name);
951
952 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200953 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200954
955 return 0;
956}
957
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200958static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200959{
David Herrmann155961e2012-02-09 21:58:32 +0100960 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200961 struct usb_ctrlrequest *dr;
962 struct urb *urb;
963 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200964
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200965 urb = usb_alloc_urb(0, GFP_KERNEL);
966 if (!urb)
967 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200968
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200969 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
970 if (!dr) {
971 usb_free_urb(urb);
972 return ERR_PTR(-ENOMEM);
973 }
974
975 dr->bRequestType = data->cmdreq_type;
976 dr->bRequest = 0;
977 dr->wIndex = 0;
978 dr->wValue = 0;
979 dr->wLength = __cpu_to_le16(skb->len);
980
981 pipe = usb_sndctrlpipe(data->udev, 0x00);
982
Marcel Holtmann89e75332014-09-16 04:44:50 +0200983 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200984 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200985
Marcel Holtmann89e75332014-09-16 04:44:50 +0200986 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700987
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200988 return urb;
989}
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200990
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200991static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
992{
993 struct btusb_data *data = hci_get_drvdata(hdev);
994 struct urb *urb;
995 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200996
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200997 if (!data->bulk_tx_ep)
998 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200999
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001000 urb = usb_alloc_urb(0, GFP_KERNEL);
1001 if (!urb)
1002 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001003
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001004 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001005
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001006 usb_fill_bulk_urb(urb, data->udev, pipe,
1007 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001008
Marcel Holtmann89e75332014-09-16 04:44:50 +02001009 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001010
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001011 return urb;
1012}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001013
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001014static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1015{
1016 struct btusb_data *data = hci_get_drvdata(hdev);
1017 struct urb *urb;
1018 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001019
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001020 if (!data->isoc_tx_ep)
1021 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001022
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001023 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1024 if (!urb)
1025 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001026
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001027 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001028
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001029 usb_fill_int_urb(urb, data->udev, pipe,
1030 skb->data, skb->len, btusb_isoc_tx_complete,
1031 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001032
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001033 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001034
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001035 __fill_isoc_descriptor(urb, skb->len,
1036 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001037
Marcel Holtmann89e75332014-09-16 04:44:50 +02001038 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001039
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001040 return urb;
1041}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001042
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001043static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1044{
1045 struct btusb_data *data = hci_get_drvdata(hdev);
1046 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001047
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001048 usb_anchor_urb(urb, &data->tx_anchor);
1049
Johan Hedberge9753ef2014-09-14 08:49:34 +03001050 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001051 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001052 if (err != -EPERM && err != -ENODEV)
1053 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001054 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001055 kfree(urb->setup_packet);
1056 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001057 } else {
1058 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001059 }
1060
Cong Wang54a8a792011-11-22 09:32:57 +08001061 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001062 return err;
1063}
1064
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001065static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1066{
1067 struct btusb_data *data = hci_get_drvdata(hdev);
1068 unsigned long flags;
1069 bool suspending;
1070
1071 spin_lock_irqsave(&data->txlock, flags);
1072 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1073 if (!suspending)
1074 data->tx_in_flight++;
1075 spin_unlock_irqrestore(&data->txlock, flags);
1076
1077 if (!suspending)
1078 return submit_tx_urb(hdev, urb);
1079
1080 usb_anchor_urb(urb, &data->deferred);
1081 schedule_work(&data->waker);
1082
1083 usb_free_urb(urb);
1084 return 0;
1085}
1086
1087static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1088{
1089 struct urb *urb;
1090
1091 BT_DBG("%s", hdev->name);
1092
1093 if (!test_bit(HCI_RUNNING, &hdev->flags))
1094 return -EBUSY;
1095
1096 switch (bt_cb(skb)->pkt_type) {
1097 case HCI_COMMAND_PKT:
1098 urb = alloc_ctrl_urb(hdev, skb);
1099 if (IS_ERR(urb))
1100 return PTR_ERR(urb);
1101
1102 hdev->stat.cmd_tx++;
1103 return submit_or_queue_tx_urb(hdev, urb);
1104
1105 case HCI_ACLDATA_PKT:
1106 urb = alloc_bulk_urb(hdev, skb);
1107 if (IS_ERR(urb))
1108 return PTR_ERR(urb);
1109
1110 hdev->stat.acl_tx++;
1111 return submit_or_queue_tx_urb(hdev, urb);
1112
1113 case HCI_SCODATA_PKT:
1114 if (hci_conn_num(hdev, SCO_LINK) < 1)
1115 return -ENODEV;
1116
1117 urb = alloc_isoc_urb(hdev, skb);
1118 if (IS_ERR(urb))
1119 return PTR_ERR(urb);
1120
1121 hdev->stat.sco_tx++;
1122 return submit_tx_urb(hdev, urb);
1123 }
1124
1125 return -EILSEQ;
1126}
1127
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001128static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1129{
David Herrmann155961e2012-02-09 21:58:32 +01001130 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001131
1132 BT_DBG("%s evt %d", hdev->name, evt);
1133
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001134 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1135 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001136 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001137 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001138}
1139
Jesper Juhl42b16b32011-01-17 00:09:38 +01001140static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001141{
David Herrmann155961e2012-02-09 21:58:32 +01001142 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001143 struct usb_interface *intf = data->isoc;
1144 struct usb_endpoint_descriptor *ep_desc;
1145 int i, err;
1146
1147 if (!data->isoc)
1148 return -ENODEV;
1149
1150 err = usb_set_interface(data->udev, 1, altsetting);
1151 if (err < 0) {
1152 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1153 return err;
1154 }
1155
1156 data->isoc_altsetting = altsetting;
1157
1158 data->isoc_tx_ep = NULL;
1159 data->isoc_rx_ep = NULL;
1160
1161 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1162 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1163
1164 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1165 data->isoc_tx_ep = ep_desc;
1166 continue;
1167 }
1168
1169 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1170 data->isoc_rx_ep = ep_desc;
1171 continue;
1172 }
1173 }
1174
1175 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1176 BT_ERR("%s invalid SCO descriptors", hdev->name);
1177 return -ENODEV;
1178 }
1179
1180 return 0;
1181}
1182
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001183static void btusb_work(struct work_struct *work)
1184{
1185 struct btusb_data *data = container_of(work, struct btusb_data, work);
1186 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001187 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001188 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001189
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001190 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001191 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001192 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001193 if (err < 0) {
1194 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1195 usb_kill_anchored_urbs(&data->isoc_anchor);
1196 return;
1197 }
1198
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001199 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001200 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001201
1202 if (hdev->voice_setting & 0x0020) {
1203 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001204
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001205 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001206 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001207 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001208 }
1209
1210 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001211 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1212 usb_kill_anchored_urbs(&data->isoc_anchor);
1213
Mikel Astizf4001d22012-04-11 08:48:51 +02001214 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001215 return;
1216 }
1217
1218 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001219 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001220 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1221 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001222 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001223 }
1224 } else {
1225 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1226 usb_kill_anchored_urbs(&data->isoc_anchor);
1227
1228 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001229 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001230 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001231 }
1232}
1233
Oliver Neukum7bee5492009-08-24 23:44:59 +02001234static void btusb_waker(struct work_struct *work)
1235{
1236 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1237 int err;
1238
1239 err = usb_autopm_get_interface(data->intf);
1240 if (err < 0)
1241 return;
1242
1243 usb_autopm_put_interface(data->intf);
1244}
1245
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001246static int btusb_setup_bcm92035(struct hci_dev *hdev)
1247{
1248 struct sk_buff *skb;
1249 u8 val = 0x00;
1250
1251 BT_DBG("%s", hdev->name);
1252
1253 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1254 if (IS_ERR(skb))
1255 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1256 else
1257 kfree_skb(skb);
1258
1259 return 0;
1260}
1261
Marcel Holtmann81cac642014-01-03 03:02:36 -08001262static int btusb_setup_csr(struct hci_dev *hdev)
1263{
1264 struct hci_rp_read_local_version *rp;
1265 struct sk_buff *skb;
1266 int ret;
1267
1268 BT_DBG("%s", hdev->name);
1269
1270 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1271 HCI_INIT_TIMEOUT);
1272 if (IS_ERR(skb)) {
1273 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb));
1274 return -PTR_ERR(skb);
1275 }
1276
Marcel Holtmann89e75332014-09-16 04:44:50 +02001277 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001278
1279 if (!rp->status) {
1280 if (le16_to_cpu(rp->manufacturer) != 10) {
1281 /* Clear the reset quirk since this is not an actual
1282 * early Bluetooth 1.1 device from CSR.
1283 */
1284 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1285
1286 /* These fake CSR controllers have all a broken
1287 * stored link key handling and so just disable it.
1288 */
1289 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1290 &hdev->quirks);
1291 }
1292 }
1293
1294 ret = -bt_to_errno(rp->status);
1295
1296 kfree_skb(skb);
1297
1298 return ret;
1299}
1300
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001301struct intel_version {
1302 u8 status;
1303 u8 hw_platform;
1304 u8 hw_variant;
1305 u8 hw_revision;
1306 u8 fw_variant;
1307 u8 fw_revision;
1308 u8 fw_build_num;
1309 u8 fw_build_ww;
1310 u8 fw_build_yy;
1311 u8 fw_patch_num;
1312} __packed;
1313
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001314struct intel_boot_params {
1315 __u8 status;
1316 __u8 otp_format;
1317 __u8 otp_content;
1318 __u8 otp_patch;
1319 __le16 dev_revid;
1320 __u8 secure_boot;
1321 __u8 key_from_hdr;
1322 __u8 key_type;
1323 __u8 otp_lock;
1324 __u8 api_lock;
1325 __u8 debug_lock;
1326 bdaddr_t otp_bdaddr;
1327 __u8 min_fw_build_nn;
1328 __u8 min_fw_build_cw;
1329 __u8 min_fw_build_yy;
1330 __u8 limited_cce;
1331 __u8 unlocked_state;
1332} __packed;
1333
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001334static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001335 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001336{
1337 const struct firmware *fw;
1338 char fwname[64];
1339 int ret;
1340
1341 snprintf(fwname, sizeof(fwname),
1342 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1343 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1344 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1345 ver->fw_build_ww, ver->fw_build_yy);
1346
1347 ret = request_firmware(&fw, fwname, &hdev->dev);
1348 if (ret < 0) {
1349 if (ret == -EINVAL) {
1350 BT_ERR("%s Intel firmware file request failed (%d)",
1351 hdev->name, ret);
1352 return NULL;
1353 }
1354
1355 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1356 hdev->name, fwname, ret);
1357
1358 /* If the correct firmware patch file is not found, use the
1359 * default firmware patch file instead
1360 */
1361 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1362 ver->hw_platform, ver->hw_variant);
1363 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1364 BT_ERR("%s failed to open default Intel fw file: %s",
1365 hdev->name, fwname);
1366 return NULL;
1367 }
1368 }
1369
1370 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1371
1372 return fw;
1373}
1374
1375static int btusb_setup_intel_patching(struct hci_dev *hdev,
1376 const struct firmware *fw,
1377 const u8 **fw_ptr, int *disable_patch)
1378{
1379 struct sk_buff *skb;
1380 struct hci_command_hdr *cmd;
1381 const u8 *cmd_param;
1382 struct hci_event_hdr *evt = NULL;
1383 const u8 *evt_param = NULL;
1384 int remain = fw->size - (*fw_ptr - fw->data);
1385
1386 /* The first byte indicates the types of the patch command or event.
1387 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1388 * in the current firmware buffer doesn't start with 0x01 or
1389 * the size of remain buffer is smaller than HCI command header,
1390 * the firmware file is corrupted and it should stop the patching
1391 * process.
1392 */
1393 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1394 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1395 return -EINVAL;
1396 }
1397 (*fw_ptr)++;
1398 remain--;
1399
1400 cmd = (struct hci_command_hdr *)(*fw_ptr);
1401 *fw_ptr += sizeof(*cmd);
1402 remain -= sizeof(*cmd);
1403
1404 /* Ensure that the remain firmware data is long enough than the length
1405 * of command parameter. If not, the firmware file is corrupted.
1406 */
1407 if (remain < cmd->plen) {
1408 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1409 return -EFAULT;
1410 }
1411
1412 /* If there is a command that loads a patch in the firmware
1413 * file, then enable the patch upon success, otherwise just
1414 * disable the manufacturer mode, for example patch activation
1415 * is not required when the default firmware patch file is used
1416 * because there are no patch data to load.
1417 */
1418 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1419 *disable_patch = 0;
1420
1421 cmd_param = *fw_ptr;
1422 *fw_ptr += cmd->plen;
1423 remain -= cmd->plen;
1424
1425 /* This reads the expected events when the above command is sent to the
1426 * device. Some vendor commands expects more than one events, for
1427 * example command status event followed by vendor specific event.
1428 * For this case, it only keeps the last expected event. so the command
1429 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1430 * last expected event.
1431 */
1432 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1433 (*fw_ptr)++;
1434 remain--;
1435
1436 evt = (struct hci_event_hdr *)(*fw_ptr);
1437 *fw_ptr += sizeof(*evt);
1438 remain -= sizeof(*evt);
1439
1440 if (remain < evt->plen) {
1441 BT_ERR("%s Intel fw corrupted: invalid evt len",
1442 hdev->name);
1443 return -EFAULT;
1444 }
1445
1446 evt_param = *fw_ptr;
1447 *fw_ptr += evt->plen;
1448 remain -= evt->plen;
1449 }
1450
1451 /* Every HCI commands in the firmware file has its correspond event.
1452 * If event is not found or remain is smaller than zero, the firmware
1453 * file is corrupted.
1454 */
1455 if (!evt || !evt_param || remain < 0) {
1456 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1457 return -EFAULT;
1458 }
1459
1460 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1461 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1462 if (IS_ERR(skb)) {
1463 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1464 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001465 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001466 }
1467
1468 /* It ensures that the returned event matches the event data read from
1469 * the firmware file. At fist, it checks the length and then
1470 * the contents of the event.
1471 */
1472 if (skb->len != evt->plen) {
1473 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1474 le16_to_cpu(cmd->opcode));
1475 kfree_skb(skb);
1476 return -EFAULT;
1477 }
1478
1479 if (memcmp(skb->data, evt_param, evt->plen)) {
1480 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1481 hdev->name, le16_to_cpu(cmd->opcode));
1482 kfree_skb(skb);
1483 return -EFAULT;
1484 }
1485 kfree_skb(skb);
1486
1487 return 0;
1488}
1489
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001490#define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1491
1492static int btusb_check_bdaddr_intel(struct hci_dev *hdev)
1493{
1494 struct sk_buff *skb;
1495 struct hci_rp_read_bd_addr *rp;
1496
1497 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1498 HCI_INIT_TIMEOUT);
1499 if (IS_ERR(skb)) {
1500 BT_ERR("%s reading Intel device address failed (%ld)",
1501 hdev->name, PTR_ERR(skb));
1502 return PTR_ERR(skb);
1503 }
1504
1505 if (skb->len != sizeof(*rp)) {
1506 BT_ERR("%s Intel device address length mismatch", hdev->name);
1507 kfree_skb(skb);
1508 return -EIO;
1509 }
1510
Marcel Holtmann89e75332014-09-16 04:44:50 +02001511 rp = (struct hci_rp_read_bd_addr *)skb->data;
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001512 if (rp->status) {
1513 BT_ERR("%s Intel device address result failed (%02x)",
1514 hdev->name, rp->status);
1515 kfree_skb(skb);
1516 return -bt_to_errno(rp->status);
1517 }
1518
1519 /* For some Intel based controllers, the default Bluetooth device
1520 * address 00:03:19:9E:8B:00 can be found. These controllers are
1521 * fully operational, but have the danger of duplicate addresses
1522 * and that in turn can cause problems with Bluetooth operation.
1523 */
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001524 if (!bacmp(&rp->bdaddr, BDADDR_INTEL)) {
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001525 BT_ERR("%s found Intel default device address (%pMR)",
1526 hdev->name, &rp->bdaddr);
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001527 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1528 }
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001529
1530 kfree_skb(skb);
1531
1532 return 0;
1533}
1534
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001535static int btusb_setup_intel(struct hci_dev *hdev)
1536{
1537 struct sk_buff *skb;
1538 const struct firmware *fw;
1539 const u8 *fw_ptr;
1540 int disable_patch;
1541 struct intel_version *ver;
1542
1543 const u8 mfg_enable[] = { 0x01, 0x00 };
1544 const u8 mfg_disable[] = { 0x00, 0x00 };
1545 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1546 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1547
1548 BT_DBG("%s", hdev->name);
1549
1550 /* The controller has a bug with the first HCI command sent to it
1551 * returning number of completed commands as zero. This would stall the
1552 * command processing in the Bluetooth core.
1553 *
1554 * As a workaround, send HCI Reset command first which will reset the
1555 * number of completed commands and allow normal command processing
1556 * from now on.
1557 */
1558 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1559 if (IS_ERR(skb)) {
1560 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1561 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001562 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001563 }
1564 kfree_skb(skb);
1565
1566 /* Read Intel specific controller version first to allow selection of
1567 * which firmware file to load.
1568 *
1569 * The returned information are hardware variant and revision plus
1570 * firmware variant, revision and build number.
1571 */
1572 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1573 if (IS_ERR(skb)) {
1574 BT_ERR("%s reading Intel fw version command failed (%ld)",
1575 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001576 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001577 }
1578
1579 if (skb->len != sizeof(*ver)) {
1580 BT_ERR("%s Intel version event length mismatch", hdev->name);
1581 kfree_skb(skb);
1582 return -EIO;
1583 }
1584
1585 ver = (struct intel_version *)skb->data;
1586 if (ver->status) {
1587 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1588 ver->status);
1589 kfree_skb(skb);
1590 return -bt_to_errno(ver->status);
1591 }
1592
1593 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1594 hdev->name, ver->hw_platform, ver->hw_variant,
1595 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1596 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1597 ver->fw_patch_num);
1598
1599 /* fw_patch_num indicates the version of patch the device currently
1600 * have. If there is no patch data in the device, it is always 0x00.
1601 * So, if it is other than 0x00, no need to patch the deivce again.
1602 */
1603 if (ver->fw_patch_num) {
1604 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1605 hdev->name, ver->fw_patch_num);
1606 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001607 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001608 return 0;
1609 }
1610
1611 /* Opens the firmware patch file based on the firmware version read
1612 * from the controller. If it fails to open the matching firmware
1613 * patch file, it tries to open the default firmware patch file.
1614 * If no patch file is found, allow the device to operate without
1615 * a patch.
1616 */
1617 fw = btusb_setup_intel_get_fw(hdev, ver);
1618 if (!fw) {
1619 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001620 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001621 return 0;
1622 }
1623 fw_ptr = fw->data;
1624
1625 /* This Intel specific command enables the manufacturer mode of the
1626 * controller.
1627 *
1628 * Only while this mode is enabled, the driver can download the
1629 * firmware patch data and configuration parameters.
1630 */
1631 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1632 if (IS_ERR(skb)) {
1633 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1634 hdev->name, PTR_ERR(skb));
1635 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001636 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001637 }
1638
1639 if (skb->data[0]) {
1640 u8 evt_status = skb->data[0];
Marcel Holtmann89e75332014-09-16 04:44:50 +02001641
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001642 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1643 hdev->name, evt_status);
1644 kfree_skb(skb);
1645 release_firmware(fw);
1646 return -bt_to_errno(evt_status);
1647 }
1648 kfree_skb(skb);
1649
1650 disable_patch = 1;
1651
1652 /* The firmware data file consists of list of Intel specific HCI
1653 * commands and its expected events. The first byte indicates the
1654 * type of the message, either HCI command or HCI event.
1655 *
1656 * It reads the command and its expected event from the firmware file,
1657 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1658 * the returned event is compared with the event read from the firmware
1659 * file and it will continue until all the messages are downloaded to
1660 * the controller.
1661 *
1662 * Once the firmware patching is completed successfully,
1663 * the manufacturer mode is disabled with reset and activating the
1664 * downloaded patch.
1665 *
1666 * If the firmware patching fails, the manufacturer mode is
1667 * disabled with reset and deactivating the patch.
1668 *
1669 * If the default patch file is used, no reset is done when disabling
1670 * the manufacturer.
1671 */
1672 while (fw->size > fw_ptr - fw->data) {
1673 int ret;
1674
1675 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1676 &disable_patch);
1677 if (ret < 0)
1678 goto exit_mfg_deactivate;
1679 }
1680
1681 release_firmware(fw);
1682
1683 if (disable_patch)
1684 goto exit_mfg_disable;
1685
1686 /* Patching completed successfully and disable the manufacturer mode
1687 * with reset and activate the downloaded firmware patches.
1688 */
1689 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1690 mfg_reset_activate, HCI_INIT_TIMEOUT);
1691 if (IS_ERR(skb)) {
1692 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1693 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001694 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001695 }
1696 kfree_skb(skb);
1697
1698 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1699 hdev->name);
1700
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001701 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001702 return 0;
1703
1704exit_mfg_disable:
1705 /* Disable the manufacturer mode without reset */
1706 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1707 HCI_INIT_TIMEOUT);
1708 if (IS_ERR(skb)) {
1709 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1710 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001711 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001712 }
1713 kfree_skb(skb);
1714
1715 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001716
1717 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001718 return 0;
1719
1720exit_mfg_deactivate:
1721 release_firmware(fw);
1722
1723 /* Patching failed. Disable the manufacturer mode with reset and
1724 * deactivate the downloaded firmware patches.
1725 */
1726 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1727 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1728 if (IS_ERR(skb)) {
1729 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1730 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001731 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001732 }
1733 kfree_skb(skb);
1734
1735 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1736 hdev->name);
1737
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001738 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001739 return 0;
1740}
1741
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001742static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1743{
1744 struct sk_buff *skb;
1745 struct hci_event_hdr *hdr;
1746 struct hci_ev_cmd_complete *evt;
1747
1748 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1749 if (!skb)
1750 return -ENOMEM;
1751
1752 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1753 hdr->evt = HCI_EV_CMD_COMPLETE;
1754 hdr->plen = sizeof(*evt) + 1;
1755
1756 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1757 evt->ncmd = 0x01;
1758 evt->opcode = cpu_to_le16(opcode);
1759
1760 *skb_put(skb, 1) = 0x00;
1761
1762 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1763
1764 return hci_recv_frame(hdev, skb);
1765}
1766
1767static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1768 int count)
1769{
1770 /* When the device is in bootloader mode, then it can send
1771 * events via the bulk endpoint. These events are treated the
1772 * same way as the ones received from the interrupt endpoint.
1773 */
1774 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1775 return btusb_recv_intr(data, buffer, count);
1776
1777 return btusb_recv_bulk(data, buffer, count);
1778}
1779
1780static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1781{
1782 struct btusb_data *data = hci_get_drvdata(hdev);
1783
1784 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1785 struct hci_event_hdr *hdr = (void *)skb->data;
1786
1787 /* When the firmware loading completes the device sends
1788 * out a vendor specific event indicating the result of
1789 * the firmware loading.
1790 */
1791 if (skb->len == 7 && hdr->evt == 0xff && hdr->plen == 0x05 &&
1792 skb->data[2] == 0x06) {
1793 if (skb->data[3] != 0x00)
1794 test_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1795
Marcel Holtmannce6bb922015-01-28 01:58:40 -08001796 if (test_and_clear_bit(BTUSB_DOWNLOADING,
1797 &data->flags) &&
1798 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags))
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001799 wake_up_interruptible(&hdev->req_wait_q);
1800 }
1801
1802 /* When switching to the operational firmware the device
1803 * sends a vendor specific event indicating that the bootup
1804 * completed.
1805 */
1806 if (skb->len == 9 && hdr->evt == 0xff && hdr->plen == 0x07 &&
1807 skb->data[2] == 0x02) {
1808 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags))
1809 wake_up_interruptible(&hdev->req_wait_q);
1810 }
1811 }
1812
1813 return hci_recv_frame(hdev, skb);
1814}
1815
1816static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1817{
1818 struct btusb_data *data = hci_get_drvdata(hdev);
1819 struct urb *urb;
1820
1821 BT_DBG("%s", hdev->name);
1822
1823 if (!test_bit(HCI_RUNNING, &hdev->flags))
1824 return -EBUSY;
1825
1826 switch (bt_cb(skb)->pkt_type) {
1827 case HCI_COMMAND_PKT:
1828 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1829 struct hci_command_hdr *cmd = (void *)skb->data;
1830 __u16 opcode = le16_to_cpu(cmd->opcode);
1831
1832 /* When in bootloader mode and the command 0xfc09
1833 * is received, it needs to be send down the
1834 * bulk endpoint. So allocate a bulk URB instead.
1835 */
1836 if (opcode == 0xfc09)
1837 urb = alloc_bulk_urb(hdev, skb);
1838 else
1839 urb = alloc_ctrl_urb(hdev, skb);
1840
1841 /* When the 0xfc01 command is issued to boot into
1842 * the operational firmware, it will actually not
1843 * send a command complete event. To keep the flow
1844 * control working inject that event here.
1845 */
1846 if (opcode == 0xfc01)
1847 inject_cmd_complete(hdev, opcode);
1848 } else {
1849 urb = alloc_ctrl_urb(hdev, skb);
1850 }
1851 if (IS_ERR(urb))
1852 return PTR_ERR(urb);
1853
1854 hdev->stat.cmd_tx++;
1855 return submit_or_queue_tx_urb(hdev, urb);
1856
1857 case HCI_ACLDATA_PKT:
1858 urb = alloc_bulk_urb(hdev, skb);
1859 if (IS_ERR(urb))
1860 return PTR_ERR(urb);
1861
1862 hdev->stat.acl_tx++;
1863 return submit_or_queue_tx_urb(hdev, urb);
1864
1865 case HCI_SCODATA_PKT:
1866 if (hci_conn_num(hdev, SCO_LINK) < 1)
1867 return -ENODEV;
1868
1869 urb = alloc_isoc_urb(hdev, skb);
1870 if (IS_ERR(urb))
1871 return PTR_ERR(urb);
1872
1873 hdev->stat.sco_tx++;
1874 return submit_tx_urb(hdev, urb);
1875 }
1876
1877 return -EILSEQ;
1878}
1879
1880static int btusb_intel_secure_send(struct hci_dev *hdev, u8 fragment_type,
1881 u32 plen, const void *param)
1882{
1883 while (plen > 0) {
1884 struct sk_buff *skb;
1885 u8 cmd_param[253], fragment_len = (plen > 252) ? 252 : plen;
1886
1887 cmd_param[0] = fragment_type;
1888 memcpy(cmd_param + 1, param, fragment_len);
1889
1890 skb = __hci_cmd_sync(hdev, 0xfc09, fragment_len + 1,
1891 cmd_param, HCI_INIT_TIMEOUT);
1892 if (IS_ERR(skb))
1893 return PTR_ERR(skb);
1894
1895 kfree_skb(skb);
1896
1897 plen -= fragment_len;
1898 param += fragment_len;
1899 }
1900
1901 return 0;
1902}
1903
1904static void btusb_intel_version_info(struct hci_dev *hdev,
1905 struct intel_version *ver)
1906{
1907 const char *variant;
1908
1909 switch (ver->fw_variant) {
1910 case 0x06:
1911 variant = "Bootloader";
1912 break;
1913 case 0x23:
1914 variant = "Firmware";
1915 break;
1916 default:
1917 return;
1918 }
1919
1920 BT_INFO("%s: %s revision %u.%u build %u week %u %u", hdev->name,
1921 variant, ver->fw_revision >> 4, ver->fw_revision & 0x0f,
1922 ver->fw_build_num, ver->fw_build_ww, 2000 + ver->fw_build_yy);
1923}
1924
1925static int btusb_setup_intel_new(struct hci_dev *hdev)
1926{
1927 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1928 0x00, 0x08, 0x04, 0x00 };
1929 struct btusb_data *data = hci_get_drvdata(hdev);
1930 struct sk_buff *skb;
1931 struct intel_version *ver;
1932 struct intel_boot_params *params;
1933 const struct firmware *fw;
1934 const u8 *fw_ptr;
1935 char fwname[64];
1936 ktime_t calltime, delta, rettime;
1937 unsigned long long duration;
1938 int err;
1939
1940 BT_DBG("%s", hdev->name);
1941
1942 calltime = ktime_get();
1943
1944 /* Read the Intel version information to determine if the device
1945 * is in bootloader mode or if it already has operational firmware
1946 * loaded.
1947 */
1948 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1949 if (IS_ERR(skb)) {
1950 BT_ERR("%s: Reading Intel version information failed (%ld)",
1951 hdev->name, PTR_ERR(skb));
1952 return PTR_ERR(skb);
1953 }
1954
1955 if (skb->len != sizeof(*ver)) {
1956 BT_ERR("%s: Intel version event size mismatch", hdev->name);
1957 kfree_skb(skb);
1958 return -EILSEQ;
1959 }
1960
1961 ver = (struct intel_version *)skb->data;
1962 if (ver->status) {
1963 BT_ERR("%s: Intel version command failure (%02x)",
1964 hdev->name, ver->status);
1965 err = -bt_to_errno(ver->status);
1966 kfree_skb(skb);
1967 return err;
1968 }
1969
1970 /* The hardware platform number has a fixed value of 0x37 and
1971 * for now only accept this single value.
1972 */
1973 if (ver->hw_platform != 0x37) {
1974 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
1975 hdev->name, ver->hw_platform);
1976 kfree_skb(skb);
1977 return -EINVAL;
1978 }
1979
1980 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
1981 * supported by this firmware loading method. This check has been
1982 * put in place to ensure correct forward compatibility options
1983 * when newer hardware variants come along.
1984 */
1985 if (ver->hw_variant != 0x0b) {
1986 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
1987 hdev->name, ver->hw_variant);
1988 kfree_skb(skb);
1989 return -EINVAL;
1990 }
1991
1992 btusb_intel_version_info(hdev, ver);
1993
1994 /* The firmware variant determines if the device is in bootloader
1995 * mode or is running operational firmware. The value 0x06 identifies
1996 * the bootloader and the value 0x23 identifies the operational
1997 * firmware.
1998 *
1999 * When the operational firmware is already present, then only
2000 * the check for valid Bluetooth device address is needed. This
2001 * determines if the device will be added as configured or
2002 * unconfigured controller.
2003 *
2004 * It is not possible to use the Secure Boot Parameters in this
2005 * case since that command is only available in bootloader mode.
2006 */
2007 if (ver->fw_variant == 0x23) {
2008 kfree_skb(skb);
2009 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2010 btusb_check_bdaddr_intel(hdev);
2011 return 0;
2012 }
2013
2014 /* If the device is not in bootloader mode, then the only possible
2015 * choice is to return an error and abort the device initialization.
2016 */
2017 if (ver->fw_variant != 0x06) {
2018 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2019 hdev->name, ver->fw_variant);
2020 kfree_skb(skb);
2021 return -ENODEV;
2022 }
2023
2024 kfree_skb(skb);
2025
2026 /* Read the secure boot parameters to identify the operating
2027 * details of the bootloader.
2028 */
2029 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2030 if (IS_ERR(skb)) {
2031 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2032 hdev->name, PTR_ERR(skb));
2033 return PTR_ERR(skb);
2034 }
2035
2036 if (skb->len != sizeof(*params)) {
2037 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2038 kfree_skb(skb);
2039 return -EILSEQ;
2040 }
2041
2042 params = (struct intel_boot_params *)skb->data;
2043 if (params->status) {
2044 BT_ERR("%s: Intel boot parameters command failure (%02x)",
2045 hdev->name, params->status);
2046 err = -bt_to_errno(params->status);
2047 kfree_skb(skb);
2048 return err;
2049 }
2050
2051 BT_INFO("%s: Device revision is %u", hdev->name,
2052 le16_to_cpu(params->dev_revid));
2053
2054 BT_INFO("%s: Secure boot is %s", hdev->name,
2055 params->secure_boot ? "enabled" : "disabled");
2056
2057 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2058 params->min_fw_build_nn, params->min_fw_build_cw,
2059 2000 + params->min_fw_build_yy);
2060
2061 /* It is required that every single firmware fragment is acknowledged
2062 * with a command complete event. If the boot parameters indicate
2063 * that this bootloader does not send them, then abort the setup.
2064 */
2065 if (params->limited_cce != 0x00) {
2066 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2067 hdev->name, params->limited_cce);
2068 kfree_skb(skb);
2069 return -EINVAL;
2070 }
2071
2072 /* If the OTP has no valid Bluetooth device address, then there will
2073 * also be no valid address for the operational firmware.
2074 */
2075 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2076 BT_INFO("%s: No device address configured", hdev->name);
2077 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2078 }
2079
2080 /* With this Intel bootloader only the hardware variant and device
2081 * revision information are used to select the right firmware.
2082 *
2083 * Currently this bootloader support is limited to hardware variant
2084 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2085 */
2086 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2087 le16_to_cpu(params->dev_revid));
2088
2089 err = request_firmware(&fw, fwname, &hdev->dev);
2090 if (err < 0) {
2091 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2092 hdev->name, err);
2093 kfree_skb(skb);
2094 return err;
2095 }
2096
2097 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2098
2099 kfree_skb(skb);
2100
2101 if (fw->size < 644) {
2102 BT_ERR("%s: Invalid size of firmware file (%zu)",
2103 hdev->name, fw->size);
2104 err = -EBADF;
2105 goto done;
2106 }
2107
2108 set_bit(BTUSB_DOWNLOADING, &data->flags);
2109
2110 /* Start the firmware download transaction with the Init fragment
2111 * represented by the 128 bytes of CSS header.
2112 */
2113 err = btusb_intel_secure_send(hdev, 0x00, 128, fw->data);
2114 if (err < 0) {
2115 BT_ERR("%s: Failed to send firmware header (%d)",
2116 hdev->name, err);
2117 goto done;
2118 }
2119
2120 /* Send the 256 bytes of public key information from the firmware
2121 * as the PKey fragment.
2122 */
2123 err = btusb_intel_secure_send(hdev, 0x03, 256, fw->data + 128);
2124 if (err < 0) {
2125 BT_ERR("%s: Failed to send firmware public key (%d)",
2126 hdev->name, err);
2127 goto done;
2128 }
2129
2130 /* Send the 256 bytes of signature information from the firmware
2131 * as the Sign fragment.
2132 */
2133 err = btusb_intel_secure_send(hdev, 0x02, 256, fw->data + 388);
2134 if (err < 0) {
2135 BT_ERR("%s: Failed to send firmware signature (%d)",
2136 hdev->name, err);
2137 goto done;
2138 }
2139
2140 fw_ptr = fw->data + 644;
2141
2142 while (fw_ptr - fw->data < fw->size) {
2143 struct hci_command_hdr *cmd = (void *)fw_ptr;
2144 u8 cmd_len;
2145
2146 cmd_len = sizeof(*cmd) + cmd->plen;
2147
2148 /* Send each command from the firmware data buffer as
2149 * a single Data fragment.
2150 */
2151 err = btusb_intel_secure_send(hdev, 0x01, cmd_len, fw_ptr);
2152 if (err < 0) {
2153 BT_ERR("%s: Failed to send firmware data (%d)",
2154 hdev->name, err);
2155 goto done;
2156 }
2157
2158 fw_ptr += cmd_len;
2159 }
2160
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002161 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2162
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002163 /* Before switching the device into operational mode and with that
2164 * booting the loaded firmware, wait for the bootloader notification
2165 * that all fragments have been successfully received.
2166 *
2167 * When the event processing receives the notification, then this
2168 * flag will be cleared. So just in case that happens really quickly,
2169 * check it first before adding the wait queue.
2170 */
2171 if (test_bit(BTUSB_DOWNLOADING, &data->flags)) {
2172 DECLARE_WAITQUEUE(wait, current);
2173 signed long timeout;
2174
2175 BT_INFO("%s: Waiting for firmware download to complete",
2176 hdev->name);
2177
2178 add_wait_queue(&hdev->req_wait_q, &wait);
2179 set_current_state(TASK_INTERRUPTIBLE);
2180
2181 /* The firmware loading should not take longer than 5 seconds
2182 * and thus just timeout if that happens and fail the setup
2183 * of this device.
2184 */
2185 timeout = schedule_timeout(msecs_to_jiffies(5000));
2186
2187 remove_wait_queue(&hdev->req_wait_q, &wait);
2188
2189 if (signal_pending(current)) {
2190 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2191 err = -EINTR;
2192 goto done;
2193 }
2194
2195 if (!timeout) {
2196 BT_ERR("%s: Firmware loading timeout", hdev->name);
2197 err = -ETIMEDOUT;
2198 goto done;
2199 }
2200 }
2201
2202 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2203 BT_ERR("%s: Firmware loading failed", hdev->name);
2204 err = -ENOEXEC;
2205 goto done;
2206 }
2207
2208 rettime = ktime_get();
2209 delta = ktime_sub(rettime, calltime);
2210 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2211
2212 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2213
2214done:
2215 release_firmware(fw);
2216
2217 if (err < 0)
2218 return err;
2219
2220 calltime = ktime_get();
2221
2222 set_bit(BTUSB_BOOTING, &data->flags);
2223
2224 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2225 HCI_INIT_TIMEOUT);
2226 if (IS_ERR(skb))
2227 return PTR_ERR(skb);
2228
2229 kfree_skb(skb);
2230
2231 /* The bootloader will not indicate when the device is ready. This
2232 * is done by the operational firmware sending bootup notification.
2233 */
2234 if (test_bit(BTUSB_BOOTING, &data->flags)) {
2235 DECLARE_WAITQUEUE(wait, current);
2236 signed long timeout;
2237
2238 BT_INFO("%s: Waiting for device to boot", hdev->name);
2239
2240 add_wait_queue(&hdev->req_wait_q, &wait);
2241 set_current_state(TASK_INTERRUPTIBLE);
2242
2243 /* Booting into operational firmware should not take
2244 * longer than 1 second. However if that happens, then
2245 * just fail the setup since something went wrong.
2246 */
2247 timeout = schedule_timeout(msecs_to_jiffies(1000));
2248
2249 remove_wait_queue(&hdev->req_wait_q, &wait);
2250
2251 if (signal_pending(current)) {
2252 BT_ERR("%s: Device boot interrupted", hdev->name);
2253 return -EINTR;
2254 }
2255
2256 if (!timeout) {
2257 BT_ERR("%s: Device boot timeout", hdev->name);
2258 return -ETIMEDOUT;
2259 }
2260 }
2261
2262 rettime = ktime_get();
2263 delta = ktime_sub(rettime, calltime);
2264 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2265
2266 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2267
2268 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2269
2270 return 0;
2271}
2272
Marcel Holtmann385a7682015-01-28 11:09:56 -08002273static void btusb_hw_error_intel(struct hci_dev *hdev, u8 code)
2274{
2275 struct sk_buff *skb;
2276 u8 type = 0x00;
2277
2278 BT_ERR("%s: Hardware error 0x%2.2x", hdev->name, code);
2279
2280 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2281 if (IS_ERR(skb)) {
2282 BT_ERR("%s: Reset after hardware error failed (%ld)",
2283 hdev->name, PTR_ERR(skb));
2284 return;
2285 }
2286 kfree_skb(skb);
2287
2288 skb = __hci_cmd_sync(hdev, 0xfc22, 1, &type, HCI_INIT_TIMEOUT);
2289 if (IS_ERR(skb)) {
2290 BT_ERR("%s: Retrieving Intel exception info failed (%ld)",
2291 hdev->name, PTR_ERR(skb));
2292 return;
2293 }
2294
2295 if (skb->len != 13) {
2296 BT_ERR("%s: Exception info size mismatch", hdev->name);
2297 kfree_skb(skb);
2298 return;
2299 }
2300
2301 if (skb->data[0] != 0x00) {
2302 BT_ERR("%s: Exception info command failure (%02x)",
2303 hdev->name, skb->data[0]);
2304 kfree_skb(skb);
2305 return;
2306 }
2307
2308 BT_ERR("%s: Exception info %s", hdev->name, (char *)(skb->data + 1));
2309
2310 kfree_skb(skb);
2311}
2312
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002313static int btusb_set_bdaddr_intel(struct hci_dev *hdev, const bdaddr_t *bdaddr)
2314{
2315 struct sk_buff *skb;
2316 long ret;
2317
2318 skb = __hci_cmd_sync(hdev, 0xfc31, 6, bdaddr, HCI_INIT_TIMEOUT);
2319 if (IS_ERR(skb)) {
2320 ret = PTR_ERR(skb);
2321 BT_ERR("%s: changing Intel device address failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002322 hdev->name, ret);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002323 return ret;
2324 }
2325 kfree_skb(skb);
2326
2327 return 0;
2328}
2329
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002330static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2331 const bdaddr_t *bdaddr)
2332{
2333 struct sk_buff *skb;
2334 u8 buf[8];
2335 long ret;
2336
2337 buf[0] = 0xfe;
2338 buf[1] = sizeof(bdaddr_t);
2339 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2340
2341 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2342 if (IS_ERR(skb)) {
2343 ret = PTR_ERR(skb);
2344 BT_ERR("%s: changing Marvell device address failed (%ld)",
2345 hdev->name, ret);
2346 return ret;
2347 }
2348 kfree_skb(skb);
2349
2350 return 0;
2351}
2352
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002353#define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
2354
Petri Gynther10d4c672014-05-08 15:50:01 -07002355static int btusb_setup_bcm_patchram(struct hci_dev *hdev)
2356{
2357 struct btusb_data *data = hci_get_drvdata(hdev);
2358 struct usb_device *udev = data->udev;
2359 char fw_name[64];
2360 const struct firmware *fw;
2361 const u8 *fw_ptr;
2362 size_t fw_size;
2363 const struct hci_command_hdr *cmd;
2364 const u8 *cmd_param;
2365 u16 opcode;
2366 struct sk_buff *skb;
2367 struct hci_rp_read_local_version *ver;
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002368 struct hci_rp_read_bd_addr *bda;
Petri Gynther10d4c672014-05-08 15:50:01 -07002369 long ret;
2370
2371 snprintf(fw_name, sizeof(fw_name), "brcm/%s-%04x-%04x.hcd",
2372 udev->product ? udev->product : "BCM",
2373 le16_to_cpu(udev->descriptor.idVendor),
2374 le16_to_cpu(udev->descriptor.idProduct));
2375
2376 ret = request_firmware(&fw, fw_name, &hdev->dev);
2377 if (ret < 0) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002378 BT_INFO("%s: BCM: patch %s not found", hdev->name, fw_name);
Petri Gynther10d4c672014-05-08 15:50:01 -07002379 return 0;
2380 }
2381
2382 /* Reset */
2383 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2384 if (IS_ERR(skb)) {
2385 ret = PTR_ERR(skb);
2386 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
2387 goto done;
2388 }
2389 kfree_skb(skb);
2390
2391 /* Read Local Version Info */
2392 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
2393 HCI_INIT_TIMEOUT);
2394 if (IS_ERR(skb)) {
2395 ret = PTR_ERR(skb);
2396 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002397 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07002398 goto done;
2399 }
2400
2401 if (skb->len != sizeof(*ver)) {
2402 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002403 hdev->name);
Petri Gynther10d4c672014-05-08 15:50:01 -07002404 kfree_skb(skb);
2405 ret = -EIO;
2406 goto done;
2407 }
2408
Marcel Holtmann89e75332014-09-16 04:44:50 +02002409 ver = (struct hci_rp_read_local_version *)skb->data;
Petri Gynther10d4c672014-05-08 15:50:01 -07002410 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
2411 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
2412 ver->lmp_ver, ver->lmp_subver);
2413 kfree_skb(skb);
2414
2415 /* Start Download */
2416 skb = __hci_cmd_sync(hdev, 0xfc2e, 0, NULL, HCI_INIT_TIMEOUT);
2417 if (IS_ERR(skb)) {
2418 ret = PTR_ERR(skb);
2419 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002420 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07002421 goto reset_fw;
2422 }
2423 kfree_skb(skb);
2424
2425 /* 50 msec delay after Download Minidrv completes */
2426 msleep(50);
2427
2428 fw_ptr = fw->data;
2429 fw_size = fw->size;
2430
2431 while (fw_size >= sizeof(*cmd)) {
Marcel Holtmann89e75332014-09-16 04:44:50 +02002432 cmd = (struct hci_command_hdr *)fw_ptr;
Petri Gynther10d4c672014-05-08 15:50:01 -07002433 fw_ptr += sizeof(*cmd);
2434 fw_size -= sizeof(*cmd);
2435
2436 if (fw_size < cmd->plen) {
2437 BT_ERR("%s: BCM: patch %s is corrupted",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002438 hdev->name, fw_name);
Petri Gynther10d4c672014-05-08 15:50:01 -07002439 ret = -EINVAL;
2440 goto reset_fw;
2441 }
2442
2443 cmd_param = fw_ptr;
2444 fw_ptr += cmd->plen;
2445 fw_size -= cmd->plen;
2446
2447 opcode = le16_to_cpu(cmd->opcode);
2448
2449 skb = __hci_cmd_sync(hdev, opcode, cmd->plen, cmd_param,
2450 HCI_INIT_TIMEOUT);
2451 if (IS_ERR(skb)) {
2452 ret = PTR_ERR(skb);
2453 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002454 hdev->name, opcode, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07002455 goto reset_fw;
2456 }
2457 kfree_skb(skb);
2458 }
2459
2460 /* 250 msec delay after Launch Ram completes */
2461 msleep(250);
2462
2463reset_fw:
2464 /* Reset */
2465 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2466 if (IS_ERR(skb)) {
2467 ret = PTR_ERR(skb);
2468 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
2469 goto done;
2470 }
2471 kfree_skb(skb);
2472
2473 /* Read Local Version Info */
2474 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
2475 HCI_INIT_TIMEOUT);
2476 if (IS_ERR(skb)) {
2477 ret = PTR_ERR(skb);
2478 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002479 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07002480 goto done;
2481 }
2482
2483 if (skb->len != sizeof(*ver)) {
2484 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002485 hdev->name);
Petri Gynther10d4c672014-05-08 15:50:01 -07002486 kfree_skb(skb);
2487 ret = -EIO;
2488 goto done;
2489 }
2490
Marcel Holtmann89e75332014-09-16 04:44:50 +02002491 ver = (struct hci_rp_read_local_version *)skb->data;
Petri Gynther10d4c672014-05-08 15:50:01 -07002492 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
2493 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
2494 ver->lmp_ver, ver->lmp_subver);
2495 kfree_skb(skb);
2496
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002497 /* Read BD Address */
2498 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
2499 HCI_INIT_TIMEOUT);
2500 if (IS_ERR(skb)) {
2501 ret = PTR_ERR(skb);
2502 BT_ERR("%s: HCI_OP_READ_BD_ADDR failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002503 hdev->name, ret);
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002504 goto done;
2505 }
2506
2507 if (skb->len != sizeof(*bda)) {
2508 BT_ERR("%s: HCI_OP_READ_BD_ADDR event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002509 hdev->name);
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002510 kfree_skb(skb);
2511 ret = -EIO;
2512 goto done;
2513 }
2514
Marcel Holtmann89e75332014-09-16 04:44:50 +02002515 bda = (struct hci_rp_read_bd_addr *)skb->data;
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002516 if (bda->status) {
2517 BT_ERR("%s: HCI_OP_READ_BD_ADDR error status (%02x)",
2518 hdev->name, bda->status);
2519 kfree_skb(skb);
2520 ret = -bt_to_errno(bda->status);
2521 goto done;
2522 }
2523
2524 /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
2525 * with no configured address.
2526 */
Marcel Holtmann849e5082014-07-04 16:54:39 +02002527 if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002528 BT_INFO("%s: BCM: using default device address (%pMR)",
2529 hdev->name, &bda->bdaddr);
Marcel Holtmann849e5082014-07-04 16:54:39 +02002530 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2531 }
Marcel Holtmannc8abb732014-07-02 12:38:22 +02002532
2533 kfree_skb(skb);
2534
Petri Gynther10d4c672014-05-08 15:50:01 -07002535done:
2536 release_firmware(fw);
2537
2538 return ret;
2539}
2540
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002541static int btusb_set_bdaddr_bcm(struct hci_dev *hdev, const bdaddr_t *bdaddr)
2542{
2543 struct sk_buff *skb;
2544 long ret;
2545
2546 skb = __hci_cmd_sync(hdev, 0xfc01, 6, bdaddr, HCI_INIT_TIMEOUT);
2547 if (IS_ERR(skb)) {
2548 ret = PTR_ERR(skb);
2549 BT_ERR("%s: BCM: Change address command failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002550 hdev->name, ret);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002551 return ret;
2552 }
2553 kfree_skb(skb);
2554
2555 return 0;
2556}
2557
Toshi Kikuchi58592232014-12-12 10:58:05 -08002558static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2559 const bdaddr_t *bdaddr)
2560{
2561 struct sk_buff *skb;
2562 u8 buf[10];
2563 long ret;
2564
2565 buf[0] = 0x01;
2566 buf[1] = 0x01;
2567 buf[2] = 0x00;
2568 buf[3] = sizeof(bdaddr_t);
2569 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2570
2571 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2572 if (IS_ERR(skb)) {
2573 ret = PTR_ERR(skb);
2574 BT_ERR("%s: Change address command failed (%ld)",
2575 hdev->name, ret);
2576 return ret;
2577 }
2578 kfree_skb(skb);
2579
2580 return 0;
2581}
2582
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002583static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002584 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002585{
2586 struct usb_endpoint_descriptor *ep_desc;
2587 struct btusb_data *data;
2588 struct hci_dev *hdev;
2589 int i, err;
2590
2591 BT_DBG("intf %p id %p", intf, id);
2592
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002593 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002594 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2595 return -ENODEV;
2596
2597 if (!id->driver_info) {
2598 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002599
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002600 match = usb_match_id(intf, blacklist_table);
2601 if (match)
2602 id = match;
2603 }
2604
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002605 if (id->driver_info == BTUSB_IGNORE)
2606 return -ENODEV;
2607
Steven.Li2d25f8b2011-07-01 14:02:36 +08002608 if (id->driver_info & BTUSB_ATH3012) {
2609 struct usb_device *udev = interface_to_usbdev(intf);
2610
2611 /* Old firmware would otherwise let ath3k driver load
2612 * patch and sysconfig files */
2613 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2614 return -ENODEV;
2615 }
2616
Sachin Kamat98921db2012-07-27 12:38:39 +05302617 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002618 if (!data)
2619 return -ENOMEM;
2620
2621 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2622 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2623
2624 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2625 data->intr_ep = ep_desc;
2626 continue;
2627 }
2628
2629 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2630 data->bulk_tx_ep = ep_desc;
2631 continue;
2632 }
2633
2634 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2635 data->bulk_rx_ep = ep_desc;
2636 continue;
2637 }
2638 }
2639
Sachin Kamat98921db2012-07-27 12:38:39 +05302640 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002641 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002642
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002643 data->cmdreq_type = USB_TYPE_CLASS;
2644
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002645 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002646 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002647
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002648 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002649 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002650 init_usb_anchor(&data->deferred);
2651 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002652 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002653
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002654 init_usb_anchor(&data->intr_anchor);
2655 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002656 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002657 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002658
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002659 if (id->driver_info & BTUSB_INTEL_NEW) {
2660 data->recv_event = btusb_recv_event_intel;
2661 data->recv_bulk = btusb_recv_bulk_intel;
2662 set_bit(BTUSB_BOOTLOADER, &data->flags);
2663 } else {
2664 data->recv_event = hci_recv_frame;
2665 data->recv_bulk = btusb_recv_bulk;
2666 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002667
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002668 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302669 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002670 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002671
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002672 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002673 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002674
2675 data->hdev = hdev;
2676
2677 SET_HCIDEV_DEV(hdev, &intf->dev);
2678
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002679 hdev->open = btusb_open;
2680 hdev->close = btusb_close;
2681 hdev->flush = btusb_flush;
2682 hdev->send = btusb_send_frame;
2683 hdev->notify = btusb_notify;
2684
2685 if (id->driver_info & BTUSB_BCM92035)
2686 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002687
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002688 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Petri Gynther10d4c672014-05-08 15:50:01 -07002689 hdev->setup = btusb_setup_bcm_patchram;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002690 hdev->set_bdaddr = btusb_set_bdaddr_bcm;
Marcel Holtmann27c3fbe2014-11-02 20:52:24 +01002691 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002692 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002693
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002694 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002695 hdev->setup = btusb_setup_intel;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002696 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002697 hdev->set_bdaddr = btusb_set_bdaddr_intel;
2698 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002699
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002700 if (id->driver_info & BTUSB_INTEL_NEW) {
2701 hdev->send = btusb_send_frame_intel;
2702 hdev->setup = btusb_setup_intel_new;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002703 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002704 hdev->set_bdaddr = btusb_set_bdaddr_intel;
2705 }
2706
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002707 if (id->driver_info & BTUSB_MARVELL)
2708 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2709
Marcel Holtmann661cf882015-01-02 23:35:20 -08002710 if (id->driver_info & BTUSB_SWAVE) {
2711 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002712 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002713 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002714
Marcel Holtmann40df7832014-07-06 13:29:58 +02002715 if (id->driver_info & BTUSB_INTEL_BOOT)
2716 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2717
Toshi Kikuchi58592232014-12-12 10:58:05 -08002718 if (id->driver_info & BTUSB_ATH3012)
2719 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2720
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002721 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002722 data->isoc = usb_ifnum_to_if(data->udev, 1);
2723
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002724 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002725 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002726
2727 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2728 if (!disable_scofix)
2729 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2730 }
2731
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002732 if (id->driver_info & BTUSB_BROKEN_ISOC)
2733 data->isoc = NULL;
2734
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002735 if (id->driver_info & BTUSB_DIGIANSWER) {
2736 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002737 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002738 }
2739
2740 if (id->driver_info & BTUSB_CSR) {
2741 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002742 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002743
2744 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002745 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002746 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002747
2748 /* Fake CSR devices with broken commands */
2749 if (bcdDevice <= 0x100)
2750 hdev->setup = btusb_setup_csr;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002751 }
2752
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002753 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002754 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002755
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002756 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002757 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2758 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2759 }
2760
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002761 if (id->driver_info & BTUSB_INTEL_BOOT) {
2762 /* A bug in the bootloader causes that interrupt interface is
2763 * only enabled after receiving SetInterface(0, AltSetting=0).
2764 */
2765 err = usb_set_interface(data->udev, 0, 0);
2766 if (err < 0) {
2767 BT_ERR("failed to set interface 0, alt 0 %d", err);
2768 hci_free_dev(hdev);
2769 return err;
2770 }
2771 }
2772
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002773 if (data->isoc) {
2774 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002775 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002776 if (err < 0) {
2777 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002778 return err;
2779 }
2780 }
2781
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002782 err = hci_register_dev(hdev);
2783 if (err < 0) {
2784 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002785 return err;
2786 }
2787
2788 usb_set_intfdata(intf, data);
2789
2790 return 0;
2791}
2792
2793static void btusb_disconnect(struct usb_interface *intf)
2794{
2795 struct btusb_data *data = usb_get_intfdata(intf);
2796 struct hci_dev *hdev;
2797
2798 BT_DBG("intf %p", intf);
2799
2800 if (!data)
2801 return;
2802
2803 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002804 usb_set_intfdata(data->intf, NULL);
2805
2806 if (data->isoc)
2807 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002808
2809 hci_unregister_dev(hdev);
2810
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002811 if (intf == data->isoc)
2812 usb_driver_release_interface(&btusb_driver, data->intf);
2813 else if (data->isoc)
2814 usb_driver_release_interface(&btusb_driver, data->isoc);
2815
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002816 hci_free_dev(hdev);
2817}
2818
Oliver Neukum7bee5492009-08-24 23:44:59 +02002819#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002820static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2821{
2822 struct btusb_data *data = usb_get_intfdata(intf);
2823
2824 BT_DBG("intf %p", intf);
2825
2826 if (data->suspend_count++)
2827 return 0;
2828
Oliver Neukum7bee5492009-08-24 23:44:59 +02002829 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002830 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002831 set_bit(BTUSB_SUSPENDING, &data->flags);
2832 spin_unlock_irq(&data->txlock);
2833 } else {
2834 spin_unlock_irq(&data->txlock);
2835 data->suspend_count--;
2836 return -EBUSY;
2837 }
2838
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002839 cancel_work_sync(&data->work);
2840
Oliver Neukum7bee5492009-08-24 23:44:59 +02002841 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002842 usb_kill_anchored_urbs(&data->tx_anchor);
2843
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002844 return 0;
2845}
2846
Oliver Neukum7bee5492009-08-24 23:44:59 +02002847static void play_deferred(struct btusb_data *data)
2848{
2849 struct urb *urb;
2850 int err;
2851
2852 while ((urb = usb_get_from_anchor(&data->deferred))) {
2853 err = usb_submit_urb(urb, GFP_ATOMIC);
2854 if (err < 0)
2855 break;
2856
2857 data->tx_in_flight++;
2858 }
2859 usb_scuttle_anchored_urbs(&data->deferred);
2860}
2861
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002862static int btusb_resume(struct usb_interface *intf)
2863{
2864 struct btusb_data *data = usb_get_intfdata(intf);
2865 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002866 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002867
2868 BT_DBG("intf %p", intf);
2869
2870 if (--data->suspend_count)
2871 return 0;
2872
2873 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02002874 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002875
2876 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2877 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2878 if (err < 0) {
2879 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002880 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002881 }
2882 }
2883
2884 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01002885 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2886 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002887 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002888 goto failed;
2889 }
2890
2891 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002892 }
2893
2894 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2895 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2896 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2897 else
2898 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2899 }
2900
Oliver Neukum7bee5492009-08-24 23:44:59 +02002901 spin_lock_irq(&data->txlock);
2902 play_deferred(data);
2903 clear_bit(BTUSB_SUSPENDING, &data->flags);
2904 spin_unlock_irq(&data->txlock);
2905 schedule_work(&data->work);
2906
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002907 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002908
2909failed:
2910 usb_scuttle_anchored_urbs(&data->deferred);
2911done:
2912 spin_lock_irq(&data->txlock);
2913 clear_bit(BTUSB_SUSPENDING, &data->flags);
2914 spin_unlock_irq(&data->txlock);
2915
2916 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002917}
Oliver Neukum7bee5492009-08-24 23:44:59 +02002918#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002919
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002920static struct usb_driver btusb_driver = {
2921 .name = "btusb",
2922 .probe = btusb_probe,
2923 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002924#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002925 .suspend = btusb_suspend,
2926 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002927#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002928 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002929 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07002930 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002931};
2932
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08002933module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002934
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002935module_param(disable_scofix, bool, 0644);
2936MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
2937
2938module_param(force_scofix, bool, 0644);
2939MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
2940
2941module_param(reset, bool, 0644);
2942MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
2943
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002944MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
2945MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
2946MODULE_VERSION(VERSION);
2947MODULE_LICENSE("GPL");