blob: 53275c55c782b9c4347460f6562f3a835f659496 [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Marcel Holtmann5e23b922007-10-20 14:12:34 +020024#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020025#include <linux/usb.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070026#include <linux/firmware.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020027
28#include <net/bluetooth/bluetooth.h>
29#include <net/bluetooth/hci_core.h>
30
Marcel Holtmann1df1f592015-04-05 22:52:11 -070031#include "btbcm.h"
32
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080033#define VERSION "0.7"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020034
Rusty Russell90ab5ee2012-01-13 09:32:20 +103035static bool disable_scofix;
36static bool force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010037
Rusty Russell90ab5ee2012-01-13 09:32:20 +103038static bool reset = 1;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020039
40static struct usb_driver btusb_driver;
41
42#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010043#define BTUSB_DIGIANSWER 0x02
44#define BTUSB_CSR 0x04
45#define BTUSB_SNIFFER 0x08
46#define BTUSB_BCM92035 0x10
47#define BTUSB_BROKEN_ISOC 0x20
48#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080049#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070050#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020051#define BTUSB_INTEL_BOOT 0x200
52#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070053#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080054#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080055#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080056#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000057#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010058#define BTUSB_BCM_APPLE 0x10000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020059
Marcel Holtmann54265202013-10-11 07:46:18 -070060static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020061 /* Generic Bluetooth USB device */
62 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
63
Marcel Holtmann893ba542015-01-28 20:27:34 -080064 /* Generic Bluetooth AMP device */
65 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
66
Henrik Rydberg1fa65352012-08-25 19:28:06 +020067 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010068 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
69 .driver_info = BTUSB_BCM_APPLE },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020070
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080071 /* MediaTek MT76x0E */
72 { USB_DEVICE(0x0e8d, 0x763f) },
73
Oliver Neukumc510eae2011-09-21 11:41:45 +020074 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040075 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020076
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090077 /* Apple MacBookPro 7,1 */
78 { USB_DEVICE(0x05ac, 0x8213) },
79
Cyril Lacoux0a79f672010-07-14 10:29:27 +040080 /* Apple iMac11,1 */
81 { USB_DEVICE(0x05ac, 0x8215) },
82
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090083 /* Apple MacBookPro6,2 */
84 { USB_DEVICE(0x05ac, 0x8218) },
85
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010086 /* Apple MacBookAir3,1, MacBookAir3,2 */
87 { USB_DEVICE(0x05ac, 0x821b) },
88
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040089 /* Apple MacBookAir4,1 */
90 { USB_DEVICE(0x05ac, 0x821f) },
91
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030092 /* Apple MacBookPro8,2 */
93 { USB_DEVICE(0x05ac, 0x821a) },
94
Jurgen Kramerf78b68262011-09-04 18:01:42 +020095 /* Apple MacMini5,1 */
96 { USB_DEVICE(0x05ac, 0x8281) },
97
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020098 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080099 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200100
101 /* Bluetooth Ultraport Module from IBM */
102 { USB_DEVICE(0x04bf, 0x030a) },
103
104 /* ALPS Modules with non-standard id */
105 { USB_DEVICE(0x044e, 0x3001) },
106 { USB_DEVICE(0x044e, 0x3002) },
107
108 /* Ericsson with non-standard id */
109 { USB_DEVICE(0x0bdb, 0x1002) },
110
111 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100112 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200113
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800114 /* Broadcom BCM20702A0 */
115 { USB_DEVICE(0x413c, 0x8197) },
116
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800117 /* Broadcom BCM20702B0 (Dynex/Insignia) */
118 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
119
Steven Harms98514032012-04-13 14:45:55 -0400120 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100121 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
122 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400123
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100124 /* Lite-On Technology - Broadcom based */
125 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
126 .driver_info = BTUSB_BCM_PATCHRAM },
127
Andy Shevchenko0b880062014-02-18 18:26:19 +0200128 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700129 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
130 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300131
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200132 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abda2015-01-17 05:29:12 +0100133 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
134 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200135
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100136 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700137 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
138 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100139
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100140 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700141 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
142 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100143
Marcel Holtmann40df7832014-07-06 13:29:58 +0200144 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200145 { USB_DEVICE(0x8087, 0x0a5a),
146 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200147
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200148 { } /* Terminating entry */
149};
150
151MODULE_DEVICE_TABLE(usb, btusb_table);
152
Marcel Holtmann54265202013-10-11 07:46:18 -0700153static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200154 /* CSR BlueCore devices */
155 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
156
157 /* Broadcom BCM2033 without firmware */
158 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
159
Bala Shanmugambe931122010-11-26 17:35:46 +0530160 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200161 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
162 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200163 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200164 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530165 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200166 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700167 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530168
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800169 /* Atheros AR9285 Malbec with sflash firmware */
170 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
171
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530172 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200173 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
174 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
175 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
176 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
177 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530178 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200179 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
180 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
181 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
182 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700183 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200184 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
185 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200186 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200187 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
188 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100189 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200190 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800191 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800192 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900193 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200194 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100195 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100196 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200197 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800198 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200199 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800200 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800201 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200202 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
203 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800204 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530205 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300206 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300207 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530208 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530209
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800210 /* Atheros AR5BBU12 with sflash firmware */
211 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
212
Michael Gruetzner85d59722012-05-02 22:33:40 +0200213 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530214 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200215 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200216
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000217 /* QCA ROME chipset */
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700218 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
219 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000220
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200221 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100222 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200223 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
224 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200225
226 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100227 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
228 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200229
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200230 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100231 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
232 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200233
234 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100235 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200236
237 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100238 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200239
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100240 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100241 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100242 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200243
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100244 /* Belkin F8T012 and F8T013 devices */
245 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
246 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200247
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100248 /* Asus WL-BTD202 device */
249 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
250
251 /* Kensington Bluetooth USB adapter */
252 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
253
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200254 /* RTX Telecom based adapters with buggy SCO support */
255 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
256 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
257
258 /* CONWISE Technology based adapters with buggy SCO support */
259 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
260
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800261 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
262 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
263
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200264 /* Digianswer devices */
265 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
266 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
267
268 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200269 { USB_DEVICE(0x0a12, 0x0002),
270 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200271
272 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200273 { USB_DEVICE(0x16d3, 0x0002),
274 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200275
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800276 /* Marvell Bluetooth devices */
277 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
278 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
279
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800280 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800281 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700282 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800283 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800284 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700285
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800286 /* Other Intel Bluetooth devices */
287 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
288 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700289
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200290 { } /* Terminating entry */
291};
292
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200293#define BTUSB_MAX_ISOC_FRAMES 10
294
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200295#define BTUSB_INTR_RUNNING 0
296#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200297#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200298#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300299#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800300#define BTUSB_BOOTLOADER 5
301#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800302#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800303#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800304#define BTUSB_BOOTING 9
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200305
306struct btusb_data {
307 struct hci_dev *hdev;
308 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200309 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200310 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200311
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200312 unsigned long flags;
313
314 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200315 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200316
Marcel Holtmann803b5832014-09-16 08:00:29 +0200317 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200318 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200319 int tx_in_flight;
320 spinlock_t txlock;
321
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200322 struct usb_anchor intr_anchor;
323 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200324 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200325 spinlock_t rxlock;
326
327 struct sk_buff *evt_skb;
328 struct sk_buff *acl_skb;
329 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200330
331 struct usb_endpoint_descriptor *intr_ep;
332 struct usb_endpoint_descriptor *bulk_tx_ep;
333 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200334 struct usb_endpoint_descriptor *isoc_tx_ep;
335 struct usb_endpoint_descriptor *isoc_rx_ep;
336
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100337 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800338 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100339
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100340 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200341 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100342 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100343
Marcel Holtmann97307f52015-01-12 13:51:10 -0800344 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100345 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000346
347 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348};
349
Marcel Holtmann803b5832014-09-16 08:00:29 +0200350static inline void btusb_free_frags(struct btusb_data *data)
351{
352 unsigned long flags;
353
354 spin_lock_irqsave(&data->rxlock, flags);
355
356 kfree_skb(data->evt_skb);
357 data->evt_skb = NULL;
358
359 kfree_skb(data->acl_skb);
360 data->acl_skb = NULL;
361
362 kfree_skb(data->sco_skb);
363 data->sco_skb = NULL;
364
365 spin_unlock_irqrestore(&data->rxlock, flags);
366}
367
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200368static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
369{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200370 struct sk_buff *skb;
371 int err = 0;
372
373 spin_lock(&data->rxlock);
374 skb = data->evt_skb;
375
376 while (count) {
377 int len;
378
379 if (!skb) {
380 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
381 if (!skb) {
382 err = -ENOMEM;
383 break;
384 }
385
386 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
387 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
388 }
389
390 len = min_t(uint, bt_cb(skb)->expect, count);
391 memcpy(skb_put(skb, len), buffer, len);
392
393 count -= len;
394 buffer += len;
395 bt_cb(skb)->expect -= len;
396
397 if (skb->len == HCI_EVENT_HDR_SIZE) {
398 /* Complete event header */
399 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
400
401 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
402 kfree_skb(skb);
403 skb = NULL;
404
405 err = -EILSEQ;
406 break;
407 }
408 }
409
410 if (bt_cb(skb)->expect == 0) {
411 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800412 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200413 skb = NULL;
414 }
415 }
416
417 data->evt_skb = skb;
418 spin_unlock(&data->rxlock);
419
420 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200421}
422
423static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
424{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200425 struct sk_buff *skb;
426 int err = 0;
427
428 spin_lock(&data->rxlock);
429 skb = data->acl_skb;
430
431 while (count) {
432 int len;
433
434 if (!skb) {
435 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
436 if (!skb) {
437 err = -ENOMEM;
438 break;
439 }
440
441 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
442 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
443 }
444
445 len = min_t(uint, bt_cb(skb)->expect, count);
446 memcpy(skb_put(skb, len), buffer, len);
447
448 count -= len;
449 buffer += len;
450 bt_cb(skb)->expect -= len;
451
452 if (skb->len == HCI_ACL_HDR_SIZE) {
453 __le16 dlen = hci_acl_hdr(skb)->dlen;
454
455 /* Complete ACL header */
456 bt_cb(skb)->expect = __le16_to_cpu(dlen);
457
458 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
459 kfree_skb(skb);
460 skb = NULL;
461
462 err = -EILSEQ;
463 break;
464 }
465 }
466
467 if (bt_cb(skb)->expect == 0) {
468 /* Complete frame */
469 hci_recv_frame(data->hdev, skb);
470 skb = NULL;
471 }
472 }
473
474 data->acl_skb = skb;
475 spin_unlock(&data->rxlock);
476
477 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200478}
479
480static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
481{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200482 struct sk_buff *skb;
483 int err = 0;
484
485 spin_lock(&data->rxlock);
486 skb = data->sco_skb;
487
488 while (count) {
489 int len;
490
491 if (!skb) {
492 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
493 if (!skb) {
494 err = -ENOMEM;
495 break;
496 }
497
498 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
499 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
500 }
501
502 len = min_t(uint, bt_cb(skb)->expect, count);
503 memcpy(skb_put(skb, len), buffer, len);
504
505 count -= len;
506 buffer += len;
507 bt_cb(skb)->expect -= len;
508
509 if (skb->len == HCI_SCO_HDR_SIZE) {
510 /* Complete SCO header */
511 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
512
513 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
514 kfree_skb(skb);
515 skb = NULL;
516
517 err = -EILSEQ;
518 break;
519 }
520 }
521
522 if (bt_cb(skb)->expect == 0) {
523 /* Complete frame */
524 hci_recv_frame(data->hdev, skb);
525 skb = NULL;
526 }
527 }
528
529 data->sco_skb = skb;
530 spin_unlock(&data->rxlock);
531
532 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200533}
534
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200535static void btusb_intr_complete(struct urb *urb)
536{
537 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100538 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200539 int err;
540
Marcel Holtmann89e75332014-09-16 04:44:50 +0200541 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
542 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200543
544 if (!test_bit(HCI_RUNNING, &hdev->flags))
545 return;
546
547 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200548 hdev->stat.byte_rx += urb->actual_length;
549
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200550 if (btusb_recv_intr(data, urb->transfer_buffer,
551 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200552 BT_ERR("%s corrupted event packet", hdev->name);
553 hdev->stat.err_rx++;
554 }
Champion Chen85560c42014-09-06 14:06:08 -0500555 } else if (urb->status == -ENOENT) {
556 /* Avoid suspend failed when usb_kill_urb */
557 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200558 }
559
560 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
561 return;
562
Oliver Neukum7bee5492009-08-24 23:44:59 +0200563 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200564 usb_anchor_urb(urb, &data->intr_anchor);
565
566 err = usb_submit_urb(urb, GFP_ATOMIC);
567 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200568 /* -EPERM: urb is being killed;
569 * -ENODEV: device got disconnected */
570 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100571 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200572 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200573 usb_unanchor_urb(urb);
574 }
575}
576
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100577static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200578{
David Herrmann155961e2012-02-09 21:58:32 +0100579 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200580 struct urb *urb;
581 unsigned char *buf;
582 unsigned int pipe;
583 int err, size;
584
585 BT_DBG("%s", hdev->name);
586
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200587 if (!data->intr_ep)
588 return -ENODEV;
589
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100590 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200591 if (!urb)
592 return -ENOMEM;
593
594 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
595
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100596 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200597 if (!buf) {
598 usb_free_urb(urb);
599 return -ENOMEM;
600 }
601
602 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
603
604 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200605 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200606
607 urb->transfer_flags |= URB_FREE_BUFFER;
608
609 usb_anchor_urb(urb, &data->intr_anchor);
610
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100611 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200613 if (err != -EPERM && err != -ENODEV)
614 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200615 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200616 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200617 }
618
619 usb_free_urb(urb);
620
621 return err;
622}
623
624static void btusb_bulk_complete(struct urb *urb)
625{
626 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100627 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200628 int err;
629
Marcel Holtmann89e75332014-09-16 04:44:50 +0200630 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
631 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632
633 if (!test_bit(HCI_RUNNING, &hdev->flags))
634 return;
635
636 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200637 hdev->stat.byte_rx += urb->actual_length;
638
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100639 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200640 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200641 BT_ERR("%s corrupted ACL packet", hdev->name);
642 hdev->stat.err_rx++;
643 }
Champion Chen85560c42014-09-06 14:06:08 -0500644 } else if (urb->status == -ENOENT) {
645 /* Avoid suspend failed when usb_kill_urb */
646 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200647 }
648
649 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
650 return;
651
652 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100653 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200654
655 err = usb_submit_urb(urb, GFP_ATOMIC);
656 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200657 /* -EPERM: urb is being killed;
658 * -ENODEV: device got disconnected */
659 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100660 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200661 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200662 usb_unanchor_urb(urb);
663 }
664}
665
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100666static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200667{
David Herrmann155961e2012-02-09 21:58:32 +0100668 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200669 struct urb *urb;
670 unsigned char *buf;
671 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530672 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200673
674 BT_DBG("%s", hdev->name);
675
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200676 if (!data->bulk_rx_ep)
677 return -ENODEV;
678
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100679 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200680 if (!urb)
681 return -ENOMEM;
682
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100683 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200684 if (!buf) {
685 usb_free_urb(urb);
686 return -ENOMEM;
687 }
688
689 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
690
Marcel Holtmann89e75332014-09-16 04:44:50 +0200691 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
692 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200693
694 urb->transfer_flags |= URB_FREE_BUFFER;
695
Oliver Neukum7bee5492009-08-24 23:44:59 +0200696 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200697 usb_anchor_urb(urb, &data->bulk_anchor);
698
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100699 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200700 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200701 if (err != -EPERM && err != -ENODEV)
702 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200703 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200704 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200705 }
706
707 usb_free_urb(urb);
708
709 return err;
710}
711
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200712static void btusb_isoc_complete(struct urb *urb)
713{
714 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100715 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200716 int i, err;
717
Marcel Holtmann89e75332014-09-16 04:44:50 +0200718 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
719 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200720
721 if (!test_bit(HCI_RUNNING, &hdev->flags))
722 return;
723
724 if (urb->status == 0) {
725 for (i = 0; i < urb->number_of_packets; i++) {
726 unsigned int offset = urb->iso_frame_desc[i].offset;
727 unsigned int length = urb->iso_frame_desc[i].actual_length;
728
729 if (urb->iso_frame_desc[i].status)
730 continue;
731
732 hdev->stat.byte_rx += length;
733
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200734 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
735 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200736 BT_ERR("%s corrupted SCO packet", hdev->name);
737 hdev->stat.err_rx++;
738 }
739 }
Champion Chen85560c42014-09-06 14:06:08 -0500740 } else if (urb->status == -ENOENT) {
741 /* Avoid suspend failed when usb_kill_urb */
742 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200743 }
744
745 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
746 return;
747
748 usb_anchor_urb(urb, &data->isoc_anchor);
749
750 err = usb_submit_urb(urb, GFP_ATOMIC);
751 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200752 /* -EPERM: urb is being killed;
753 * -ENODEV: device got disconnected */
754 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100755 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200756 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200757 usb_unanchor_urb(urb);
758 }
759}
760
Jesper Juhl42b16b32011-01-17 00:09:38 +0100761static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200762{
763 int i, offset = 0;
764
765 BT_DBG("len %d mtu %d", len, mtu);
766
767 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
768 i++, offset += mtu, len -= mtu) {
769 urb->iso_frame_desc[i].offset = offset;
770 urb->iso_frame_desc[i].length = mtu;
771 }
772
773 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
774 urb->iso_frame_desc[i].offset = offset;
775 urb->iso_frame_desc[i].length = len;
776 i++;
777 }
778
779 urb->number_of_packets = i;
780}
781
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100782static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200783{
David Herrmann155961e2012-02-09 21:58:32 +0100784 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200785 struct urb *urb;
786 unsigned char *buf;
787 unsigned int pipe;
788 int err, size;
789
790 BT_DBG("%s", hdev->name);
791
792 if (!data->isoc_rx_ep)
793 return -ENODEV;
794
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100795 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200796 if (!urb)
797 return -ENOMEM;
798
799 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
800 BTUSB_MAX_ISOC_FRAMES;
801
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100802 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200803 if (!buf) {
804 usb_free_urb(urb);
805 return -ENOMEM;
806 }
807
808 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
809
Bing Zhaofa0fb932011-12-20 18:19:00 -0800810 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200811 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200812
Marcel Holtmann89e75332014-09-16 04:44:50 +0200813 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200814
815 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200816 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200817
818 usb_anchor_urb(urb, &data->isoc_anchor);
819
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100820 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200821 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200822 if (err != -EPERM && err != -ENODEV)
823 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200824 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200825 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200826 }
827
828 usb_free_urb(urb);
829
830 return err;
831}
832
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200833static void btusb_tx_complete(struct urb *urb)
834{
835 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200836 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100837 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200838
Marcel Holtmann89e75332014-09-16 04:44:50 +0200839 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
840 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200841
842 if (!test_bit(HCI_RUNNING, &hdev->flags))
843 goto done;
844
845 if (!urb->status)
846 hdev->stat.byte_tx += urb->transfer_buffer_length;
847 else
848 hdev->stat.err_tx++;
849
850done:
851 spin_lock(&data->txlock);
852 data->tx_in_flight--;
853 spin_unlock(&data->txlock);
854
855 kfree(urb->setup_packet);
856
857 kfree_skb(skb);
858}
859
860static void btusb_isoc_tx_complete(struct urb *urb)
861{
862 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200863 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200864
Marcel Holtmann89e75332014-09-16 04:44:50 +0200865 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
866 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200867
868 if (!test_bit(HCI_RUNNING, &hdev->flags))
869 goto done;
870
871 if (!urb->status)
872 hdev->stat.byte_tx += urb->transfer_buffer_length;
873 else
874 hdev->stat.err_tx++;
875
876done:
877 kfree(urb->setup_packet);
878
879 kfree_skb(skb);
880}
881
882static int btusb_open(struct hci_dev *hdev)
883{
David Herrmann155961e2012-02-09 21:58:32 +0100884 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200885 int err;
886
887 BT_DBG("%s", hdev->name);
888
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000889 /* Patching USB firmware files prior to starting any URBs of HCI path
890 * It is more safe to use USB bulk channel for downloading USB patch
891 */
892 if (data->setup_on_usb) {
893 err = data->setup_on_usb(hdev);
894 if (err <0)
895 return err;
896 }
897
Oliver Neukum7bee5492009-08-24 23:44:59 +0200898 err = usb_autopm_get_interface(data->intf);
899 if (err < 0)
900 return err;
901
902 data->intf->needs_remote_wakeup = 1;
903
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200904 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200905 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200906
907 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200908 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200909
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100910 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100911 if (err < 0)
912 goto failed;
913
914 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200915 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100916 usb_kill_anchored_urbs(&data->intr_anchor);
917 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200918 }
919
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100920 set_bit(BTUSB_BULK_RUNNING, &data->flags);
921 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
922
Oliver Neukum7bee5492009-08-24 23:44:59 +0200923done:
924 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100925 return 0;
926
927failed:
928 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
929 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200930 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200931 return err;
932}
933
Oliver Neukum7bee5492009-08-24 23:44:59 +0200934static void btusb_stop_traffic(struct btusb_data *data)
935{
936 usb_kill_anchored_urbs(&data->intr_anchor);
937 usb_kill_anchored_urbs(&data->bulk_anchor);
938 usb_kill_anchored_urbs(&data->isoc_anchor);
939}
940
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200941static int btusb_close(struct hci_dev *hdev)
942{
David Herrmann155961e2012-02-09 21:58:32 +0100943 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200944 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200945
946 BT_DBG("%s", hdev->name);
947
948 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
949 return 0;
950
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200951 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800952 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200953
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200954 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200955 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200956 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200957
958 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200959 btusb_free_frags(data);
960
Oliver Neukum7bee5492009-08-24 23:44:59 +0200961 err = usb_autopm_get_interface(data->intf);
962 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100963 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200964
965 data->intf->needs_remote_wakeup = 0;
966 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200967
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100968failed:
969 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200970 return 0;
971}
972
973static int btusb_flush(struct hci_dev *hdev)
974{
David Herrmann155961e2012-02-09 21:58:32 +0100975 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200976
977 BT_DBG("%s", hdev->name);
978
979 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200980 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200981
982 return 0;
983}
984
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200985static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200986{
David Herrmann155961e2012-02-09 21:58:32 +0100987 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200988 struct usb_ctrlrequest *dr;
989 struct urb *urb;
990 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200991
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200992 urb = usb_alloc_urb(0, GFP_KERNEL);
993 if (!urb)
994 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200995
Marcel Holtmann047b2ec2014-09-14 09:11:06 +0200996 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
997 if (!dr) {
998 usb_free_urb(urb);
999 return ERR_PTR(-ENOMEM);
1000 }
1001
1002 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001003 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001004 dr->wIndex = 0;
1005 dr->wValue = 0;
1006 dr->wLength = __cpu_to_le16(skb->len);
1007
1008 pipe = usb_sndctrlpipe(data->udev, 0x00);
1009
Marcel Holtmann89e75332014-09-16 04:44:50 +02001010 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001011 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001012
Marcel Holtmann89e75332014-09-16 04:44:50 +02001013 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001014
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001015 return urb;
1016}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001017
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001018static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1019{
1020 struct btusb_data *data = hci_get_drvdata(hdev);
1021 struct urb *urb;
1022 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001023
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001024 if (!data->bulk_tx_ep)
1025 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001026
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001027 urb = usb_alloc_urb(0, GFP_KERNEL);
1028 if (!urb)
1029 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001030
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001031 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001032
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001033 usb_fill_bulk_urb(urb, data->udev, pipe,
1034 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001035
Marcel Holtmann89e75332014-09-16 04:44:50 +02001036 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001037
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001038 return urb;
1039}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001040
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001041static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1042{
1043 struct btusb_data *data = hci_get_drvdata(hdev);
1044 struct urb *urb;
1045 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001046
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001047 if (!data->isoc_tx_ep)
1048 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001049
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001050 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1051 if (!urb)
1052 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001053
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001054 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001055
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001056 usb_fill_int_urb(urb, data->udev, pipe,
1057 skb->data, skb->len, btusb_isoc_tx_complete,
1058 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001059
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001060 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001061
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001062 __fill_isoc_descriptor(urb, skb->len,
1063 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001064
Marcel Holtmann89e75332014-09-16 04:44:50 +02001065 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001066
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001067 return urb;
1068}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001069
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001070static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1071{
1072 struct btusb_data *data = hci_get_drvdata(hdev);
1073 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001074
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001075 usb_anchor_urb(urb, &data->tx_anchor);
1076
Johan Hedberge9753ef2014-09-14 08:49:34 +03001077 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001078 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001079 if (err != -EPERM && err != -ENODEV)
1080 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001081 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001082 kfree(urb->setup_packet);
1083 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001084 } else {
1085 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001086 }
1087
Cong Wang54a8a792011-11-22 09:32:57 +08001088 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001089 return err;
1090}
1091
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001092static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1093{
1094 struct btusb_data *data = hci_get_drvdata(hdev);
1095 unsigned long flags;
1096 bool suspending;
1097
1098 spin_lock_irqsave(&data->txlock, flags);
1099 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1100 if (!suspending)
1101 data->tx_in_flight++;
1102 spin_unlock_irqrestore(&data->txlock, flags);
1103
1104 if (!suspending)
1105 return submit_tx_urb(hdev, urb);
1106
1107 usb_anchor_urb(urb, &data->deferred);
1108 schedule_work(&data->waker);
1109
1110 usb_free_urb(urb);
1111 return 0;
1112}
1113
1114static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1115{
1116 struct urb *urb;
1117
1118 BT_DBG("%s", hdev->name);
1119
1120 if (!test_bit(HCI_RUNNING, &hdev->flags))
1121 return -EBUSY;
1122
1123 switch (bt_cb(skb)->pkt_type) {
1124 case HCI_COMMAND_PKT:
1125 urb = alloc_ctrl_urb(hdev, skb);
1126 if (IS_ERR(urb))
1127 return PTR_ERR(urb);
1128
1129 hdev->stat.cmd_tx++;
1130 return submit_or_queue_tx_urb(hdev, urb);
1131
1132 case HCI_ACLDATA_PKT:
1133 urb = alloc_bulk_urb(hdev, skb);
1134 if (IS_ERR(urb))
1135 return PTR_ERR(urb);
1136
1137 hdev->stat.acl_tx++;
1138 return submit_or_queue_tx_urb(hdev, urb);
1139
1140 case HCI_SCODATA_PKT:
1141 if (hci_conn_num(hdev, SCO_LINK) < 1)
1142 return -ENODEV;
1143
1144 urb = alloc_isoc_urb(hdev, skb);
1145 if (IS_ERR(urb))
1146 return PTR_ERR(urb);
1147
1148 hdev->stat.sco_tx++;
1149 return submit_tx_urb(hdev, urb);
1150 }
1151
1152 return -EILSEQ;
1153}
1154
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001155static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1156{
David Herrmann155961e2012-02-09 21:58:32 +01001157 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001158
1159 BT_DBG("%s evt %d", hdev->name, evt);
1160
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001161 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1162 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001163 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001164 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001165}
1166
Jesper Juhl42b16b32011-01-17 00:09:38 +01001167static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001168{
David Herrmann155961e2012-02-09 21:58:32 +01001169 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001170 struct usb_interface *intf = data->isoc;
1171 struct usb_endpoint_descriptor *ep_desc;
1172 int i, err;
1173
1174 if (!data->isoc)
1175 return -ENODEV;
1176
1177 err = usb_set_interface(data->udev, 1, altsetting);
1178 if (err < 0) {
1179 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1180 return err;
1181 }
1182
1183 data->isoc_altsetting = altsetting;
1184
1185 data->isoc_tx_ep = NULL;
1186 data->isoc_rx_ep = NULL;
1187
1188 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1189 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1190
1191 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1192 data->isoc_tx_ep = ep_desc;
1193 continue;
1194 }
1195
1196 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1197 data->isoc_rx_ep = ep_desc;
1198 continue;
1199 }
1200 }
1201
1202 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1203 BT_ERR("%s invalid SCO descriptors", hdev->name);
1204 return -ENODEV;
1205 }
1206
1207 return 0;
1208}
1209
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001210static void btusb_work(struct work_struct *work)
1211{
1212 struct btusb_data *data = container_of(work, struct btusb_data, work);
1213 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001214 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001215 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001216
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001217 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001218 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001219 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001220 if (err < 0) {
1221 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1222 usb_kill_anchored_urbs(&data->isoc_anchor);
1223 return;
1224 }
1225
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001226 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001227 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001228
1229 if (hdev->voice_setting & 0x0020) {
1230 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001231
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001232 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001233 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001234 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001235 }
1236
1237 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001238 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1239 usb_kill_anchored_urbs(&data->isoc_anchor);
1240
Mikel Astizf4001d22012-04-11 08:48:51 +02001241 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001242 return;
1243 }
1244
1245 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001246 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001247 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1248 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001249 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001250 }
1251 } else {
1252 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1253 usb_kill_anchored_urbs(&data->isoc_anchor);
1254
1255 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001256 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001257 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001258 }
1259}
1260
Oliver Neukum7bee5492009-08-24 23:44:59 +02001261static void btusb_waker(struct work_struct *work)
1262{
1263 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1264 int err;
1265
1266 err = usb_autopm_get_interface(data->intf);
1267 if (err < 0)
1268 return;
1269
1270 usb_autopm_put_interface(data->intf);
1271}
1272
Daniel Drake6576fe42015-02-23 18:16:47 -06001273static struct sk_buff *btusb_read_local_version(struct hci_dev *hdev)
1274{
1275 struct sk_buff *skb;
1276
1277 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1278 HCI_INIT_TIMEOUT);
1279 if (IS_ERR(skb)) {
1280 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1281 hdev->name, PTR_ERR(skb));
1282 return skb;
1283 }
1284
1285 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1286 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1287 hdev->name);
1288 kfree_skb(skb);
1289 return ERR_PTR(-EIO);
1290 }
1291
1292 return skb;
1293}
1294
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001295static int btusb_setup_bcm92035(struct hci_dev *hdev)
1296{
1297 struct sk_buff *skb;
1298 u8 val = 0x00;
1299
1300 BT_DBG("%s", hdev->name);
1301
1302 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1303 if (IS_ERR(skb))
1304 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1305 else
1306 kfree_skb(skb);
1307
1308 return 0;
1309}
1310
Marcel Holtmann81cac642014-01-03 03:02:36 -08001311static int btusb_setup_csr(struct hci_dev *hdev)
1312{
1313 struct hci_rp_read_local_version *rp;
1314 struct sk_buff *skb;
1315 int ret;
1316
1317 BT_DBG("%s", hdev->name);
1318
Daniel Drake6576fe42015-02-23 18:16:47 -06001319 skb = btusb_read_local_version(hdev);
1320 if (IS_ERR(skb))
Marcel Holtmann81cac642014-01-03 03:02:36 -08001321 return -PTR_ERR(skb);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001322
Marcel Holtmann89e75332014-09-16 04:44:50 +02001323 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001324
1325 if (!rp->status) {
1326 if (le16_to_cpu(rp->manufacturer) != 10) {
1327 /* Clear the reset quirk since this is not an actual
1328 * early Bluetooth 1.1 device from CSR.
1329 */
1330 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1331
1332 /* These fake CSR controllers have all a broken
1333 * stored link key handling and so just disable it.
1334 */
1335 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1336 &hdev->quirks);
1337 }
1338 }
1339
1340 ret = -bt_to_errno(rp->status);
1341
1342 kfree_skb(skb);
1343
1344 return ret;
1345}
1346
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001347struct intel_version {
1348 u8 status;
1349 u8 hw_platform;
1350 u8 hw_variant;
1351 u8 hw_revision;
1352 u8 fw_variant;
1353 u8 fw_revision;
1354 u8 fw_build_num;
1355 u8 fw_build_ww;
1356 u8 fw_build_yy;
1357 u8 fw_patch_num;
1358} __packed;
1359
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001360struct intel_boot_params {
1361 __u8 status;
1362 __u8 otp_format;
1363 __u8 otp_content;
1364 __u8 otp_patch;
1365 __le16 dev_revid;
1366 __u8 secure_boot;
1367 __u8 key_from_hdr;
1368 __u8 key_type;
1369 __u8 otp_lock;
1370 __u8 api_lock;
1371 __u8 debug_lock;
1372 bdaddr_t otp_bdaddr;
1373 __u8 min_fw_build_nn;
1374 __u8 min_fw_build_cw;
1375 __u8 min_fw_build_yy;
1376 __u8 limited_cce;
1377 __u8 unlocked_state;
1378} __packed;
1379
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001380static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001381 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001382{
1383 const struct firmware *fw;
1384 char fwname[64];
1385 int ret;
1386
1387 snprintf(fwname, sizeof(fwname),
1388 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1389 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1390 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1391 ver->fw_build_ww, ver->fw_build_yy);
1392
1393 ret = request_firmware(&fw, fwname, &hdev->dev);
1394 if (ret < 0) {
1395 if (ret == -EINVAL) {
1396 BT_ERR("%s Intel firmware file request failed (%d)",
1397 hdev->name, ret);
1398 return NULL;
1399 }
1400
1401 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1402 hdev->name, fwname, ret);
1403
1404 /* If the correct firmware patch file is not found, use the
1405 * default firmware patch file instead
1406 */
1407 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1408 ver->hw_platform, ver->hw_variant);
1409 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1410 BT_ERR("%s failed to open default Intel fw file: %s",
1411 hdev->name, fwname);
1412 return NULL;
1413 }
1414 }
1415
1416 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1417
1418 return fw;
1419}
1420
1421static int btusb_setup_intel_patching(struct hci_dev *hdev,
1422 const struct firmware *fw,
1423 const u8 **fw_ptr, int *disable_patch)
1424{
1425 struct sk_buff *skb;
1426 struct hci_command_hdr *cmd;
1427 const u8 *cmd_param;
1428 struct hci_event_hdr *evt = NULL;
1429 const u8 *evt_param = NULL;
1430 int remain = fw->size - (*fw_ptr - fw->data);
1431
1432 /* The first byte indicates the types of the patch command or event.
1433 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1434 * in the current firmware buffer doesn't start with 0x01 or
1435 * the size of remain buffer is smaller than HCI command header,
1436 * the firmware file is corrupted and it should stop the patching
1437 * process.
1438 */
1439 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1440 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1441 return -EINVAL;
1442 }
1443 (*fw_ptr)++;
1444 remain--;
1445
1446 cmd = (struct hci_command_hdr *)(*fw_ptr);
1447 *fw_ptr += sizeof(*cmd);
1448 remain -= sizeof(*cmd);
1449
1450 /* Ensure that the remain firmware data is long enough than the length
1451 * of command parameter. If not, the firmware file is corrupted.
1452 */
1453 if (remain < cmd->plen) {
1454 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1455 return -EFAULT;
1456 }
1457
1458 /* If there is a command that loads a patch in the firmware
1459 * file, then enable the patch upon success, otherwise just
1460 * disable the manufacturer mode, for example patch activation
1461 * is not required when the default firmware patch file is used
1462 * because there are no patch data to load.
1463 */
1464 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1465 *disable_patch = 0;
1466
1467 cmd_param = *fw_ptr;
1468 *fw_ptr += cmd->plen;
1469 remain -= cmd->plen;
1470
1471 /* This reads the expected events when the above command is sent to the
1472 * device. Some vendor commands expects more than one events, for
1473 * example command status event followed by vendor specific event.
1474 * For this case, it only keeps the last expected event. so the command
1475 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1476 * last expected event.
1477 */
1478 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1479 (*fw_ptr)++;
1480 remain--;
1481
1482 evt = (struct hci_event_hdr *)(*fw_ptr);
1483 *fw_ptr += sizeof(*evt);
1484 remain -= sizeof(*evt);
1485
1486 if (remain < evt->plen) {
1487 BT_ERR("%s Intel fw corrupted: invalid evt len",
1488 hdev->name);
1489 return -EFAULT;
1490 }
1491
1492 evt_param = *fw_ptr;
1493 *fw_ptr += evt->plen;
1494 remain -= evt->plen;
1495 }
1496
1497 /* Every HCI commands in the firmware file has its correspond event.
1498 * If event is not found or remain is smaller than zero, the firmware
1499 * file is corrupted.
1500 */
1501 if (!evt || !evt_param || remain < 0) {
1502 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1503 return -EFAULT;
1504 }
1505
1506 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1507 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1508 if (IS_ERR(skb)) {
1509 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1510 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001511 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001512 }
1513
1514 /* It ensures that the returned event matches the event data read from
1515 * the firmware file. At fist, it checks the length and then
1516 * the contents of the event.
1517 */
1518 if (skb->len != evt->plen) {
1519 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1520 le16_to_cpu(cmd->opcode));
1521 kfree_skb(skb);
1522 return -EFAULT;
1523 }
1524
1525 if (memcmp(skb->data, evt_param, evt->plen)) {
1526 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1527 hdev->name, le16_to_cpu(cmd->opcode));
1528 kfree_skb(skb);
1529 return -EFAULT;
1530 }
1531 kfree_skb(skb);
1532
1533 return 0;
1534}
1535
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001536#define BDADDR_INTEL (&(bdaddr_t) {{0x00, 0x8b, 0x9e, 0x19, 0x03, 0x00}})
1537
1538static int btusb_check_bdaddr_intel(struct hci_dev *hdev)
1539{
1540 struct sk_buff *skb;
1541 struct hci_rp_read_bd_addr *rp;
1542
1543 skb = __hci_cmd_sync(hdev, HCI_OP_READ_BD_ADDR, 0, NULL,
1544 HCI_INIT_TIMEOUT);
1545 if (IS_ERR(skb)) {
1546 BT_ERR("%s reading Intel device address failed (%ld)",
1547 hdev->name, PTR_ERR(skb));
1548 return PTR_ERR(skb);
1549 }
1550
1551 if (skb->len != sizeof(*rp)) {
1552 BT_ERR("%s Intel device address length mismatch", hdev->name);
1553 kfree_skb(skb);
1554 return -EIO;
1555 }
1556
Marcel Holtmann89e75332014-09-16 04:44:50 +02001557 rp = (struct hci_rp_read_bd_addr *)skb->data;
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001558 if (rp->status) {
1559 BT_ERR("%s Intel device address result failed (%02x)",
1560 hdev->name, rp->status);
1561 kfree_skb(skb);
1562 return -bt_to_errno(rp->status);
1563 }
1564
1565 /* For some Intel based controllers, the default Bluetooth device
1566 * address 00:03:19:9E:8B:00 can be found. These controllers are
1567 * fully operational, but have the danger of duplicate addresses
1568 * and that in turn can cause problems with Bluetooth operation.
1569 */
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001570 if (!bacmp(&rp->bdaddr, BDADDR_INTEL)) {
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001571 BT_ERR("%s found Intel default device address (%pMR)",
1572 hdev->name, &rp->bdaddr);
Marcel Holtmann4739b5b2014-07-04 16:54:38 +02001573 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
1574 }
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001575
1576 kfree_skb(skb);
1577
1578 return 0;
1579}
1580
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001581static int btusb_setup_intel(struct hci_dev *hdev)
1582{
1583 struct sk_buff *skb;
1584 const struct firmware *fw;
1585 const u8 *fw_ptr;
1586 int disable_patch;
1587 struct intel_version *ver;
1588
1589 const u8 mfg_enable[] = { 0x01, 0x00 };
1590 const u8 mfg_disable[] = { 0x00, 0x00 };
1591 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1592 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1593
1594 BT_DBG("%s", hdev->name);
1595
1596 /* The controller has a bug with the first HCI command sent to it
1597 * returning number of completed commands as zero. This would stall the
1598 * command processing in the Bluetooth core.
1599 *
1600 * As a workaround, send HCI Reset command first which will reset the
1601 * number of completed commands and allow normal command processing
1602 * from now on.
1603 */
1604 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1605 if (IS_ERR(skb)) {
1606 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1607 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001608 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001609 }
1610 kfree_skb(skb);
1611
1612 /* Read Intel specific controller version first to allow selection of
1613 * which firmware file to load.
1614 *
1615 * The returned information are hardware variant and revision plus
1616 * firmware variant, revision and build number.
1617 */
1618 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1619 if (IS_ERR(skb)) {
1620 BT_ERR("%s reading Intel fw version command failed (%ld)",
1621 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001622 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001623 }
1624
1625 if (skb->len != sizeof(*ver)) {
1626 BT_ERR("%s Intel version event length mismatch", hdev->name);
1627 kfree_skb(skb);
1628 return -EIO;
1629 }
1630
1631 ver = (struct intel_version *)skb->data;
1632 if (ver->status) {
1633 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1634 ver->status);
1635 kfree_skb(skb);
1636 return -bt_to_errno(ver->status);
1637 }
1638
1639 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1640 hdev->name, ver->hw_platform, ver->hw_variant,
1641 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1642 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1643 ver->fw_patch_num);
1644
1645 /* fw_patch_num indicates the version of patch the device currently
1646 * have. If there is no patch data in the device, it is always 0x00.
1647 * So, if it is other than 0x00, no need to patch the deivce again.
1648 */
1649 if (ver->fw_patch_num) {
1650 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1651 hdev->name, ver->fw_patch_num);
1652 kfree_skb(skb);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001653 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001654 return 0;
1655 }
1656
1657 /* Opens the firmware patch file based on the firmware version read
1658 * from the controller. If it fails to open the matching firmware
1659 * patch file, it tries to open the default firmware patch file.
1660 * If no patch file is found, allow the device to operate without
1661 * a patch.
1662 */
1663 fw = btusb_setup_intel_get_fw(hdev, ver);
1664 if (!fw) {
1665 kfree_skb(skb);
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 }
1669 fw_ptr = fw->data;
1670
1671 /* This Intel specific command enables the manufacturer mode of the
1672 * controller.
1673 *
1674 * Only while this mode is enabled, the driver can download the
1675 * firmware patch data and configuration parameters.
1676 */
1677 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1678 if (IS_ERR(skb)) {
1679 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1680 hdev->name, PTR_ERR(skb));
1681 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001682 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001683 }
1684
1685 if (skb->data[0]) {
1686 u8 evt_status = skb->data[0];
Marcel Holtmann89e75332014-09-16 04:44:50 +02001687
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001688 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1689 hdev->name, evt_status);
1690 kfree_skb(skb);
1691 release_firmware(fw);
1692 return -bt_to_errno(evt_status);
1693 }
1694 kfree_skb(skb);
1695
1696 disable_patch = 1;
1697
1698 /* The firmware data file consists of list of Intel specific HCI
1699 * commands and its expected events. The first byte indicates the
1700 * type of the message, either HCI command or HCI event.
1701 *
1702 * It reads the command and its expected event from the firmware file,
1703 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1704 * the returned event is compared with the event read from the firmware
1705 * file and it will continue until all the messages are downloaded to
1706 * the controller.
1707 *
1708 * Once the firmware patching is completed successfully,
1709 * the manufacturer mode is disabled with reset and activating the
1710 * downloaded patch.
1711 *
1712 * If the firmware patching fails, the manufacturer mode is
1713 * disabled with reset and deactivating the patch.
1714 *
1715 * If the default patch file is used, no reset is done when disabling
1716 * the manufacturer.
1717 */
1718 while (fw->size > fw_ptr - fw->data) {
1719 int ret;
1720
1721 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1722 &disable_patch);
1723 if (ret < 0)
1724 goto exit_mfg_deactivate;
1725 }
1726
1727 release_firmware(fw);
1728
1729 if (disable_patch)
1730 goto exit_mfg_disable;
1731
1732 /* Patching completed successfully and disable the manufacturer mode
1733 * with reset and activate the downloaded firmware patches.
1734 */
1735 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1736 mfg_reset_activate, HCI_INIT_TIMEOUT);
1737 if (IS_ERR(skb)) {
1738 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1739 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001740 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001741 }
1742 kfree_skb(skb);
1743
1744 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1745 hdev->name);
1746
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001747 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001748 return 0;
1749
1750exit_mfg_disable:
1751 /* Disable the manufacturer mode without reset */
1752 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1753 HCI_INIT_TIMEOUT);
1754 if (IS_ERR(skb)) {
1755 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1756 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001757 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001758 }
1759 kfree_skb(skb);
1760
1761 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001762
1763 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001764 return 0;
1765
1766exit_mfg_deactivate:
1767 release_firmware(fw);
1768
1769 /* Patching failed. Disable the manufacturer mode with reset and
1770 * deactivate the downloaded firmware patches.
1771 */
1772 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1773 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1774 if (IS_ERR(skb)) {
1775 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1776 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001777 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001778 }
1779 kfree_skb(skb);
1780
1781 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1782 hdev->name);
1783
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001784 btusb_check_bdaddr_intel(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001785 return 0;
1786}
1787
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001788static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1789{
1790 struct sk_buff *skb;
1791 struct hci_event_hdr *hdr;
1792 struct hci_ev_cmd_complete *evt;
1793
1794 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1795 if (!skb)
1796 return -ENOMEM;
1797
1798 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1799 hdr->evt = HCI_EV_CMD_COMPLETE;
1800 hdr->plen = sizeof(*evt) + 1;
1801
1802 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1803 evt->ncmd = 0x01;
1804 evt->opcode = cpu_to_le16(opcode);
1805
1806 *skb_put(skb, 1) = 0x00;
1807
1808 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1809
1810 return hci_recv_frame(hdev, skb);
1811}
1812
1813static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1814 int count)
1815{
1816 /* When the device is in bootloader mode, then it can send
1817 * events via the bulk endpoint. These events are treated the
1818 * same way as the ones received from the interrupt endpoint.
1819 */
1820 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1821 return btusb_recv_intr(data, buffer, count);
1822
1823 return btusb_recv_bulk(data, buffer, count);
1824}
1825
1826static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1827{
1828 struct btusb_data *data = hci_get_drvdata(hdev);
1829
1830 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1831 struct hci_event_hdr *hdr = (void *)skb->data;
1832
1833 /* When the firmware loading completes the device sends
1834 * out a vendor specific event indicating the result of
1835 * the firmware loading.
1836 */
1837 if (skb->len == 7 && hdr->evt == 0xff && hdr->plen == 0x05 &&
1838 skb->data[2] == 0x06) {
1839 if (skb->data[3] != 0x00)
1840 test_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1841
Marcel Holtmannce6bb922015-01-28 01:58:40 -08001842 if (test_and_clear_bit(BTUSB_DOWNLOADING,
1843 &data->flags) &&
Johan Hedberga087a982015-01-30 10:58:54 +02001844 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1845 smp_mb__after_atomic();
1846 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1847 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001848 }
1849
1850 /* When switching to the operational firmware the device
1851 * sends a vendor specific event indicating that the bootup
1852 * completed.
1853 */
1854 if (skb->len == 9 && hdr->evt == 0xff && hdr->plen == 0x07 &&
1855 skb->data[2] == 0x02) {
Johan Hedbergfad70972015-01-30 10:58:55 +02001856 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1857 smp_mb__after_atomic();
1858 wake_up_bit(&data->flags, BTUSB_BOOTING);
1859 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001860 }
1861 }
1862
1863 return hci_recv_frame(hdev, skb);
1864}
1865
1866static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1867{
1868 struct btusb_data *data = hci_get_drvdata(hdev);
1869 struct urb *urb;
1870
1871 BT_DBG("%s", hdev->name);
1872
1873 if (!test_bit(HCI_RUNNING, &hdev->flags))
1874 return -EBUSY;
1875
1876 switch (bt_cb(skb)->pkt_type) {
1877 case HCI_COMMAND_PKT:
1878 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1879 struct hci_command_hdr *cmd = (void *)skb->data;
1880 __u16 opcode = le16_to_cpu(cmd->opcode);
1881
1882 /* When in bootloader mode and the command 0xfc09
1883 * is received, it needs to be send down the
1884 * bulk endpoint. So allocate a bulk URB instead.
1885 */
1886 if (opcode == 0xfc09)
1887 urb = alloc_bulk_urb(hdev, skb);
1888 else
1889 urb = alloc_ctrl_urb(hdev, skb);
1890
1891 /* When the 0xfc01 command is issued to boot into
1892 * the operational firmware, it will actually not
1893 * send a command complete event. To keep the flow
1894 * control working inject that event here.
1895 */
1896 if (opcode == 0xfc01)
1897 inject_cmd_complete(hdev, opcode);
1898 } else {
1899 urb = alloc_ctrl_urb(hdev, skb);
1900 }
1901 if (IS_ERR(urb))
1902 return PTR_ERR(urb);
1903
1904 hdev->stat.cmd_tx++;
1905 return submit_or_queue_tx_urb(hdev, urb);
1906
1907 case HCI_ACLDATA_PKT:
1908 urb = alloc_bulk_urb(hdev, skb);
1909 if (IS_ERR(urb))
1910 return PTR_ERR(urb);
1911
1912 hdev->stat.acl_tx++;
1913 return submit_or_queue_tx_urb(hdev, urb);
1914
1915 case HCI_SCODATA_PKT:
1916 if (hci_conn_num(hdev, SCO_LINK) < 1)
1917 return -ENODEV;
1918
1919 urb = alloc_isoc_urb(hdev, skb);
1920 if (IS_ERR(urb))
1921 return PTR_ERR(urb);
1922
1923 hdev->stat.sco_tx++;
1924 return submit_tx_urb(hdev, urb);
1925 }
1926
1927 return -EILSEQ;
1928}
1929
1930static int btusb_intel_secure_send(struct hci_dev *hdev, u8 fragment_type,
1931 u32 plen, const void *param)
1932{
1933 while (plen > 0) {
1934 struct sk_buff *skb;
1935 u8 cmd_param[253], fragment_len = (plen > 252) ? 252 : plen;
1936
1937 cmd_param[0] = fragment_type;
1938 memcpy(cmd_param + 1, param, fragment_len);
1939
1940 skb = __hci_cmd_sync(hdev, 0xfc09, fragment_len + 1,
1941 cmd_param, HCI_INIT_TIMEOUT);
1942 if (IS_ERR(skb))
1943 return PTR_ERR(skb);
1944
1945 kfree_skb(skb);
1946
1947 plen -= fragment_len;
1948 param += fragment_len;
1949 }
1950
1951 return 0;
1952}
1953
1954static void btusb_intel_version_info(struct hci_dev *hdev,
1955 struct intel_version *ver)
1956{
1957 const char *variant;
1958
1959 switch (ver->fw_variant) {
1960 case 0x06:
1961 variant = "Bootloader";
1962 break;
1963 case 0x23:
1964 variant = "Firmware";
1965 break;
1966 default:
1967 return;
1968 }
1969
1970 BT_INFO("%s: %s revision %u.%u build %u week %u %u", hdev->name,
1971 variant, ver->fw_revision >> 4, ver->fw_revision & 0x0f,
1972 ver->fw_build_num, ver->fw_build_ww, 2000 + ver->fw_build_yy);
1973}
1974
1975static int btusb_setup_intel_new(struct hci_dev *hdev)
1976{
1977 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1978 0x00, 0x08, 0x04, 0x00 };
1979 struct btusb_data *data = hci_get_drvdata(hdev);
1980 struct sk_buff *skb;
1981 struct intel_version *ver;
1982 struct intel_boot_params *params;
1983 const struct firmware *fw;
1984 const u8 *fw_ptr;
1985 char fwname[64];
1986 ktime_t calltime, delta, rettime;
1987 unsigned long long duration;
1988 int err;
1989
1990 BT_DBG("%s", hdev->name);
1991
1992 calltime = ktime_get();
1993
1994 /* Read the Intel version information to determine if the device
1995 * is in bootloader mode or if it already has operational firmware
1996 * loaded.
1997 */
1998 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1999 if (IS_ERR(skb)) {
2000 BT_ERR("%s: Reading Intel version information failed (%ld)",
2001 hdev->name, PTR_ERR(skb));
2002 return PTR_ERR(skb);
2003 }
2004
2005 if (skb->len != sizeof(*ver)) {
2006 BT_ERR("%s: Intel version event size mismatch", hdev->name);
2007 kfree_skb(skb);
2008 return -EILSEQ;
2009 }
2010
2011 ver = (struct intel_version *)skb->data;
2012 if (ver->status) {
2013 BT_ERR("%s: Intel version command failure (%02x)",
2014 hdev->name, ver->status);
2015 err = -bt_to_errno(ver->status);
2016 kfree_skb(skb);
2017 return err;
2018 }
2019
2020 /* The hardware platform number has a fixed value of 0x37 and
2021 * for now only accept this single value.
2022 */
2023 if (ver->hw_platform != 0x37) {
2024 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2025 hdev->name, ver->hw_platform);
2026 kfree_skb(skb);
2027 return -EINVAL;
2028 }
2029
2030 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
2031 * supported by this firmware loading method. This check has been
2032 * put in place to ensure correct forward compatibility options
2033 * when newer hardware variants come along.
2034 */
2035 if (ver->hw_variant != 0x0b) {
2036 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2037 hdev->name, ver->hw_variant);
2038 kfree_skb(skb);
2039 return -EINVAL;
2040 }
2041
2042 btusb_intel_version_info(hdev, ver);
2043
2044 /* The firmware variant determines if the device is in bootloader
2045 * mode or is running operational firmware. The value 0x06 identifies
2046 * the bootloader and the value 0x23 identifies the operational
2047 * firmware.
2048 *
2049 * When the operational firmware is already present, then only
2050 * the check for valid Bluetooth device address is needed. This
2051 * determines if the device will be added as configured or
2052 * unconfigured controller.
2053 *
2054 * It is not possible to use the Secure Boot Parameters in this
2055 * case since that command is only available in bootloader mode.
2056 */
2057 if (ver->fw_variant == 0x23) {
2058 kfree_skb(skb);
2059 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2060 btusb_check_bdaddr_intel(hdev);
2061 return 0;
2062 }
2063
2064 /* If the device is not in bootloader mode, then the only possible
2065 * choice is to return an error and abort the device initialization.
2066 */
2067 if (ver->fw_variant != 0x06) {
2068 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2069 hdev->name, ver->fw_variant);
2070 kfree_skb(skb);
2071 return -ENODEV;
2072 }
2073
2074 kfree_skb(skb);
2075
2076 /* Read the secure boot parameters to identify the operating
2077 * details of the bootloader.
2078 */
2079 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2080 if (IS_ERR(skb)) {
2081 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2082 hdev->name, PTR_ERR(skb));
2083 return PTR_ERR(skb);
2084 }
2085
2086 if (skb->len != sizeof(*params)) {
2087 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2088 kfree_skb(skb);
2089 return -EILSEQ;
2090 }
2091
2092 params = (struct intel_boot_params *)skb->data;
2093 if (params->status) {
2094 BT_ERR("%s: Intel boot parameters command failure (%02x)",
2095 hdev->name, params->status);
2096 err = -bt_to_errno(params->status);
2097 kfree_skb(skb);
2098 return err;
2099 }
2100
2101 BT_INFO("%s: Device revision is %u", hdev->name,
2102 le16_to_cpu(params->dev_revid));
2103
2104 BT_INFO("%s: Secure boot is %s", hdev->name,
2105 params->secure_boot ? "enabled" : "disabled");
2106
2107 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2108 params->min_fw_build_nn, params->min_fw_build_cw,
2109 2000 + params->min_fw_build_yy);
2110
2111 /* It is required that every single firmware fragment is acknowledged
2112 * with a command complete event. If the boot parameters indicate
2113 * that this bootloader does not send them, then abort the setup.
2114 */
2115 if (params->limited_cce != 0x00) {
2116 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2117 hdev->name, params->limited_cce);
2118 kfree_skb(skb);
2119 return -EINVAL;
2120 }
2121
2122 /* If the OTP has no valid Bluetooth device address, then there will
2123 * also be no valid address for the operational firmware.
2124 */
2125 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2126 BT_INFO("%s: No device address configured", hdev->name);
2127 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2128 }
2129
2130 /* With this Intel bootloader only the hardware variant and device
2131 * revision information are used to select the right firmware.
2132 *
2133 * Currently this bootloader support is limited to hardware variant
2134 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2135 */
2136 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2137 le16_to_cpu(params->dev_revid));
2138
2139 err = request_firmware(&fw, fwname, &hdev->dev);
2140 if (err < 0) {
2141 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2142 hdev->name, err);
2143 kfree_skb(skb);
2144 return err;
2145 }
2146
2147 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2148
2149 kfree_skb(skb);
2150
2151 if (fw->size < 644) {
2152 BT_ERR("%s: Invalid size of firmware file (%zu)",
2153 hdev->name, fw->size);
2154 err = -EBADF;
2155 goto done;
2156 }
2157
2158 set_bit(BTUSB_DOWNLOADING, &data->flags);
2159
2160 /* Start the firmware download transaction with the Init fragment
2161 * represented by the 128 bytes of CSS header.
2162 */
2163 err = btusb_intel_secure_send(hdev, 0x00, 128, fw->data);
2164 if (err < 0) {
2165 BT_ERR("%s: Failed to send firmware header (%d)",
2166 hdev->name, err);
2167 goto done;
2168 }
2169
2170 /* Send the 256 bytes of public key information from the firmware
2171 * as the PKey fragment.
2172 */
2173 err = btusb_intel_secure_send(hdev, 0x03, 256, fw->data + 128);
2174 if (err < 0) {
2175 BT_ERR("%s: Failed to send firmware public key (%d)",
2176 hdev->name, err);
2177 goto done;
2178 }
2179
2180 /* Send the 256 bytes of signature information from the firmware
2181 * as the Sign fragment.
2182 */
2183 err = btusb_intel_secure_send(hdev, 0x02, 256, fw->data + 388);
2184 if (err < 0) {
2185 BT_ERR("%s: Failed to send firmware signature (%d)",
2186 hdev->name, err);
2187 goto done;
2188 }
2189
2190 fw_ptr = fw->data + 644;
2191
2192 while (fw_ptr - fw->data < fw->size) {
2193 struct hci_command_hdr *cmd = (void *)fw_ptr;
2194 u8 cmd_len;
2195
2196 cmd_len = sizeof(*cmd) + cmd->plen;
2197
2198 /* Send each command from the firmware data buffer as
2199 * a single Data fragment.
2200 */
2201 err = btusb_intel_secure_send(hdev, 0x01, cmd_len, fw_ptr);
2202 if (err < 0) {
2203 BT_ERR("%s: Failed to send firmware data (%d)",
2204 hdev->name, err);
2205 goto done;
2206 }
2207
2208 fw_ptr += cmd_len;
2209 }
2210
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002211 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2212
Johan Hedberga087a982015-01-30 10:58:54 +02002213 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2214
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002215 /* Before switching the device into operational mode and with that
2216 * booting the loaded firmware, wait for the bootloader notification
2217 * that all fragments have been successfully received.
2218 *
Johan Hedberga087a982015-01-30 10:58:54 +02002219 * When the event processing receives the notification, then the
2220 * BTUSB_DOWNLOADING flag will be cleared.
2221 *
2222 * The firmware loading should not take longer than 5 seconds
2223 * and thus just timeout if that happens and fail the setup
2224 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002225 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002226 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2227 TASK_INTERRUPTIBLE,
2228 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002229 if (err == 1) {
2230 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2231 err = -EINTR;
2232 goto done;
2233 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002234
Johan Hedberga087a982015-01-30 10:58:54 +02002235 if (err) {
2236 BT_ERR("%s: Firmware loading timeout", hdev->name);
2237 err = -ETIMEDOUT;
2238 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002239 }
2240
2241 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2242 BT_ERR("%s: Firmware loading failed", hdev->name);
2243 err = -ENOEXEC;
2244 goto done;
2245 }
2246
2247 rettime = ktime_get();
2248 delta = ktime_sub(rettime, calltime);
2249 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2250
2251 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2252
2253done:
2254 release_firmware(fw);
2255
2256 if (err < 0)
2257 return err;
2258
2259 calltime = ktime_get();
2260
2261 set_bit(BTUSB_BOOTING, &data->flags);
2262
2263 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2264 HCI_INIT_TIMEOUT);
2265 if (IS_ERR(skb))
2266 return PTR_ERR(skb);
2267
2268 kfree_skb(skb);
2269
2270 /* The bootloader will not indicate when the device is ready. This
2271 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002272 *
2273 * Booting into operational firmware should not take longer than
2274 * 1 second. However if that happens, then just fail the setup
2275 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002276 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002277 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002278
Johan Hedberg129a7692015-02-14 09:33:35 +02002279 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2280 TASK_INTERRUPTIBLE,
2281 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002282
Johan Hedbergfad70972015-01-30 10:58:55 +02002283 if (err == 1) {
2284 BT_ERR("%s: Device boot interrupted", hdev->name);
2285 return -EINTR;
2286 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002287
Johan Hedbergfad70972015-01-30 10:58:55 +02002288 if (err) {
2289 BT_ERR("%s: Device boot timeout", hdev->name);
2290 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002291 }
2292
2293 rettime = ktime_get();
2294 delta = ktime_sub(rettime, calltime);
2295 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2296
2297 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2298
2299 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2300
2301 return 0;
2302}
2303
Marcel Holtmann385a7682015-01-28 11:09:56 -08002304static void btusb_hw_error_intel(struct hci_dev *hdev, u8 code)
2305{
2306 struct sk_buff *skb;
2307 u8 type = 0x00;
2308
2309 BT_ERR("%s: Hardware error 0x%2.2x", hdev->name, code);
2310
2311 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2312 if (IS_ERR(skb)) {
2313 BT_ERR("%s: Reset after hardware error failed (%ld)",
2314 hdev->name, PTR_ERR(skb));
2315 return;
2316 }
2317 kfree_skb(skb);
2318
2319 skb = __hci_cmd_sync(hdev, 0xfc22, 1, &type, HCI_INIT_TIMEOUT);
2320 if (IS_ERR(skb)) {
2321 BT_ERR("%s: Retrieving Intel exception info failed (%ld)",
2322 hdev->name, PTR_ERR(skb));
2323 return;
2324 }
2325
2326 if (skb->len != 13) {
2327 BT_ERR("%s: Exception info size mismatch", hdev->name);
2328 kfree_skb(skb);
2329 return;
2330 }
2331
2332 if (skb->data[0] != 0x00) {
2333 BT_ERR("%s: Exception info command failure (%02x)",
2334 hdev->name, skb->data[0]);
2335 kfree_skb(skb);
2336 return;
2337 }
2338
2339 BT_ERR("%s: Exception info %s", hdev->name, (char *)(skb->data + 1));
2340
2341 kfree_skb(skb);
2342}
2343
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002344static int btusb_set_bdaddr_intel(struct hci_dev *hdev, const bdaddr_t *bdaddr)
2345{
2346 struct sk_buff *skb;
2347 long ret;
2348
2349 skb = __hci_cmd_sync(hdev, 0xfc31, 6, bdaddr, HCI_INIT_TIMEOUT);
2350 if (IS_ERR(skb)) {
2351 ret = PTR_ERR(skb);
2352 BT_ERR("%s: changing Intel device address failed (%ld)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02002353 hdev->name, ret);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002354 return ret;
2355 }
2356 kfree_skb(skb);
2357
2358 return 0;
2359}
2360
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002361static int btusb_shutdown_intel(struct hci_dev *hdev)
2362{
2363 struct sk_buff *skb;
2364 long ret;
2365
2366 /* Some platforms have an issue with BT LED when the interface is
2367 * down or BT radio is turned off, which takes 5 seconds to BT LED
2368 * goes off. This command turns off the BT LED immediately.
2369 */
2370 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2371 if (IS_ERR(skb)) {
2372 ret = PTR_ERR(skb);
2373 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2374 hdev->name, ret);
2375 return ret;
2376 }
2377 kfree_skb(skb);
2378
2379 return 0;
2380}
2381
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002382static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2383 const bdaddr_t *bdaddr)
2384{
2385 struct sk_buff *skb;
2386 u8 buf[8];
2387 long ret;
2388
2389 buf[0] = 0xfe;
2390 buf[1] = sizeof(bdaddr_t);
2391 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2392
2393 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2394 if (IS_ERR(skb)) {
2395 ret = PTR_ERR(skb);
2396 BT_ERR("%s: changing Marvell device address failed (%ld)",
2397 hdev->name, ret);
2398 return ret;
2399 }
2400 kfree_skb(skb);
2401
2402 return 0;
2403}
2404
Toshi Kikuchi58592232014-12-12 10:58:05 -08002405static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2406 const bdaddr_t *bdaddr)
2407{
2408 struct sk_buff *skb;
2409 u8 buf[10];
2410 long ret;
2411
2412 buf[0] = 0x01;
2413 buf[1] = 0x01;
2414 buf[2] = 0x00;
2415 buf[3] = sizeof(bdaddr_t);
2416 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2417
2418 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2419 if (IS_ERR(skb)) {
2420 ret = PTR_ERR(skb);
2421 BT_ERR("%s: Change address command failed (%ld)",
2422 hdev->name, ret);
2423 return ret;
2424 }
2425 kfree_skb(skb);
2426
2427 return 0;
2428}
2429
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002430#define QCA_DFU_PACKET_LEN 4096
2431
2432#define QCA_GET_TARGET_VERSION 0x09
2433#define QCA_CHECK_STATUS 0x05
2434#define QCA_DFU_DOWNLOAD 0x01
2435
2436#define QCA_SYSCFG_UPDATED 0x40
2437#define QCA_PATCH_UPDATED 0x80
2438#define QCA_DFU_TIMEOUT 3000
2439
2440struct qca_version {
2441 __le32 rom_version;
2442 __le32 patch_version;
2443 __le32 ram_version;
2444 __le32 ref_clock;
2445 __u8 reserved[4];
2446} __packed;
2447
2448struct qca_rampatch_version {
2449 __le16 rom_version;
2450 __le16 patch_version;
2451} __packed;
2452
2453struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002454 u32 rom_version;
2455 u8 rampatch_hdr; /* length of header in rampatch */
2456 u8 nvm_hdr; /* length of header in NVM */
2457 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002458};
2459
2460static const struct qca_device_info qca_devices_table[] = {
2461 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2462 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
2463 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2464 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2465 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2466};
2467
2468static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2469 void *data, u16 size)
2470{
2471 struct btusb_data *btdata = hci_get_drvdata(hdev);
2472 struct usb_device *udev = btdata->udev;
2473 int pipe, err;
2474 u8 *buf;
2475
2476 buf = kmalloc(size, GFP_KERNEL);
2477 if (!buf)
2478 return -ENOMEM;
2479
2480 /* Found some of USB hosts have IOT issues with ours so that we should
2481 * not wait until HCI layer is ready.
2482 */
2483 pipe = usb_rcvctrlpipe(udev, 0);
2484 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2485 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2486 if (err < 0) {
2487 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2488 goto done;
2489 }
2490
2491 memcpy(data, buf, size);
2492
2493done:
2494 kfree(buf);
2495
2496 return err;
2497}
2498
2499static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2500 const struct firmware *firmware,
2501 size_t hdr_size)
2502{
2503 struct btusb_data *btdata = hci_get_drvdata(hdev);
2504 struct usb_device *udev = btdata->udev;
2505 size_t count, size, sent = 0;
2506 int pipe, len, err;
2507 u8 *buf;
2508
2509 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2510 if (!buf)
2511 return -ENOMEM;
2512
2513 count = firmware->size;
2514
2515 size = min_t(size_t, count, hdr_size);
2516 memcpy(buf, firmware->data, size);
2517
2518 /* USB patches should go down to controller through USB path
2519 * because binary format fits to go down through USB channel.
2520 * USB control path is for patching headers and USB bulk is for
2521 * patch body.
2522 */
2523 pipe = usb_sndctrlpipe(udev, 0);
2524 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2525 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2526 if (err < 0) {
2527 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2528 goto done;
2529 }
2530
2531 sent += size;
2532 count -= size;
2533
2534 while (count) {
2535 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2536
2537 memcpy(buf, firmware->data + sent, size);
2538
2539 pipe = usb_sndbulkpipe(udev, 0x02);
2540 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2541 QCA_DFU_TIMEOUT);
2542 if (err < 0) {
2543 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2544 hdev->name, sent, firmware->size, err);
2545 break;
2546 }
2547
2548 if (size != len) {
2549 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2550 err = -EILSEQ;
2551 break;
2552 }
2553
2554 sent += size;
2555 count -= size;
2556 }
2557
2558done:
2559 kfree(buf);
2560 return err;
2561}
2562
2563static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2564 struct qca_version *ver,
2565 const struct qca_device_info *info)
2566{
2567 struct qca_rampatch_version *rver;
2568 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002569 u32 ver_rom, ver_patch;
2570 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002571 char fwname[64];
2572 int err;
2573
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002574 ver_rom = le32_to_cpu(ver->rom_version);
2575 ver_patch = le32_to_cpu(ver->patch_version);
2576
2577 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002578
2579 err = request_firmware(&fw, fwname, &hdev->dev);
2580 if (err) {
2581 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2582 hdev->name, fwname, err);
2583 return err;
2584 }
2585
2586 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002587
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002588 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2589 rver_rom = le16_to_cpu(rver->rom_version);
2590 rver_patch = le16_to_cpu(rver->patch_version);
2591
2592 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2593 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2594 ver_patch);
2595
2596 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002597 BT_ERR("%s: rampatch file version did not match with firmware",
2598 hdev->name);
2599 err = -EINVAL;
2600 goto done;
2601 }
2602
2603 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2604
2605done:
2606 release_firmware(fw);
2607
2608 return err;
2609}
2610
2611static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2612 struct qca_version *ver,
2613 const struct qca_device_info *info)
2614{
2615 const struct firmware *fw;
2616 char fwname[64];
2617 int err;
2618
2619 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2620 le32_to_cpu(ver->rom_version));
2621
2622 err = request_firmware(&fw, fwname, &hdev->dev);
2623 if (err) {
2624 BT_ERR("%s: failed to request NVM file: %s (%d)",
2625 hdev->name, fwname, err);
2626 return err;
2627 }
2628
2629 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2630
2631 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2632
2633 release_firmware(fw);
2634
2635 return err;
2636}
2637
2638static int btusb_setup_qca(struct hci_dev *hdev)
2639{
2640 const struct qca_device_info *info = NULL;
2641 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002642 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002643 u8 status;
2644 int i, err;
2645
2646 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
2647 sizeof(ver));
2648 if (err < 0)
2649 return err;
2650
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002651 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002652 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002653 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002654 info = &qca_devices_table[i];
2655 }
2656 if (!info) {
2657 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002658 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002659 return -ENODEV;
2660 }
2661
2662 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2663 sizeof(status));
2664 if (err < 0)
2665 return err;
2666
2667 if (!(status & QCA_PATCH_UPDATED)) {
2668 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2669 if (err < 0)
2670 return err;
2671 }
2672
2673 if (!(status & QCA_SYSCFG_UPDATED)) {
2674 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2675 if (err < 0)
2676 return err;
2677 }
2678
2679 return 0;
2680}
2681
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002682static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002683 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002684{
2685 struct usb_endpoint_descriptor *ep_desc;
2686 struct btusb_data *data;
2687 struct hci_dev *hdev;
2688 int i, err;
2689
2690 BT_DBG("intf %p id %p", intf, id);
2691
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002692 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002693 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2694 return -ENODEV;
2695
2696 if (!id->driver_info) {
2697 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002698
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002699 match = usb_match_id(intf, blacklist_table);
2700 if (match)
2701 id = match;
2702 }
2703
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002704 if (id->driver_info == BTUSB_IGNORE)
2705 return -ENODEV;
2706
Steven.Li2d25f8b2011-07-01 14:02:36 +08002707 if (id->driver_info & BTUSB_ATH3012) {
2708 struct usb_device *udev = interface_to_usbdev(intf);
2709
2710 /* Old firmware would otherwise let ath3k driver load
2711 * patch and sysconfig files */
2712 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2713 return -ENODEV;
2714 }
2715
Sachin Kamat98921db2012-07-27 12:38:39 +05302716 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002717 if (!data)
2718 return -ENOMEM;
2719
2720 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2721 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2722
2723 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2724 data->intr_ep = ep_desc;
2725 continue;
2726 }
2727
2728 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2729 data->bulk_tx_ep = ep_desc;
2730 continue;
2731 }
2732
2733 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2734 data->bulk_rx_ep = ep_desc;
2735 continue;
2736 }
2737 }
2738
Sachin Kamat98921db2012-07-27 12:38:39 +05302739 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002740 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002741
Marcel Holtmann893ba542015-01-28 20:27:34 -08002742 if (id->driver_info & BTUSB_AMP) {
2743 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2744 data->cmdreq = 0x2b;
2745 } else {
2746 data->cmdreq_type = USB_TYPE_CLASS;
2747 data->cmdreq = 0x00;
2748 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002749
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002750 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002751 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002752
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002753 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002754 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002755 init_usb_anchor(&data->deferred);
2756 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002757 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002758
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002759 init_usb_anchor(&data->intr_anchor);
2760 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002761 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002762 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002763
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002764 if (id->driver_info & BTUSB_INTEL_NEW) {
2765 data->recv_event = btusb_recv_event_intel;
2766 data->recv_bulk = btusb_recv_bulk_intel;
2767 set_bit(BTUSB_BOOTLOADER, &data->flags);
2768 } else {
2769 data->recv_event = hci_recv_frame;
2770 data->recv_bulk = btusb_recv_bulk;
2771 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002772
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002773 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302774 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002775 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002776
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002777 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002778 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002779
Marcel Holtmann893ba542015-01-28 20:27:34 -08002780 if (id->driver_info & BTUSB_AMP)
2781 hdev->dev_type = HCI_AMP;
2782 else
2783 hdev->dev_type = HCI_BREDR;
2784
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002785 data->hdev = hdev;
2786
2787 SET_HCIDEV_DEV(hdev, &intf->dev);
2788
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002789 hdev->open = btusb_open;
2790 hdev->close = btusb_close;
2791 hdev->flush = btusb_flush;
2792 hdev->send = btusb_send_frame;
2793 hdev->notify = btusb_notify;
2794
2795 if (id->driver_info & BTUSB_BCM92035)
2796 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002797
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002798#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002799 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002800 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002801 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann27c3fbe2014-11-02 20:52:24 +01002802 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002803 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002804
Marcel Holtmann17b27722015-03-22 15:52:38 +01002805 if (id->driver_info & BTUSB_BCM_APPLE) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002806 hdev->setup = btbcm_setup_apple;
Marcel Holtmann17b27722015-03-22 15:52:38 +01002807 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2808 }
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002809#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002810
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002811 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002812 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002813 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002814 hdev->set_bdaddr = btusb_set_bdaddr_intel;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002815 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002816 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002817 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002818
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002819 if (id->driver_info & BTUSB_INTEL_NEW) {
2820 hdev->send = btusb_send_frame_intel;
2821 hdev->setup = btusb_setup_intel_new;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002822 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002823 hdev->set_bdaddr = btusb_set_bdaddr_intel;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002824 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002825 }
2826
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002827 if (id->driver_info & BTUSB_MARVELL)
2828 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2829
Marcel Holtmann661cf882015-01-02 23:35:20 -08002830 if (id->driver_info & BTUSB_SWAVE) {
2831 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002832 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002833 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002834
Marcel Holtmann40df7832014-07-06 13:29:58 +02002835 if (id->driver_info & BTUSB_INTEL_BOOT)
2836 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2837
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002838 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002839 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002840 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002841 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2842 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002843
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002844 if (id->driver_info & BTUSB_QCA_ROME) {
2845 data->setup_on_usb = btusb_setup_qca;
2846 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2847 }
2848
Marcel Holtmann893ba542015-01-28 20:27:34 -08002849 if (id->driver_info & BTUSB_AMP) {
2850 /* AMP controllers do not support SCO packets */
2851 data->isoc = NULL;
2852 } else {
2853 /* Interface numbers are hardcoded in the specification */
2854 data->isoc = usb_ifnum_to_if(data->udev, 1);
2855 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002856
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002857 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002858 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002859
2860 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2861 if (!disable_scofix)
2862 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2863 }
2864
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002865 if (id->driver_info & BTUSB_BROKEN_ISOC)
2866 data->isoc = NULL;
2867
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002868 if (id->driver_info & BTUSB_DIGIANSWER) {
2869 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002870 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002871 }
2872
2873 if (id->driver_info & BTUSB_CSR) {
2874 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002875 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002876
2877 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002878 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002879 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002880
2881 /* Fake CSR devices with broken commands */
2882 if (bcdDevice <= 0x100)
2883 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002884
2885 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002886 }
2887
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002888 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002889 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002890
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002891 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002892 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2893 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2894 }
2895
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002896 if (id->driver_info & BTUSB_INTEL_BOOT) {
2897 /* A bug in the bootloader causes that interrupt interface is
2898 * only enabled after receiving SetInterface(0, AltSetting=0).
2899 */
2900 err = usb_set_interface(data->udev, 0, 0);
2901 if (err < 0) {
2902 BT_ERR("failed to set interface 0, alt 0 %d", err);
2903 hci_free_dev(hdev);
2904 return err;
2905 }
2906 }
2907
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002908 if (data->isoc) {
2909 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002910 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002911 if (err < 0) {
2912 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002913 return err;
2914 }
2915 }
2916
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002917 err = hci_register_dev(hdev);
2918 if (err < 0) {
2919 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002920 return err;
2921 }
2922
2923 usb_set_intfdata(intf, data);
2924
2925 return 0;
2926}
2927
2928static void btusb_disconnect(struct usb_interface *intf)
2929{
2930 struct btusb_data *data = usb_get_intfdata(intf);
2931 struct hci_dev *hdev;
2932
2933 BT_DBG("intf %p", intf);
2934
2935 if (!data)
2936 return;
2937
2938 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002939 usb_set_intfdata(data->intf, NULL);
2940
2941 if (data->isoc)
2942 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002943
2944 hci_unregister_dev(hdev);
2945
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002946 if (intf == data->isoc)
2947 usb_driver_release_interface(&btusb_driver, data->intf);
2948 else if (data->isoc)
2949 usb_driver_release_interface(&btusb_driver, data->isoc);
2950
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002951 hci_free_dev(hdev);
2952}
2953
Oliver Neukum7bee5492009-08-24 23:44:59 +02002954#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002955static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2956{
2957 struct btusb_data *data = usb_get_intfdata(intf);
2958
2959 BT_DBG("intf %p", intf);
2960
2961 if (data->suspend_count++)
2962 return 0;
2963
Oliver Neukum7bee5492009-08-24 23:44:59 +02002964 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002965 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002966 set_bit(BTUSB_SUSPENDING, &data->flags);
2967 spin_unlock_irq(&data->txlock);
2968 } else {
2969 spin_unlock_irq(&data->txlock);
2970 data->suspend_count--;
2971 return -EBUSY;
2972 }
2973
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002974 cancel_work_sync(&data->work);
2975
Oliver Neukum7bee5492009-08-24 23:44:59 +02002976 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002977 usb_kill_anchored_urbs(&data->tx_anchor);
2978
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002979 return 0;
2980}
2981
Oliver Neukum7bee5492009-08-24 23:44:59 +02002982static void play_deferred(struct btusb_data *data)
2983{
2984 struct urb *urb;
2985 int err;
2986
2987 while ((urb = usb_get_from_anchor(&data->deferred))) {
2988 err = usb_submit_urb(urb, GFP_ATOMIC);
2989 if (err < 0)
2990 break;
2991
2992 data->tx_in_flight++;
2993 }
2994 usb_scuttle_anchored_urbs(&data->deferred);
2995}
2996
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002997static int btusb_resume(struct usb_interface *intf)
2998{
2999 struct btusb_data *data = usb_get_intfdata(intf);
3000 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003001 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003002
3003 BT_DBG("intf %p", intf);
3004
3005 if (--data->suspend_count)
3006 return 0;
3007
3008 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02003009 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003010
3011 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
3012 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
3013 if (err < 0) {
3014 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003015 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003016 }
3017 }
3018
3019 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01003020 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
3021 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003022 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003023 goto failed;
3024 }
3025
3026 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003027 }
3028
3029 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
3030 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
3031 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
3032 else
3033 btusb_submit_isoc_urb(hdev, GFP_NOIO);
3034 }
3035
Oliver Neukum7bee5492009-08-24 23:44:59 +02003036 spin_lock_irq(&data->txlock);
3037 play_deferred(data);
3038 clear_bit(BTUSB_SUSPENDING, &data->flags);
3039 spin_unlock_irq(&data->txlock);
3040 schedule_work(&data->work);
3041
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003042 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003043
3044failed:
3045 usb_scuttle_anchored_urbs(&data->deferred);
3046done:
3047 spin_lock_irq(&data->txlock);
3048 clear_bit(BTUSB_SUSPENDING, &data->flags);
3049 spin_unlock_irq(&data->txlock);
3050
3051 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003052}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003053#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003054
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003055static struct usb_driver btusb_driver = {
3056 .name = "btusb",
3057 .probe = btusb_probe,
3058 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003059#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003060 .suspend = btusb_suspend,
3061 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003062#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003063 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003064 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003065 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003066};
3067
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003068module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003069
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003070module_param(disable_scofix, bool, 0644);
3071MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3072
3073module_param(force_scofix, bool, 0644);
3074MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3075
3076module_param(reset, bool, 0644);
3077MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3078
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003079MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3080MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3081MODULE_VERSION(VERSION);
3082MODULE_LICENSE("GPL");