blob: fe24f600ed6599406d55a7dad594ca1b0557600e [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
Marcel Holtmann5e23b922007-10-20 14:12:34 +020051
Marcel Holtmann54265202013-10-11 07:46:18 -070052static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020053 /* Generic Bluetooth USB device */
54 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
55
Henrik Rydberg1fa65352012-08-25 19:28:06 +020056 /* Apple-specific (Broadcom) devices */
57 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01) },
58
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080059 /* MediaTek MT76x0E */
60 { USB_DEVICE(0x0e8d, 0x763f) },
61
Oliver Neukumc510eae2011-09-21 11:41:45 +020062 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040063 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020064
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090065 /* Apple MacBookPro 7,1 */
66 { USB_DEVICE(0x05ac, 0x8213) },
67
Cyril Lacoux0a79f672010-07-14 10:29:27 +040068 /* Apple iMac11,1 */
69 { USB_DEVICE(0x05ac, 0x8215) },
70
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090071 /* Apple MacBookPro6,2 */
72 { USB_DEVICE(0x05ac, 0x8218) },
73
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010074 /* Apple MacBookAir3,1, MacBookAir3,2 */
75 { USB_DEVICE(0x05ac, 0x821b) },
76
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040077 /* Apple MacBookAir4,1 */
78 { USB_DEVICE(0x05ac, 0x821f) },
79
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030080 /* Apple MacBookPro8,2 */
81 { USB_DEVICE(0x05ac, 0x821a) },
82
Jurgen Kramerf78b68262011-09-04 18:01:42 +020083 /* Apple MacMini5,1 */
84 { USB_DEVICE(0x05ac, 0x8281) },
85
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020086 /* AVM BlueFRITZ! USB v2.0 */
87 { USB_DEVICE(0x057c, 0x3800) },
88
89 /* Bluetooth Ultraport Module from IBM */
90 { USB_DEVICE(0x04bf, 0x030a) },
91
92 /* ALPS Modules with non-standard id */
93 { USB_DEVICE(0x044e, 0x3001) },
94 { USB_DEVICE(0x044e, 0x3002) },
95
96 /* Ericsson with non-standard id */
97 { USB_DEVICE(0x0bdb, 0x1002) },
98
99 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100100 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200101
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800102 /* Broadcom BCM20702A0 */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200103 { USB_DEVICE(0x0489, 0xe042) },
104 { USB_DEVICE(0x04ca, 0x2003) },
Jeff Cook1ee3ff62012-11-09 16:39:48 -0700105 { USB_DEVICE(0x0b05, 0x17b5) },
Raphael Kubo da Costa38a172b2013-09-02 14:57:51 +0300106 { USB_DEVICE(0x0b05, 0x17cb) },
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800107 { USB_DEVICE(0x413c, 0x8197) },
108
Steven Harms98514032012-04-13 14:45:55 -0400109 /* Foxconn - Hon Hai */
Gustavo Padovanee664012012-08-15 01:38:11 -0300110 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01) },
Steven Harms98514032012-04-13 14:45:55 -0400111
Andy Shevchenko0b880062014-02-18 18:26:19 +0200112 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700113 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
114 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300115
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100116 /* Belkin F8065bf - Broadcom based */
117 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01) },
118
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100119 /* IMC Networks - Broadcom based */
120 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01) },
121
Marcel Holtmann40df7832014-07-06 13:29:58 +0200122 /* Intel Bluetooth USB Bootloader (RAM module) */
123 { USB_DEVICE(0x8087, 0x0a5a), .driver_info = BTUSB_INTEL_BOOT },
124
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200125 { } /* Terminating entry */
126};
127
128MODULE_DEVICE_TABLE(usb, btusb_table);
129
Marcel Holtmann54265202013-10-11 07:46:18 -0700130static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200131 /* CSR BlueCore devices */
132 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
133
134 /* Broadcom BCM2033 without firmware */
135 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
136
Bala Shanmugambe931122010-11-26 17:35:46 +0530137 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200138 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
139 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
140 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530141 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200142 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700143 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530144
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800145 /* Atheros AR9285 Malbec with sflash firmware */
146 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
147
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530148 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200149 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
150 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
151 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
152 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
153 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
154 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
155 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
156 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
157 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700158 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200159 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
160 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
161 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
162 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200163 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800164 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800165 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900166 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200167 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100168 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100169 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200170 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800171 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200172 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800173 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800174 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200175 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
176 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800177 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530178 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530179
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800180 /* Atheros AR5BBU12 with sflash firmware */
181 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
182
Michael Gruetzner85d59722012-05-02 22:33:40 +0200183 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530184 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200185 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200186
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200187 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100188 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200189 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
190 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200191
192 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100193 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
194 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200195
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200196 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100197 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
198 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200199
200 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100201 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200202
203 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100204 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200205
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100206 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100207 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100208 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200209
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100210 /* Belkin F8T012 and F8T013 devices */
211 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
212 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200213
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100214 /* Asus WL-BTD202 device */
215 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
216
217 /* Kensington Bluetooth USB adapter */
218 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
219
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200220 /* RTX Telecom based adapters with buggy SCO support */
221 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
222 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
223
224 /* CONWISE Technology based adapters with buggy SCO support */
225 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
226
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200227 /* Digianswer devices */
228 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
229 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
230
231 /* CSR BlueCore Bluetooth Sniffer */
232 { USB_DEVICE(0x0a12, 0x0002), .driver_info = BTUSB_SNIFFER },
233
234 /* Frontline ComProbe Bluetooth Sniffer */
235 { USB_DEVICE(0x16d3, 0x0002), .driver_info = BTUSB_SNIFFER },
236
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700237 /* Intel Bluetooth device */
238 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800239 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700240
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200241 { } /* Terminating entry */
242};
243
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200244#define BTUSB_MAX_ISOC_FRAMES 10
245
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200246#define BTUSB_INTR_RUNNING 0
247#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200248#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200249#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300250#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200251
252struct btusb_data {
253 struct hci_dev *hdev;
254 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200255 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200256 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200257
258 spinlock_t lock;
259
260 unsigned long flags;
261
262 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200263 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200264
265 struct usb_anchor tx_anchor;
266 struct usb_anchor intr_anchor;
267 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200268 struct usb_anchor isoc_anchor;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200269 struct usb_anchor deferred;
270 int tx_in_flight;
271 spinlock_t txlock;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200272
273 struct usb_endpoint_descriptor *intr_ep;
274 struct usb_endpoint_descriptor *bulk_tx_ep;
275 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200276 struct usb_endpoint_descriptor *isoc_tx_ep;
277 struct usb_endpoint_descriptor *isoc_rx_ep;
278
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100279 __u8 cmdreq_type;
280
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100281 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200282 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100283 int suspend_count;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200284};
285
Oliver Neukum7bee5492009-08-24 23:44:59 +0200286static int inc_tx(struct btusb_data *data)
287{
288 unsigned long flags;
289 int rv;
290
291 spin_lock_irqsave(&data->txlock, flags);
292 rv = test_bit(BTUSB_SUSPENDING, &data->flags);
293 if (!rv)
294 data->tx_in_flight++;
295 spin_unlock_irqrestore(&data->txlock, flags);
296
297 return rv;
298}
299
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200300static void btusb_intr_complete(struct urb *urb)
301{
302 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100303 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200304 int err;
305
306 BT_DBG("%s urb %p status %d count %d", hdev->name,
307 urb, urb->status, urb->actual_length);
308
309 if (!test_bit(HCI_RUNNING, &hdev->flags))
310 return;
311
312 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200313 hdev->stat.byte_rx += urb->actual_length;
314
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200315 if (hci_recv_fragment(hdev, HCI_EVENT_PKT,
316 urb->transfer_buffer,
317 urb->actual_length) < 0) {
318 BT_ERR("%s corrupted event packet", hdev->name);
319 hdev->stat.err_rx++;
320 }
321 }
322
323 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
324 return;
325
Oliver Neukum7bee5492009-08-24 23:44:59 +0200326 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200327 usb_anchor_urb(urb, &data->intr_anchor);
328
329 err = usb_submit_urb(urb, GFP_ATOMIC);
330 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200331 /* -EPERM: urb is being killed;
332 * -ENODEV: device got disconnected */
333 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100334 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200335 hdev->name, urb, -err);
336 usb_unanchor_urb(urb);
337 }
338}
339
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100340static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200341{
David Herrmann155961e2012-02-09 21:58:32 +0100342 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200343 struct urb *urb;
344 unsigned char *buf;
345 unsigned int pipe;
346 int err, size;
347
348 BT_DBG("%s", hdev->name);
349
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200350 if (!data->intr_ep)
351 return -ENODEV;
352
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100353 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200354 if (!urb)
355 return -ENOMEM;
356
357 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
358
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100359 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200360 if (!buf) {
361 usb_free_urb(urb);
362 return -ENOMEM;
363 }
364
365 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
366
367 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
368 btusb_intr_complete, hdev,
369 data->intr_ep->bInterval);
370
371 urb->transfer_flags |= URB_FREE_BUFFER;
372
373 usb_anchor_urb(urb, &data->intr_anchor);
374
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100375 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200376 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200377 if (err != -EPERM && err != -ENODEV)
378 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200379 hdev->name, urb, -err);
380 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200381 }
382
383 usb_free_urb(urb);
384
385 return err;
386}
387
388static void btusb_bulk_complete(struct urb *urb)
389{
390 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100391 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200392 int err;
393
394 BT_DBG("%s urb %p status %d count %d", hdev->name,
395 urb, urb->status, urb->actual_length);
396
397 if (!test_bit(HCI_RUNNING, &hdev->flags))
398 return;
399
400 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200401 hdev->stat.byte_rx += urb->actual_length;
402
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200403 if (hci_recv_fragment(hdev, HCI_ACLDATA_PKT,
404 urb->transfer_buffer,
405 urb->actual_length) < 0) {
406 BT_ERR("%s corrupted ACL packet", hdev->name);
407 hdev->stat.err_rx++;
408 }
409 }
410
411 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
412 return;
413
414 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100415 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200416
417 err = usb_submit_urb(urb, GFP_ATOMIC);
418 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200419 /* -EPERM: urb is being killed;
420 * -ENODEV: device got disconnected */
421 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100422 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200423 hdev->name, urb, -err);
424 usb_unanchor_urb(urb);
425 }
426}
427
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100428static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200429{
David Herrmann155961e2012-02-09 21:58:32 +0100430 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200431 struct urb *urb;
432 unsigned char *buf;
433 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530434 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200435
436 BT_DBG("%s", hdev->name);
437
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200438 if (!data->bulk_rx_ep)
439 return -ENODEV;
440
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100441 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200442 if (!urb)
443 return -ENOMEM;
444
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100445 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200446 if (!buf) {
447 usb_free_urb(urb);
448 return -ENOMEM;
449 }
450
451 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
452
453 usb_fill_bulk_urb(urb, data->udev, pipe,
454 buf, size, btusb_bulk_complete, hdev);
455
456 urb->transfer_flags |= URB_FREE_BUFFER;
457
Oliver Neukum7bee5492009-08-24 23:44:59 +0200458 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200459 usb_anchor_urb(urb, &data->bulk_anchor);
460
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100461 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200462 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200463 if (err != -EPERM && err != -ENODEV)
464 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200465 hdev->name, urb, -err);
466 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200467 }
468
469 usb_free_urb(urb);
470
471 return err;
472}
473
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200474static void btusb_isoc_complete(struct urb *urb)
475{
476 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100477 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200478 int i, err;
479
480 BT_DBG("%s urb %p status %d count %d", hdev->name,
481 urb, urb->status, urb->actual_length);
482
483 if (!test_bit(HCI_RUNNING, &hdev->flags))
484 return;
485
486 if (urb->status == 0) {
487 for (i = 0; i < urb->number_of_packets; i++) {
488 unsigned int offset = urb->iso_frame_desc[i].offset;
489 unsigned int length = urb->iso_frame_desc[i].actual_length;
490
491 if (urb->iso_frame_desc[i].status)
492 continue;
493
494 hdev->stat.byte_rx += length;
495
496 if (hci_recv_fragment(hdev, HCI_SCODATA_PKT,
497 urb->transfer_buffer + offset,
498 length) < 0) {
499 BT_ERR("%s corrupted SCO packet", hdev->name);
500 hdev->stat.err_rx++;
501 }
502 }
503 }
504
505 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
506 return;
507
508 usb_anchor_urb(urb, &data->isoc_anchor);
509
510 err = usb_submit_urb(urb, GFP_ATOMIC);
511 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200512 /* -EPERM: urb is being killed;
513 * -ENODEV: device got disconnected */
514 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100515 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200516 hdev->name, urb, -err);
517 usb_unanchor_urb(urb);
518 }
519}
520
Jesper Juhl42b16b32011-01-17 00:09:38 +0100521static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200522{
523 int i, offset = 0;
524
525 BT_DBG("len %d mtu %d", len, mtu);
526
527 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
528 i++, offset += mtu, len -= mtu) {
529 urb->iso_frame_desc[i].offset = offset;
530 urb->iso_frame_desc[i].length = mtu;
531 }
532
533 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
534 urb->iso_frame_desc[i].offset = offset;
535 urb->iso_frame_desc[i].length = len;
536 i++;
537 }
538
539 urb->number_of_packets = i;
540}
541
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100542static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200543{
David Herrmann155961e2012-02-09 21:58:32 +0100544 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200545 struct urb *urb;
546 unsigned char *buf;
547 unsigned int pipe;
548 int err, size;
549
550 BT_DBG("%s", hdev->name);
551
552 if (!data->isoc_rx_ep)
553 return -ENODEV;
554
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100555 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200556 if (!urb)
557 return -ENOMEM;
558
559 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
560 BTUSB_MAX_ISOC_FRAMES;
561
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100562 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200563 if (!buf) {
564 usb_free_urb(urb);
565 return -ENOMEM;
566 }
567
568 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
569
Bing Zhaofa0fb932011-12-20 18:19:00 -0800570 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
571 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200572
573 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200574
575 __fill_isoc_descriptor(urb, size,
576 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
577
578 usb_anchor_urb(urb, &data->isoc_anchor);
579
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100580 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200581 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200582 if (err != -EPERM && err != -ENODEV)
583 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200584 hdev->name, urb, -err);
585 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200586 }
587
588 usb_free_urb(urb);
589
590 return err;
591}
592
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200593static void btusb_tx_complete(struct urb *urb)
594{
595 struct sk_buff *skb = urb->context;
596 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100597 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200598
599 BT_DBG("%s urb %p status %d count %d", hdev->name,
600 urb, urb->status, urb->actual_length);
601
602 if (!test_bit(HCI_RUNNING, &hdev->flags))
603 goto done;
604
605 if (!urb->status)
606 hdev->stat.byte_tx += urb->transfer_buffer_length;
607 else
608 hdev->stat.err_tx++;
609
610done:
611 spin_lock(&data->txlock);
612 data->tx_in_flight--;
613 spin_unlock(&data->txlock);
614
615 kfree(urb->setup_packet);
616
617 kfree_skb(skb);
618}
619
620static void btusb_isoc_tx_complete(struct urb *urb)
621{
622 struct sk_buff *skb = urb->context;
623 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200624
625 BT_DBG("%s urb %p status %d count %d", hdev->name,
626 urb, urb->status, urb->actual_length);
627
628 if (!test_bit(HCI_RUNNING, &hdev->flags))
629 goto done;
630
631 if (!urb->status)
632 hdev->stat.byte_tx += urb->transfer_buffer_length;
633 else
634 hdev->stat.err_tx++;
635
636done:
637 kfree(urb->setup_packet);
638
639 kfree_skb(skb);
640}
641
642static int btusb_open(struct hci_dev *hdev)
643{
David Herrmann155961e2012-02-09 21:58:32 +0100644 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200645 int err;
646
647 BT_DBG("%s", hdev->name);
648
Oliver Neukum7bee5492009-08-24 23:44:59 +0200649 err = usb_autopm_get_interface(data->intf);
650 if (err < 0)
651 return err;
652
653 data->intf->needs_remote_wakeup = 1;
654
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200655 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200656 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200657
658 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200659 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200660
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100661 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100662 if (err < 0)
663 goto failed;
664
665 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200666 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100667 usb_kill_anchored_urbs(&data->intr_anchor);
668 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200669 }
670
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100671 set_bit(BTUSB_BULK_RUNNING, &data->flags);
672 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
673
Oliver Neukum7bee5492009-08-24 23:44:59 +0200674done:
675 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100676 return 0;
677
678failed:
679 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
680 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200681 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200682 return err;
683}
684
Oliver Neukum7bee5492009-08-24 23:44:59 +0200685static void btusb_stop_traffic(struct btusb_data *data)
686{
687 usb_kill_anchored_urbs(&data->intr_anchor);
688 usb_kill_anchored_urbs(&data->bulk_anchor);
689 usb_kill_anchored_urbs(&data->isoc_anchor);
690}
691
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200692static int btusb_close(struct hci_dev *hdev)
693{
David Herrmann155961e2012-02-09 21:58:32 +0100694 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200695 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200696
697 BT_DBG("%s", hdev->name);
698
699 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
700 return 0;
701
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200702 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800703 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200704
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200705 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200706 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200707 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200708
709 btusb_stop_traffic(data);
710 err = usb_autopm_get_interface(data->intf);
711 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100712 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200713
714 data->intf->needs_remote_wakeup = 0;
715 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200716
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100717failed:
718 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200719 return 0;
720}
721
722static int btusb_flush(struct hci_dev *hdev)
723{
David Herrmann155961e2012-02-09 21:58:32 +0100724 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200725
726 BT_DBG("%s", hdev->name);
727
728 usb_kill_anchored_urbs(&data->tx_anchor);
729
730 return 0;
731}
732
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700733static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200734{
David Herrmann155961e2012-02-09 21:58:32 +0100735 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200736 struct usb_ctrlrequest *dr;
737 struct urb *urb;
738 unsigned int pipe;
739 int err;
740
741 BT_DBG("%s", hdev->name);
742
743 if (!test_bit(HCI_RUNNING, &hdev->flags))
744 return -EBUSY;
745
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700746 skb->dev = (void *) hdev;
747
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200748 switch (bt_cb(skb)->pkt_type) {
749 case HCI_COMMAND_PKT:
750 urb = usb_alloc_urb(0, GFP_ATOMIC);
751 if (!urb)
752 return -ENOMEM;
753
754 dr = kmalloc(sizeof(*dr), GFP_ATOMIC);
755 if (!dr) {
756 usb_free_urb(urb);
757 return -ENOMEM;
758 }
759
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100760 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200761 dr->bRequest = 0;
762 dr->wIndex = 0;
763 dr->wValue = 0;
764 dr->wLength = __cpu_to_le16(skb->len);
765
766 pipe = usb_sndctrlpipe(data->udev, 0x00);
767
768 usb_fill_control_urb(urb, data->udev, pipe, (void *) dr,
769 skb->data, skb->len, btusb_tx_complete, skb);
770
771 hdev->stat.cmd_tx++;
772 break;
773
774 case HCI_ACLDATA_PKT:
Peter Hurley9fd481e2011-07-14 08:48:32 -0400775 if (!data->bulk_tx_ep)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200776 return -ENODEV;
777
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200778 urb = usb_alloc_urb(0, GFP_ATOMIC);
779 if (!urb)
780 return -ENOMEM;
781
782 pipe = usb_sndbulkpipe(data->udev,
783 data->bulk_tx_ep->bEndpointAddress);
784
785 usb_fill_bulk_urb(urb, data->udev, pipe,
786 skb->data, skb->len, btusb_tx_complete, skb);
787
788 hdev->stat.acl_tx++;
789 break;
790
791 case HCI_SCODATA_PKT:
Marcel Holtmann014f7bc2013-10-10 09:47:55 -0700792 if (!data->isoc_tx_ep || hci_conn_num(hdev, SCO_LINK) < 1)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200793 return -ENODEV;
794
795 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_ATOMIC);
796 if (!urb)
797 return -ENOMEM;
798
799 pipe = usb_sndisocpipe(data->udev,
800 data->isoc_tx_ep->bEndpointAddress);
801
Gustavo F. Padovan03c2d0e2011-02-14 18:53:43 -0300802 usb_fill_int_urb(urb, data->udev, pipe,
803 skb->data, skb->len, btusb_isoc_tx_complete,
804 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200805
806 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200807
808 __fill_isoc_descriptor(urb, skb->len,
809 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
810
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200811 hdev->stat.sco_tx++;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200812 goto skip_waking;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200813
814 default:
815 return -EILSEQ;
816 }
817
Oliver Neukum7bee5492009-08-24 23:44:59 +0200818 err = inc_tx(data);
819 if (err) {
820 usb_anchor_urb(urb, &data->deferred);
821 schedule_work(&data->waker);
822 err = 0;
823 goto done;
824 }
825
826skip_waking:
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200827 usb_anchor_urb(urb, &data->tx_anchor);
828
829 err = usb_submit_urb(urb, GFP_ATOMIC);
830 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +0200831 if (err != -EPERM && err != -ENODEV)
832 BT_ERR("%s urb %p submission failed (%d)",
833 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200834 kfree(urb->setup_packet);
835 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200836 } else {
837 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200838 }
839
Oliver Neukum7bee5492009-08-24 23:44:59 +0200840done:
Cong Wang54a8a792011-11-22 09:32:57 +0800841 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200842 return err;
843}
844
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200845static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
846{
David Herrmann155961e2012-02-09 21:58:32 +0100847 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200848
849 BT_DBG("%s evt %d", hdev->name, evt);
850
Marcel Holtmann014f7bc2013-10-10 09:47:55 -0700851 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
852 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100853 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +0100854 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200855}
856
Jesper Juhl42b16b32011-01-17 00:09:38 +0100857static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858{
David Herrmann155961e2012-02-09 21:58:32 +0100859 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200860 struct usb_interface *intf = data->isoc;
861 struct usb_endpoint_descriptor *ep_desc;
862 int i, err;
863
864 if (!data->isoc)
865 return -ENODEV;
866
867 err = usb_set_interface(data->udev, 1, altsetting);
868 if (err < 0) {
869 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
870 return err;
871 }
872
873 data->isoc_altsetting = altsetting;
874
875 data->isoc_tx_ep = NULL;
876 data->isoc_rx_ep = NULL;
877
878 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
879 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
880
881 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
882 data->isoc_tx_ep = ep_desc;
883 continue;
884 }
885
886 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
887 data->isoc_rx_ep = ep_desc;
888 continue;
889 }
890 }
891
892 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
893 BT_ERR("%s invalid SCO descriptors", hdev->name);
894 return -ENODEV;
895 }
896
897 return 0;
898}
899
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200900static void btusb_work(struct work_struct *work)
901{
902 struct btusb_data *data = container_of(work, struct btusb_data, work);
903 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +0200904 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200905 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200906
Marcel Holtmann014f7bc2013-10-10 09:47:55 -0700907 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300908 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100909 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200910 if (err < 0) {
911 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
912 usb_kill_anchored_urbs(&data->isoc_anchor);
913 return;
914 }
915
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300916 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200917 }
Mikel Astizf4001d22012-04-11 08:48:51 +0200918
919 if (hdev->voice_setting & 0x0020) {
920 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann014f7bc2013-10-10 09:47:55 -0700921 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +0200922 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -0700923 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +0200924 }
925
926 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200927 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
928 usb_kill_anchored_urbs(&data->isoc_anchor);
929
Mikel Astizf4001d22012-04-11 08:48:51 +0200930 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200931 return;
932 }
933
934 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100935 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200936 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
937 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100938 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200939 }
940 } else {
941 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
942 usb_kill_anchored_urbs(&data->isoc_anchor);
943
944 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300945 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +0100946 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200947 }
948}
949
Oliver Neukum7bee5492009-08-24 23:44:59 +0200950static void btusb_waker(struct work_struct *work)
951{
952 struct btusb_data *data = container_of(work, struct btusb_data, waker);
953 int err;
954
955 err = usb_autopm_get_interface(data->intf);
956 if (err < 0)
957 return;
958
959 usb_autopm_put_interface(data->intf);
960}
961
Marcel Holtmann9f8f9622013-04-10 08:11:35 -0700962static int btusb_setup_bcm92035(struct hci_dev *hdev)
963{
964 struct sk_buff *skb;
965 u8 val = 0x00;
966
967 BT_DBG("%s", hdev->name);
968
969 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
970 if (IS_ERR(skb))
971 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
972 else
973 kfree_skb(skb);
974
975 return 0;
976}
977
Marcel Holtmann81cac642014-01-03 03:02:36 -0800978static int btusb_setup_csr(struct hci_dev *hdev)
979{
980 struct hci_rp_read_local_version *rp;
981 struct sk_buff *skb;
982 int ret;
983
984 BT_DBG("%s", hdev->name);
985
986 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
987 HCI_INIT_TIMEOUT);
988 if (IS_ERR(skb)) {
989 BT_ERR("Reading local version failed (%ld)", -PTR_ERR(skb));
990 return -PTR_ERR(skb);
991 }
992
993 rp = (struct hci_rp_read_local_version *) skb->data;
994
995 if (!rp->status) {
996 if (le16_to_cpu(rp->manufacturer) != 10) {
997 /* Clear the reset quirk since this is not an actual
998 * early Bluetooth 1.1 device from CSR.
999 */
1000 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1001
1002 /* These fake CSR controllers have all a broken
1003 * stored link key handling and so just disable it.
1004 */
1005 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1006 &hdev->quirks);
1007 }
1008 }
1009
1010 ret = -bt_to_errno(rp->status);
1011
1012 kfree_skb(skb);
1013
1014 return ret;
1015}
1016
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001017struct intel_version {
1018 u8 status;
1019 u8 hw_platform;
1020 u8 hw_variant;
1021 u8 hw_revision;
1022 u8 fw_variant;
1023 u8 fw_revision;
1024 u8 fw_build_num;
1025 u8 fw_build_ww;
1026 u8 fw_build_yy;
1027 u8 fw_patch_num;
1028} __packed;
1029
1030static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
1031 struct intel_version *ver)
1032{
1033 const struct firmware *fw;
1034 char fwname[64];
1035 int ret;
1036
1037 snprintf(fwname, sizeof(fwname),
1038 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1039 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1040 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1041 ver->fw_build_ww, ver->fw_build_yy);
1042
1043 ret = request_firmware(&fw, fwname, &hdev->dev);
1044 if (ret < 0) {
1045 if (ret == -EINVAL) {
1046 BT_ERR("%s Intel firmware file request failed (%d)",
1047 hdev->name, ret);
1048 return NULL;
1049 }
1050
1051 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1052 hdev->name, fwname, ret);
1053
1054 /* If the correct firmware patch file is not found, use the
1055 * default firmware patch file instead
1056 */
1057 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1058 ver->hw_platform, ver->hw_variant);
1059 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1060 BT_ERR("%s failed to open default Intel fw file: %s",
1061 hdev->name, fwname);
1062 return NULL;
1063 }
1064 }
1065
1066 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1067
1068 return fw;
1069}
1070
1071static int btusb_setup_intel_patching(struct hci_dev *hdev,
1072 const struct firmware *fw,
1073 const u8 **fw_ptr, int *disable_patch)
1074{
1075 struct sk_buff *skb;
1076 struct hci_command_hdr *cmd;
1077 const u8 *cmd_param;
1078 struct hci_event_hdr *evt = NULL;
1079 const u8 *evt_param = NULL;
1080 int remain = fw->size - (*fw_ptr - fw->data);
1081
1082 /* The first byte indicates the types of the patch command or event.
1083 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1084 * in the current firmware buffer doesn't start with 0x01 or
1085 * the size of remain buffer is smaller than HCI command header,
1086 * the firmware file is corrupted and it should stop the patching
1087 * process.
1088 */
1089 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1090 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1091 return -EINVAL;
1092 }
1093 (*fw_ptr)++;
1094 remain--;
1095
1096 cmd = (struct hci_command_hdr *)(*fw_ptr);
1097 *fw_ptr += sizeof(*cmd);
1098 remain -= sizeof(*cmd);
1099
1100 /* Ensure that the remain firmware data is long enough than the length
1101 * of command parameter. If not, the firmware file is corrupted.
1102 */
1103 if (remain < cmd->plen) {
1104 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1105 return -EFAULT;
1106 }
1107
1108 /* If there is a command that loads a patch in the firmware
1109 * file, then enable the patch upon success, otherwise just
1110 * disable the manufacturer mode, for example patch activation
1111 * is not required when the default firmware patch file is used
1112 * because there are no patch data to load.
1113 */
1114 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1115 *disable_patch = 0;
1116
1117 cmd_param = *fw_ptr;
1118 *fw_ptr += cmd->plen;
1119 remain -= cmd->plen;
1120
1121 /* This reads the expected events when the above command is sent to the
1122 * device. Some vendor commands expects more than one events, for
1123 * example command status event followed by vendor specific event.
1124 * For this case, it only keeps the last expected event. so the command
1125 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1126 * last expected event.
1127 */
1128 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1129 (*fw_ptr)++;
1130 remain--;
1131
1132 evt = (struct hci_event_hdr *)(*fw_ptr);
1133 *fw_ptr += sizeof(*evt);
1134 remain -= sizeof(*evt);
1135
1136 if (remain < evt->plen) {
1137 BT_ERR("%s Intel fw corrupted: invalid evt len",
1138 hdev->name);
1139 return -EFAULT;
1140 }
1141
1142 evt_param = *fw_ptr;
1143 *fw_ptr += evt->plen;
1144 remain -= evt->plen;
1145 }
1146
1147 /* Every HCI commands in the firmware file has its correspond event.
1148 * If event is not found or remain is smaller than zero, the firmware
1149 * file is corrupted.
1150 */
1151 if (!evt || !evt_param || remain < 0) {
1152 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1153 return -EFAULT;
1154 }
1155
1156 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1157 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1158 if (IS_ERR(skb)) {
1159 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1160 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001161 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001162 }
1163
1164 /* It ensures that the returned event matches the event data read from
1165 * the firmware file. At fist, it checks the length and then
1166 * the contents of the event.
1167 */
1168 if (skb->len != evt->plen) {
1169 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1170 le16_to_cpu(cmd->opcode));
1171 kfree_skb(skb);
1172 return -EFAULT;
1173 }
1174
1175 if (memcmp(skb->data, evt_param, evt->plen)) {
1176 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1177 hdev->name, le16_to_cpu(cmd->opcode));
1178 kfree_skb(skb);
1179 return -EFAULT;
1180 }
1181 kfree_skb(skb);
1182
1183 return 0;
1184}
1185
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001186#define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1187
1188static int btusb_check_bdaddr_intel(struct hci_dev *hdev)
1189{
1190 struct sk_buff *skb;
1191 struct hci_rp_read_bd_addr *rp;
1192
1193 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1194 HCI_INIT_TIMEOUT);
1195 if (IS_ERR(skb)) {
1196 BT_ERR("%s reading Intel device address failed (%ld)",
1197 hdev->name, PTR_ERR(skb));
1198 return PTR_ERR(skb);
1199 }
1200
1201 if (skb->len != sizeof(*rp)) {
1202 BT_ERR("%s Intel device address length mismatch", hdev->name);
1203 kfree_skb(skb);
1204 return -EIO;
1205 }
1206
1207 rp = (struct hci_rp_read_bd_addr *) skb->data;
1208 if (rp->status) {
1209 BT_ERR("%s Intel device address result failed (%02x)",
1210 hdev->name, rp->status);
1211 kfree_skb(skb);
1212 return -bt_to_errno(rp->status);
1213 }
1214
1215 /* For some Intel based controllers, the default Bluetooth device
1216 * address 00:03:19:9E:8B:00 can be found. These controllers are
1217 * fully operational, but have the danger of duplicate addresses
1218 * and that in turn can cause problems with Bluetooth operation.
1219 */
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001220 if (!bacmp(&rp->bdaddr, BDADDR_INTEL)) {
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001221 BT_ERR("%s found Intel default device address (%pMR)",
1222 hdev->name, &rp->bdaddr);
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001223 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1224 }
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001225
1226 kfree_skb(skb);
1227
1228 return 0;
1229}
1230
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001231static int btusb_setup_intel(struct hci_dev *hdev)
1232{
1233 struct sk_buff *skb;
1234 const struct firmware *fw;
1235 const u8 *fw_ptr;
1236 int disable_patch;
1237 struct intel_version *ver;
1238
1239 const u8 mfg_enable[] = { 0x01, 0x00 };
1240 const u8 mfg_disable[] = { 0x00, 0x00 };
1241 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1242 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1243
1244 BT_DBG("%s", hdev->name);
1245
1246 /* The controller has a bug with the first HCI command sent to it
1247 * returning number of completed commands as zero. This would stall the
1248 * command processing in the Bluetooth core.
1249 *
1250 * As a workaround, send HCI Reset command first which will reset the
1251 * number of completed commands and allow normal command processing
1252 * from now on.
1253 */
1254 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1255 if (IS_ERR(skb)) {
1256 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1257 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001258 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001259 }
1260 kfree_skb(skb);
1261
1262 /* Read Intel specific controller version first to allow selection of
1263 * which firmware file to load.
1264 *
1265 * The returned information are hardware variant and revision plus
1266 * firmware variant, revision and build number.
1267 */
1268 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1269 if (IS_ERR(skb)) {
1270 BT_ERR("%s reading Intel fw version command failed (%ld)",
1271 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001272 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001273 }
1274
1275 if (skb->len != sizeof(*ver)) {
1276 BT_ERR("%s Intel version event length mismatch", hdev->name);
1277 kfree_skb(skb);
1278 return -EIO;
1279 }
1280
1281 ver = (struct intel_version *)skb->data;
1282 if (ver->status) {
1283 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1284 ver->status);
1285 kfree_skb(skb);
1286 return -bt_to_errno(ver->status);
1287 }
1288
1289 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1290 hdev->name, ver->hw_platform, ver->hw_variant,
1291 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1292 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1293 ver->fw_patch_num);
1294
1295 /* fw_patch_num indicates the version of patch the device currently
1296 * have. If there is no patch data in the device, it is always 0x00.
1297 * So, if it is other than 0x00, no need to patch the deivce again.
1298 */
1299 if (ver->fw_patch_num) {
1300 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1301 hdev->name, ver->fw_patch_num);
1302 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001303 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001304 return 0;
1305 }
1306
1307 /* Opens the firmware patch file based on the firmware version read
1308 * from the controller. If it fails to open the matching firmware
1309 * patch file, it tries to open the default firmware patch file.
1310 * If no patch file is found, allow the device to operate without
1311 * a patch.
1312 */
1313 fw = btusb_setup_intel_get_fw(hdev, ver);
1314 if (!fw) {
1315 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001316 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001317 return 0;
1318 }
1319 fw_ptr = fw->data;
1320
1321 /* This Intel specific command enables the manufacturer mode of the
1322 * controller.
1323 *
1324 * Only while this mode is enabled, the driver can download the
1325 * firmware patch data and configuration parameters.
1326 */
1327 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1328 if (IS_ERR(skb)) {
1329 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1330 hdev->name, PTR_ERR(skb));
1331 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001332 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001333 }
1334
1335 if (skb->data[0]) {
1336 u8 evt_status = skb->data[0];
1337 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1338 hdev->name, evt_status);
1339 kfree_skb(skb);
1340 release_firmware(fw);
1341 return -bt_to_errno(evt_status);
1342 }
1343 kfree_skb(skb);
1344
1345 disable_patch = 1;
1346
1347 /* The firmware data file consists of list of Intel specific HCI
1348 * commands and its expected events. The first byte indicates the
1349 * type of the message, either HCI command or HCI event.
1350 *
1351 * It reads the command and its expected event from the firmware file,
1352 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1353 * the returned event is compared with the event read from the firmware
1354 * file and it will continue until all the messages are downloaded to
1355 * the controller.
1356 *
1357 * Once the firmware patching is completed successfully,
1358 * the manufacturer mode is disabled with reset and activating the
1359 * downloaded patch.
1360 *
1361 * If the firmware patching fails, the manufacturer mode is
1362 * disabled with reset and deactivating the patch.
1363 *
1364 * If the default patch file is used, no reset is done when disabling
1365 * the manufacturer.
1366 */
1367 while (fw->size > fw_ptr - fw->data) {
1368 int ret;
1369
1370 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1371 &disable_patch);
1372 if (ret < 0)
1373 goto exit_mfg_deactivate;
1374 }
1375
1376 release_firmware(fw);
1377
1378 if (disable_patch)
1379 goto exit_mfg_disable;
1380
1381 /* Patching completed successfully and disable the manufacturer mode
1382 * with reset and activate the downloaded firmware patches.
1383 */
1384 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1385 mfg_reset_activate, HCI_INIT_TIMEOUT);
1386 if (IS_ERR(skb)) {
1387 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1388 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001389 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001390 }
1391 kfree_skb(skb);
1392
1393 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1394 hdev->name);
1395
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001396 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001397 return 0;
1398
1399exit_mfg_disable:
1400 /* Disable the manufacturer mode without reset */
1401 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1402 HCI_INIT_TIMEOUT);
1403 if (IS_ERR(skb)) {
1404 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1405 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001406 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001407 }
1408 kfree_skb(skb);
1409
1410 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001411
1412 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001413 return 0;
1414
1415exit_mfg_deactivate:
1416 release_firmware(fw);
1417
1418 /* Patching failed. Disable the manufacturer mode with reset and
1419 * deactivate the downloaded firmware patches.
1420 */
1421 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1422 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1423 if (IS_ERR(skb)) {
1424 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1425 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001426 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001427 }
1428 kfree_skb(skb);
1429
1430 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1431 hdev->name);
1432
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001433 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001434 return 0;
1435}
1436
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02001437static int btusb_set_bdaddr_intel(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1438{
1439 struct sk_buff *skb;
1440 long ret;
1441
1442 skb = __hci_cmd_sync(hdev, 0xfc31, 6, bdaddr, HCI_INIT_TIMEOUT);
1443 if (IS_ERR(skb)) {
1444 ret = PTR_ERR(skb);
1445 BT_ERR("%s: changing Intel device address failed (%ld)",
1446 hdev->name, ret);
1447 return ret;
1448 }
1449 kfree_skb(skb);
1450
1451 return 0;
1452}
1453
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001454#define BDADDR_BCM20702A0 (&(bdaddr_t) {{0x00, 0xa0, 0x02, 0x70, 0x20, 0x00}})
1455
Petri Gynther10d4c672014-05-08 15:50:01 -07001456static int btusb_setup_bcm_patchram(struct hci_dev *hdev)
1457{
1458 struct btusb_data *data = hci_get_drvdata(hdev);
1459 struct usb_device *udev = data->udev;
1460 char fw_name[64];
1461 const struct firmware *fw;
1462 const u8 *fw_ptr;
1463 size_t fw_size;
1464 const struct hci_command_hdr *cmd;
1465 const u8 *cmd_param;
1466 u16 opcode;
1467 struct sk_buff *skb;
1468 struct hci_rp_read_local_version *ver;
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001469 struct hci_rp_read_bd_addr *bda;
Petri Gynther10d4c672014-05-08 15:50:01 -07001470 long ret;
1471
1472 snprintf(fw_name, sizeof(fw_name), "brcm/%s-%04x-%04x.hcd",
1473 udev->product ? udev->product : "BCM",
1474 le16_to_cpu(udev->descriptor.idVendor),
1475 le16_to_cpu(udev->descriptor.idProduct));
1476
1477 ret = request_firmware(&fw, fw_name, &hdev->dev);
1478 if (ret < 0) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001479 BT_INFO("%s: BCM: patch %s not found", hdev->name, fw_name);
Petri Gynther10d4c672014-05-08 15:50:01 -07001480 return 0;
1481 }
1482
1483 /* Reset */
1484 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1485 if (IS_ERR(skb)) {
1486 ret = PTR_ERR(skb);
1487 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1488 goto done;
1489 }
1490 kfree_skb(skb);
1491
1492 /* Read Local Version Info */
1493 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1494 HCI_INIT_TIMEOUT);
1495 if (IS_ERR(skb)) {
1496 ret = PTR_ERR(skb);
1497 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1498 hdev->name, ret);
1499 goto done;
1500 }
1501
1502 if (skb->len != sizeof(*ver)) {
1503 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1504 hdev->name);
1505 kfree_skb(skb);
1506 ret = -EIO;
1507 goto done;
1508 }
1509
1510 ver = (struct hci_rp_read_local_version *) skb->data;
1511 BT_INFO("%s: BCM: patching hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1512 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1513 ver->lmp_ver, ver->lmp_subver);
1514 kfree_skb(skb);
1515
1516 /* Start Download */
1517 skb = __hci_cmd_sync(hdev, 0xfc2e, 0, NULL, HCI_INIT_TIMEOUT);
1518 if (IS_ERR(skb)) {
1519 ret = PTR_ERR(skb);
1520 BT_ERR("%s: BCM: Download Minidrv command failed (%ld)",
1521 hdev->name, ret);
1522 goto reset_fw;
1523 }
1524 kfree_skb(skb);
1525
1526 /* 50 msec delay after Download Minidrv completes */
1527 msleep(50);
1528
1529 fw_ptr = fw->data;
1530 fw_size = fw->size;
1531
1532 while (fw_size >= sizeof(*cmd)) {
1533 cmd = (struct hci_command_hdr *) fw_ptr;
1534 fw_ptr += sizeof(*cmd);
1535 fw_size -= sizeof(*cmd);
1536
1537 if (fw_size < cmd->plen) {
1538 BT_ERR("%s: BCM: patch %s is corrupted",
1539 hdev->name, fw_name);
1540 ret = -EINVAL;
1541 goto reset_fw;
1542 }
1543
1544 cmd_param = fw_ptr;
1545 fw_ptr += cmd->plen;
1546 fw_size -= cmd->plen;
1547
1548 opcode = le16_to_cpu(cmd->opcode);
1549
1550 skb = __hci_cmd_sync(hdev, opcode, cmd->plen, cmd_param,
1551 HCI_INIT_TIMEOUT);
1552 if (IS_ERR(skb)) {
1553 ret = PTR_ERR(skb);
1554 BT_ERR("%s: BCM: patch command %04x failed (%ld)",
1555 hdev->name, opcode, ret);
1556 goto reset_fw;
1557 }
1558 kfree_skb(skb);
1559 }
1560
1561 /* 250 msec delay after Launch Ram completes */
1562 msleep(250);
1563
1564reset_fw:
1565 /* Reset */
1566 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1567 if (IS_ERR(skb)) {
1568 ret = PTR_ERR(skb);
1569 BT_ERR("%s: HCI_OP_RESET failed (%ld)", hdev->name, ret);
1570 goto done;
1571 }
1572 kfree_skb(skb);
1573
1574 /* Read Local Version Info */
1575 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1576 HCI_INIT_TIMEOUT);
1577 if (IS_ERR(skb)) {
1578 ret = PTR_ERR(skb);
1579 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1580 hdev->name, ret);
1581 goto done;
1582 }
1583
1584 if (skb->len != sizeof(*ver)) {
1585 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1586 hdev->name);
1587 kfree_skb(skb);
1588 ret = -EIO;
1589 goto done;
1590 }
1591
1592 ver = (struct hci_rp_read_local_version *) skb->data;
1593 BT_INFO("%s: BCM: firmware hci_ver=%02x hci_rev=%04x lmp_ver=%02x "
1594 "lmp_subver=%04x", hdev->name, ver->hci_ver, ver->hci_rev,
1595 ver->lmp_ver, ver->lmp_subver);
1596 kfree_skb(skb);
1597
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001598 /* Read BD Address */
1599 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1600 HCI_INIT_TIMEOUT);
1601 if (IS_ERR(skb)) {
1602 ret = PTR_ERR(skb);
1603 BT_ERR("%s: HCI_OP_READ_BD_ADDR failed (%ld)",
1604 hdev->name, ret);
1605 goto done;
1606 }
1607
1608 if (skb->len != sizeof(*bda)) {
1609 BT_ERR("%s: HCI_OP_READ_BD_ADDR event length mismatch",
1610 hdev->name);
1611 kfree_skb(skb);
1612 ret = -EIO;
1613 goto done;
1614 }
1615
1616 bda = (struct hci_rp_read_bd_addr *) skb->data;
1617 if (bda->status) {
1618 BT_ERR("%s: HCI_OP_READ_BD_ADDR error status (%02x)",
1619 hdev->name, bda->status);
1620 kfree_skb(skb);
1621 ret = -bt_to_errno(bda->status);
1622 goto done;
1623 }
1624
1625 /* The address 00:20:70:02:A0:00 indicates a BCM20702A0 controller
1626 * with no configured address.
1627 */
Marcel Holtmann849e5082014-07-04 16:54:39 +02001628 if (!bacmp(&bda->bdaddr, BDADDR_BCM20702A0)) {
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001629 BT_INFO("%s: BCM: using default device address (%pMR)",
1630 hdev->name, &bda->bdaddr);
Marcel Holtmann849e5082014-07-04 16:54:39 +02001631 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1632 }
Marcel Holtmannc8abb732014-07-02 12:38:22 +02001633
1634 kfree_skb(skb);
1635
Petri Gynther10d4c672014-05-08 15:50:01 -07001636done:
1637 release_firmware(fw);
1638
1639 return ret;
1640}
1641
Marcel Holtmannabbaf502014-07-02 00:53:48 +02001642static int btusb_set_bdaddr_bcm(struct hci_dev *hdev, const bdaddr_t *bdaddr)
1643{
1644 struct sk_buff *skb;
1645 long ret;
1646
1647 skb = __hci_cmd_sync(hdev, 0xfc01, 6, bdaddr, HCI_INIT_TIMEOUT);
1648 if (IS_ERR(skb)) {
1649 ret = PTR_ERR(skb);
1650 BT_ERR("%s: BCM: Change address command failed (%ld)",
1651 hdev->name, ret);
1652 return ret;
1653 }
1654 kfree_skb(skb);
1655
1656 return 0;
1657}
1658
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001659static int btusb_probe(struct usb_interface *intf,
1660 const struct usb_device_id *id)
1661{
1662 struct usb_endpoint_descriptor *ep_desc;
1663 struct btusb_data *data;
1664 struct hci_dev *hdev;
1665 int i, err;
1666
1667 BT_DBG("intf %p id %p", intf, id);
1668
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001669 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001670 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
1671 return -ENODEV;
1672
1673 if (!id->driver_info) {
1674 const struct usb_device_id *match;
1675 match = usb_match_id(intf, blacklist_table);
1676 if (match)
1677 id = match;
1678 }
1679
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001680 if (id->driver_info == BTUSB_IGNORE)
1681 return -ENODEV;
1682
Steven.Li2d25f8b2011-07-01 14:02:36 +08001683 if (id->driver_info & BTUSB_ATH3012) {
1684 struct usb_device *udev = interface_to_usbdev(intf);
1685
1686 /* Old firmware would otherwise let ath3k driver load
1687 * patch and sysconfig files */
1688 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
1689 return -ENODEV;
1690 }
1691
Sachin Kamat98921db2012-07-27 12:38:39 +05301692 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001693 if (!data)
1694 return -ENOMEM;
1695
1696 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1697 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1698
1699 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
1700 data->intr_ep = ep_desc;
1701 continue;
1702 }
1703
1704 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
1705 data->bulk_tx_ep = ep_desc;
1706 continue;
1707 }
1708
1709 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
1710 data->bulk_rx_ep = ep_desc;
1711 continue;
1712 }
1713 }
1714
Sachin Kamat98921db2012-07-27 12:38:39 +05301715 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001716 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001717
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001718 data->cmdreq_type = USB_TYPE_CLASS;
1719
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001720 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001721 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001722
1723 spin_lock_init(&data->lock);
1724
1725 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001726 INIT_WORK(&data->waker, btusb_waker);
1727 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001728
1729 init_usb_anchor(&data->tx_anchor);
1730 init_usb_anchor(&data->intr_anchor);
1731 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001732 init_usb_anchor(&data->isoc_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001733 init_usb_anchor(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001734
1735 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05301736 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001737 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001738
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001739 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01001740 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001741
1742 data->hdev = hdev;
1743
1744 SET_HCIDEV_DEV(hdev, &intf->dev);
1745
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001746 hdev->open = btusb_open;
1747 hdev->close = btusb_close;
1748 hdev->flush = btusb_flush;
1749 hdev->send = btusb_send_frame;
1750 hdev->notify = btusb_notify;
1751
1752 if (id->driver_info & BTUSB_BCM92035)
1753 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001754
Marcel Holtmannabbaf502014-07-02 00:53:48 +02001755 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Petri Gynther10d4c672014-05-08 15:50:01 -07001756 hdev->setup = btusb_setup_bcm_patchram;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02001757 hdev->set_bdaddr = btusb_set_bdaddr_bcm;
1758 }
Petri Gynther10d4c672014-05-08 15:50:01 -07001759
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02001760 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001761 hdev->setup = btusb_setup_intel;
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02001762 hdev->set_bdaddr = btusb_set_bdaddr_intel;
1763 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001764
Marcel Holtmann40df7832014-07-06 13:29:58 +02001765 if (id->driver_info & BTUSB_INTEL_BOOT)
1766 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
1767
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001768 /* Interface numbers are hardcoded in the specification */
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001769 data->isoc = usb_ifnum_to_if(data->udev, 1);
1770
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001771 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02001772 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001773
1774 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
1775 if (!disable_scofix)
1776 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
1777 }
1778
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001779 if (id->driver_info & BTUSB_BROKEN_ISOC)
1780 data->isoc = NULL;
1781
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001782 if (id->driver_info & BTUSB_DIGIANSWER) {
1783 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02001784 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001785 }
1786
1787 if (id->driver_info & BTUSB_CSR) {
1788 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001789 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001790
1791 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08001792 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02001793 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001794
1795 /* Fake CSR devices with broken commands */
1796 if (bcdDevice <= 0x100)
1797 hdev->setup = btusb_setup_csr;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001798 }
1799
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001800 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001801 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001802
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01001803 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001804 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
1805 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001806
1807 data->isoc = NULL;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001808 }
1809
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02001810 if (id->driver_info & BTUSB_INTEL_BOOT) {
1811 /* A bug in the bootloader causes that interrupt interface is
1812 * only enabled after receiving SetInterface(0, AltSetting=0).
1813 */
1814 err = usb_set_interface(data->udev, 0, 0);
1815 if (err < 0) {
1816 BT_ERR("failed to set interface 0, alt 0 %d", err);
1817 hci_free_dev(hdev);
1818 return err;
1819 }
1820 }
1821
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001822 if (data->isoc) {
1823 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001824 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001825 if (err < 0) {
1826 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001827 return err;
1828 }
1829 }
1830
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001831 err = hci_register_dev(hdev);
1832 if (err < 0) {
1833 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001834 return err;
1835 }
1836
1837 usb_set_intfdata(intf, data);
1838
1839 return 0;
1840}
1841
1842static void btusb_disconnect(struct usb_interface *intf)
1843{
1844 struct btusb_data *data = usb_get_intfdata(intf);
1845 struct hci_dev *hdev;
1846
1847 BT_DBG("intf %p", intf);
1848
1849 if (!data)
1850 return;
1851
1852 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001853 usb_set_intfdata(data->intf, NULL);
1854
1855 if (data->isoc)
1856 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001857
1858 hci_unregister_dev(hdev);
1859
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02001860 if (intf == data->isoc)
1861 usb_driver_release_interface(&btusb_driver, data->intf);
1862 else if (data->isoc)
1863 usb_driver_release_interface(&btusb_driver, data->isoc);
1864
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001865 hci_free_dev(hdev);
1866}
1867
Oliver Neukum7bee5492009-08-24 23:44:59 +02001868#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001869static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
1870{
1871 struct btusb_data *data = usb_get_intfdata(intf);
1872
1873 BT_DBG("intf %p", intf);
1874
1875 if (data->suspend_count++)
1876 return 0;
1877
Oliver Neukum7bee5492009-08-24 23:44:59 +02001878 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02001879 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02001880 set_bit(BTUSB_SUSPENDING, &data->flags);
1881 spin_unlock_irq(&data->txlock);
1882 } else {
1883 spin_unlock_irq(&data->txlock);
1884 data->suspend_count--;
1885 return -EBUSY;
1886 }
1887
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001888 cancel_work_sync(&data->work);
1889
Oliver Neukum7bee5492009-08-24 23:44:59 +02001890 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001891 usb_kill_anchored_urbs(&data->tx_anchor);
1892
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001893 return 0;
1894}
1895
Oliver Neukum7bee5492009-08-24 23:44:59 +02001896static void play_deferred(struct btusb_data *data)
1897{
1898 struct urb *urb;
1899 int err;
1900
1901 while ((urb = usb_get_from_anchor(&data->deferred))) {
1902 err = usb_submit_urb(urb, GFP_ATOMIC);
1903 if (err < 0)
1904 break;
1905
1906 data->tx_in_flight++;
1907 }
1908 usb_scuttle_anchored_urbs(&data->deferred);
1909}
1910
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001911static int btusb_resume(struct usb_interface *intf)
1912{
1913 struct btusb_data *data = usb_get_intfdata(intf);
1914 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001915 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001916
1917 BT_DBG("intf %p", intf);
1918
1919 if (--data->suspend_count)
1920 return 0;
1921
1922 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001923 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001924
1925 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
1926 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
1927 if (err < 0) {
1928 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001929 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001930 }
1931 }
1932
1933 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001934 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
1935 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001936 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001937 goto failed;
1938 }
1939
1940 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001941 }
1942
1943 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1944 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
1945 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1946 else
1947 btusb_submit_isoc_urb(hdev, GFP_NOIO);
1948 }
1949
Oliver Neukum7bee5492009-08-24 23:44:59 +02001950 spin_lock_irq(&data->txlock);
1951 play_deferred(data);
1952 clear_bit(BTUSB_SUSPENDING, &data->flags);
1953 spin_unlock_irq(&data->txlock);
1954 schedule_work(&data->work);
1955
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001956 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001957
1958failed:
1959 usb_scuttle_anchored_urbs(&data->deferred);
1960done:
1961 spin_lock_irq(&data->txlock);
1962 clear_bit(BTUSB_SUSPENDING, &data->flags);
1963 spin_unlock_irq(&data->txlock);
1964
1965 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001966}
Oliver Neukum7bee5492009-08-24 23:44:59 +02001967#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001968
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001969static struct usb_driver btusb_driver = {
1970 .name = "btusb",
1971 .probe = btusb_probe,
1972 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001973#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01001974 .suspend = btusb_suspend,
1975 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001976#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001977 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02001978 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07001979 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001980};
1981
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08001982module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001983
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02001984module_param(disable_scofix, bool, 0644);
1985MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
1986
1987module_param(force_scofix, bool, 0644);
1988MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
1989
1990module_param(reset, bool, 0644);
1991MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
1992
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001993MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
1994MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
1995MODULE_VERSION(VERSION);
1996MODULE_LICENSE("GPL");