blob: a92811468542b62ca63ab0319eb507829e3bafb2 [file] [log] [blame]
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001/*
2 *
3 * Generic Bluetooth USB driver
4 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02005 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02006 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Marcel Holtmann5e23b922007-10-20 14:12:34 +020024#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020025#include <linux/usb.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070026#include <linux/firmware.h>
Daniel Drakea2698a92015-04-16 14:09:55 -060027#include <asm/unaligned.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020028
29#include <net/bluetooth/bluetooth.h>
30#include <net/bluetooth/hci_core.h>
31
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070032#include "btintel.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070033#include "btbcm.h"
Carlo Caionedb33c772015-05-14 10:49:09 +020034#include "btrtl.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070035
Marcel Holtmann34dced9b2015-04-05 22:52:16 -070036#define VERSION "0.8"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020037
Rusty Russell90ab5ee2012-01-13 09:32:20 +103038static bool disable_scofix;
39static bool force_scofix;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010040
Shailendra Verma917a3332015-05-25 23:53:40 +053041static bool reset = true;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020042
43static struct usb_driver btusb_driver;
44
45#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010046#define BTUSB_DIGIANSWER 0x02
47#define BTUSB_CSR 0x04
48#define BTUSB_SNIFFER 0x08
49#define BTUSB_BCM92035 0x10
50#define BTUSB_BROKEN_ISOC 0x20
51#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080052#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070053#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020054#define BTUSB_INTEL_BOOT 0x200
55#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070056#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080057#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080058#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080059#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000060#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010061#define BTUSB_BCM_APPLE 0x10000
Daniel Drakea2698a92015-04-16 14:09:55 -060062#define BTUSB_REALTEK 0x20000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020063
Marcel Holtmann54265202013-10-11 07:46:18 -070064static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020065 /* Generic Bluetooth USB device */
66 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
67
Marcel Holtmann893ba542015-01-28 20:27:34 -080068 /* Generic Bluetooth AMP device */
69 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
70
Henrik Rydberg1fa65352012-08-25 19:28:06 +020071 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010072 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
73 .driver_info = BTUSB_BCM_APPLE },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020074
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080075 /* MediaTek MT76x0E */
76 { USB_DEVICE(0x0e8d, 0x763f) },
77
Oliver Neukumc510eae2011-09-21 11:41:45 +020078 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040079 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020080
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090081 /* Apple MacBookPro 7,1 */
82 { USB_DEVICE(0x05ac, 0x8213) },
83
Cyril Lacoux0a79f672010-07-14 10:29:27 +040084 /* Apple iMac11,1 */
85 { USB_DEVICE(0x05ac, 0x8215) },
86
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090087 /* Apple MacBookPro6,2 */
88 { USB_DEVICE(0x05ac, 0x8218) },
89
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010090 /* Apple MacBookAir3,1, MacBookAir3,2 */
91 { USB_DEVICE(0x05ac, 0x821b) },
92
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040093 /* Apple MacBookAir4,1 */
94 { USB_DEVICE(0x05ac, 0x821f) },
95
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030096 /* Apple MacBookPro8,2 */
97 { USB_DEVICE(0x05ac, 0x821a) },
98
Jurgen Kramerf78b68262011-09-04 18:01:42 +020099 /* Apple MacMini5,1 */
100 { USB_DEVICE(0x05ac, 0x8281) },
101
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200102 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800103 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200104
105 /* Bluetooth Ultraport Module from IBM */
106 { USB_DEVICE(0x04bf, 0x030a) },
107
108 /* ALPS Modules with non-standard id */
109 { USB_DEVICE(0x044e, 0x3001) },
110 { USB_DEVICE(0x044e, 0x3002) },
111
112 /* Ericsson with non-standard id */
113 { USB_DEVICE(0x0bdb, 0x1002) },
114
115 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100116 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200117
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800118 /* Broadcom BCM20702A0 */
119 { USB_DEVICE(0x413c, 0x8197) },
120
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800121 /* Broadcom BCM20702B0 (Dynex/Insignia) */
122 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
123
Steven Harms98514032012-04-13 14:45:55 -0400124 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100125 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
126 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400127
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100128 /* Lite-On Technology - Broadcom based */
129 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
130 .driver_info = BTUSB_BCM_PATCHRAM },
131
Andy Shevchenko0b880062014-02-18 18:26:19 +0200132 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700133 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
134 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300135
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200136 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abda2015-01-17 05:29:12 +0100137 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
138 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200139
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100140 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700141 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
142 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100143
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100144 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700145 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
146 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100147
Marcel Holtmann40df7832014-07-06 13:29:58 +0200148 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df02014-07-06 14:53:55 +0200149 { USB_DEVICE(0x8087, 0x0a5a),
150 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200151
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200152 { } /* Terminating entry */
153};
154
155MODULE_DEVICE_TABLE(usb, btusb_table);
156
Marcel Holtmann54265202013-10-11 07:46:18 -0700157static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200158 /* CSR BlueCore devices */
159 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
160
161 /* Broadcom BCM2033 without firmware */
162 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
163
Bala Shanmugambe931122010-11-26 17:35:46 +0530164 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200165 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
166 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200167 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200168 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530169 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200170 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700171 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530172
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800173 /* Atheros AR9285 Malbec with sflash firmware */
174 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
175
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530176 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200177 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
178 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
179 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
180 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
181 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530182 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200183 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
184 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
185 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
186 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700187 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200188 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
189 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200190 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200191 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
192 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100193 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200194 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800195 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800196 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900197 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200198 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100199 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100200 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200201 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800202 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200203 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800204 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800205 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200206 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
207 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800208 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530209 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300210 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300211 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530212 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530213
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800214 /* Atheros AR5BBU12 with sflash firmware */
215 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
216
Michael Gruetzner85d59722012-05-02 22:33:40 +0200217 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530218 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200219 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200220
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000221 /* QCA ROME chipset */
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700222 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
223 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000224
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200225 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100226 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200227 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
228 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200229
230 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100231 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
232 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200233
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200234 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100235 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
236 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200237
238 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100239 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200240
241 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100242 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200243
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100244 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100245 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100246 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200247
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100248 /* Belkin F8T012 and F8T013 devices */
249 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
250 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200251
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100252 /* Asus WL-BTD202 device */
253 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
254
255 /* Kensington Bluetooth USB adapter */
256 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
257
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200258 /* RTX Telecom based adapters with buggy SCO support */
259 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
260 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
261
262 /* CONWISE Technology based adapters with buggy SCO support */
263 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
264
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800265 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
266 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
267
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200268 /* Digianswer devices */
269 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
270 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
271
272 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200273 { USB_DEVICE(0x0a12, 0x0002),
274 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200275
276 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200277 { USB_DEVICE(0x16d3, 0x0002),
278 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200279
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800280 /* Marvell Bluetooth devices */
281 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
282 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
283
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800284 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800285 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700286 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800287 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800288 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700289
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800290 /* Other Intel Bluetooth devices */
291 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
292 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700293
Daniel Drakea2698a92015-04-16 14:09:55 -0600294 /* Realtek Bluetooth devices */
295 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
296 .driver_info = BTUSB_REALTEK },
297
298 /* Additional Realtek 8723AE Bluetooth devices */
299 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
300 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
301
302 /* Additional Realtek 8723BE Bluetooth devices */
303 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
304 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
305 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
306 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
307 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
308
309 /* Additional Realtek 8821AE Bluetooth devices */
310 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
311 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
312 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
313 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
314 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
315
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200316 { } /* Terminating entry */
317};
318
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200319#define BTUSB_MAX_ISOC_FRAMES 10
320
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200321#define BTUSB_INTR_RUNNING 0
322#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200323#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200324#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300325#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800326#define BTUSB_BOOTLOADER 5
327#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800328#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800329#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800330#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600331#define BTUSB_RESET_RESUME 10
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200332
333struct btusb_data {
334 struct hci_dev *hdev;
335 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200336 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200337 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200338
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200339 unsigned long flags;
340
341 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200342 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200343
Marcel Holtmann803b5832014-09-16 08:00:29 +0200344 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200345 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200346 int tx_in_flight;
347 spinlock_t txlock;
348
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200349 struct usb_anchor intr_anchor;
350 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200351 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200352 spinlock_t rxlock;
353
354 struct sk_buff *evt_skb;
355 struct sk_buff *acl_skb;
356 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200357
358 struct usb_endpoint_descriptor *intr_ep;
359 struct usb_endpoint_descriptor *bulk_tx_ep;
360 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200361 struct usb_endpoint_descriptor *isoc_tx_ep;
362 struct usb_endpoint_descriptor *isoc_rx_ep;
363
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100364 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800365 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100366
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100367 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200368 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100369 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100370
Marcel Holtmann97307f52015-01-12 13:51:10 -0800371 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100372 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000373
374 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200375};
376
Marcel Holtmann803b5832014-09-16 08:00:29 +0200377static inline void btusb_free_frags(struct btusb_data *data)
378{
379 unsigned long flags;
380
381 spin_lock_irqsave(&data->rxlock, flags);
382
383 kfree_skb(data->evt_skb);
384 data->evt_skb = NULL;
385
386 kfree_skb(data->acl_skb);
387 data->acl_skb = NULL;
388
389 kfree_skb(data->sco_skb);
390 data->sco_skb = NULL;
391
392 spin_unlock_irqrestore(&data->rxlock, flags);
393}
394
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200395static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
396{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200397 struct sk_buff *skb;
398 int err = 0;
399
400 spin_lock(&data->rxlock);
401 skb = data->evt_skb;
402
403 while (count) {
404 int len;
405
406 if (!skb) {
407 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
408 if (!skb) {
409 err = -ENOMEM;
410 break;
411 }
412
413 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
414 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
415 }
416
417 len = min_t(uint, bt_cb(skb)->expect, count);
418 memcpy(skb_put(skb, len), buffer, len);
419
420 count -= len;
421 buffer += len;
422 bt_cb(skb)->expect -= len;
423
424 if (skb->len == HCI_EVENT_HDR_SIZE) {
425 /* Complete event header */
426 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
427
428 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
429 kfree_skb(skb);
430 skb = NULL;
431
432 err = -EILSEQ;
433 break;
434 }
435 }
436
437 if (bt_cb(skb)->expect == 0) {
438 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800439 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200440 skb = NULL;
441 }
442 }
443
444 data->evt_skb = skb;
445 spin_unlock(&data->rxlock);
446
447 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200448}
449
450static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
451{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200452 struct sk_buff *skb;
453 int err = 0;
454
455 spin_lock(&data->rxlock);
456 skb = data->acl_skb;
457
458 while (count) {
459 int len;
460
461 if (!skb) {
462 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
463 if (!skb) {
464 err = -ENOMEM;
465 break;
466 }
467
468 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
469 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
470 }
471
472 len = min_t(uint, bt_cb(skb)->expect, count);
473 memcpy(skb_put(skb, len), buffer, len);
474
475 count -= len;
476 buffer += len;
477 bt_cb(skb)->expect -= len;
478
479 if (skb->len == HCI_ACL_HDR_SIZE) {
480 __le16 dlen = hci_acl_hdr(skb)->dlen;
481
482 /* Complete ACL header */
483 bt_cb(skb)->expect = __le16_to_cpu(dlen);
484
485 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
486 kfree_skb(skb);
487 skb = NULL;
488
489 err = -EILSEQ;
490 break;
491 }
492 }
493
494 if (bt_cb(skb)->expect == 0) {
495 /* Complete frame */
496 hci_recv_frame(data->hdev, skb);
497 skb = NULL;
498 }
499 }
500
501 data->acl_skb = skb;
502 spin_unlock(&data->rxlock);
503
504 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200505}
506
507static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
508{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200509 struct sk_buff *skb;
510 int err = 0;
511
512 spin_lock(&data->rxlock);
513 skb = data->sco_skb;
514
515 while (count) {
516 int len;
517
518 if (!skb) {
519 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
520 if (!skb) {
521 err = -ENOMEM;
522 break;
523 }
524
525 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
526 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
527 }
528
529 len = min_t(uint, bt_cb(skb)->expect, count);
530 memcpy(skb_put(skb, len), buffer, len);
531
532 count -= len;
533 buffer += len;
534 bt_cb(skb)->expect -= len;
535
536 if (skb->len == HCI_SCO_HDR_SIZE) {
537 /* Complete SCO header */
538 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
539
540 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
541 kfree_skb(skb);
542 skb = NULL;
543
544 err = -EILSEQ;
545 break;
546 }
547 }
548
549 if (bt_cb(skb)->expect == 0) {
550 /* Complete frame */
551 hci_recv_frame(data->hdev, skb);
552 skb = NULL;
553 }
554 }
555
556 data->sco_skb = skb;
557 spin_unlock(&data->rxlock);
558
559 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200560}
561
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200562static void btusb_intr_complete(struct urb *urb)
563{
564 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100565 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200566 int err;
567
Marcel Holtmann89e75332014-09-16 04:44:50 +0200568 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
569 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200570
571 if (!test_bit(HCI_RUNNING, &hdev->flags))
572 return;
573
574 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200575 hdev->stat.byte_rx += urb->actual_length;
576
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200577 if (btusb_recv_intr(data, urb->transfer_buffer,
578 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200579 BT_ERR("%s corrupted event packet", hdev->name);
580 hdev->stat.err_rx++;
581 }
Champion Chen85560c42014-09-06 14:06:08 -0500582 } else if (urb->status == -ENOENT) {
583 /* Avoid suspend failed when usb_kill_urb */
584 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200585 }
586
587 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
588 return;
589
Oliver Neukum7bee5492009-08-24 23:44:59 +0200590 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200591 usb_anchor_urb(urb, &data->intr_anchor);
592
593 err = usb_submit_urb(urb, GFP_ATOMIC);
594 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200595 /* -EPERM: urb is being killed;
596 * -ENODEV: device got disconnected */
597 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100598 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200599 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200600 usb_unanchor_urb(urb);
601 }
602}
603
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100604static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605{
David Herrmann155961e2012-02-09 21:58:32 +0100606 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200607 struct urb *urb;
608 unsigned char *buf;
609 unsigned int pipe;
610 int err, size;
611
612 BT_DBG("%s", hdev->name);
613
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200614 if (!data->intr_ep)
615 return -ENODEV;
616
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100617 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200618 if (!urb)
619 return -ENOMEM;
620
621 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
622
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100623 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200624 if (!buf) {
625 usb_free_urb(urb);
626 return -ENOMEM;
627 }
628
629 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
630
631 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200632 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200633
634 urb->transfer_flags |= URB_FREE_BUFFER;
635
636 usb_anchor_urb(urb, &data->intr_anchor);
637
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100638 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200639 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200640 if (err != -EPERM && err != -ENODEV)
641 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200642 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200643 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644 }
645
646 usb_free_urb(urb);
647
648 return err;
649}
650
651static void btusb_bulk_complete(struct urb *urb)
652{
653 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100654 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200655 int err;
656
Marcel Holtmann89e75332014-09-16 04:44:50 +0200657 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
658 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200659
660 if (!test_bit(HCI_RUNNING, &hdev->flags))
661 return;
662
663 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200664 hdev->stat.byte_rx += urb->actual_length;
665
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100666 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200667 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200668 BT_ERR("%s corrupted ACL packet", hdev->name);
669 hdev->stat.err_rx++;
670 }
Champion Chen85560c42014-09-06 14:06:08 -0500671 } else if (urb->status == -ENOENT) {
672 /* Avoid suspend failed when usb_kill_urb */
673 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200674 }
675
676 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
677 return;
678
679 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100680 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200681
682 err = usb_submit_urb(urb, GFP_ATOMIC);
683 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200684 /* -EPERM: urb is being killed;
685 * -ENODEV: device got disconnected */
686 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100687 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200688 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200689 usb_unanchor_urb(urb);
690 }
691}
692
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100693static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200694{
David Herrmann155961e2012-02-09 21:58:32 +0100695 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200696 struct urb *urb;
697 unsigned char *buf;
698 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530699 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200700
701 BT_DBG("%s", hdev->name);
702
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200703 if (!data->bulk_rx_ep)
704 return -ENODEV;
705
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100706 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200707 if (!urb)
708 return -ENOMEM;
709
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100710 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200711 if (!buf) {
712 usb_free_urb(urb);
713 return -ENOMEM;
714 }
715
716 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
717
Marcel Holtmann89e75332014-09-16 04:44:50 +0200718 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
719 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200720
721 urb->transfer_flags |= URB_FREE_BUFFER;
722
Oliver Neukum7bee5492009-08-24 23:44:59 +0200723 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200724 usb_anchor_urb(urb, &data->bulk_anchor);
725
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100726 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200727 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200728 if (err != -EPERM && err != -ENODEV)
729 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200730 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200731 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200732 }
733
734 usb_free_urb(urb);
735
736 return err;
737}
738
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200739static void btusb_isoc_complete(struct urb *urb)
740{
741 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100742 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200743 int i, err;
744
Marcel Holtmann89e75332014-09-16 04:44:50 +0200745 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
746 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200747
748 if (!test_bit(HCI_RUNNING, &hdev->flags))
749 return;
750
751 if (urb->status == 0) {
752 for (i = 0; i < urb->number_of_packets; i++) {
753 unsigned int offset = urb->iso_frame_desc[i].offset;
754 unsigned int length = urb->iso_frame_desc[i].actual_length;
755
756 if (urb->iso_frame_desc[i].status)
757 continue;
758
759 hdev->stat.byte_rx += length;
760
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200761 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
762 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200763 BT_ERR("%s corrupted SCO packet", hdev->name);
764 hdev->stat.err_rx++;
765 }
766 }
Champion Chen85560c42014-09-06 14:06:08 -0500767 } else if (urb->status == -ENOENT) {
768 /* Avoid suspend failed when usb_kill_urb */
769 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200770 }
771
772 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
773 return;
774
775 usb_anchor_urb(urb, &data->isoc_anchor);
776
777 err = usb_submit_urb(urb, GFP_ATOMIC);
778 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200779 /* -EPERM: urb is being killed;
780 * -ENODEV: device got disconnected */
781 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100782 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200783 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200784 usb_unanchor_urb(urb);
785 }
786}
787
Jesper Juhl42b16b32011-01-17 00:09:38 +0100788static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200789{
790 int i, offset = 0;
791
792 BT_DBG("len %d mtu %d", len, mtu);
793
794 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
795 i++, offset += mtu, len -= mtu) {
796 urb->iso_frame_desc[i].offset = offset;
797 urb->iso_frame_desc[i].length = mtu;
798 }
799
800 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
801 urb->iso_frame_desc[i].offset = offset;
802 urb->iso_frame_desc[i].length = len;
803 i++;
804 }
805
806 urb->number_of_packets = i;
807}
808
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100809static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200810{
David Herrmann155961e2012-02-09 21:58:32 +0100811 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200812 struct urb *urb;
813 unsigned char *buf;
814 unsigned int pipe;
815 int err, size;
816
817 BT_DBG("%s", hdev->name);
818
819 if (!data->isoc_rx_ep)
820 return -ENODEV;
821
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100822 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200823 if (!urb)
824 return -ENOMEM;
825
826 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
827 BTUSB_MAX_ISOC_FRAMES;
828
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100829 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200830 if (!buf) {
831 usb_free_urb(urb);
832 return -ENOMEM;
833 }
834
835 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
836
Bing Zhaofa0fb932011-12-20 18:19:00 -0800837 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200838 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200839
Marcel Holtmann89e75332014-09-16 04:44:50 +0200840 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200841
842 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200843 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200844
845 usb_anchor_urb(urb, &data->isoc_anchor);
846
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100847 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200848 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200849 if (err != -EPERM && err != -ENODEV)
850 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200851 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200852 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200853 }
854
855 usb_free_urb(urb);
856
857 return err;
858}
859
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200860static void btusb_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;
David Herrmann155961e2012-02-09 21:58:32 +0100864 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200865
Marcel Holtmann89e75332014-09-16 04:44:50 +0200866 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
867 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200868
869 if (!test_bit(HCI_RUNNING, &hdev->flags))
870 goto done;
871
872 if (!urb->status)
873 hdev->stat.byte_tx += urb->transfer_buffer_length;
874 else
875 hdev->stat.err_tx++;
876
877done:
878 spin_lock(&data->txlock);
879 data->tx_in_flight--;
880 spin_unlock(&data->txlock);
881
882 kfree(urb->setup_packet);
883
884 kfree_skb(skb);
885}
886
887static void btusb_isoc_tx_complete(struct urb *urb)
888{
889 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200890 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200891
Marcel Holtmann89e75332014-09-16 04:44:50 +0200892 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
893 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200894
895 if (!test_bit(HCI_RUNNING, &hdev->flags))
896 goto done;
897
898 if (!urb->status)
899 hdev->stat.byte_tx += urb->transfer_buffer_length;
900 else
901 hdev->stat.err_tx++;
902
903done:
904 kfree(urb->setup_packet);
905
906 kfree_skb(skb);
907}
908
909static int btusb_open(struct hci_dev *hdev)
910{
David Herrmann155961e2012-02-09 21:58:32 +0100911 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200912 int err;
913
914 BT_DBG("%s", hdev->name);
915
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000916 /* Patching USB firmware files prior to starting any URBs of HCI path
917 * It is more safe to use USB bulk channel for downloading USB patch
918 */
919 if (data->setup_on_usb) {
920 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +0200921 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000922 return err;
923 }
924
Oliver Neukum7bee5492009-08-24 23:44:59 +0200925 err = usb_autopm_get_interface(data->intf);
926 if (err < 0)
927 return err;
928
929 data->intf->needs_remote_wakeup = 1;
930
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200931 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200932 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200933
934 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200935 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200936
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100937 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100938 if (err < 0)
939 goto failed;
940
941 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200942 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100943 usb_kill_anchored_urbs(&data->intr_anchor);
944 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200945 }
946
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100947 set_bit(BTUSB_BULK_RUNNING, &data->flags);
948 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
949
Oliver Neukum7bee5492009-08-24 23:44:59 +0200950done:
951 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100952 return 0;
953
954failed:
955 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
956 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200957 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200958 return err;
959}
960
Oliver Neukum7bee5492009-08-24 23:44:59 +0200961static void btusb_stop_traffic(struct btusb_data *data)
962{
963 usb_kill_anchored_urbs(&data->intr_anchor);
964 usb_kill_anchored_urbs(&data->bulk_anchor);
965 usb_kill_anchored_urbs(&data->isoc_anchor);
966}
967
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200968static int btusb_close(struct hci_dev *hdev)
969{
David Herrmann155961e2012-02-09 21:58:32 +0100970 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200971 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200972
973 BT_DBG("%s", hdev->name);
974
975 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
976 return 0;
977
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200978 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800979 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200980
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200981 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200982 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200983 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200984
985 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200986 btusb_free_frags(data);
987
Oliver Neukum7bee5492009-08-24 23:44:59 +0200988 err = usb_autopm_get_interface(data->intf);
989 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100990 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200991
992 data->intf->needs_remote_wakeup = 0;
993 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200994
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100995failed:
996 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200997 return 0;
998}
999
1000static int btusb_flush(struct hci_dev *hdev)
1001{
David Herrmann155961e2012-02-09 21:58:32 +01001002 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001003
1004 BT_DBG("%s", hdev->name);
1005
1006 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001007 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001008
1009 return 0;
1010}
1011
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001012static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001013{
David Herrmann155961e2012-02-09 21:58:32 +01001014 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001015 struct usb_ctrlrequest *dr;
1016 struct urb *urb;
1017 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001018
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001019 urb = usb_alloc_urb(0, GFP_KERNEL);
1020 if (!urb)
1021 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001022
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001023 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1024 if (!dr) {
1025 usb_free_urb(urb);
1026 return ERR_PTR(-ENOMEM);
1027 }
1028
1029 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001030 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001031 dr->wIndex = 0;
1032 dr->wValue = 0;
1033 dr->wLength = __cpu_to_le16(skb->len);
1034
1035 pipe = usb_sndctrlpipe(data->udev, 0x00);
1036
Marcel Holtmann89e75332014-09-16 04:44:50 +02001037 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001038 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001039
Marcel Holtmann89e75332014-09-16 04:44:50 +02001040 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001041
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001042 return urb;
1043}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001044
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001045static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1046{
1047 struct btusb_data *data = hci_get_drvdata(hdev);
1048 struct urb *urb;
1049 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001050
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001051 if (!data->bulk_tx_ep)
1052 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001053
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001054 urb = usb_alloc_urb(0, GFP_KERNEL);
1055 if (!urb)
1056 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001057
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001058 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001059
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001060 usb_fill_bulk_urb(urb, data->udev, pipe,
1061 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001062
Marcel Holtmann89e75332014-09-16 04:44:50 +02001063 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001064
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001065 return urb;
1066}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001067
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001068static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1069{
1070 struct btusb_data *data = hci_get_drvdata(hdev);
1071 struct urb *urb;
1072 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001073
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001074 if (!data->isoc_tx_ep)
1075 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001076
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001077 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1078 if (!urb)
1079 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001080
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001081 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001082
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001083 usb_fill_int_urb(urb, data->udev, pipe,
1084 skb->data, skb->len, btusb_isoc_tx_complete,
1085 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001086
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001087 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001088
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001089 __fill_isoc_descriptor(urb, skb->len,
1090 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001091
Marcel Holtmann89e75332014-09-16 04:44:50 +02001092 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001093
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001094 return urb;
1095}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001096
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001097static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1098{
1099 struct btusb_data *data = hci_get_drvdata(hdev);
1100 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001101
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001102 usb_anchor_urb(urb, &data->tx_anchor);
1103
Johan Hedberge9753ef2014-09-14 08:49:34 +03001104 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001105 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001106 if (err != -EPERM && err != -ENODEV)
1107 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001108 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001109 kfree(urb->setup_packet);
1110 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001111 } else {
1112 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001113 }
1114
Cong Wang54a8a79c2011-11-22 09:32:57 +08001115 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001116 return err;
1117}
1118
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001119static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1120{
1121 struct btusb_data *data = hci_get_drvdata(hdev);
1122 unsigned long flags;
1123 bool suspending;
1124
1125 spin_lock_irqsave(&data->txlock, flags);
1126 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1127 if (!suspending)
1128 data->tx_in_flight++;
1129 spin_unlock_irqrestore(&data->txlock, flags);
1130
1131 if (!suspending)
1132 return submit_tx_urb(hdev, urb);
1133
1134 usb_anchor_urb(urb, &data->deferred);
1135 schedule_work(&data->waker);
1136
1137 usb_free_urb(urb);
1138 return 0;
1139}
1140
1141static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1142{
1143 struct urb *urb;
1144
1145 BT_DBG("%s", hdev->name);
1146
1147 if (!test_bit(HCI_RUNNING, &hdev->flags))
1148 return -EBUSY;
1149
1150 switch (bt_cb(skb)->pkt_type) {
1151 case HCI_COMMAND_PKT:
1152 urb = alloc_ctrl_urb(hdev, skb);
1153 if (IS_ERR(urb))
1154 return PTR_ERR(urb);
1155
1156 hdev->stat.cmd_tx++;
1157 return submit_or_queue_tx_urb(hdev, urb);
1158
1159 case HCI_ACLDATA_PKT:
1160 urb = alloc_bulk_urb(hdev, skb);
1161 if (IS_ERR(urb))
1162 return PTR_ERR(urb);
1163
1164 hdev->stat.acl_tx++;
1165 return submit_or_queue_tx_urb(hdev, urb);
1166
1167 case HCI_SCODATA_PKT:
1168 if (hci_conn_num(hdev, SCO_LINK) < 1)
1169 return -ENODEV;
1170
1171 urb = alloc_isoc_urb(hdev, skb);
1172 if (IS_ERR(urb))
1173 return PTR_ERR(urb);
1174
1175 hdev->stat.sco_tx++;
1176 return submit_tx_urb(hdev, urb);
1177 }
1178
1179 return -EILSEQ;
1180}
1181
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001182static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1183{
David Herrmann155961e2012-02-09 21:58:32 +01001184 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001185
1186 BT_DBG("%s evt %d", hdev->name, evt);
1187
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001188 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1189 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001190 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001191 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001192}
1193
Jesper Juhl42b16b32011-01-17 00:09:38 +01001194static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001195{
David Herrmann155961e2012-02-09 21:58:32 +01001196 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001197 struct usb_interface *intf = data->isoc;
1198 struct usb_endpoint_descriptor *ep_desc;
1199 int i, err;
1200
1201 if (!data->isoc)
1202 return -ENODEV;
1203
1204 err = usb_set_interface(data->udev, 1, altsetting);
1205 if (err < 0) {
1206 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1207 return err;
1208 }
1209
1210 data->isoc_altsetting = altsetting;
1211
1212 data->isoc_tx_ep = NULL;
1213 data->isoc_rx_ep = NULL;
1214
1215 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1216 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1217
1218 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1219 data->isoc_tx_ep = ep_desc;
1220 continue;
1221 }
1222
1223 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1224 data->isoc_rx_ep = ep_desc;
1225 continue;
1226 }
1227 }
1228
1229 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1230 BT_ERR("%s invalid SCO descriptors", hdev->name);
1231 return -ENODEV;
1232 }
1233
1234 return 0;
1235}
1236
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001237static void btusb_work(struct work_struct *work)
1238{
1239 struct btusb_data *data = container_of(work, struct btusb_data, work);
1240 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001241 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001242 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001243
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001244 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001245 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001246 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001247 if (err < 0) {
1248 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1249 usb_kill_anchored_urbs(&data->isoc_anchor);
1250 return;
1251 }
1252
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001253 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001254 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001255
1256 if (hdev->voice_setting & 0x0020) {
1257 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001258
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001259 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001260 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001261 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001262 }
1263
1264 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001265 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1266 usb_kill_anchored_urbs(&data->isoc_anchor);
1267
Mikel Astizf4001d22012-04-11 08:48:51 +02001268 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001269 return;
1270 }
1271
1272 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001273 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001274 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1275 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001276 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001277 }
1278 } else {
1279 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1280 usb_kill_anchored_urbs(&data->isoc_anchor);
1281
1282 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001283 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001284 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001285 }
1286}
1287
Oliver Neukum7bee5492009-08-24 23:44:59 +02001288static void btusb_waker(struct work_struct *work)
1289{
1290 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1291 int err;
1292
1293 err = usb_autopm_get_interface(data->intf);
1294 if (err < 0)
1295 return;
1296
1297 usb_autopm_put_interface(data->intf);
1298}
1299
Daniel Drake6576fe42015-02-23 18:16:47 -06001300static struct sk_buff *btusb_read_local_version(struct hci_dev *hdev)
1301{
1302 struct sk_buff *skb;
1303
1304 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1305 HCI_INIT_TIMEOUT);
1306 if (IS_ERR(skb)) {
1307 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1308 hdev->name, PTR_ERR(skb));
1309 return skb;
1310 }
1311
1312 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1313 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1314 hdev->name);
1315 kfree_skb(skb);
1316 return ERR_PTR(-EIO);
1317 }
1318
1319 return skb;
1320}
1321
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001322static int btusb_setup_bcm92035(struct hci_dev *hdev)
1323{
1324 struct sk_buff *skb;
1325 u8 val = 0x00;
1326
1327 BT_DBG("%s", hdev->name);
1328
1329 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1330 if (IS_ERR(skb))
1331 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1332 else
1333 kfree_skb(skb);
1334
1335 return 0;
1336}
1337
Marcel Holtmann81cac642014-01-03 03:02:36 -08001338static int btusb_setup_csr(struct hci_dev *hdev)
1339{
1340 struct hci_rp_read_local_version *rp;
1341 struct sk_buff *skb;
1342 int ret;
1343
1344 BT_DBG("%s", hdev->name);
1345
Daniel Drake6576fe42015-02-23 18:16:47 -06001346 skb = btusb_read_local_version(hdev);
1347 if (IS_ERR(skb))
Marcel Holtmann81cac642014-01-03 03:02:36 -08001348 return -PTR_ERR(skb);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001349
Marcel Holtmann89e75332014-09-16 04:44:50 +02001350 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001351
1352 if (!rp->status) {
1353 if (le16_to_cpu(rp->manufacturer) != 10) {
1354 /* Clear the reset quirk since this is not an actual
1355 * early Bluetooth 1.1 device from CSR.
1356 */
1357 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1358
1359 /* These fake CSR controllers have all a broken
1360 * stored link key handling and so just disable it.
1361 */
1362 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1363 &hdev->quirks);
1364 }
1365 }
1366
1367 ret = -bt_to_errno(rp->status);
1368
1369 kfree_skb(skb);
1370
1371 return ret;
1372}
1373
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001374static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001375 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001376{
1377 const struct firmware *fw;
1378 char fwname[64];
1379 int ret;
1380
1381 snprintf(fwname, sizeof(fwname),
1382 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1383 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1384 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1385 ver->fw_build_ww, ver->fw_build_yy);
1386
1387 ret = request_firmware(&fw, fwname, &hdev->dev);
1388 if (ret < 0) {
1389 if (ret == -EINVAL) {
1390 BT_ERR("%s Intel firmware file request failed (%d)",
1391 hdev->name, ret);
1392 return NULL;
1393 }
1394
1395 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1396 hdev->name, fwname, ret);
1397
1398 /* If the correct firmware patch file is not found, use the
1399 * default firmware patch file instead
1400 */
1401 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1402 ver->hw_platform, ver->hw_variant);
1403 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1404 BT_ERR("%s failed to open default Intel fw file: %s",
1405 hdev->name, fwname);
1406 return NULL;
1407 }
1408 }
1409
1410 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1411
1412 return fw;
1413}
1414
1415static int btusb_setup_intel_patching(struct hci_dev *hdev,
1416 const struct firmware *fw,
1417 const u8 **fw_ptr, int *disable_patch)
1418{
1419 struct sk_buff *skb;
1420 struct hci_command_hdr *cmd;
1421 const u8 *cmd_param;
1422 struct hci_event_hdr *evt = NULL;
1423 const u8 *evt_param = NULL;
1424 int remain = fw->size - (*fw_ptr - fw->data);
1425
1426 /* The first byte indicates the types of the patch command or event.
1427 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1428 * in the current firmware buffer doesn't start with 0x01 or
1429 * the size of remain buffer is smaller than HCI command header,
1430 * the firmware file is corrupted and it should stop the patching
1431 * process.
1432 */
1433 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1434 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1435 return -EINVAL;
1436 }
1437 (*fw_ptr)++;
1438 remain--;
1439
1440 cmd = (struct hci_command_hdr *)(*fw_ptr);
1441 *fw_ptr += sizeof(*cmd);
1442 remain -= sizeof(*cmd);
1443
1444 /* Ensure that the remain firmware data is long enough than the length
1445 * of command parameter. If not, the firmware file is corrupted.
1446 */
1447 if (remain < cmd->plen) {
1448 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1449 return -EFAULT;
1450 }
1451
1452 /* If there is a command that loads a patch in the firmware
1453 * file, then enable the patch upon success, otherwise just
1454 * disable the manufacturer mode, for example patch activation
1455 * is not required when the default firmware patch file is used
1456 * because there are no patch data to load.
1457 */
1458 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1459 *disable_patch = 0;
1460
1461 cmd_param = *fw_ptr;
1462 *fw_ptr += cmd->plen;
1463 remain -= cmd->plen;
1464
1465 /* This reads the expected events when the above command is sent to the
1466 * device. Some vendor commands expects more than one events, for
1467 * example command status event followed by vendor specific event.
1468 * For this case, it only keeps the last expected event. so the command
1469 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1470 * last expected event.
1471 */
1472 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1473 (*fw_ptr)++;
1474 remain--;
1475
1476 evt = (struct hci_event_hdr *)(*fw_ptr);
1477 *fw_ptr += sizeof(*evt);
1478 remain -= sizeof(*evt);
1479
1480 if (remain < evt->plen) {
1481 BT_ERR("%s Intel fw corrupted: invalid evt len",
1482 hdev->name);
1483 return -EFAULT;
1484 }
1485
1486 evt_param = *fw_ptr;
1487 *fw_ptr += evt->plen;
1488 remain -= evt->plen;
1489 }
1490
1491 /* Every HCI commands in the firmware file has its correspond event.
1492 * If event is not found or remain is smaller than zero, the firmware
1493 * file is corrupted.
1494 */
1495 if (!evt || !evt_param || remain < 0) {
1496 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1497 return -EFAULT;
1498 }
1499
1500 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1501 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1502 if (IS_ERR(skb)) {
1503 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1504 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001505 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001506 }
1507
1508 /* It ensures that the returned event matches the event data read from
1509 * the firmware file. At fist, it checks the length and then
1510 * the contents of the event.
1511 */
1512 if (skb->len != evt->plen) {
1513 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1514 le16_to_cpu(cmd->opcode));
1515 kfree_skb(skb);
1516 return -EFAULT;
1517 }
1518
1519 if (memcmp(skb->data, evt_param, evt->plen)) {
1520 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1521 hdev->name, le16_to_cpu(cmd->opcode));
1522 kfree_skb(skb);
1523 return -EFAULT;
1524 }
1525 kfree_skb(skb);
1526
1527 return 0;
1528}
1529
1530static int btusb_setup_intel(struct hci_dev *hdev)
1531{
1532 struct sk_buff *skb;
1533 const struct firmware *fw;
1534 const u8 *fw_ptr;
1535 int disable_patch;
1536 struct intel_version *ver;
1537
1538 const u8 mfg_enable[] = { 0x01, 0x00 };
1539 const u8 mfg_disable[] = { 0x00, 0x00 };
1540 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1541 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1542
1543 BT_DBG("%s", hdev->name);
1544
1545 /* The controller has a bug with the first HCI command sent to it
1546 * returning number of completed commands as zero. This would stall the
1547 * command processing in the Bluetooth core.
1548 *
1549 * As a workaround, send HCI Reset command first which will reset the
1550 * number of completed commands and allow normal command processing
1551 * from now on.
1552 */
1553 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1554 if (IS_ERR(skb)) {
1555 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1556 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001557 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001558 }
1559 kfree_skb(skb);
1560
1561 /* Read Intel specific controller version first to allow selection of
1562 * which firmware file to load.
1563 *
1564 * The returned information are hardware variant and revision plus
1565 * firmware variant, revision and build number.
1566 */
1567 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1568 if (IS_ERR(skb)) {
1569 BT_ERR("%s reading Intel fw version command failed (%ld)",
1570 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001571 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001572 }
1573
1574 if (skb->len != sizeof(*ver)) {
1575 BT_ERR("%s Intel version event length mismatch", hdev->name);
1576 kfree_skb(skb);
1577 return -EIO;
1578 }
1579
1580 ver = (struct intel_version *)skb->data;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001581
1582 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1583 hdev->name, ver->hw_platform, ver->hw_variant,
1584 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1585 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1586 ver->fw_patch_num);
1587
1588 /* fw_patch_num indicates the version of patch the device currently
1589 * have. If there is no patch data in the device, it is always 0x00.
1590 * So, if it is other than 0x00, no need to patch the deivce again.
1591 */
1592 if (ver->fw_patch_num) {
1593 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1594 hdev->name, ver->fw_patch_num);
1595 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001596 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001597 return 0;
1598 }
1599
1600 /* Opens the firmware patch file based on the firmware version read
1601 * from the controller. If it fails to open the matching firmware
1602 * patch file, it tries to open the default firmware patch file.
1603 * If no patch file is found, allow the device to operate without
1604 * a patch.
1605 */
1606 fw = btusb_setup_intel_get_fw(hdev, ver);
1607 if (!fw) {
1608 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001609 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001610 return 0;
1611 }
1612 fw_ptr = fw->data;
1613
1614 /* This Intel specific command enables the manufacturer mode of the
1615 * controller.
1616 *
1617 * Only while this mode is enabled, the driver can download the
1618 * firmware patch data and configuration parameters.
1619 */
1620 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1621 if (IS_ERR(skb)) {
1622 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1623 hdev->name, PTR_ERR(skb));
1624 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001625 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001626 }
1627
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001628 kfree_skb(skb);
1629
1630 disable_patch = 1;
1631
1632 /* The firmware data file consists of list of Intel specific HCI
1633 * commands and its expected events. The first byte indicates the
1634 * type of the message, either HCI command or HCI event.
1635 *
1636 * It reads the command and its expected event from the firmware file,
1637 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1638 * the returned event is compared with the event read from the firmware
1639 * file and it will continue until all the messages are downloaded to
1640 * the controller.
1641 *
1642 * Once the firmware patching is completed successfully,
1643 * the manufacturer mode is disabled with reset and activating the
1644 * downloaded patch.
1645 *
1646 * If the firmware patching fails, the manufacturer mode is
1647 * disabled with reset and deactivating the patch.
1648 *
1649 * If the default patch file is used, no reset is done when disabling
1650 * the manufacturer.
1651 */
1652 while (fw->size > fw_ptr - fw->data) {
1653 int ret;
1654
1655 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1656 &disable_patch);
1657 if (ret < 0)
1658 goto exit_mfg_deactivate;
1659 }
1660
1661 release_firmware(fw);
1662
1663 if (disable_patch)
1664 goto exit_mfg_disable;
1665
1666 /* Patching completed successfully and disable the manufacturer mode
1667 * with reset and activate the downloaded firmware patches.
1668 */
1669 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1670 mfg_reset_activate, HCI_INIT_TIMEOUT);
1671 if (IS_ERR(skb)) {
1672 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1673 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001674 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001675 }
1676 kfree_skb(skb);
1677
1678 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1679 hdev->name);
1680
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001681 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001682 return 0;
1683
1684exit_mfg_disable:
1685 /* Disable the manufacturer mode without reset */
1686 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1687 HCI_INIT_TIMEOUT);
1688 if (IS_ERR(skb)) {
1689 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1690 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001691 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001692 }
1693 kfree_skb(skb);
1694
1695 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001696
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001697 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001698 return 0;
1699
1700exit_mfg_deactivate:
1701 release_firmware(fw);
1702
1703 /* Patching failed. Disable the manufacturer mode with reset and
1704 * deactivate the downloaded firmware patches.
1705 */
1706 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1707 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1708 if (IS_ERR(skb)) {
1709 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1710 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001711 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001712 }
1713 kfree_skb(skb);
1714
1715 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1716 hdev->name);
1717
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001718 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001719 return 0;
1720}
1721
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001722static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1723{
1724 struct sk_buff *skb;
1725 struct hci_event_hdr *hdr;
1726 struct hci_ev_cmd_complete *evt;
1727
1728 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1729 if (!skb)
1730 return -ENOMEM;
1731
1732 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1733 hdr->evt = HCI_EV_CMD_COMPLETE;
1734 hdr->plen = sizeof(*evt) + 1;
1735
1736 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1737 evt->ncmd = 0x01;
1738 evt->opcode = cpu_to_le16(opcode);
1739
1740 *skb_put(skb, 1) = 0x00;
1741
1742 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1743
1744 return hci_recv_frame(hdev, skb);
1745}
1746
1747static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1748 int count)
1749{
1750 /* When the device is in bootloader mode, then it can send
1751 * events via the bulk endpoint. These events are treated the
1752 * same way as the ones received from the interrupt endpoint.
1753 */
1754 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1755 return btusb_recv_intr(data, buffer, count);
1756
1757 return btusb_recv_bulk(data, buffer, count);
1758}
1759
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001760static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1761 unsigned int len)
1762{
1763 const struct intel_bootup *evt = ptr;
1764
1765 if (len != sizeof(*evt))
1766 return;
1767
1768 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1769 smp_mb__after_atomic();
1770 wake_up_bit(&data->flags, BTUSB_BOOTING);
1771 }
1772}
1773
1774static void btusb_intel_secure_send_result(struct btusb_data *data,
1775 const void *ptr, unsigned int len)
1776{
1777 const struct intel_secure_send_result *evt = ptr;
1778
1779 if (len != sizeof(*evt))
1780 return;
1781
1782 if (evt->result)
1783 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1784
1785 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1786 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1787 smp_mb__after_atomic();
1788 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1789 }
1790}
1791
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001792static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1793{
1794 struct btusb_data *data = hci_get_drvdata(hdev);
1795
1796 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1797 struct hci_event_hdr *hdr = (void *)skb->data;
1798
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001799 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1800 hdr->plen > 0) {
1801 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1802 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001803
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001804 switch (skb->data[2]) {
1805 case 0x02:
1806 /* When switching to the operational firmware
1807 * the device sends a vendor specific event
1808 * indicating that the bootup completed.
1809 */
1810 btusb_intel_bootup(data, ptr, len);
1811 break;
1812 case 0x06:
1813 /* When the firmware loading completes the
1814 * device sends out a vendor specific event
1815 * indicating the result of the firmware
1816 * loading.
1817 */
1818 btusb_intel_secure_send_result(data, ptr, len);
1819 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001820 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001821 }
1822 }
1823
1824 return hci_recv_frame(hdev, skb);
1825}
1826
1827static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1828{
1829 struct btusb_data *data = hci_get_drvdata(hdev);
1830 struct urb *urb;
1831
1832 BT_DBG("%s", hdev->name);
1833
1834 if (!test_bit(HCI_RUNNING, &hdev->flags))
1835 return -EBUSY;
1836
1837 switch (bt_cb(skb)->pkt_type) {
1838 case HCI_COMMAND_PKT:
1839 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1840 struct hci_command_hdr *cmd = (void *)skb->data;
1841 __u16 opcode = le16_to_cpu(cmd->opcode);
1842
1843 /* When in bootloader mode and the command 0xfc09
1844 * is received, it needs to be send down the
1845 * bulk endpoint. So allocate a bulk URB instead.
1846 */
1847 if (opcode == 0xfc09)
1848 urb = alloc_bulk_urb(hdev, skb);
1849 else
1850 urb = alloc_ctrl_urb(hdev, skb);
1851
1852 /* When the 0xfc01 command is issued to boot into
1853 * the operational firmware, it will actually not
1854 * send a command complete event. To keep the flow
1855 * control working inject that event here.
1856 */
1857 if (opcode == 0xfc01)
1858 inject_cmd_complete(hdev, opcode);
1859 } else {
1860 urb = alloc_ctrl_urb(hdev, skb);
1861 }
1862 if (IS_ERR(urb))
1863 return PTR_ERR(urb);
1864
1865 hdev->stat.cmd_tx++;
1866 return submit_or_queue_tx_urb(hdev, urb);
1867
1868 case HCI_ACLDATA_PKT:
1869 urb = alloc_bulk_urb(hdev, skb);
1870 if (IS_ERR(urb))
1871 return PTR_ERR(urb);
1872
1873 hdev->stat.acl_tx++;
1874 return submit_or_queue_tx_urb(hdev, urb);
1875
1876 case HCI_SCODATA_PKT:
1877 if (hci_conn_num(hdev, SCO_LINK) < 1)
1878 return -ENODEV;
1879
1880 urb = alloc_isoc_urb(hdev, skb);
1881 if (IS_ERR(urb))
1882 return PTR_ERR(urb);
1883
1884 hdev->stat.sco_tx++;
1885 return submit_tx_urb(hdev, urb);
1886 }
1887
1888 return -EILSEQ;
1889}
1890
1891static int btusb_intel_secure_send(struct hci_dev *hdev, u8 fragment_type,
1892 u32 plen, const void *param)
1893{
1894 while (plen > 0) {
1895 struct sk_buff *skb;
1896 u8 cmd_param[253], fragment_len = (plen > 252) ? 252 : plen;
1897
1898 cmd_param[0] = fragment_type;
1899 memcpy(cmd_param + 1, param, fragment_len);
1900
1901 skb = __hci_cmd_sync(hdev, 0xfc09, fragment_len + 1,
1902 cmd_param, HCI_INIT_TIMEOUT);
1903 if (IS_ERR(skb))
1904 return PTR_ERR(skb);
1905
1906 kfree_skb(skb);
1907
1908 plen -= fragment_len;
1909 param += fragment_len;
1910 }
1911
1912 return 0;
1913}
1914
1915static void btusb_intel_version_info(struct hci_dev *hdev,
1916 struct intel_version *ver)
1917{
1918 const char *variant;
1919
1920 switch (ver->fw_variant) {
1921 case 0x06:
1922 variant = "Bootloader";
1923 break;
1924 case 0x23:
1925 variant = "Firmware";
1926 break;
1927 default:
1928 return;
1929 }
1930
1931 BT_INFO("%s: %s revision %u.%u build %u week %u %u", hdev->name,
1932 variant, ver->fw_revision >> 4, ver->fw_revision & 0x0f,
1933 ver->fw_build_num, ver->fw_build_ww, 2000 + ver->fw_build_yy);
1934}
1935
1936static int btusb_setup_intel_new(struct hci_dev *hdev)
1937{
1938 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1939 0x00, 0x08, 0x04, 0x00 };
1940 struct btusb_data *data = hci_get_drvdata(hdev);
1941 struct sk_buff *skb;
1942 struct intel_version *ver;
1943 struct intel_boot_params *params;
1944 const struct firmware *fw;
1945 const u8 *fw_ptr;
1946 char fwname[64];
1947 ktime_t calltime, delta, rettime;
1948 unsigned long long duration;
1949 int err;
1950
1951 BT_DBG("%s", hdev->name);
1952
1953 calltime = ktime_get();
1954
1955 /* Read the Intel version information to determine if the device
1956 * is in bootloader mode or if it already has operational firmware
1957 * loaded.
1958 */
1959 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1960 if (IS_ERR(skb)) {
1961 BT_ERR("%s: Reading Intel version information failed (%ld)",
1962 hdev->name, PTR_ERR(skb));
1963 return PTR_ERR(skb);
1964 }
1965
1966 if (skb->len != sizeof(*ver)) {
1967 BT_ERR("%s: Intel version event size mismatch", hdev->name);
1968 kfree_skb(skb);
1969 return -EILSEQ;
1970 }
1971
1972 ver = (struct intel_version *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001973
1974 /* The hardware platform number has a fixed value of 0x37 and
1975 * for now only accept this single value.
1976 */
1977 if (ver->hw_platform != 0x37) {
1978 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
1979 hdev->name, ver->hw_platform);
1980 kfree_skb(skb);
1981 return -EINVAL;
1982 }
1983
1984 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
1985 * supported by this firmware loading method. This check has been
1986 * put in place to ensure correct forward compatibility options
1987 * when newer hardware variants come along.
1988 */
1989 if (ver->hw_variant != 0x0b) {
1990 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
1991 hdev->name, ver->hw_variant);
1992 kfree_skb(skb);
1993 return -EINVAL;
1994 }
1995
1996 btusb_intel_version_info(hdev, ver);
1997
1998 /* The firmware variant determines if the device is in bootloader
1999 * mode or is running operational firmware. The value 0x06 identifies
2000 * the bootloader and the value 0x23 identifies the operational
2001 * firmware.
2002 *
2003 * When the operational firmware is already present, then only
2004 * the check for valid Bluetooth device address is needed. This
2005 * determines if the device will be added as configured or
2006 * unconfigured controller.
2007 *
2008 * It is not possible to use the Secure Boot Parameters in this
2009 * case since that command is only available in bootloader mode.
2010 */
2011 if (ver->fw_variant == 0x23) {
2012 kfree_skb(skb);
2013 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002014 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002015 return 0;
2016 }
2017
2018 /* If the device is not in bootloader mode, then the only possible
2019 * choice is to return an error and abort the device initialization.
2020 */
2021 if (ver->fw_variant != 0x06) {
2022 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2023 hdev->name, ver->fw_variant);
2024 kfree_skb(skb);
2025 return -ENODEV;
2026 }
2027
2028 kfree_skb(skb);
2029
2030 /* Read the secure boot parameters to identify the operating
2031 * details of the bootloader.
2032 */
2033 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2034 if (IS_ERR(skb)) {
2035 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2036 hdev->name, PTR_ERR(skb));
2037 return PTR_ERR(skb);
2038 }
2039
2040 if (skb->len != sizeof(*params)) {
2041 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2042 kfree_skb(skb);
2043 return -EILSEQ;
2044 }
2045
2046 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002047
2048 BT_INFO("%s: Device revision is %u", hdev->name,
2049 le16_to_cpu(params->dev_revid));
2050
2051 BT_INFO("%s: Secure boot is %s", hdev->name,
2052 params->secure_boot ? "enabled" : "disabled");
2053
2054 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2055 params->min_fw_build_nn, params->min_fw_build_cw,
2056 2000 + params->min_fw_build_yy);
2057
2058 /* It is required that every single firmware fragment is acknowledged
2059 * with a command complete event. If the boot parameters indicate
2060 * that this bootloader does not send them, then abort the setup.
2061 */
2062 if (params->limited_cce != 0x00) {
2063 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2064 hdev->name, params->limited_cce);
2065 kfree_skb(skb);
2066 return -EINVAL;
2067 }
2068
2069 /* If the OTP has no valid Bluetooth device address, then there will
2070 * also be no valid address for the operational firmware.
2071 */
2072 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2073 BT_INFO("%s: No device address configured", hdev->name);
2074 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2075 }
2076
2077 /* With this Intel bootloader only the hardware variant and device
2078 * revision information are used to select the right firmware.
2079 *
2080 * Currently this bootloader support is limited to hardware variant
2081 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2082 */
2083 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2084 le16_to_cpu(params->dev_revid));
2085
2086 err = request_firmware(&fw, fwname, &hdev->dev);
2087 if (err < 0) {
2088 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2089 hdev->name, err);
2090 kfree_skb(skb);
2091 return err;
2092 }
2093
2094 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2095
2096 kfree_skb(skb);
2097
2098 if (fw->size < 644) {
2099 BT_ERR("%s: Invalid size of firmware file (%zu)",
2100 hdev->name, fw->size);
2101 err = -EBADF;
2102 goto done;
2103 }
2104
2105 set_bit(BTUSB_DOWNLOADING, &data->flags);
2106
2107 /* Start the firmware download transaction with the Init fragment
2108 * represented by the 128 bytes of CSS header.
2109 */
2110 err = btusb_intel_secure_send(hdev, 0x00, 128, fw->data);
2111 if (err < 0) {
2112 BT_ERR("%s: Failed to send firmware header (%d)",
2113 hdev->name, err);
2114 goto done;
2115 }
2116
2117 /* Send the 256 bytes of public key information from the firmware
2118 * as the PKey fragment.
2119 */
2120 err = btusb_intel_secure_send(hdev, 0x03, 256, fw->data + 128);
2121 if (err < 0) {
2122 BT_ERR("%s: Failed to send firmware public key (%d)",
2123 hdev->name, err);
2124 goto done;
2125 }
2126
2127 /* Send the 256 bytes of signature information from the firmware
2128 * as the Sign fragment.
2129 */
2130 err = btusb_intel_secure_send(hdev, 0x02, 256, fw->data + 388);
2131 if (err < 0) {
2132 BT_ERR("%s: Failed to send firmware signature (%d)",
2133 hdev->name, err);
2134 goto done;
2135 }
2136
2137 fw_ptr = fw->data + 644;
2138
2139 while (fw_ptr - fw->data < fw->size) {
2140 struct hci_command_hdr *cmd = (void *)fw_ptr;
2141 u8 cmd_len;
2142
2143 cmd_len = sizeof(*cmd) + cmd->plen;
2144
2145 /* Send each command from the firmware data buffer as
2146 * a single Data fragment.
2147 */
2148 err = btusb_intel_secure_send(hdev, 0x01, cmd_len, fw_ptr);
2149 if (err < 0) {
2150 BT_ERR("%s: Failed to send firmware data (%d)",
2151 hdev->name, err);
2152 goto done;
2153 }
2154
2155 fw_ptr += cmd_len;
2156 }
2157
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002158 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2159
Johan Hedberga087a982015-01-30 10:58:54 +02002160 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2161
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002162 /* Before switching the device into operational mode and with that
2163 * booting the loaded firmware, wait for the bootloader notification
2164 * that all fragments have been successfully received.
2165 *
Johan Hedberga087a982015-01-30 10:58:54 +02002166 * When the event processing receives the notification, then the
2167 * BTUSB_DOWNLOADING flag will be cleared.
2168 *
2169 * The firmware loading should not take longer than 5 seconds
2170 * and thus just timeout if that happens and fail the setup
2171 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002172 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002173 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2174 TASK_INTERRUPTIBLE,
2175 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002176 if (err == 1) {
2177 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2178 err = -EINTR;
2179 goto done;
2180 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002181
Johan Hedberga087a982015-01-30 10:58:54 +02002182 if (err) {
2183 BT_ERR("%s: Firmware loading timeout", hdev->name);
2184 err = -ETIMEDOUT;
2185 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002186 }
2187
2188 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2189 BT_ERR("%s: Firmware loading failed", hdev->name);
2190 err = -ENOEXEC;
2191 goto done;
2192 }
2193
2194 rettime = ktime_get();
2195 delta = ktime_sub(rettime, calltime);
2196 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2197
2198 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2199
2200done:
2201 release_firmware(fw);
2202
2203 if (err < 0)
2204 return err;
2205
2206 calltime = ktime_get();
2207
2208 set_bit(BTUSB_BOOTING, &data->flags);
2209
2210 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2211 HCI_INIT_TIMEOUT);
2212 if (IS_ERR(skb))
2213 return PTR_ERR(skb);
2214
2215 kfree_skb(skb);
2216
2217 /* The bootloader will not indicate when the device is ready. This
2218 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002219 *
2220 * Booting into operational firmware should not take longer than
2221 * 1 second. However if that happens, then just fail the setup
2222 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002223 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002224 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002225
Johan Hedberg129a7692015-02-14 09:33:35 +02002226 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2227 TASK_INTERRUPTIBLE,
2228 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002229
Johan Hedbergfad70972015-01-30 10:58:55 +02002230 if (err == 1) {
2231 BT_ERR("%s: Device boot interrupted", hdev->name);
2232 return -EINTR;
2233 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002234
Johan Hedbergfad70972015-01-30 10:58:55 +02002235 if (err) {
2236 BT_ERR("%s: Device boot timeout", hdev->name);
2237 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002238 }
2239
2240 rettime = ktime_get();
2241 delta = ktime_sub(rettime, calltime);
2242 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2243
2244 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2245
2246 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2247
2248 return 0;
2249}
2250
Marcel Holtmann385a7682015-01-28 11:09:56 -08002251static void btusb_hw_error_intel(struct hci_dev *hdev, u8 code)
2252{
2253 struct sk_buff *skb;
2254 u8 type = 0x00;
2255
2256 BT_ERR("%s: Hardware error 0x%2.2x", hdev->name, code);
2257
2258 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2259 if (IS_ERR(skb)) {
2260 BT_ERR("%s: Reset after hardware error failed (%ld)",
2261 hdev->name, PTR_ERR(skb));
2262 return;
2263 }
2264 kfree_skb(skb);
2265
2266 skb = __hci_cmd_sync(hdev, 0xfc22, 1, &type, HCI_INIT_TIMEOUT);
2267 if (IS_ERR(skb)) {
2268 BT_ERR("%s: Retrieving Intel exception info failed (%ld)",
2269 hdev->name, PTR_ERR(skb));
2270 return;
2271 }
2272
2273 if (skb->len != 13) {
2274 BT_ERR("%s: Exception info size mismatch", hdev->name);
2275 kfree_skb(skb);
2276 return;
2277 }
2278
Marcel Holtmann385a7682015-01-28 11:09:56 -08002279 BT_ERR("%s: Exception info %s", hdev->name, (char *)(skb->data + 1));
2280
2281 kfree_skb(skb);
2282}
2283
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002284static int btusb_shutdown_intel(struct hci_dev *hdev)
2285{
2286 struct sk_buff *skb;
2287 long ret;
2288
2289 /* Some platforms have an issue with BT LED when the interface is
2290 * down or BT radio is turned off, which takes 5 seconds to BT LED
2291 * goes off. This command turns off the BT LED immediately.
2292 */
2293 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2294 if (IS_ERR(skb)) {
2295 ret = PTR_ERR(skb);
2296 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2297 hdev->name, ret);
2298 return ret;
2299 }
2300 kfree_skb(skb);
2301
2302 return 0;
2303}
2304
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002305static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2306 const bdaddr_t *bdaddr)
2307{
2308 struct sk_buff *skb;
2309 u8 buf[8];
2310 long ret;
2311
2312 buf[0] = 0xfe;
2313 buf[1] = sizeof(bdaddr_t);
2314 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2315
2316 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2317 if (IS_ERR(skb)) {
2318 ret = PTR_ERR(skb);
2319 BT_ERR("%s: changing Marvell device address failed (%ld)",
2320 hdev->name, ret);
2321 return ret;
2322 }
2323 kfree_skb(skb);
2324
2325 return 0;
2326}
2327
Toshi Kikuchi58592232014-12-12 10:58:05 -08002328static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2329 const bdaddr_t *bdaddr)
2330{
2331 struct sk_buff *skb;
2332 u8 buf[10];
2333 long ret;
2334
2335 buf[0] = 0x01;
2336 buf[1] = 0x01;
2337 buf[2] = 0x00;
2338 buf[3] = sizeof(bdaddr_t);
2339 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2340
2341 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2342 if (IS_ERR(skb)) {
2343 ret = PTR_ERR(skb);
2344 BT_ERR("%s: Change address command failed (%ld)",
2345 hdev->name, ret);
2346 return ret;
2347 }
2348 kfree_skb(skb);
2349
2350 return 0;
2351}
2352
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002353#define QCA_DFU_PACKET_LEN 4096
2354
2355#define QCA_GET_TARGET_VERSION 0x09
2356#define QCA_CHECK_STATUS 0x05
2357#define QCA_DFU_DOWNLOAD 0x01
2358
2359#define QCA_SYSCFG_UPDATED 0x40
2360#define QCA_PATCH_UPDATED 0x80
2361#define QCA_DFU_TIMEOUT 3000
2362
2363struct qca_version {
2364 __le32 rom_version;
2365 __le32 patch_version;
2366 __le32 ram_version;
2367 __le32 ref_clock;
2368 __u8 reserved[4];
2369} __packed;
2370
2371struct qca_rampatch_version {
2372 __le16 rom_version;
2373 __le16 patch_version;
2374} __packed;
2375
2376struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002377 u32 rom_version;
2378 u8 rampatch_hdr; /* length of header in rampatch */
2379 u8 nvm_hdr; /* length of header in NVM */
2380 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002381};
2382
2383static const struct qca_device_info qca_devices_table[] = {
2384 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2385 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002386 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002387 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2388 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2389 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2390};
2391
2392static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2393 void *data, u16 size)
2394{
2395 struct btusb_data *btdata = hci_get_drvdata(hdev);
2396 struct usb_device *udev = btdata->udev;
2397 int pipe, err;
2398 u8 *buf;
2399
2400 buf = kmalloc(size, GFP_KERNEL);
2401 if (!buf)
2402 return -ENOMEM;
2403
2404 /* Found some of USB hosts have IOT issues with ours so that we should
2405 * not wait until HCI layer is ready.
2406 */
2407 pipe = usb_rcvctrlpipe(udev, 0);
2408 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2409 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2410 if (err < 0) {
2411 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2412 goto done;
2413 }
2414
2415 memcpy(data, buf, size);
2416
2417done:
2418 kfree(buf);
2419
2420 return err;
2421}
2422
2423static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2424 const struct firmware *firmware,
2425 size_t hdr_size)
2426{
2427 struct btusb_data *btdata = hci_get_drvdata(hdev);
2428 struct usb_device *udev = btdata->udev;
2429 size_t count, size, sent = 0;
2430 int pipe, len, err;
2431 u8 *buf;
2432
2433 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2434 if (!buf)
2435 return -ENOMEM;
2436
2437 count = firmware->size;
2438
2439 size = min_t(size_t, count, hdr_size);
2440 memcpy(buf, firmware->data, size);
2441
2442 /* USB patches should go down to controller through USB path
2443 * because binary format fits to go down through USB channel.
2444 * USB control path is for patching headers and USB bulk is for
2445 * patch body.
2446 */
2447 pipe = usb_sndctrlpipe(udev, 0);
2448 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2449 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2450 if (err < 0) {
2451 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2452 goto done;
2453 }
2454
2455 sent += size;
2456 count -= size;
2457
2458 while (count) {
2459 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2460
2461 memcpy(buf, firmware->data + sent, size);
2462
2463 pipe = usb_sndbulkpipe(udev, 0x02);
2464 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2465 QCA_DFU_TIMEOUT);
2466 if (err < 0) {
2467 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2468 hdev->name, sent, firmware->size, err);
2469 break;
2470 }
2471
2472 if (size != len) {
2473 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2474 err = -EILSEQ;
2475 break;
2476 }
2477
2478 sent += size;
2479 count -= size;
2480 }
2481
2482done:
2483 kfree(buf);
2484 return err;
2485}
2486
2487static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2488 struct qca_version *ver,
2489 const struct qca_device_info *info)
2490{
2491 struct qca_rampatch_version *rver;
2492 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002493 u32 ver_rom, ver_patch;
2494 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002495 char fwname[64];
2496 int err;
2497
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002498 ver_rom = le32_to_cpu(ver->rom_version);
2499 ver_patch = le32_to_cpu(ver->patch_version);
2500
2501 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002502
2503 err = request_firmware(&fw, fwname, &hdev->dev);
2504 if (err) {
2505 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2506 hdev->name, fwname, err);
2507 return err;
2508 }
2509
2510 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002511
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002512 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2513 rver_rom = le16_to_cpu(rver->rom_version);
2514 rver_patch = le16_to_cpu(rver->patch_version);
2515
2516 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2517 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2518 ver_patch);
2519
2520 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002521 BT_ERR("%s: rampatch file version did not match with firmware",
2522 hdev->name);
2523 err = -EINVAL;
2524 goto done;
2525 }
2526
2527 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2528
2529done:
2530 release_firmware(fw);
2531
2532 return err;
2533}
2534
2535static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2536 struct qca_version *ver,
2537 const struct qca_device_info *info)
2538{
2539 const struct firmware *fw;
2540 char fwname[64];
2541 int err;
2542
2543 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2544 le32_to_cpu(ver->rom_version));
2545
2546 err = request_firmware(&fw, fwname, &hdev->dev);
2547 if (err) {
2548 BT_ERR("%s: failed to request NVM file: %s (%d)",
2549 hdev->name, fwname, err);
2550 return err;
2551 }
2552
2553 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2554
2555 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2556
2557 release_firmware(fw);
2558
2559 return err;
2560}
2561
2562static int btusb_setup_qca(struct hci_dev *hdev)
2563{
2564 const struct qca_device_info *info = NULL;
2565 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002566 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002567 u8 status;
2568 int i, err;
2569
2570 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002571 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002572 if (err < 0)
2573 return err;
2574
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002575 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002576 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002577 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002578 info = &qca_devices_table[i];
2579 }
2580 if (!info) {
2581 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002582 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002583 return -ENODEV;
2584 }
2585
2586 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2587 sizeof(status));
2588 if (err < 0)
2589 return err;
2590
2591 if (!(status & QCA_PATCH_UPDATED)) {
2592 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2593 if (err < 0)
2594 return err;
2595 }
2596
2597 if (!(status & QCA_SYSCFG_UPDATED)) {
2598 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2599 if (err < 0)
2600 return err;
2601 }
2602
2603 return 0;
2604}
2605
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002606static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002607 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002608{
2609 struct usb_endpoint_descriptor *ep_desc;
2610 struct btusb_data *data;
2611 struct hci_dev *hdev;
2612 int i, err;
2613
2614 BT_DBG("intf %p id %p", intf, id);
2615
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002616 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002617 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2618 return -ENODEV;
2619
2620 if (!id->driver_info) {
2621 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002622
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002623 match = usb_match_id(intf, blacklist_table);
2624 if (match)
2625 id = match;
2626 }
2627
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002628 if (id->driver_info == BTUSB_IGNORE)
2629 return -ENODEV;
2630
Steven.Li2d25f8b2011-07-01 14:02:36 +08002631 if (id->driver_info & BTUSB_ATH3012) {
2632 struct usb_device *udev = interface_to_usbdev(intf);
2633
2634 /* Old firmware would otherwise let ath3k driver load
2635 * patch and sysconfig files */
2636 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2637 return -ENODEV;
2638 }
2639
Sachin Kamat98921db2012-07-27 12:38:39 +05302640 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002641 if (!data)
2642 return -ENOMEM;
2643
2644 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2645 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2646
2647 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2648 data->intr_ep = ep_desc;
2649 continue;
2650 }
2651
2652 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2653 data->bulk_tx_ep = ep_desc;
2654 continue;
2655 }
2656
2657 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2658 data->bulk_rx_ep = ep_desc;
2659 continue;
2660 }
2661 }
2662
Sachin Kamat98921db2012-07-27 12:38:39 +05302663 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002664 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002665
Marcel Holtmann893ba542015-01-28 20:27:34 -08002666 if (id->driver_info & BTUSB_AMP) {
2667 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2668 data->cmdreq = 0x2b;
2669 } else {
2670 data->cmdreq_type = USB_TYPE_CLASS;
2671 data->cmdreq = 0x00;
2672 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002673
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002674 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002675 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002676
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002677 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002678 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002679 init_usb_anchor(&data->deferred);
2680 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002681 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002682
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002683 init_usb_anchor(&data->intr_anchor);
2684 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002685 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002686 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002687
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002688 if (id->driver_info & BTUSB_INTEL_NEW) {
2689 data->recv_event = btusb_recv_event_intel;
2690 data->recv_bulk = btusb_recv_bulk_intel;
2691 set_bit(BTUSB_BOOTLOADER, &data->flags);
2692 } else {
2693 data->recv_event = hci_recv_frame;
2694 data->recv_bulk = btusb_recv_bulk;
2695 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002696
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002697 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302698 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002699 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002700
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002701 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002702 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002703
Marcel Holtmann893ba542015-01-28 20:27:34 -08002704 if (id->driver_info & BTUSB_AMP)
2705 hdev->dev_type = HCI_AMP;
2706 else
2707 hdev->dev_type = HCI_BREDR;
2708
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002709 data->hdev = hdev;
2710
2711 SET_HCIDEV_DEV(hdev, &intf->dev);
2712
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002713 hdev->open = btusb_open;
2714 hdev->close = btusb_close;
2715 hdev->flush = btusb_flush;
2716 hdev->send = btusb_send_frame;
2717 hdev->notify = btusb_notify;
2718
2719 if (id->driver_info & BTUSB_BCM92035)
2720 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002721
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002722#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002723 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002724 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002725 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002726 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002727
Marcel Holtmann941521e2015-04-05 22:52:15 -07002728 if (id->driver_info & BTUSB_BCM_APPLE)
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002729 hdev->setup = btbcm_setup_apple;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002730#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002731
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002732 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002733 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002734 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002735 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002736 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002737 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002738 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002739
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002740 if (id->driver_info & BTUSB_INTEL_NEW) {
2741 hdev->send = btusb_send_frame_intel;
2742 hdev->setup = btusb_setup_intel_new;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002743 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002744 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002745 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002746 }
2747
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002748 if (id->driver_info & BTUSB_MARVELL)
2749 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2750
Marcel Holtmann661cf882015-01-02 23:35:20 -08002751 if (id->driver_info & BTUSB_SWAVE) {
2752 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002753 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002754 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002755
Marcel Holtmann40df7832014-07-06 13:29:58 +02002756 if (id->driver_info & BTUSB_INTEL_BOOT)
2757 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2758
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002759 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002760 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002761 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002762 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2763 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002764
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002765 if (id->driver_info & BTUSB_QCA_ROME) {
2766 data->setup_on_usb = btusb_setup_qca;
2767 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2768 }
2769
Carlo Caionedb33c772015-05-14 10:49:09 +02002770#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002771 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002772 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002773
2774 /* Realtek devices lose their updated firmware over suspend,
2775 * but the USB hub doesn't notice any status change.
2776 * Explicitly request a device reset on resume.
2777 */
2778 set_bit(BTUSB_RESET_RESUME, &data->flags);
2779 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002780#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002781
Marcel Holtmann893ba542015-01-28 20:27:34 -08002782 if (id->driver_info & BTUSB_AMP) {
2783 /* AMP controllers do not support SCO packets */
2784 data->isoc = NULL;
2785 } else {
2786 /* Interface numbers are hardcoded in the specification */
2787 data->isoc = usb_ifnum_to_if(data->udev, 1);
2788 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002789
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002790 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002791 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002792
2793 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2794 if (!disable_scofix)
2795 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2796 }
2797
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002798 if (id->driver_info & BTUSB_BROKEN_ISOC)
2799 data->isoc = NULL;
2800
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002801 if (id->driver_info & BTUSB_DIGIANSWER) {
2802 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002803 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002804 }
2805
2806 if (id->driver_info & BTUSB_CSR) {
2807 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002808 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002809
2810 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002811 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002812 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002813
2814 /* Fake CSR devices with broken commands */
2815 if (bcdDevice <= 0x100)
2816 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002817
2818 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002819 }
2820
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002821 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002822 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002823
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002824 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002825 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2826 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2827 }
2828
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002829 if (id->driver_info & BTUSB_INTEL_BOOT) {
2830 /* A bug in the bootloader causes that interrupt interface is
2831 * only enabled after receiving SetInterface(0, AltSetting=0).
2832 */
2833 err = usb_set_interface(data->udev, 0, 0);
2834 if (err < 0) {
2835 BT_ERR("failed to set interface 0, alt 0 %d", err);
2836 hci_free_dev(hdev);
2837 return err;
2838 }
2839 }
2840
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002841 if (data->isoc) {
2842 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002843 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002844 if (err < 0) {
2845 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002846 return err;
2847 }
2848 }
2849
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002850 err = hci_register_dev(hdev);
2851 if (err < 0) {
2852 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002853 return err;
2854 }
2855
2856 usb_set_intfdata(intf, data);
2857
2858 return 0;
2859}
2860
2861static void btusb_disconnect(struct usb_interface *intf)
2862{
2863 struct btusb_data *data = usb_get_intfdata(intf);
2864 struct hci_dev *hdev;
2865
2866 BT_DBG("intf %p", intf);
2867
2868 if (!data)
2869 return;
2870
2871 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002872 usb_set_intfdata(data->intf, NULL);
2873
2874 if (data->isoc)
2875 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002876
2877 hci_unregister_dev(hdev);
2878
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002879 if (intf == data->isoc)
2880 usb_driver_release_interface(&btusb_driver, data->intf);
2881 else if (data->isoc)
2882 usb_driver_release_interface(&btusb_driver, data->isoc);
2883
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002884 hci_free_dev(hdev);
2885}
2886
Oliver Neukum7bee5492009-08-24 23:44:59 +02002887#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002888static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2889{
2890 struct btusb_data *data = usb_get_intfdata(intf);
2891
2892 BT_DBG("intf %p", intf);
2893
2894 if (data->suspend_count++)
2895 return 0;
2896
Oliver Neukum7bee5492009-08-24 23:44:59 +02002897 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002898 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002899 set_bit(BTUSB_SUSPENDING, &data->flags);
2900 spin_unlock_irq(&data->txlock);
2901 } else {
2902 spin_unlock_irq(&data->txlock);
2903 data->suspend_count--;
2904 return -EBUSY;
2905 }
2906
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002907 cancel_work_sync(&data->work);
2908
Oliver Neukum7bee5492009-08-24 23:44:59 +02002909 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002910 usb_kill_anchored_urbs(&data->tx_anchor);
2911
Daniel Drake04b8c812015-05-21 08:23:50 -06002912 /* Optionally request a device reset on resume, but only when
2913 * wakeups are disabled. If wakeups are enabled we assume the
2914 * device will stay powered up throughout suspend.
2915 */
2916 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
2917 !device_may_wakeup(&data->udev->dev))
2918 data->udev->reset_resume = 1;
2919
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002920 return 0;
2921}
2922
Oliver Neukum7bee5492009-08-24 23:44:59 +02002923static void play_deferred(struct btusb_data *data)
2924{
2925 struct urb *urb;
2926 int err;
2927
2928 while ((urb = usb_get_from_anchor(&data->deferred))) {
2929 err = usb_submit_urb(urb, GFP_ATOMIC);
2930 if (err < 0)
2931 break;
2932
2933 data->tx_in_flight++;
2934 }
2935 usb_scuttle_anchored_urbs(&data->deferred);
2936}
2937
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002938static int btusb_resume(struct usb_interface *intf)
2939{
2940 struct btusb_data *data = usb_get_intfdata(intf);
2941 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002942 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002943
2944 BT_DBG("intf %p", intf);
2945
2946 if (--data->suspend_count)
2947 return 0;
2948
2949 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02002950 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002951
2952 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2953 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2954 if (err < 0) {
2955 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002956 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002957 }
2958 }
2959
2960 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01002961 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2962 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002963 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002964 goto failed;
2965 }
2966
2967 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002968 }
2969
2970 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2971 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2972 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2973 else
2974 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2975 }
2976
Oliver Neukum7bee5492009-08-24 23:44:59 +02002977 spin_lock_irq(&data->txlock);
2978 play_deferred(data);
2979 clear_bit(BTUSB_SUSPENDING, &data->flags);
2980 spin_unlock_irq(&data->txlock);
2981 schedule_work(&data->work);
2982
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002983 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002984
2985failed:
2986 usb_scuttle_anchored_urbs(&data->deferred);
2987done:
2988 spin_lock_irq(&data->txlock);
2989 clear_bit(BTUSB_SUSPENDING, &data->flags);
2990 spin_unlock_irq(&data->txlock);
2991
2992 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002993}
Oliver Neukum7bee5492009-08-24 23:44:59 +02002994#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002995
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002996static struct usb_driver btusb_driver = {
2997 .name = "btusb",
2998 .probe = btusb_probe,
2999 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003000#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003001 .suspend = btusb_suspend,
3002 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003003#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003004 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003005 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003006 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003007};
3008
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003009module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003010
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003011module_param(disable_scofix, bool, 0644);
3012MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3013
3014module_param(force_scofix, bool, 0644);
3015MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3016
3017module_param(reset, bool, 0644);
3018MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3019
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003020MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3021MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3022MODULE_VERSION(VERSION);
3023MODULE_LICENSE("GPL");