blob: 1211c74356b51b0d76ed9076ae17e15c754c963a [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
Oliver Neukum7bee5492009-08-24 23:44:59 +020031#define VERSION "0.6"
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 Holtmann5e23b922007-10-20 14:12:34 +020053
Marcel Holtmann54265202013-10-11 07:46:18 -070054static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020055 /* Generic Bluetooth USB device */
56 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
57
Henrik Rydberg1fa65352012-08-25 19:28:06 +020058 /* Apple-specific (Broadcom) devices */
59 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01) },
60
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080061 /* MediaTek MT76x0E */
62 { USB_DEVICE(0x0e8d, 0x763f) },
63
Oliver Neukumc510eae2011-09-21 11:41:45 +020064 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040065 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020066
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090067 /* Apple MacBookPro 7,1 */
68 { USB_DEVICE(0x05ac, 0x8213) },
69
Cyril Lacoux0a79f672010-07-14 10:29:27 +040070 /* Apple iMac11,1 */
71 { USB_DEVICE(0x05ac, 0x8215) },
72
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090073 /* Apple MacBookPro6,2 */
74 { USB_DEVICE(0x05ac, 0x8218) },
75
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010076 /* Apple MacBookAir3,1, MacBookAir3,2 */
77 { USB_DEVICE(0x05ac, 0x821b) },
78
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040079 /* Apple MacBookAir4,1 */
80 { USB_DEVICE(0x05ac, 0x821f) },
81
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030082 /* Apple MacBookPro8,2 */
83 { USB_DEVICE(0x05ac, 0x821a) },
84
Jurgen Kramerf78b68262011-09-04 18:01:42 +020085 /* Apple MacMini5,1 */
86 { USB_DEVICE(0x05ac, 0x8281) },
87
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020088 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080089 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020090
91 /* Bluetooth Ultraport Module from IBM */
92 { USB_DEVICE(0x04bf, 0x030a) },
93
94 /* ALPS Modules with non-standard id */
95 { USB_DEVICE(0x044e, 0x3001) },
96 { USB_DEVICE(0x044e, 0x3002) },
97
98 /* Ericsson with non-standard id */
99 { USB_DEVICE(0x0bdb, 0x1002) },
100
101 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100102 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200103
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800104 /* Broadcom BCM20702A0 */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200105 { USB_DEVICE(0x0489, 0xe042) },
106 { USB_DEVICE(0x04ca, 0x2003) },
Jeff Cook1ee3ff62012-11-09 16:39:48 -0700107 { USB_DEVICE(0x0b05, 0x17b5) },
Raphael Kubo da Costa38a172b2013-09-02 14:57:51 +0300108 { USB_DEVICE(0x0b05, 0x17cb) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800109 { USB_DEVICE(0x413c, 0x8197) },
Fabio Ka86c02e2014-11-18 00:46:28 -0200110 { USB_DEVICE(0x13d3, 0x3404),
111 .driver_info = BTUSB_BCM_PATCHRAM },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800112
Steven Harms98514032012-04-13 14:45:55 -0400113 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100114 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
115 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400116
Andy Shevchenko0b880062014-02-18 18:26:19 +0200117 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700118 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
119 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300120
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200121 /* ASUSTek Computer - Broadcom based */
122 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01) },
123
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100124 /* Belkin F8065bf - Broadcom based */
125 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01) },
126
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100127 /* IMC Networks - Broadcom based */
128 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) },
129
Marcel Holtmann40df7832014-07-06 13:29:58 +0200130 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200131 { USB_DEVICE(0x8087, 0x0a5a),
132 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200133
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200134 { } /* Terminating entry */
135};
136
137MODULE_DEVICE_TABLE(usb, btusb_table);
138
Marcel Holtmann54265202013-10-11 07:46:18 -0700139static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200140 /* CSR BlueCore devices */
141 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
142
143 /* Broadcom BCM2033 without firmware */
144 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
145
Bala Shanmugambe931122010-11-26 17:35:46 +0530146 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200147 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
148 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
149 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530150 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200151 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700152 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530153
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800154 /* Atheros AR9285 Malbec with sflash firmware */
155 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
156
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530157 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200158 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
159 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
160 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
161 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
162 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530163 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200164 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
165 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
166 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
167 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700168 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200169 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
170 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200171 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200172 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
173 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100174 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200175 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800176 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800177 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900178 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200179 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100180 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100181 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200182 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800183 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200184 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800185 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800186 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200187 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
188 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800189 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530190 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300191 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300192 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530193 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530194
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800195 /* Atheros AR5BBU12 with sflash firmware */
196 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
197
Michael Gruetzner85d59722012-05-02 22:33:40 +0200198 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530199 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200200 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200201
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200202 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100203 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200204 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
205 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200206
207 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100208 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
209 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200210
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200211 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100212 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
213 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200214
215 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100216 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200217
218 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100219 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200220
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100221 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100222 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100223 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200224
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100225 /* Belkin F8T012 and F8T013 devices */
226 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
227 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200228
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100229 /* Asus WL-BTD202 device */
230 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
231
232 /* Kensington Bluetooth USB adapter */
233 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
234
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200235 /* RTX Telecom based adapters with buggy SCO support */
236 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
237 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
238
239 /* CONWISE Technology based adapters with buggy SCO support */
240 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
241
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800242 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
243 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
244
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200245 /* Digianswer devices */
246 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
247 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
248
249 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200250 { USB_DEVICE(0x0a12, 0x0002),
251 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200252
253 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200254 { USB_DEVICE(0x16d3, 0x0002),
255 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200256
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700257 /* Intel Bluetooth device */
258 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800259 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700260
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700261 /* Marvell device */
262 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
263 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
264
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200265 { } /* Terminating entry */
266};
267
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200268#define BTUSB_MAX_ISOC_FRAMES 10
269
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200270#define BTUSB_INTR_RUNNING 0
271#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200272#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200273#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300274#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200275
276struct btusb_data {
277 struct hci_dev *hdev;
278 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200279 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200280 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200281
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200282 unsigned long flags;
283
284 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200285 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200286
Marcel Holtmann803b5832014-09-16 08:00:29 +0200287 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200288 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200289 int tx_in_flight;
290 spinlock_t txlock;
291
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200292 struct usb_anchor intr_anchor;
293 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200294 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200295 spinlock_t rxlock;
296
297 struct sk_buff *evt_skb;
298 struct sk_buff *acl_skb;
299 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200300
301 struct usb_endpoint_descriptor *intr_ep;
302 struct usb_endpoint_descriptor *bulk_tx_ep;
303 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200304 struct usb_endpoint_descriptor *isoc_tx_ep;
305 struct usb_endpoint_descriptor *isoc_rx_ep;
306
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100307 __u8 cmdreq_type;
308
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100309 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200310 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100311 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100312
Marcel Holtmann97307f52015-01-12 13:51:10 -0800313 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100314 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200315};
316
Marcel Holtmann803b5832014-09-16 08:00:29 +0200317static inline void btusb_free_frags(struct btusb_data *data)
318{
319 unsigned long flags;
320
321 spin_lock_irqsave(&data->rxlock, flags);
322
323 kfree_skb(data->evt_skb);
324 data->evt_skb = NULL;
325
326 kfree_skb(data->acl_skb);
327 data->acl_skb = NULL;
328
329 kfree_skb(data->sco_skb);
330 data->sco_skb = NULL;
331
332 spin_unlock_irqrestore(&data->rxlock, flags);
333}
334
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200335static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
336{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200337 struct sk_buff *skb;
338 int err = 0;
339
340 spin_lock(&data->rxlock);
341 skb = data->evt_skb;
342
343 while (count) {
344 int len;
345
346 if (!skb) {
347 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
348 if (!skb) {
349 err = -ENOMEM;
350 break;
351 }
352
353 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
354 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
355 }
356
357 len = min_t(uint, bt_cb(skb)->expect, count);
358 memcpy(skb_put(skb, len), buffer, len);
359
360 count -= len;
361 buffer += len;
362 bt_cb(skb)->expect -= len;
363
364 if (skb->len == HCI_EVENT_HDR_SIZE) {
365 /* Complete event header */
366 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
367
368 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
369 kfree_skb(skb);
370 skb = NULL;
371
372 err = -EILSEQ;
373 break;
374 }
375 }
376
377 if (bt_cb(skb)->expect == 0) {
378 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800379 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200380 skb = NULL;
381 }
382 }
383
384 data->evt_skb = skb;
385 spin_unlock(&data->rxlock);
386
387 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200388}
389
390static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
391{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200392 struct sk_buff *skb;
393 int err = 0;
394
395 spin_lock(&data->rxlock);
396 skb = data->acl_skb;
397
398 while (count) {
399 int len;
400
401 if (!skb) {
402 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
403 if (!skb) {
404 err = -ENOMEM;
405 break;
406 }
407
408 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
409 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
410 }
411
412 len = min_t(uint, bt_cb(skb)->expect, count);
413 memcpy(skb_put(skb, len), buffer, len);
414
415 count -= len;
416 buffer += len;
417 bt_cb(skb)->expect -= len;
418
419 if (skb->len == HCI_ACL_HDR_SIZE) {
420 __le16 dlen = hci_acl_hdr(skb)->dlen;
421
422 /* Complete ACL header */
423 bt_cb(skb)->expect = __le16_to_cpu(dlen);
424
425 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
426 kfree_skb(skb);
427 skb = NULL;
428
429 err = -EILSEQ;
430 break;
431 }
432 }
433
434 if (bt_cb(skb)->expect == 0) {
435 /* Complete frame */
436 hci_recv_frame(data->hdev, skb);
437 skb = NULL;
438 }
439 }
440
441 data->acl_skb = skb;
442 spin_unlock(&data->rxlock);
443
444 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200445}
446
447static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
448{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200449 struct sk_buff *skb;
450 int err = 0;
451
452 spin_lock(&data->rxlock);
453 skb = data->sco_skb;
454
455 while (count) {
456 int len;
457
458 if (!skb) {
459 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
460 if (!skb) {
461 err = -ENOMEM;
462 break;
463 }
464
465 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
466 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
467 }
468
469 len = min_t(uint, bt_cb(skb)->expect, count);
470 memcpy(skb_put(skb, len), buffer, len);
471
472 count -= len;
473 buffer += len;
474 bt_cb(skb)->expect -= len;
475
476 if (skb->len == HCI_SCO_HDR_SIZE) {
477 /* Complete SCO header */
478 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
479
480 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
481 kfree_skb(skb);
482 skb = NULL;
483
484 err = -EILSEQ;
485 break;
486 }
487 }
488
489 if (bt_cb(skb)->expect == 0) {
490 /* Complete frame */
491 hci_recv_frame(data->hdev, skb);
492 skb = NULL;
493 }
494 }
495
496 data->sco_skb = skb;
497 spin_unlock(&data->rxlock);
498
499 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200500}
501
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200502static void btusb_intr_complete(struct urb *urb)
503{
504 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100505 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200506 int err;
507
Marcel Holtmann89e75332014-09-16 04:44:50 +0200508 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
509 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200510
511 if (!test_bit(HCI_RUNNING, &hdev->flags))
512 return;
513
514 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200515 hdev->stat.byte_rx += urb->actual_length;
516
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200517 if (btusb_recv_intr(data, urb->transfer_buffer,
518 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200519 BT_ERR("%s corrupted event packet", hdev->name);
520 hdev->stat.err_rx++;
521 }
Champion Chen85560c42014-09-06 14:06:08 -0500522 } else if (urb->status == -ENOENT) {
523 /* Avoid suspend failed when usb_kill_urb */
524 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200525 }
526
527 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
528 return;
529
Oliver Neukum7bee5492009-08-24 23:44:59 +0200530 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200531 usb_anchor_urb(urb, &data->intr_anchor);
532
533 err = usb_submit_urb(urb, GFP_ATOMIC);
534 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200535 /* -EPERM: urb is being killed;
536 * -ENODEV: device got disconnected */
537 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100538 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200539 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200540 usb_unanchor_urb(urb);
541 }
542}
543
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100544static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200545{
David Herrmann155961e2012-02-09 21:58:32 +0100546 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200547 struct urb *urb;
548 unsigned char *buf;
549 unsigned int pipe;
550 int err, size;
551
552 BT_DBG("%s", hdev->name);
553
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200554 if (!data->intr_ep)
555 return -ENODEV;
556
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100557 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200558 if (!urb)
559 return -ENOMEM;
560
561 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
562
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100563 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200564 if (!buf) {
565 usb_free_urb(urb);
566 return -ENOMEM;
567 }
568
569 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
570
571 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200572 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573
574 urb->transfer_flags |= URB_FREE_BUFFER;
575
576 usb_anchor_urb(urb, &data->intr_anchor);
577
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100578 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200579 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200580 if (err != -EPERM && err != -ENODEV)
581 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200582 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200583 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200584 }
585
586 usb_free_urb(urb);
587
588 return err;
589}
590
591static void btusb_bulk_complete(struct urb *urb)
592{
593 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100594 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200595 int err;
596
Marcel Holtmann89e75332014-09-16 04:44:50 +0200597 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
598 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200599
600 if (!test_bit(HCI_RUNNING, &hdev->flags))
601 return;
602
603 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200604 hdev->stat.byte_rx += urb->actual_length;
605
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100606 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200607 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200608 BT_ERR("%s corrupted ACL packet", hdev->name);
609 hdev->stat.err_rx++;
610 }
Champion Chen85560c42014-09-06 14:06:08 -0500611 } else if (urb->status == -ENOENT) {
612 /* Avoid suspend failed when usb_kill_urb */
613 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200614 }
615
616 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
617 return;
618
619 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100620 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200621
622 err = usb_submit_urb(urb, GFP_ATOMIC);
623 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200624 /* -EPERM: urb is being killed;
625 * -ENODEV: device got disconnected */
626 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100627 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200628 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629 usb_unanchor_urb(urb);
630 }
631}
632
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100633static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200634{
David Herrmann155961e2012-02-09 21:58:32 +0100635 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200636 struct urb *urb;
637 unsigned char *buf;
638 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530639 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200640
641 BT_DBG("%s", hdev->name);
642
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200643 if (!data->bulk_rx_ep)
644 return -ENODEV;
645
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100646 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647 if (!urb)
648 return -ENOMEM;
649
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100650 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200651 if (!buf) {
652 usb_free_urb(urb);
653 return -ENOMEM;
654 }
655
656 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
657
Marcel Holtmann89e75332014-09-16 04:44:50 +0200658 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
659 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200660
661 urb->transfer_flags |= URB_FREE_BUFFER;
662
Oliver Neukum7bee5492009-08-24 23:44:59 +0200663 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200664 usb_anchor_urb(urb, &data->bulk_anchor);
665
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100666 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200667 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200668 if (err != -EPERM && err != -ENODEV)
669 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200670 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200671 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200672 }
673
674 usb_free_urb(urb);
675
676 return err;
677}
678
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200679static void btusb_isoc_complete(struct urb *urb)
680{
681 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100682 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200683 int i, err;
684
Marcel Holtmann89e75332014-09-16 04:44:50 +0200685 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
686 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200687
688 if (!test_bit(HCI_RUNNING, &hdev->flags))
689 return;
690
691 if (urb->status == 0) {
692 for (i = 0; i < urb->number_of_packets; i++) {
693 unsigned int offset = urb->iso_frame_desc[i].offset;
694 unsigned int length = urb->iso_frame_desc[i].actual_length;
695
696 if (urb->iso_frame_desc[i].status)
697 continue;
698
699 hdev->stat.byte_rx += length;
700
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200701 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
702 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200703 BT_ERR("%s corrupted SCO packet", hdev->name);
704 hdev->stat.err_rx++;
705 }
706 }
Champion Chen85560c42014-09-06 14:06:08 -0500707 } else if (urb->status == -ENOENT) {
708 /* Avoid suspend failed when usb_kill_urb */
709 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200710 }
711
712 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
713 return;
714
715 usb_anchor_urb(urb, &data->isoc_anchor);
716
717 err = usb_submit_urb(urb, GFP_ATOMIC);
718 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200719 /* -EPERM: urb is being killed;
720 * -ENODEV: device got disconnected */
721 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100722 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200723 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200724 usb_unanchor_urb(urb);
725 }
726}
727
Jesper Juhl42b16b32011-01-17 00:09:38 +0100728static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200729{
730 int i, offset = 0;
731
732 BT_DBG("len %d mtu %d", len, mtu);
733
734 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
735 i++, offset += mtu, len -= mtu) {
736 urb->iso_frame_desc[i].offset = offset;
737 urb->iso_frame_desc[i].length = mtu;
738 }
739
740 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
741 urb->iso_frame_desc[i].offset = offset;
742 urb->iso_frame_desc[i].length = len;
743 i++;
744 }
745
746 urb->number_of_packets = i;
747}
748
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100749static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200750{
David Herrmann155961e2012-02-09 21:58:32 +0100751 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200752 struct urb *urb;
753 unsigned char *buf;
754 unsigned int pipe;
755 int err, size;
756
757 BT_DBG("%s", hdev->name);
758
759 if (!data->isoc_rx_ep)
760 return -ENODEV;
761
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100762 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200763 if (!urb)
764 return -ENOMEM;
765
766 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
767 BTUSB_MAX_ISOC_FRAMES;
768
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100769 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200770 if (!buf) {
771 usb_free_urb(urb);
772 return -ENOMEM;
773 }
774
775 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
776
Bing Zhaofa0fb932011-12-20 18:19:00 -0800777 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200778 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200779
Marcel Holtmann89e75332014-09-16 04:44:50 +0200780 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200781
782 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200783 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200784
785 usb_anchor_urb(urb, &data->isoc_anchor);
786
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100787 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200788 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200789 if (err != -EPERM && err != -ENODEV)
790 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200791 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200792 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200793 }
794
795 usb_free_urb(urb);
796
797 return err;
798}
799
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200800static void btusb_tx_complete(struct urb *urb)
801{
802 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200803 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100804 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200805
Marcel Holtmann89e75332014-09-16 04:44:50 +0200806 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
807 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200808
809 if (!test_bit(HCI_RUNNING, &hdev->flags))
810 goto done;
811
812 if (!urb->status)
813 hdev->stat.byte_tx += urb->transfer_buffer_length;
814 else
815 hdev->stat.err_tx++;
816
817done:
818 spin_lock(&data->txlock);
819 data->tx_in_flight--;
820 spin_unlock(&data->txlock);
821
822 kfree(urb->setup_packet);
823
824 kfree_skb(skb);
825}
826
827static void btusb_isoc_tx_complete(struct urb *urb)
828{
829 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200830 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200831
Marcel Holtmann89e75332014-09-16 04:44:50 +0200832 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
833 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200834
835 if (!test_bit(HCI_RUNNING, &hdev->flags))
836 goto done;
837
838 if (!urb->status)
839 hdev->stat.byte_tx += urb->transfer_buffer_length;
840 else
841 hdev->stat.err_tx++;
842
843done:
844 kfree(urb->setup_packet);
845
846 kfree_skb(skb);
847}
848
849static int btusb_open(struct hci_dev *hdev)
850{
David Herrmann155961e2012-02-09 21:58:32 +0100851 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200852 int err;
853
854 BT_DBG("%s", hdev->name);
855
Oliver Neukum7bee5492009-08-24 23:44:59 +0200856 err = usb_autopm_get_interface(data->intf);
857 if (err < 0)
858 return err;
859
860 data->intf->needs_remote_wakeup = 1;
861
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200862 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200863 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200864
865 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200866 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200867
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100868 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100869 if (err < 0)
870 goto failed;
871
872 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200873 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100874 usb_kill_anchored_urbs(&data->intr_anchor);
875 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200876 }
877
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100878 set_bit(BTUSB_BULK_RUNNING, &data->flags);
879 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
880
Oliver Neukum7bee5492009-08-24 23:44:59 +0200881done:
882 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100883 return 0;
884
885failed:
886 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
887 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200888 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200889 return err;
890}
891
Oliver Neukum7bee5492009-08-24 23:44:59 +0200892static void btusb_stop_traffic(struct btusb_data *data)
893{
894 usb_kill_anchored_urbs(&data->intr_anchor);
895 usb_kill_anchored_urbs(&data->bulk_anchor);
896 usb_kill_anchored_urbs(&data->isoc_anchor);
897}
898
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200899static int btusb_close(struct hci_dev *hdev)
900{
David Herrmann155961e2012-02-09 21:58:32 +0100901 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200902 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200903
904 BT_DBG("%s", hdev->name);
905
906 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
907 return 0;
908
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200909 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800910 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200911
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200912 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200913 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200914 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200915
916 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200917 btusb_free_frags(data);
918
Oliver Neukum7bee5492009-08-24 23:44:59 +0200919 err = usb_autopm_get_interface(data->intf);
920 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100921 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200922
923 data->intf->needs_remote_wakeup = 0;
924 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200925
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100926failed:
927 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200928 return 0;
929}
930
931static int btusb_flush(struct hci_dev *hdev)
932{
David Herrmann155961e2012-02-09 21:58:32 +0100933 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200934
935 BT_DBG("%s", hdev->name);
936
937 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200938 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200939
940 return 0;
941}
942
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200943static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200944{
David Herrmann155961e2012-02-09 21:58:32 +0100945 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200946 struct usb_ctrlrequest *dr;
947 struct urb *urb;
948 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200949
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200950 urb = usb_alloc_urb(0, GFP_KERNEL);
951 if (!urb)
952 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200953
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200954 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
955 if (!dr) {
956 usb_free_urb(urb);
957 return ERR_PTR(-ENOMEM);
958 }
959
960 dr->bRequestType = data->cmdreq_type;
961 dr->bRequest = 0;
962 dr->wIndex = 0;
963 dr->wValue = 0;
964 dr->wLength = __cpu_to_le16(skb->len);
965
966 pipe = usb_sndctrlpipe(data->udev, 0x00);
967
Marcel Holtmann89e75332014-09-16 04:44:50 +0200968 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200969 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200970
Marcel Holtmann89e75332014-09-16 04:44:50 +0200971 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700972
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200973 return urb;
974}
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200975
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200976static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
977{
978 struct btusb_data *data = hci_get_drvdata(hdev);
979 struct urb *urb;
980 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200981
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200982 if (!data->bulk_tx_ep)
983 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200984
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200985 urb = usb_alloc_urb(0, GFP_KERNEL);
986 if (!urb)
987 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200988
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200989 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200990
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200991 usb_fill_bulk_urb(urb, data->udev, pipe,
992 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200993
Marcel Holtmann89e75332014-09-16 04:44:50 +0200994 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200995
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200996 return urb;
997}
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200998
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200999static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1000{
1001 struct btusb_data *data = hci_get_drvdata(hdev);
1002 struct urb *urb;
1003 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001004
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001005 if (!data->isoc_tx_ep)
1006 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001007
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001008 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1009 if (!urb)
1010 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001011
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001012 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001013
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001014 usb_fill_int_urb(urb, data->udev, pipe,
1015 skb->data, skb->len, btusb_isoc_tx_complete,
1016 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001017
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001018 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001019
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001020 __fill_isoc_descriptor(urb, skb->len,
1021 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001022
Marcel Holtmann89e75332014-09-16 04:44:50 +02001023 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001024
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001025 return urb;
1026}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001027
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001028static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1029{
1030 struct btusb_data *data = hci_get_drvdata(hdev);
1031 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001032
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001033 usb_anchor_urb(urb, &data->tx_anchor);
1034
Johan Hedberge9753ef2014-09-14 08:49:34 +03001035 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001036 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001037 if (err != -EPERM && err != -ENODEV)
1038 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001039 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001040 kfree(urb->setup_packet);
1041 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001042 } else {
1043 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001044 }
1045
Cong Wang54a8a792011-11-22 09:32:57 +08001046 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001047 return err;
1048}
1049
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001050static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1051{
1052 struct btusb_data *data = hci_get_drvdata(hdev);
1053 unsigned long flags;
1054 bool suspending;
1055
1056 spin_lock_irqsave(&data->txlock, flags);
1057 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1058 if (!suspending)
1059 data->tx_in_flight++;
1060 spin_unlock_irqrestore(&data->txlock, flags);
1061
1062 if (!suspending)
1063 return submit_tx_urb(hdev, urb);
1064
1065 usb_anchor_urb(urb, &data->deferred);
1066 schedule_work(&data->waker);
1067
1068 usb_free_urb(urb);
1069 return 0;
1070}
1071
1072static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1073{
1074 struct urb *urb;
1075
1076 BT_DBG("%s", hdev->name);
1077
1078 if (!test_bit(HCI_RUNNING, &hdev->flags))
1079 return -EBUSY;
1080
1081 switch (bt_cb(skb)->pkt_type) {
1082 case HCI_COMMAND_PKT:
1083 urb = alloc_ctrl_urb(hdev, skb);
1084 if (IS_ERR(urb))
1085 return PTR_ERR(urb);
1086
1087 hdev->stat.cmd_tx++;
1088 return submit_or_queue_tx_urb(hdev, urb);
1089
1090 case HCI_ACLDATA_PKT:
1091 urb = alloc_bulk_urb(hdev, skb);
1092 if (IS_ERR(urb))
1093 return PTR_ERR(urb);
1094
1095 hdev->stat.acl_tx++;
1096 return submit_or_queue_tx_urb(hdev, urb);
1097
1098 case HCI_SCODATA_PKT:
1099 if (hci_conn_num(hdev, SCO_LINK) < 1)
1100 return -ENODEV;
1101
1102 urb = alloc_isoc_urb(hdev, skb);
1103 if (IS_ERR(urb))
1104 return PTR_ERR(urb);
1105
1106 hdev->stat.sco_tx++;
1107 return submit_tx_urb(hdev, urb);
1108 }
1109
1110 return -EILSEQ;
1111}
1112
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001113static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1114{
David Herrmann155961e2012-02-09 21:58:32 +01001115 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001116
1117 BT_DBG("%s evt %d", hdev->name, evt);
1118
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001119 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1120 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001121 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001122 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001123}
1124
Jesper Juhl42b16b32011-01-17 00:09:38 +01001125static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001126{
David Herrmann155961e2012-02-09 21:58:32 +01001127 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001128 struct usb_interface *intf = data->isoc;
1129 struct usb_endpoint_descriptor *ep_desc;
1130 int i, err;
1131
1132 if (!data->isoc)
1133 return -ENODEV;
1134
1135 err = usb_set_interface(data->udev, 1, altsetting);
1136 if (err < 0) {
1137 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1138 return err;
1139 }
1140
1141 data->isoc_altsetting = altsetting;
1142
1143 data->isoc_tx_ep = NULL;
1144 data->isoc_rx_ep = NULL;
1145
1146 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1147 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1148
1149 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1150 data->isoc_tx_ep = ep_desc;
1151 continue;
1152 }
1153
1154 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1155 data->isoc_rx_ep = ep_desc;
1156 continue;
1157 }
1158 }
1159
1160 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1161 BT_ERR("%s invalid SCO descriptors", hdev->name);
1162 return -ENODEV;
1163 }
1164
1165 return 0;
1166}
1167
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001168static void btusb_work(struct work_struct *work)
1169{
1170 struct btusb_data *data = container_of(work, struct btusb_data, work);
1171 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001172 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001173 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001174
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001175 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001176 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001177 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001178 if (err < 0) {
1179 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1180 usb_kill_anchored_urbs(&data->isoc_anchor);
1181 return;
1182 }
1183
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001184 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001185 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001186
1187 if (hdev->voice_setting & 0x0020) {
1188 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001189
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001190 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001191 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001192 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001193 }
1194
1195 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001196 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1197 usb_kill_anchored_urbs(&data->isoc_anchor);
1198
Mikel Astizf4001d22012-04-11 08:48:51 +02001199 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001200 return;
1201 }
1202
1203 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001204 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001205 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1206 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001207 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001208 }
1209 } else {
1210 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1211 usb_kill_anchored_urbs(&data->isoc_anchor);
1212
1213 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001214 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001215 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216 }
1217}
1218
Oliver Neukum7bee5492009-08-24 23:44:59 +02001219static void btusb_waker(struct work_struct *work)
1220{
1221 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1222 int err;
1223
1224 err = usb_autopm_get_interface(data->intf);
1225 if (err < 0)
1226 return;
1227
1228 usb_autopm_put_interface(data->intf);
1229}
1230
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001231static int btusb_setup_bcm92035(struct hci_dev *hdev)
1232{
1233 struct sk_buff *skb;
1234 u8 val = 0x00;
1235
1236 BT_DBG("%s", hdev->name);
1237
1238 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1239 if (IS_ERR(skb))
1240 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1241 else
1242 kfree_skb(skb);
1243
1244 return 0;
1245}
1246
Marcel Holtmann81cac642014-01-03 03:02:36 -08001247static int btusb_setup_csr(struct hci_dev *hdev)
1248{
1249 struct hci_rp_read_local_version *rp;
1250 struct sk_buff *skb;
1251 int ret;
1252
1253 BT_DBG("%s", hdev->name);
1254
1255 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1256 HCI_INIT_TIMEOUT);
1257 if (IS_ERR(skb)) {
1258 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb));
1259 return -PTR_ERR(skb);
1260 }
1261
Marcel Holtmann89e75332014-09-16 04:44:50 +02001262 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001263
1264 if (!rp->status) {
1265 if (le16_to_cpu(rp->manufacturer) != 10) {
1266 /* Clear the reset quirk since this is not an actual
1267 * early Bluetooth 1.1 device from CSR.
1268 */
1269 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1270
1271 /* These fake CSR controllers have all a broken
1272 * stored link key handling and so just disable it.
1273 */
1274 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1275 &hdev->quirks);
1276 }
1277 }
1278
1279 ret = -bt_to_errno(rp->status);
1280
1281 kfree_skb(skb);
1282
1283 return ret;
1284}
1285
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001286struct intel_version {
1287 u8 status;
1288 u8 hw_platform;
1289 u8 hw_variant;
1290 u8 hw_revision;
1291 u8 fw_variant;
1292 u8 fw_revision;
1293 u8 fw_build_num;
1294 u8 fw_build_ww;
1295 u8 fw_build_yy;
1296 u8 fw_patch_num;
1297} __packed;
1298
1299static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001300 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001301{
1302 const struct firmware *fw;
1303 char fwname[64];
1304 int ret;
1305
1306 snprintf(fwname, sizeof(fwname),
1307 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1308 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1309 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1310 ver->fw_build_ww, ver->fw_build_yy);
1311
1312 ret = request_firmware(&fw, fwname, &hdev->dev);
1313 if (ret < 0) {
1314 if (ret == -EINVAL) {
1315 BT_ERR("%s Intel firmware file request failed (%d)",
1316 hdev->name, ret);
1317 return NULL;
1318 }
1319
1320 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1321 hdev->name, fwname, ret);
1322
1323 /* If the correct firmware patch file is not found, use the
1324 * default firmware patch file instead
1325 */
1326 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1327 ver->hw_platform, ver->hw_variant);
1328 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1329 BT_ERR("%s failed to open default Intel fw file: %s",
1330 hdev->name, fwname);
1331 return NULL;
1332 }
1333 }
1334
1335 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1336
1337 return fw;
1338}
1339
1340static int btusb_setup_intel_patching(struct hci_dev *hdev,
1341 const struct firmware *fw,
1342 const u8 **fw_ptr, int *disable_patch)
1343{
1344 struct sk_buff *skb;
1345 struct hci_command_hdr *cmd;
1346 const u8 *cmd_param;
1347 struct hci_event_hdr *evt = NULL;
1348 const u8 *evt_param = NULL;
1349 int remain = fw->size - (*fw_ptr - fw->data);
1350
1351 /* The first byte indicates the types of the patch command or event.
1352 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1353 * in the current firmware buffer doesn't start with 0x01 or
1354 * the size of remain buffer is smaller than HCI command header,
1355 * the firmware file is corrupted and it should stop the patching
1356 * process.
1357 */
1358 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1359 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1360 return -EINVAL;
1361 }
1362 (*fw_ptr)++;
1363 remain--;
1364
1365 cmd = (struct hci_command_hdr *)(*fw_ptr);
1366 *fw_ptr += sizeof(*cmd);
1367 remain -= sizeof(*cmd);
1368
1369 /* Ensure that the remain firmware data is long enough than the length
1370 * of command parameter. If not, the firmware file is corrupted.
1371 */
1372 if (remain < cmd->plen) {
1373 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1374 return -EFAULT;
1375 }
1376
1377 /* If there is a command that loads a patch in the firmware
1378 * file, then enable the patch upon success, otherwise just
1379 * disable the manufacturer mode, for example patch activation
1380 * is not required when the default firmware patch file is used
1381 * because there are no patch data to load.
1382 */
1383 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1384 *disable_patch = 0;
1385
1386 cmd_param = *fw_ptr;
1387 *fw_ptr += cmd->plen;
1388 remain -= cmd->plen;
1389
1390 /* This reads the expected events when the above command is sent to the
1391 * device. Some vendor commands expects more than one events, for
1392 * example command status event followed by vendor specific event.
1393 * For this case, it only keeps the last expected event. so the command
1394 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1395 * last expected event.
1396 */
1397 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1398 (*fw_ptr)++;
1399 remain--;
1400
1401 evt = (struct hci_event_hdr *)(*fw_ptr);
1402 *fw_ptr += sizeof(*evt);
1403 remain -= sizeof(*evt);
1404
1405 if (remain < evt->plen) {
1406 BT_ERR("%s Intel fw corrupted: invalid evt len",
1407 hdev->name);
1408 return -EFAULT;
1409 }
1410
1411 evt_param = *fw_ptr;
1412 *fw_ptr += evt->plen;
1413 remain -= evt->plen;
1414 }
1415
1416 /* Every HCI commands in the firmware file has its correspond event.
1417 * If event is not found or remain is smaller than zero, the firmware
1418 * file is corrupted.
1419 */
1420 if (!evt || !evt_param || remain < 0) {
1421 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1422 return -EFAULT;
1423 }
1424
1425 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1426 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1427 if (IS_ERR(skb)) {
1428 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1429 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001430 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001431 }
1432
1433 /* It ensures that the returned event matches the event data read from
1434 * the firmware file. At fist, it checks the length and then
1435 * the contents of the event.
1436 */
1437 if (skb->len != evt->plen) {
1438 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1439 le16_to_cpu(cmd->opcode));
1440 kfree_skb(skb);
1441 return -EFAULT;
1442 }
1443
1444 if (memcmp(skb->data, evt_param, evt->plen)) {
1445 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1446 hdev->name, le16_to_cpu(cmd->opcode));
1447 kfree_skb(skb);
1448 return -EFAULT;
1449 }
1450 kfree_skb(skb);
1451
1452 return 0;
1453}
1454
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001455#define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1456
1457static int btusb_check_bdaddr_intel(struct hci_dev *hdev)
1458{
1459 struct sk_buff *skb;
1460 struct hci_rp_read_bd_addr *rp;
1461
1462 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1463 HCI_INIT_TIMEOUT);
1464 if (IS_ERR(skb)) {
1465 BT_ERR("%s reading Intel device address failed (%ld)",
1466 hdev->name, PTR_ERR(skb));
1467 return PTR_ERR(skb);
1468 }
1469
1470 if (skb->len != sizeof(*rp)) {
1471 BT_ERR("%s Intel device address length mismatch", hdev->name);
1472 kfree_skb(skb);
1473 return -EIO;
1474 }
1475
Marcel Holtmann89e75332014-09-16 04:44:50 +02001476 rp = (struct hci_rp_read_bd_addr *)skb->data;
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001477 if (rp->status) {
1478 BT_ERR("%s Intel device address result failed (%02x)",
1479 hdev->name, rp->status);
1480 kfree_skb(skb);
1481 return -bt_to_errno(rp->status);
1482 }
1483
1484 /* For some Intel based controllers, the default Bluetooth device
1485 * address 00:03:19:9E:8B:00 can be found. These controllers are
1486 * fully operational, but have the danger of duplicate addresses
1487 * and that in turn can cause problems with Bluetooth operation.
1488 */
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001489 if (!bacmp(&rp->bdaddr, BDADDR_INTEL)) {
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001490 BT_ERR("%s found Intel default device address (%pMR)",
1491 hdev->name, &rp->bdaddr);
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001492 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1493 }
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001494
1495 kfree_skb(skb);
1496
1497 return 0;
1498}
1499
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001500static int btusb_setup_intel(struct hci_dev *hdev)
1501{
1502 struct sk_buff *skb;
1503 const struct firmware *fw;
1504 const u8 *fw_ptr;
1505 int disable_patch;
1506 struct intel_version *ver;
1507
1508 const u8 mfg_enable[] = { 0x01, 0x00 };
1509 const u8 mfg_disable[] = { 0x00, 0x00 };
1510 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1511 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1512
1513 BT_DBG("%s", hdev->name);
1514
1515 /* The controller has a bug with the first HCI command sent to it
1516 * returning number of completed commands as zero. This would stall the
1517 * command processing in the Bluetooth core.
1518 *
1519 * As a workaround, send HCI Reset command first which will reset the
1520 * number of completed commands and allow normal command processing
1521 * from now on.
1522 */
1523 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1524 if (IS_ERR(skb)) {
1525 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1526 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001527 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001528 }
1529 kfree_skb(skb);
1530
1531 /* Read Intel specific controller version first to allow selection of
1532 * which firmware file to load.
1533 *
1534 * The returned information are hardware variant and revision plus
1535 * firmware variant, revision and build number.
1536 */
1537 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1538 if (IS_ERR(skb)) {
1539 BT_ERR("%s reading Intel fw version command failed (%ld)",
1540 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001541 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001542 }
1543
1544 if (skb->len != sizeof(*ver)) {
1545 BT_ERR("%s Intel version event length mismatch", hdev->name);
1546 kfree_skb(skb);
1547 return -EIO;
1548 }
1549
1550 ver = (struct intel_version *)skb->data;
1551 if (ver->status) {
1552 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1553 ver->status);
1554 kfree_skb(skb);
1555 return -bt_to_errno(ver->status);
1556 }
1557
1558 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1559 hdev->name, ver->hw_platform, ver->hw_variant,
1560 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1561 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1562 ver->fw_patch_num);
1563
1564 /* fw_patch_num indicates the version of patch the device currently
1565 * have. If there is no patch data in the device, it is always 0x00.
1566 * So, if it is other than 0x00, no need to patch the deivce again.
1567 */
1568 if (ver->fw_patch_num) {
1569 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1570 hdev->name, ver->fw_patch_num);
1571 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001572 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001573 return 0;
1574 }
1575
1576 /* Opens the firmware patch file based on the firmware version read
1577 * from the controller. If it fails to open the matching firmware
1578 * patch file, it tries to open the default firmware patch file.
1579 * If no patch file is found, allow the device to operate without
1580 * a patch.
1581 */
1582 fw = btusb_setup_intel_get_fw(hdev, ver);
1583 if (!fw) {
1584 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001585 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001586 return 0;
1587 }
1588 fw_ptr = fw->data;
1589
1590 /* This Intel specific command enables the manufacturer mode of the
1591 * controller.
1592 *
1593 * Only while this mode is enabled, the driver can download the
1594 * firmware patch data and configuration parameters.
1595 */
1596 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1597 if (IS_ERR(skb)) {
1598 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1599 hdev->name, PTR_ERR(skb));
1600 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001601 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001602 }
1603
1604 if (skb->data[0]) {
1605 u8 evt_status = skb->data[0];
Marcel Holtmann89e75332014-09-16 04:44:50 +02001606
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001607 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1608 hdev->name, evt_status);
1609 kfree_skb(skb);
1610 release_firmware(fw);
1611 return -bt_to_errno(evt_status);
1612 }
1613 kfree_skb(skb);
1614
1615 disable_patch = 1;
1616
1617 /* The firmware data file consists of list of Intel specific HCI
1618 * commands and its expected events. The first byte indicates the
1619 * type of the message, either HCI command or HCI event.
1620 *
1621 * It reads the command and its expected event from the firmware file,
1622 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1623 * the returned event is compared with the event read from the firmware
1624 * file and it will continue until all the messages are downloaded to
1625 * the controller.
1626 *
1627 * Once the firmware patching is completed successfully,
1628 * the manufacturer mode is disabled with reset and activating the
1629 * downloaded patch.
1630 *
1631 * If the firmware patching fails, the manufacturer mode is
1632 * disabled with reset and deactivating the patch.
1633 *
1634 * If the default patch file is used, no reset is done when disabling
1635 * the manufacturer.
1636 */
1637 while (fw->size > fw_ptr - fw->data) {
1638 int ret;
1639
1640 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1641 &disable_patch);
1642 if (ret < 0)
1643 goto exit_mfg_deactivate;
1644 }
1645
1646 release_firmware(fw);
1647
1648 if (disable_patch)
1649 goto exit_mfg_disable;
1650
1651 /* Patching completed successfully and disable the manufacturer mode
1652 * with reset and activate the downloaded firmware patches.
1653 */
1654 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1655 mfg_reset_activate, HCI_INIT_TIMEOUT);
1656 if (IS_ERR(skb)) {
1657 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1658 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001659 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001660 }
1661 kfree_skb(skb);
1662
1663 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1664 hdev->name);
1665
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001666 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001667 return 0;
1668
1669exit_mfg_disable:
1670 /* Disable the manufacturer mode without reset */
1671 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1672 HCI_INIT_TIMEOUT);
1673 if (IS_ERR(skb)) {
1674 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1675 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001676 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001677 }
1678 kfree_skb(skb);
1679
1680 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001681
1682 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001683 return 0;
1684
1685exit_mfg_deactivate:
1686 release_firmware(fw);
1687
1688 /* Patching failed. Disable the manufacturer mode with reset and
1689 * deactivate the downloaded firmware patches.
1690 */
1691 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1692 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1693 if (IS_ERR(skb)) {
1694 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1695 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001696 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001697 }
1698 kfree_skb(skb);
1699
1700 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1701 hdev->name);
1702
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001703 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001704 return 0;
1705}
1706
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02001707static int btusb_set_bdaddr_intel(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1708{
1709 struct sk_buff *skb;
1710 long ret;
1711
1712 skb = __hci_cmd_sync(hdev, 0xfc31, 6, bdaddr, HCI_INIT_TIMEOUT);
1713 if (IS_ERR(skb)) {
1714 ret = PTR_ERR(skb);
1715 BT_ERR("%s: changing Intel device address failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001716 hdev->name, ret);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02001717 return ret;
1718 }
1719 kfree_skb(skb);
1720
1721 return 0;
1722}
1723
Amitkumar Karwarae8df492014-07-18 14:47:06 -07001724static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
1725 const bdaddr_t *bdaddr)
1726{
1727 struct sk_buff *skb;
1728 u8 buf[8];
1729 long ret;
1730
1731 buf[0] = 0xfe;
1732 buf[1] = sizeof(bdaddr_t);
1733 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
1734
1735 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
1736 if (IS_ERR(skb)) {
1737 ret = PTR_ERR(skb);
1738 BT_ERR("%s: changing Marvell device address failed (%ld)",
1739 hdev->name, ret);
1740 return ret;
1741 }
1742 kfree_skb(skb);
1743
1744 return 0;
1745}
1746
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001747#define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
1748
Petri Gynther10d4c672014-05-08 15:50:01 -07001749static int btusb_setup_bcm_patchram(struct hci_dev *hdev)
1750{
1751 struct btusb_data *data = hci_get_drvdata(hdev);
1752 struct usb_device *udev = data->udev;
1753 char fw_name[64];
1754 const struct firmware *fw;
1755 const u8 *fw_ptr;
1756 size_t fw_size;
1757 const struct hci_command_hdr *cmd;
1758 const u8 *cmd_param;
1759 u16 opcode;
1760 struct sk_buff *skb;
1761 struct hci_rp_read_local_version *ver;
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001762 struct hci_rp_read_bd_addr *bda;
Petri Gynther10d4c672014-05-08 15:50:01 -07001763 long ret;
1764
1765 snprintf(fw_name, sizeof(fw_name), "brcm/%s-%04x-%04x.hcd",
1766 udev->product ? udev->product : "BCM",
1767 le16_to_cpu(udev->descriptor.idVendor),
1768 le16_to_cpu(udev->descriptor.idProduct));
1769
1770 ret = request_firmware(&fw, fw_name, &hdev->dev);
1771 if (ret < 0) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001772 BT_INFO("%s: BCM: patch %s not found", hdev->name, fw_name);
Petri Gynther10d4c672014-05-08 15:50:01 -07001773 return 0;
1774 }
1775
1776 /* Reset */
1777 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1778 if (IS_ERR(skb)) {
1779 ret = PTR_ERR(skb);
1780 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1781 goto done;
1782 }
1783 kfree_skb(skb);
1784
1785 /* Read Local Version Info */
1786 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1787 HCI_INIT_TIMEOUT);
1788 if (IS_ERR(skb)) {
1789 ret = PTR_ERR(skb);
1790 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001791 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07001792 goto done;
1793 }
1794
1795 if (skb->len != sizeof(*ver)) {
1796 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001797 hdev->name);
Petri Gynther10d4c672014-05-08 15:50:01 -07001798 kfree_skb(skb);
1799 ret = -EIO;
1800 goto done;
1801 }
1802
Marcel Holtmann89e75332014-09-16 04:44:50 +02001803 ver = (struct hci_rp_read_local_version *)skb->data;
Petri Gynther10d4c672014-05-08 15:50:01 -07001804 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1805 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1806 ver->lmp_ver, ver->lmp_subver);
1807 kfree_skb(skb);
1808
1809 /* Start Download */
1810 skb = __hci_cmd_sync(hdev, 0xfc2e, 0, NULL, HCI_INIT_TIMEOUT);
1811 if (IS_ERR(skb)) {
1812 ret = PTR_ERR(skb);
1813 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001814 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07001815 goto reset_fw;
1816 }
1817 kfree_skb(skb);
1818
1819 /* 50 msec delay after Download Minidrv completes */
1820 msleep(50);
1821
1822 fw_ptr = fw->data;
1823 fw_size = fw->size;
1824
1825 while (fw_size >= sizeof(*cmd)) {
Marcel Holtmann89e75332014-09-16 04:44:50 +02001826 cmd = (struct hci_command_hdr *)fw_ptr;
Petri Gynther10d4c672014-05-08 15:50:01 -07001827 fw_ptr += sizeof(*cmd);
1828 fw_size -= sizeof(*cmd);
1829
1830 if (fw_size < cmd->plen) {
1831 BT_ERR("%s: BCM: patch %s is corrupted",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001832 hdev->name, fw_name);
Petri Gynther10d4c672014-05-08 15:50:01 -07001833 ret = -EINVAL;
1834 goto reset_fw;
1835 }
1836
1837 cmd_param = fw_ptr;
1838 fw_ptr += cmd->plen;
1839 fw_size -= cmd->plen;
1840
1841 opcode = le16_to_cpu(cmd->opcode);
1842
1843 skb = __hci_cmd_sync(hdev, opcode, cmd->plen, cmd_param,
1844 HCI_INIT_TIMEOUT);
1845 if (IS_ERR(skb)) {
1846 ret = PTR_ERR(skb);
1847 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001848 hdev->name, opcode, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07001849 goto reset_fw;
1850 }
1851 kfree_skb(skb);
1852 }
1853
1854 /* 250 msec delay after Launch Ram completes */
1855 msleep(250);
1856
1857reset_fw:
1858 /* Reset */
1859 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1860 if (IS_ERR(skb)) {
1861 ret = PTR_ERR(skb);
1862 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1863 goto done;
1864 }
1865 kfree_skb(skb);
1866
1867 /* Read Local Version Info */
1868 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1869 HCI_INIT_TIMEOUT);
1870 if (IS_ERR(skb)) {
1871 ret = PTR_ERR(skb);
1872 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001873 hdev->name, ret);
Petri Gynther10d4c672014-05-08 15:50:01 -07001874 goto done;
1875 }
1876
1877 if (skb->len != sizeof(*ver)) {
1878 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001879 hdev->name);
Petri Gynther10d4c672014-05-08 15:50:01 -07001880 kfree_skb(skb);
1881 ret = -EIO;
1882 goto done;
1883 }
1884
Marcel Holtmann89e75332014-09-16 04:44:50 +02001885 ver = (struct hci_rp_read_local_version *)skb->data;
Petri Gynther10d4c672014-05-08 15:50:01 -07001886 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1887 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1888 ver->lmp_ver, ver->lmp_subver);
1889 kfree_skb(skb);
1890
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001891 /* Read BD Address */
1892 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1893 HCI_INIT_TIMEOUT);
1894 if (IS_ERR(skb)) {
1895 ret = PTR_ERR(skb);
1896 BT_ERR("%s: HCI_OP_READ_BD_ADDR failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001897 hdev->name, ret);
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001898 goto done;
1899 }
1900
1901 if (skb->len != sizeof(*bda)) {
1902 BT_ERR("%s: HCI_OP_READ_BD_ADDR event length mismatch",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001903 hdev->name);
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001904 kfree_skb(skb);
1905 ret = -EIO;
1906 goto done;
1907 }
1908
Marcel Holtmann89e75332014-09-16 04:44:50 +02001909 bda = (struct hci_rp_read_bd_addr *)skb->data;
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001910 if (bda->status) {
1911 BT_ERR("%s: HCI_OP_READ_BD_ADDR error status (%02x)",
1912 hdev->name, bda->status);
1913 kfree_skb(skb);
1914 ret = -bt_to_errno(bda->status);
1915 goto done;
1916 }
1917
1918 /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
1919 * with no configured address.
1920 */
Marcel Holtmann849e5082014-07-04 16:54:39 +02001921 if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001922 BT_INFO("%s: BCM: using default device address (%pMR)",
1923 hdev->name, &bda->bdaddr);
Marcel Holtmann849e5082014-07-04 16:54:39 +02001924 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1925 }
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001926
1927 kfree_skb(skb);
1928
Petri Gynther10d4c672014-05-08 15:50:01 -07001929done:
1930 release_firmware(fw);
1931
1932 return ret;
1933}
1934
Marcel Holtmannabbaf502014-07-02 00:53:48 +02001935static int btusb_set_bdaddr_bcm(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1936{
1937 struct sk_buff *skb;
1938 long ret;
1939
1940 skb = __hci_cmd_sync(hdev, 0xfc01, 6, bdaddr, HCI_INIT_TIMEOUT);
1941 if (IS_ERR(skb)) {
1942 ret = PTR_ERR(skb);
1943 BT_ERR("%s: BCM: Change address command failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001944 hdev->name, ret);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02001945 return ret;
1946 }
1947 kfree_skb(skb);
1948
1949 return 0;
1950}
1951
Toshi Kikuchi58592232014-12-12 10:58:05 -08001952static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
1953 const bdaddr_t *bdaddr)
1954{
1955 struct sk_buff *skb;
1956 u8 buf[10];
1957 long ret;
1958
1959 buf[0] = 0x01;
1960 buf[1] = 0x01;
1961 buf[2] = 0x00;
1962 buf[3] = sizeof(bdaddr_t);
1963 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
1964
1965 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
1966 if (IS_ERR(skb)) {
1967 ret = PTR_ERR(skb);
1968 BT_ERR("%s: Change address command failed (%ld)",
1969 hdev->name, ret);
1970 return ret;
1971 }
1972 kfree_skb(skb);
1973
1974 return 0;
1975}
1976
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001977static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001978 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001979{
1980 struct usb_endpoint_descriptor *ep_desc;
1981 struct btusb_data *data;
1982 struct hci_dev *hdev;
1983 int i, err;
1984
1985 BT_DBG("intf %p id %p", intf, id);
1986
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001987 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001988 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
1989 return -ENODEV;
1990
1991 if (!id->driver_info) {
1992 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001993
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001994 match = usb_match_id(intf, blacklist_table);
1995 if (match)
1996 id = match;
1997 }
1998
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001999 if (id->driver_info == BTUSB_IGNORE)
2000 return -ENODEV;
2001
Steven.Li2d25f8b2011-07-01 14:02:36 +08002002 if (id->driver_info & BTUSB_ATH3012) {
2003 struct usb_device *udev = interface_to_usbdev(intf);
2004
2005 /* Old firmware would otherwise let ath3k driver load
2006 * patch and sysconfig files */
2007 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2008 return -ENODEV;
2009 }
2010
Sachin Kamat98921db2012-07-27 12:38:39 +05302011 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002012 if (!data)
2013 return -ENOMEM;
2014
2015 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2016 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2017
2018 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2019 data->intr_ep = ep_desc;
2020 continue;
2021 }
2022
2023 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2024 data->bulk_tx_ep = ep_desc;
2025 continue;
2026 }
2027
2028 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2029 data->bulk_rx_ep = ep_desc;
2030 continue;
2031 }
2032 }
2033
Sachin Kamat98921db2012-07-27 12:38:39 +05302034 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002035 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002036
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002037 data->cmdreq_type = USB_TYPE_CLASS;
2038
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002039 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002040 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002041
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002042 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002043 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002044 init_usb_anchor(&data->deferred);
2045 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002046 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002047
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002048 init_usb_anchor(&data->intr_anchor);
2049 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002050 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002051 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002052
Marcel Holtmann97307f52015-01-12 13:51:10 -08002053 data->recv_event = hci_recv_frame;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002054 data->recv_bulk = btusb_recv_bulk;
2055
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002056 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302057 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002058 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002059
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002060 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002061 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002062
2063 data->hdev = hdev;
2064
2065 SET_HCIDEV_DEV(hdev, &intf->dev);
2066
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002067 hdev->open = btusb_open;
2068 hdev->close = btusb_close;
2069 hdev->flush = btusb_flush;
2070 hdev->send = btusb_send_frame;
2071 hdev->notify = btusb_notify;
2072
2073 if (id->driver_info & BTUSB_BCM92035)
2074 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002075
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002076 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Petri Gynther10d4c672014-05-08 15:50:01 -07002077 hdev->setup = btusb_setup_bcm_patchram;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002078 hdev->set_bdaddr = btusb_set_bdaddr_bcm;
Marcel Holtmann27c3fbe2014-11-02 20:52:24 +01002079 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002080 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002081
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002082 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002083 hdev->setup = btusb_setup_intel;
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002084 hdev->set_bdaddr = btusb_set_bdaddr_intel;
2085 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002086
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002087 if (id->driver_info & BTUSB_MARVELL)
2088 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2089
Marcel Holtmann661cf882015-01-02 23:35:20 -08002090 if (id->driver_info & BTUSB_SWAVE) {
2091 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002092 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002093 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002094
Marcel Holtmann40df7832014-07-06 13:29:58 +02002095 if (id->driver_info & BTUSB_INTEL_BOOT)
2096 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2097
Toshi Kikuchi58592232014-12-12 10:58:05 -08002098 if (id->driver_info & BTUSB_ATH3012)
2099 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2100
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002101 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002102 data->isoc = usb_ifnum_to_if(data->udev, 1);
2103
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002104 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002105 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002106
2107 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2108 if (!disable_scofix)
2109 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2110 }
2111
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002112 if (id->driver_info & BTUSB_BROKEN_ISOC)
2113 data->isoc = NULL;
2114
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002115 if (id->driver_info & BTUSB_DIGIANSWER) {
2116 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002117 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002118 }
2119
2120 if (id->driver_info & BTUSB_CSR) {
2121 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002122 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002123
2124 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002125 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002126 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002127
2128 /* Fake CSR devices with broken commands */
2129 if (bcdDevice <= 0x100)
2130 hdev->setup = btusb_setup_csr;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002131 }
2132
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002133 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002134 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002135
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002136 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002137 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2138 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2139 }
2140
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002141 if (id->driver_info & BTUSB_INTEL_BOOT) {
2142 /* A bug in the bootloader causes that interrupt interface is
2143 * only enabled after receiving SetInterface(0, AltSetting=0).
2144 */
2145 err = usb_set_interface(data->udev, 0, 0);
2146 if (err < 0) {
2147 BT_ERR("failed to set interface 0, alt 0 %d", err);
2148 hci_free_dev(hdev);
2149 return err;
2150 }
2151 }
2152
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002153 if (data->isoc) {
2154 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002155 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002156 if (err < 0) {
2157 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002158 return err;
2159 }
2160 }
2161
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002162 err = hci_register_dev(hdev);
2163 if (err < 0) {
2164 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002165 return err;
2166 }
2167
2168 usb_set_intfdata(intf, data);
2169
2170 return 0;
2171}
2172
2173static void btusb_disconnect(struct usb_interface *intf)
2174{
2175 struct btusb_data *data = usb_get_intfdata(intf);
2176 struct hci_dev *hdev;
2177
2178 BT_DBG("intf %p", intf);
2179
2180 if (!data)
2181 return;
2182
2183 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002184 usb_set_intfdata(data->intf, NULL);
2185
2186 if (data->isoc)
2187 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002188
2189 hci_unregister_dev(hdev);
2190
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002191 if (intf == data->isoc)
2192 usb_driver_release_interface(&btusb_driver, data->intf);
2193 else if (data->isoc)
2194 usb_driver_release_interface(&btusb_driver, data->isoc);
2195
Marcel Holtmann803b5832014-09-16 08:00:29 +02002196 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002197 hci_free_dev(hdev);
2198}
2199
Oliver Neukum7bee5492009-08-24 23:44:59 +02002200#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002201static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2202{
2203 struct btusb_data *data = usb_get_intfdata(intf);
2204
2205 BT_DBG("intf %p", intf);
2206
2207 if (data->suspend_count++)
2208 return 0;
2209
Oliver Neukum7bee5492009-08-24 23:44:59 +02002210 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002211 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002212 set_bit(BTUSB_SUSPENDING, &data->flags);
2213 spin_unlock_irq(&data->txlock);
2214 } else {
2215 spin_unlock_irq(&data->txlock);
2216 data->suspend_count--;
2217 return -EBUSY;
2218 }
2219
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002220 cancel_work_sync(&data->work);
2221
Oliver Neukum7bee5492009-08-24 23:44:59 +02002222 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002223 usb_kill_anchored_urbs(&data->tx_anchor);
2224
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002225 return 0;
2226}
2227
Oliver Neukum7bee5492009-08-24 23:44:59 +02002228static void play_deferred(struct btusb_data *data)
2229{
2230 struct urb *urb;
2231 int err;
2232
2233 while ((urb = usb_get_from_anchor(&data->deferred))) {
2234 err = usb_submit_urb(urb, GFP_ATOMIC);
2235 if (err < 0)
2236 break;
2237
2238 data->tx_in_flight++;
2239 }
2240 usb_scuttle_anchored_urbs(&data->deferred);
2241}
2242
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002243static int btusb_resume(struct usb_interface *intf)
2244{
2245 struct btusb_data *data = usb_get_intfdata(intf);
2246 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002247 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002248
2249 BT_DBG("intf %p", intf);
2250
2251 if (--data->suspend_count)
2252 return 0;
2253
2254 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02002255 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002256
2257 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2258 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2259 if (err < 0) {
2260 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002261 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002262 }
2263 }
2264
2265 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01002266 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2267 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002268 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002269 goto failed;
2270 }
2271
2272 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002273 }
2274
2275 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2276 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2277 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2278 else
2279 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2280 }
2281
Oliver Neukum7bee5492009-08-24 23:44:59 +02002282 spin_lock_irq(&data->txlock);
2283 play_deferred(data);
2284 clear_bit(BTUSB_SUSPENDING, &data->flags);
2285 spin_unlock_irq(&data->txlock);
2286 schedule_work(&data->work);
2287
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002288 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002289
2290failed:
2291 usb_scuttle_anchored_urbs(&data->deferred);
2292done:
2293 spin_lock_irq(&data->txlock);
2294 clear_bit(BTUSB_SUSPENDING, &data->flags);
2295 spin_unlock_irq(&data->txlock);
2296
2297 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002298}
Oliver Neukum7bee5492009-08-24 23:44:59 +02002299#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002300
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002301static struct usb_driver btusb_driver = {
2302 .name = "btusb",
2303 .probe = btusb_probe,
2304 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002305#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002306 .suspend = btusb_suspend,
2307 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002308#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002309 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02002310 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07002311 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002312};
2313
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08002314module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002315
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002316module_param(disable_scofix, bool, 0644);
2317MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
2318
2319module_param(force_scofix, bool, 0644);
2320MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
2321
2322module_param(reset, bool, 0644);
2323MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
2324
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002325MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
2326MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
2327MODULE_VERSION(VERSION);
2328MODULE_LICENSE("GPL");