blob: 7f936db169f5233e3bd962eb3ecfd4fbc58aa5dc [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 Holtmannd92f2df2014-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 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300182 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530183 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200184 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
185 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
186 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
187 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700188 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200189 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
190 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300191 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200192 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200193 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
194 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100195 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200196 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800197 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800198 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900199 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200200 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100201 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100202 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200203 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800204 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200205 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800206 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800207 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800208 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200209 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
210 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800211 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530212 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300213 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300214 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530215 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300216 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530217
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800218 /* Atheros AR5BBU12 with sflash firmware */
219 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
220
Michael Gruetzner85d59722012-05-02 22:33:40 +0200221 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530222 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200223 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200224
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000225 /* QCA ROME chipset */
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800226 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700227 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
228 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000229
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200230 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100231 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200232 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
233 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200234
235 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100236 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
237 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200238
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200239 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100240 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
241 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200242
243 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100244 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200245
246 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100247 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200248
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100249 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100250 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100251 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200252
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100253 /* Belkin F8T012 and F8T013 devices */
254 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
255 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200256
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100257 /* Asus WL-BTD202 device */
258 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
259
260 /* Kensington Bluetooth USB adapter */
261 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
262
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200263 /* RTX Telecom based adapters with buggy SCO support */
264 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
265 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
266
267 /* CONWISE Technology based adapters with buggy SCO support */
268 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
269
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800270 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
271 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
272
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200273 /* Digianswer devices */
274 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
275 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
276
277 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200278 { USB_DEVICE(0x0a12, 0x0002),
279 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200280
281 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200282 { USB_DEVICE(0x16d3, 0x0002),
283 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200284
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800285 /* Marvell Bluetooth devices */
286 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
287 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
288
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800289 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800290 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700291 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800292 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800293 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700294
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800295 /* Other Intel Bluetooth devices */
296 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
297 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700298
Daniel Drakea2698a92015-04-16 14:09:55 -0600299 /* Realtek Bluetooth devices */
300 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
301 .driver_info = BTUSB_REALTEK },
302
303 /* Additional Realtek 8723AE Bluetooth devices */
304 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
305 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
306
307 /* Additional Realtek 8723BE Bluetooth devices */
308 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
309 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
310 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
311 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
312 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
313
314 /* Additional Realtek 8821AE Bluetooth devices */
315 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
316 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
317 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
318 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
319 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
320
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200321 { } /* Terminating entry */
322};
323
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200324#define BTUSB_MAX_ISOC_FRAMES 10
325
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200326#define BTUSB_INTR_RUNNING 0
327#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200328#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200329#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300330#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800331#define BTUSB_BOOTLOADER 5
332#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800333#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800334#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800335#define BTUSB_BOOTING 9
Daniel Drake04b8c812015-05-21 08:23:50 -0600336#define BTUSB_RESET_RESUME 10
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200337
338struct btusb_data {
339 struct hci_dev *hdev;
340 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200341 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200342 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200343
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200344 unsigned long flags;
345
346 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200347 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348
Marcel Holtmann803b5832014-09-16 08:00:29 +0200349 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200350 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200351 int tx_in_flight;
352 spinlock_t txlock;
353
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200354 struct usb_anchor intr_anchor;
355 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200356 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200357 spinlock_t rxlock;
358
359 struct sk_buff *evt_skb;
360 struct sk_buff *acl_skb;
361 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200362
363 struct usb_endpoint_descriptor *intr_ep;
364 struct usb_endpoint_descriptor *bulk_tx_ep;
365 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200366 struct usb_endpoint_descriptor *isoc_tx_ep;
367 struct usb_endpoint_descriptor *isoc_rx_ep;
368
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100369 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800370 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100371
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100372 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200373 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100374 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100375
Marcel Holtmann97307f52015-01-12 13:51:10 -0800376 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100377 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000378
379 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200380};
381
Marcel Holtmann803b5832014-09-16 08:00:29 +0200382static inline void btusb_free_frags(struct btusb_data *data)
383{
384 unsigned long flags;
385
386 spin_lock_irqsave(&data->rxlock, flags);
387
388 kfree_skb(data->evt_skb);
389 data->evt_skb = NULL;
390
391 kfree_skb(data->acl_skb);
392 data->acl_skb = NULL;
393
394 kfree_skb(data->sco_skb);
395 data->sco_skb = NULL;
396
397 spin_unlock_irqrestore(&data->rxlock, flags);
398}
399
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200400static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
401{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200402 struct sk_buff *skb;
403 int err = 0;
404
405 spin_lock(&data->rxlock);
406 skb = data->evt_skb;
407
408 while (count) {
409 int len;
410
411 if (!skb) {
412 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
413 if (!skb) {
414 err = -ENOMEM;
415 break;
416 }
417
418 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
419 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
420 }
421
422 len = min_t(uint, bt_cb(skb)->expect, count);
423 memcpy(skb_put(skb, len), buffer, len);
424
425 count -= len;
426 buffer += len;
427 bt_cb(skb)->expect -= len;
428
429 if (skb->len == HCI_EVENT_HDR_SIZE) {
430 /* Complete event header */
431 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
432
433 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
434 kfree_skb(skb);
435 skb = NULL;
436
437 err = -EILSEQ;
438 break;
439 }
440 }
441
442 if (bt_cb(skb)->expect == 0) {
443 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800444 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200445 skb = NULL;
446 }
447 }
448
449 data->evt_skb = skb;
450 spin_unlock(&data->rxlock);
451
452 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200453}
454
455static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
456{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200457 struct sk_buff *skb;
458 int err = 0;
459
460 spin_lock(&data->rxlock);
461 skb = data->acl_skb;
462
463 while (count) {
464 int len;
465
466 if (!skb) {
467 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
468 if (!skb) {
469 err = -ENOMEM;
470 break;
471 }
472
473 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
474 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
475 }
476
477 len = min_t(uint, bt_cb(skb)->expect, count);
478 memcpy(skb_put(skb, len), buffer, len);
479
480 count -= len;
481 buffer += len;
482 bt_cb(skb)->expect -= len;
483
484 if (skb->len == HCI_ACL_HDR_SIZE) {
485 __le16 dlen = hci_acl_hdr(skb)->dlen;
486
487 /* Complete ACL header */
488 bt_cb(skb)->expect = __le16_to_cpu(dlen);
489
490 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
491 kfree_skb(skb);
492 skb = NULL;
493
494 err = -EILSEQ;
495 break;
496 }
497 }
498
499 if (bt_cb(skb)->expect == 0) {
500 /* Complete frame */
501 hci_recv_frame(data->hdev, skb);
502 skb = NULL;
503 }
504 }
505
506 data->acl_skb = skb;
507 spin_unlock(&data->rxlock);
508
509 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200510}
511
512static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
513{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200514 struct sk_buff *skb;
515 int err = 0;
516
517 spin_lock(&data->rxlock);
518 skb = data->sco_skb;
519
520 while (count) {
521 int len;
522
523 if (!skb) {
524 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
525 if (!skb) {
526 err = -ENOMEM;
527 break;
528 }
529
530 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
531 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
532 }
533
534 len = min_t(uint, bt_cb(skb)->expect, count);
535 memcpy(skb_put(skb, len), buffer, len);
536
537 count -= len;
538 buffer += len;
539 bt_cb(skb)->expect -= len;
540
541 if (skb->len == HCI_SCO_HDR_SIZE) {
542 /* Complete SCO header */
543 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
544
545 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
546 kfree_skb(skb);
547 skb = NULL;
548
549 err = -EILSEQ;
550 break;
551 }
552 }
553
554 if (bt_cb(skb)->expect == 0) {
555 /* Complete frame */
556 hci_recv_frame(data->hdev, skb);
557 skb = NULL;
558 }
559 }
560
561 data->sco_skb = skb;
562 spin_unlock(&data->rxlock);
563
564 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200565}
566
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200567static void btusb_intr_complete(struct urb *urb)
568{
569 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100570 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200571 int err;
572
Marcel Holtmann89e75332014-09-16 04:44:50 +0200573 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
574 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200575
576 if (!test_bit(HCI_RUNNING, &hdev->flags))
577 return;
578
579 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200580 hdev->stat.byte_rx += urb->actual_length;
581
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200582 if (btusb_recv_intr(data, urb->transfer_buffer,
583 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200584 BT_ERR("%s corrupted event packet", hdev->name);
585 hdev->stat.err_rx++;
586 }
Champion Chen85560c42014-09-06 14:06:08 -0500587 } else if (urb->status == -ENOENT) {
588 /* Avoid suspend failed when usb_kill_urb */
589 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200590 }
591
592 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
593 return;
594
Oliver Neukum7bee5492009-08-24 23:44:59 +0200595 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200596 usb_anchor_urb(urb, &data->intr_anchor);
597
598 err = usb_submit_urb(urb, GFP_ATOMIC);
599 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200600 /* -EPERM: urb is being killed;
601 * -ENODEV: device got disconnected */
602 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100603 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200604 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200605 usb_unanchor_urb(urb);
606 }
607}
608
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100609static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200610{
David Herrmann155961e2012-02-09 21:58:32 +0100611 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200612 struct urb *urb;
613 unsigned char *buf;
614 unsigned int pipe;
615 int err, size;
616
617 BT_DBG("%s", hdev->name);
618
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200619 if (!data->intr_ep)
620 return -ENODEV;
621
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100622 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 if (!urb)
624 return -ENOMEM;
625
626 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
627
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100628 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200629 if (!buf) {
630 usb_free_urb(urb);
631 return -ENOMEM;
632 }
633
634 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
635
636 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200637 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200638
639 urb->transfer_flags |= URB_FREE_BUFFER;
640
641 usb_anchor_urb(urb, &data->intr_anchor);
642
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100643 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200644 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200645 if (err != -EPERM && err != -ENODEV)
646 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200647 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200648 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200649 }
650
651 usb_free_urb(urb);
652
653 return err;
654}
655
656static void btusb_bulk_complete(struct urb *urb)
657{
658 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100659 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200660 int err;
661
Marcel Holtmann89e75332014-09-16 04:44:50 +0200662 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
663 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200664
665 if (!test_bit(HCI_RUNNING, &hdev->flags))
666 return;
667
668 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200669 hdev->stat.byte_rx += urb->actual_length;
670
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100671 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200672 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200673 BT_ERR("%s corrupted ACL packet", hdev->name);
674 hdev->stat.err_rx++;
675 }
Champion Chen85560c42014-09-06 14:06:08 -0500676 } else if (urb->status == -ENOENT) {
677 /* Avoid suspend failed when usb_kill_urb */
678 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200679 }
680
681 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
682 return;
683
684 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100685 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200686
687 err = usb_submit_urb(urb, GFP_ATOMIC);
688 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200689 /* -EPERM: urb is being killed;
690 * -ENODEV: device got disconnected */
691 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100692 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200693 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200694 usb_unanchor_urb(urb);
695 }
696}
697
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100698static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200699{
David Herrmann155961e2012-02-09 21:58:32 +0100700 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200701 struct urb *urb;
702 unsigned char *buf;
703 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530704 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200705
706 BT_DBG("%s", hdev->name);
707
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200708 if (!data->bulk_rx_ep)
709 return -ENODEV;
710
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100711 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200712 if (!urb)
713 return -ENOMEM;
714
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100715 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200716 if (!buf) {
717 usb_free_urb(urb);
718 return -ENOMEM;
719 }
720
721 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
722
Marcel Holtmann89e75332014-09-16 04:44:50 +0200723 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
724 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200725
726 urb->transfer_flags |= URB_FREE_BUFFER;
727
Oliver Neukum7bee5492009-08-24 23:44:59 +0200728 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200729 usb_anchor_urb(urb, &data->bulk_anchor);
730
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100731 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200732 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200733 if (err != -EPERM && err != -ENODEV)
734 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200735 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200736 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200737 }
738
739 usb_free_urb(urb);
740
741 return err;
742}
743
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200744static void btusb_isoc_complete(struct urb *urb)
745{
746 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100747 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200748 int i, err;
749
Marcel Holtmann89e75332014-09-16 04:44:50 +0200750 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
751 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200752
753 if (!test_bit(HCI_RUNNING, &hdev->flags))
754 return;
755
756 if (urb->status == 0) {
757 for (i = 0; i < urb->number_of_packets; i++) {
758 unsigned int offset = urb->iso_frame_desc[i].offset;
759 unsigned int length = urb->iso_frame_desc[i].actual_length;
760
761 if (urb->iso_frame_desc[i].status)
762 continue;
763
764 hdev->stat.byte_rx += length;
765
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200766 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
767 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200768 BT_ERR("%s corrupted SCO packet", hdev->name);
769 hdev->stat.err_rx++;
770 }
771 }
Champion Chen85560c42014-09-06 14:06:08 -0500772 } else if (urb->status == -ENOENT) {
773 /* Avoid suspend failed when usb_kill_urb */
774 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200775 }
776
777 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
778 return;
779
780 usb_anchor_urb(urb, &data->isoc_anchor);
781
782 err = usb_submit_urb(urb, GFP_ATOMIC);
783 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200784 /* -EPERM: urb is being killed;
785 * -ENODEV: device got disconnected */
786 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100787 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200788 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200789 usb_unanchor_urb(urb);
790 }
791}
792
Jesper Juhl42b16b32011-01-17 00:09:38 +0100793static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200794{
795 int i, offset = 0;
796
797 BT_DBG("len %d mtu %d", len, mtu);
798
799 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
800 i++, offset += mtu, len -= mtu) {
801 urb->iso_frame_desc[i].offset = offset;
802 urb->iso_frame_desc[i].length = mtu;
803 }
804
805 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
806 urb->iso_frame_desc[i].offset = offset;
807 urb->iso_frame_desc[i].length = len;
808 i++;
809 }
810
811 urb->number_of_packets = i;
812}
813
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100814static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200815{
David Herrmann155961e2012-02-09 21:58:32 +0100816 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200817 struct urb *urb;
818 unsigned char *buf;
819 unsigned int pipe;
820 int err, size;
821
822 BT_DBG("%s", hdev->name);
823
824 if (!data->isoc_rx_ep)
825 return -ENODEV;
826
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100827 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200828 if (!urb)
829 return -ENOMEM;
830
831 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
832 BTUSB_MAX_ISOC_FRAMES;
833
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100834 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200835 if (!buf) {
836 usb_free_urb(urb);
837 return -ENOMEM;
838 }
839
840 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
841
Bing Zhaofa0fb932011-12-20 18:19:00 -0800842 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200843 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200844
Marcel Holtmann89e75332014-09-16 04:44:50 +0200845 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200846
847 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200848 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200849
850 usb_anchor_urb(urb, &data->isoc_anchor);
851
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100852 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200853 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200854 if (err != -EPERM && err != -ENODEV)
855 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200856 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200857 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200858 }
859
860 usb_free_urb(urb);
861
862 return err;
863}
864
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200865static void btusb_tx_complete(struct urb *urb)
866{
867 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200868 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100869 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200870
Marcel Holtmann89e75332014-09-16 04:44:50 +0200871 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
872 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200873
874 if (!test_bit(HCI_RUNNING, &hdev->flags))
875 goto done;
876
877 if (!urb->status)
878 hdev->stat.byte_tx += urb->transfer_buffer_length;
879 else
880 hdev->stat.err_tx++;
881
882done:
883 spin_lock(&data->txlock);
884 data->tx_in_flight--;
885 spin_unlock(&data->txlock);
886
887 kfree(urb->setup_packet);
888
889 kfree_skb(skb);
890}
891
892static void btusb_isoc_tx_complete(struct urb *urb)
893{
894 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200895 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200896
Marcel Holtmann89e75332014-09-16 04:44:50 +0200897 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
898 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200899
900 if (!test_bit(HCI_RUNNING, &hdev->flags))
901 goto done;
902
903 if (!urb->status)
904 hdev->stat.byte_tx += urb->transfer_buffer_length;
905 else
906 hdev->stat.err_tx++;
907
908done:
909 kfree(urb->setup_packet);
910
911 kfree_skb(skb);
912}
913
914static int btusb_open(struct hci_dev *hdev)
915{
David Herrmann155961e2012-02-09 21:58:32 +0100916 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200917 int err;
918
919 BT_DBG("%s", hdev->name);
920
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000921 /* Patching USB firmware files prior to starting any URBs of HCI path
922 * It is more safe to use USB bulk channel for downloading USB patch
923 */
924 if (data->setup_on_usb) {
925 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +0200926 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000927 return err;
928 }
929
Oliver Neukum7bee5492009-08-24 23:44:59 +0200930 err = usb_autopm_get_interface(data->intf);
931 if (err < 0)
932 return err;
933
934 data->intf->needs_remote_wakeup = 1;
935
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200936 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200937 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200938
939 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200940 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200941
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100942 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100943 if (err < 0)
944 goto failed;
945
946 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200947 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100948 usb_kill_anchored_urbs(&data->intr_anchor);
949 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200950 }
951
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100952 set_bit(BTUSB_BULK_RUNNING, &data->flags);
953 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
954
Oliver Neukum7bee5492009-08-24 23:44:59 +0200955done:
956 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100957 return 0;
958
959failed:
960 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
961 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200962 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200963 return err;
964}
965
Oliver Neukum7bee5492009-08-24 23:44:59 +0200966static void btusb_stop_traffic(struct btusb_data *data)
967{
968 usb_kill_anchored_urbs(&data->intr_anchor);
969 usb_kill_anchored_urbs(&data->bulk_anchor);
970 usb_kill_anchored_urbs(&data->isoc_anchor);
971}
972
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200973static int btusb_close(struct hci_dev *hdev)
974{
David Herrmann155961e2012-02-09 21:58:32 +0100975 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200976 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200977
978 BT_DBG("%s", hdev->name);
979
980 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
981 return 0;
982
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200983 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800984 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200985
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200986 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200987 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200988 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200989
990 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200991 btusb_free_frags(data);
992
Oliver Neukum7bee5492009-08-24 23:44:59 +0200993 err = usb_autopm_get_interface(data->intf);
994 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100995 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200996
997 data->intf->needs_remote_wakeup = 0;
998 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200999
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001000failed:
1001 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001002 return 0;
1003}
1004
1005static int btusb_flush(struct hci_dev *hdev)
1006{
David Herrmann155961e2012-02-09 21:58:32 +01001007 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001008
1009 BT_DBG("%s", hdev->name);
1010
1011 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001012 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001013
1014 return 0;
1015}
1016
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001017static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001018{
David Herrmann155961e2012-02-09 21:58:32 +01001019 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001020 struct usb_ctrlrequest *dr;
1021 struct urb *urb;
1022 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001023
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001024 urb = usb_alloc_urb(0, GFP_KERNEL);
1025 if (!urb)
1026 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001027
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001028 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1029 if (!dr) {
1030 usb_free_urb(urb);
1031 return ERR_PTR(-ENOMEM);
1032 }
1033
1034 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001035 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001036 dr->wIndex = 0;
1037 dr->wValue = 0;
1038 dr->wLength = __cpu_to_le16(skb->len);
1039
1040 pipe = usb_sndctrlpipe(data->udev, 0x00);
1041
Marcel Holtmann89e75332014-09-16 04:44:50 +02001042 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001043 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001044
Marcel Holtmann89e75332014-09-16 04:44:50 +02001045 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001046
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001047 return urb;
1048}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001049
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001050static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1051{
1052 struct btusb_data *data = hci_get_drvdata(hdev);
1053 struct urb *urb;
1054 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001055
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001056 if (!data->bulk_tx_ep)
1057 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001058
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001059 urb = usb_alloc_urb(0, GFP_KERNEL);
1060 if (!urb)
1061 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001062
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001063 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001064
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001065 usb_fill_bulk_urb(urb, data->udev, pipe,
1066 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001067
Marcel Holtmann89e75332014-09-16 04:44:50 +02001068 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001069
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001070 return urb;
1071}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001072
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001073static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1074{
1075 struct btusb_data *data = hci_get_drvdata(hdev);
1076 struct urb *urb;
1077 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001078
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001079 if (!data->isoc_tx_ep)
1080 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001081
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001082 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1083 if (!urb)
1084 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001085
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001086 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001087
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001088 usb_fill_int_urb(urb, data->udev, pipe,
1089 skb->data, skb->len, btusb_isoc_tx_complete,
1090 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001091
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001092 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001093
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001094 __fill_isoc_descriptor(urb, skb->len,
1095 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001096
Marcel Holtmann89e75332014-09-16 04:44:50 +02001097 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001098
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001099 return urb;
1100}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001101
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001102static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1103{
1104 struct btusb_data *data = hci_get_drvdata(hdev);
1105 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001106
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001107 usb_anchor_urb(urb, &data->tx_anchor);
1108
Johan Hedberge9753ef2014-09-14 08:49:34 +03001109 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001110 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001111 if (err != -EPERM && err != -ENODEV)
1112 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001113 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001114 kfree(urb->setup_packet);
1115 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001116 } else {
1117 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001118 }
1119
Cong Wang54a8a792011-11-22 09:32:57 +08001120 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001121 return err;
1122}
1123
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001124static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1125{
1126 struct btusb_data *data = hci_get_drvdata(hdev);
1127 unsigned long flags;
1128 bool suspending;
1129
1130 spin_lock_irqsave(&data->txlock, flags);
1131 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1132 if (!suspending)
1133 data->tx_in_flight++;
1134 spin_unlock_irqrestore(&data->txlock, flags);
1135
1136 if (!suspending)
1137 return submit_tx_urb(hdev, urb);
1138
1139 usb_anchor_urb(urb, &data->deferred);
1140 schedule_work(&data->waker);
1141
1142 usb_free_urb(urb);
1143 return 0;
1144}
1145
1146static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1147{
1148 struct urb *urb;
1149
1150 BT_DBG("%s", hdev->name);
1151
1152 if (!test_bit(HCI_RUNNING, &hdev->flags))
1153 return -EBUSY;
1154
1155 switch (bt_cb(skb)->pkt_type) {
1156 case HCI_COMMAND_PKT:
1157 urb = alloc_ctrl_urb(hdev, skb);
1158 if (IS_ERR(urb))
1159 return PTR_ERR(urb);
1160
1161 hdev->stat.cmd_tx++;
1162 return submit_or_queue_tx_urb(hdev, urb);
1163
1164 case HCI_ACLDATA_PKT:
1165 urb = alloc_bulk_urb(hdev, skb);
1166 if (IS_ERR(urb))
1167 return PTR_ERR(urb);
1168
1169 hdev->stat.acl_tx++;
1170 return submit_or_queue_tx_urb(hdev, urb);
1171
1172 case HCI_SCODATA_PKT:
1173 if (hci_conn_num(hdev, SCO_LINK) < 1)
1174 return -ENODEV;
1175
1176 urb = alloc_isoc_urb(hdev, skb);
1177 if (IS_ERR(urb))
1178 return PTR_ERR(urb);
1179
1180 hdev->stat.sco_tx++;
1181 return submit_tx_urb(hdev, urb);
1182 }
1183
1184 return -EILSEQ;
1185}
1186
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001187static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1188{
David Herrmann155961e2012-02-09 21:58:32 +01001189 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001190
1191 BT_DBG("%s evt %d", hdev->name, evt);
1192
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001193 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1194 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001195 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001196 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001197}
1198
Jesper Juhl42b16b32011-01-17 00:09:38 +01001199static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001200{
David Herrmann155961e2012-02-09 21:58:32 +01001201 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001202 struct usb_interface *intf = data->isoc;
1203 struct usb_endpoint_descriptor *ep_desc;
1204 int i, err;
1205
1206 if (!data->isoc)
1207 return -ENODEV;
1208
1209 err = usb_set_interface(data->udev, 1, altsetting);
1210 if (err < 0) {
1211 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1212 return err;
1213 }
1214
1215 data->isoc_altsetting = altsetting;
1216
1217 data->isoc_tx_ep = NULL;
1218 data->isoc_rx_ep = NULL;
1219
1220 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1221 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1222
1223 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1224 data->isoc_tx_ep = ep_desc;
1225 continue;
1226 }
1227
1228 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1229 data->isoc_rx_ep = ep_desc;
1230 continue;
1231 }
1232 }
1233
1234 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1235 BT_ERR("%s invalid SCO descriptors", hdev->name);
1236 return -ENODEV;
1237 }
1238
1239 return 0;
1240}
1241
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001242static void btusb_work(struct work_struct *work)
1243{
1244 struct btusb_data *data = container_of(work, struct btusb_data, work);
1245 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001246 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001247 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001248
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001249 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001250 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001251 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001252 if (err < 0) {
1253 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1254 usb_kill_anchored_urbs(&data->isoc_anchor);
1255 return;
1256 }
1257
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001258 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001259 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001260
1261 if (hdev->voice_setting & 0x0020) {
1262 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001263
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001264 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001265 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001266 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001267 }
1268
1269 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001270 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1271 usb_kill_anchored_urbs(&data->isoc_anchor);
1272
Mikel Astizf4001d22012-04-11 08:48:51 +02001273 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001274 return;
1275 }
1276
1277 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001278 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001279 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1280 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001281 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001282 }
1283 } else {
1284 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1285 usb_kill_anchored_urbs(&data->isoc_anchor);
1286
1287 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001288 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001289 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001290 }
1291}
1292
Oliver Neukum7bee5492009-08-24 23:44:59 +02001293static void btusb_waker(struct work_struct *work)
1294{
1295 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1296 int err;
1297
1298 err = usb_autopm_get_interface(data->intf);
1299 if (err < 0)
1300 return;
1301
1302 usb_autopm_put_interface(data->intf);
1303}
1304
Daniel Drake6576fe42015-02-23 18:16:47 -06001305static struct sk_buff *btusb_read_local_version(struct hci_dev *hdev)
1306{
1307 struct sk_buff *skb;
1308
1309 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1310 HCI_INIT_TIMEOUT);
1311 if (IS_ERR(skb)) {
1312 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1313 hdev->name, PTR_ERR(skb));
1314 return skb;
1315 }
1316
1317 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1318 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1319 hdev->name);
1320 kfree_skb(skb);
1321 return ERR_PTR(-EIO);
1322 }
1323
1324 return skb;
1325}
1326
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001327static int btusb_setup_bcm92035(struct hci_dev *hdev)
1328{
1329 struct sk_buff *skb;
1330 u8 val = 0x00;
1331
1332 BT_DBG("%s", hdev->name);
1333
1334 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1335 if (IS_ERR(skb))
1336 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1337 else
1338 kfree_skb(skb);
1339
1340 return 0;
1341}
1342
Marcel Holtmann81cac642014-01-03 03:02:36 -08001343static int btusb_setup_csr(struct hci_dev *hdev)
1344{
1345 struct hci_rp_read_local_version *rp;
1346 struct sk_buff *skb;
1347 int ret;
1348
1349 BT_DBG("%s", hdev->name);
1350
Daniel Drake6576fe42015-02-23 18:16:47 -06001351 skb = btusb_read_local_version(hdev);
1352 if (IS_ERR(skb))
Marcel Holtmann81cac642014-01-03 03:02:36 -08001353 return -PTR_ERR(skb);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001354
Marcel Holtmann89e75332014-09-16 04:44:50 +02001355 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001356
1357 if (!rp->status) {
1358 if (le16_to_cpu(rp->manufacturer) != 10) {
1359 /* Clear the reset quirk since this is not an actual
1360 * early Bluetooth 1.1 device from CSR.
1361 */
1362 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1363
1364 /* These fake CSR controllers have all a broken
1365 * stored link key handling and so just disable it.
1366 */
1367 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1368 &hdev->quirks);
1369 }
1370 }
1371
1372 ret = -bt_to_errno(rp->status);
1373
1374 kfree_skb(skb);
1375
1376 return ret;
1377}
1378
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001379static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001380 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001381{
1382 const struct firmware *fw;
1383 char fwname[64];
1384 int ret;
1385
1386 snprintf(fwname, sizeof(fwname),
1387 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1388 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1389 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1390 ver->fw_build_ww, ver->fw_build_yy);
1391
1392 ret = request_firmware(&fw, fwname, &hdev->dev);
1393 if (ret < 0) {
1394 if (ret == -EINVAL) {
1395 BT_ERR("%s Intel firmware file request failed (%d)",
1396 hdev->name, ret);
1397 return NULL;
1398 }
1399
1400 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1401 hdev->name, fwname, ret);
1402
1403 /* If the correct firmware patch file is not found, use the
1404 * default firmware patch file instead
1405 */
1406 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1407 ver->hw_platform, ver->hw_variant);
1408 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1409 BT_ERR("%s failed to open default Intel fw file: %s",
1410 hdev->name, fwname);
1411 return NULL;
1412 }
1413 }
1414
1415 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1416
1417 return fw;
1418}
1419
1420static int btusb_setup_intel_patching(struct hci_dev *hdev,
1421 const struct firmware *fw,
1422 const u8 **fw_ptr, int *disable_patch)
1423{
1424 struct sk_buff *skb;
1425 struct hci_command_hdr *cmd;
1426 const u8 *cmd_param;
1427 struct hci_event_hdr *evt = NULL;
1428 const u8 *evt_param = NULL;
1429 int remain = fw->size - (*fw_ptr - fw->data);
1430
1431 /* The first byte indicates the types of the patch command or event.
1432 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1433 * in the current firmware buffer doesn't start with 0x01 or
1434 * the size of remain buffer is smaller than HCI command header,
1435 * the firmware file is corrupted and it should stop the patching
1436 * process.
1437 */
1438 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1439 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1440 return -EINVAL;
1441 }
1442 (*fw_ptr)++;
1443 remain--;
1444
1445 cmd = (struct hci_command_hdr *)(*fw_ptr);
1446 *fw_ptr += sizeof(*cmd);
1447 remain -= sizeof(*cmd);
1448
1449 /* Ensure that the remain firmware data is long enough than the length
1450 * of command parameter. If not, the firmware file is corrupted.
1451 */
1452 if (remain < cmd->plen) {
1453 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1454 return -EFAULT;
1455 }
1456
1457 /* If there is a command that loads a patch in the firmware
1458 * file, then enable the patch upon success, otherwise just
1459 * disable the manufacturer mode, for example patch activation
1460 * is not required when the default firmware patch file is used
1461 * because there are no patch data to load.
1462 */
1463 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1464 *disable_patch = 0;
1465
1466 cmd_param = *fw_ptr;
1467 *fw_ptr += cmd->plen;
1468 remain -= cmd->plen;
1469
1470 /* This reads the expected events when the above command is sent to the
1471 * device. Some vendor commands expects more than one events, for
1472 * example command status event followed by vendor specific event.
1473 * For this case, it only keeps the last expected event. so the command
1474 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1475 * last expected event.
1476 */
1477 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1478 (*fw_ptr)++;
1479 remain--;
1480
1481 evt = (struct hci_event_hdr *)(*fw_ptr);
1482 *fw_ptr += sizeof(*evt);
1483 remain -= sizeof(*evt);
1484
1485 if (remain < evt->plen) {
1486 BT_ERR("%s Intel fw corrupted: invalid evt len",
1487 hdev->name);
1488 return -EFAULT;
1489 }
1490
1491 evt_param = *fw_ptr;
1492 *fw_ptr += evt->plen;
1493 remain -= evt->plen;
1494 }
1495
1496 /* Every HCI commands in the firmware file has its correspond event.
1497 * If event is not found or remain is smaller than zero, the firmware
1498 * file is corrupted.
1499 */
1500 if (!evt || !evt_param || remain < 0) {
1501 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1502 return -EFAULT;
1503 }
1504
1505 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1506 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1507 if (IS_ERR(skb)) {
1508 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1509 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001510 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001511 }
1512
1513 /* It ensures that the returned event matches the event data read from
1514 * the firmware file. At fist, it checks the length and then
1515 * the contents of the event.
1516 */
1517 if (skb->len != evt->plen) {
1518 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1519 le16_to_cpu(cmd->opcode));
1520 kfree_skb(skb);
1521 return -EFAULT;
1522 }
1523
1524 if (memcmp(skb->data, evt_param, evt->plen)) {
1525 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1526 hdev->name, le16_to_cpu(cmd->opcode));
1527 kfree_skb(skb);
1528 return -EFAULT;
1529 }
1530 kfree_skb(skb);
1531
1532 return 0;
1533}
1534
1535static int btusb_setup_intel(struct hci_dev *hdev)
1536{
1537 struct sk_buff *skb;
1538 const struct firmware *fw;
1539 const u8 *fw_ptr;
1540 int disable_patch;
1541 struct intel_version *ver;
1542
1543 const u8 mfg_enable[] = { 0x01, 0x00 };
1544 const u8 mfg_disable[] = { 0x00, 0x00 };
1545 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1546 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1547
1548 BT_DBG("%s", hdev->name);
1549
1550 /* The controller has a bug with the first HCI command sent to it
1551 * returning number of completed commands as zero. This would stall the
1552 * command processing in the Bluetooth core.
1553 *
1554 * As a workaround, send HCI Reset command first which will reset the
1555 * number of completed commands and allow normal command processing
1556 * from now on.
1557 */
1558 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1559 if (IS_ERR(skb)) {
1560 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1561 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001562 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001563 }
1564 kfree_skb(skb);
1565
1566 /* Read Intel specific controller version first to allow selection of
1567 * which firmware file to load.
1568 *
1569 * The returned information are hardware variant and revision plus
1570 * firmware variant, revision and build number.
1571 */
1572 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1573 if (IS_ERR(skb)) {
1574 BT_ERR("%s reading Intel fw version command failed (%ld)",
1575 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001576 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001577 }
1578
1579 if (skb->len != sizeof(*ver)) {
1580 BT_ERR("%s Intel version event length mismatch", hdev->name);
1581 kfree_skb(skb);
1582 return -EIO;
1583 }
1584
1585 ver = (struct intel_version *)skb->data;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001586
1587 BT_INFO("%s: read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1588 hdev->name, ver->hw_platform, ver->hw_variant,
1589 ver->hw_revision, ver->fw_variant, ver->fw_revision,
1590 ver->fw_build_num, ver->fw_build_ww, ver->fw_build_yy,
1591 ver->fw_patch_num);
1592
1593 /* fw_patch_num indicates the version of patch the device currently
1594 * have. If there is no patch data in the device, it is always 0x00.
1595 * So, if it is other than 0x00, no need to patch the deivce again.
1596 */
1597 if (ver->fw_patch_num) {
1598 BT_INFO("%s: Intel device is already patched. patch num: %02x",
1599 hdev->name, ver->fw_patch_num);
1600 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001601 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001602 return 0;
1603 }
1604
1605 /* Opens the firmware patch file based on the firmware version read
1606 * from the controller. If it fails to open the matching firmware
1607 * patch file, it tries to open the default firmware patch file.
1608 * If no patch file is found, allow the device to operate without
1609 * a patch.
1610 */
1611 fw = btusb_setup_intel_get_fw(hdev, ver);
1612 if (!fw) {
1613 kfree_skb(skb);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001614 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001615 return 0;
1616 }
1617 fw_ptr = fw->data;
1618
Marcel Holtmannecffc802015-06-07 09:42:19 +02001619 kfree_skb(skb);
1620
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001621 /* This Intel specific command enables the manufacturer mode of the
1622 * controller.
1623 *
1624 * Only while this mode is enabled, the driver can download the
1625 * firmware patch data and configuration parameters.
1626 */
1627 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1628 if (IS_ERR(skb)) {
1629 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1630 hdev->name, PTR_ERR(skb));
1631 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001632 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001633 }
1634
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001635 kfree_skb(skb);
1636
1637 disable_patch = 1;
1638
1639 /* The firmware data file consists of list of Intel specific HCI
1640 * commands and its expected events. The first byte indicates the
1641 * type of the message, either HCI command or HCI event.
1642 *
1643 * It reads the command and its expected event from the firmware file,
1644 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1645 * the returned event is compared with the event read from the firmware
1646 * file and it will continue until all the messages are downloaded to
1647 * the controller.
1648 *
1649 * Once the firmware patching is completed successfully,
1650 * the manufacturer mode is disabled with reset and activating the
1651 * downloaded patch.
1652 *
1653 * If the firmware patching fails, the manufacturer mode is
1654 * disabled with reset and deactivating the patch.
1655 *
1656 * If the default patch file is used, no reset is done when disabling
1657 * the manufacturer.
1658 */
1659 while (fw->size > fw_ptr - fw->data) {
1660 int ret;
1661
1662 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1663 &disable_patch);
1664 if (ret < 0)
1665 goto exit_mfg_deactivate;
1666 }
1667
1668 release_firmware(fw);
1669
1670 if (disable_patch)
1671 goto exit_mfg_disable;
1672
1673 /* Patching completed successfully and disable the manufacturer mode
1674 * with reset and activate the downloaded firmware patches.
1675 */
1676 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1677 mfg_reset_activate, HCI_INIT_TIMEOUT);
1678 if (IS_ERR(skb)) {
1679 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1680 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001681 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001682 }
1683 kfree_skb(skb);
1684
1685 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1686 hdev->name);
1687
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001688 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001689 return 0;
1690
1691exit_mfg_disable:
1692 /* Disable the manufacturer mode without reset */
1693 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1694 HCI_INIT_TIMEOUT);
1695 if (IS_ERR(skb)) {
1696 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1697 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001698 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001699 }
1700 kfree_skb(skb);
1701
1702 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001703
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001704 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001705 return 0;
1706
1707exit_mfg_deactivate:
1708 release_firmware(fw);
1709
1710 /* Patching failed. Disable the manufacturer mode with reset and
1711 * deactivate the downloaded firmware patches.
1712 */
1713 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1714 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1715 if (IS_ERR(skb)) {
1716 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1717 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001718 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001719 }
1720 kfree_skb(skb);
1721
1722 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1723 hdev->name);
1724
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001725 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001726 return 0;
1727}
1728
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001729static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1730{
1731 struct sk_buff *skb;
1732 struct hci_event_hdr *hdr;
1733 struct hci_ev_cmd_complete *evt;
1734
1735 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1736 if (!skb)
1737 return -ENOMEM;
1738
1739 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1740 hdr->evt = HCI_EV_CMD_COMPLETE;
1741 hdr->plen = sizeof(*evt) + 1;
1742
1743 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1744 evt->ncmd = 0x01;
1745 evt->opcode = cpu_to_le16(opcode);
1746
1747 *skb_put(skb, 1) = 0x00;
1748
1749 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1750
1751 return hci_recv_frame(hdev, skb);
1752}
1753
1754static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1755 int count)
1756{
1757 /* When the device is in bootloader mode, then it can send
1758 * events via the bulk endpoint. These events are treated the
1759 * same way as the ones received from the interrupt endpoint.
1760 */
1761 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1762 return btusb_recv_intr(data, buffer, count);
1763
1764 return btusb_recv_bulk(data, buffer, count);
1765}
1766
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001767static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1768 unsigned int len)
1769{
1770 const struct intel_bootup *evt = ptr;
1771
1772 if (len != sizeof(*evt))
1773 return;
1774
1775 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1776 smp_mb__after_atomic();
1777 wake_up_bit(&data->flags, BTUSB_BOOTING);
1778 }
1779}
1780
1781static void btusb_intel_secure_send_result(struct btusb_data *data,
1782 const void *ptr, unsigned int len)
1783{
1784 const struct intel_secure_send_result *evt = ptr;
1785
1786 if (len != sizeof(*evt))
1787 return;
1788
1789 if (evt->result)
1790 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1791
1792 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1793 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1794 smp_mb__after_atomic();
1795 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1796 }
1797}
1798
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001799static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1800{
1801 struct btusb_data *data = hci_get_drvdata(hdev);
1802
1803 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1804 struct hci_event_hdr *hdr = (void *)skb->data;
1805
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001806 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1807 hdr->plen > 0) {
1808 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1809 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001810
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001811 switch (skb->data[2]) {
1812 case 0x02:
1813 /* When switching to the operational firmware
1814 * the device sends a vendor specific event
1815 * indicating that the bootup completed.
1816 */
1817 btusb_intel_bootup(data, ptr, len);
1818 break;
1819 case 0x06:
1820 /* When the firmware loading completes the
1821 * device sends out a vendor specific event
1822 * indicating the result of the firmware
1823 * loading.
1824 */
1825 btusb_intel_secure_send_result(data, ptr, len);
1826 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001827 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001828 }
1829 }
1830
1831 return hci_recv_frame(hdev, skb);
1832}
1833
1834static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1835{
1836 struct btusb_data *data = hci_get_drvdata(hdev);
1837 struct urb *urb;
1838
1839 BT_DBG("%s", hdev->name);
1840
1841 if (!test_bit(HCI_RUNNING, &hdev->flags))
1842 return -EBUSY;
1843
1844 switch (bt_cb(skb)->pkt_type) {
1845 case HCI_COMMAND_PKT:
1846 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1847 struct hci_command_hdr *cmd = (void *)skb->data;
1848 __u16 opcode = le16_to_cpu(cmd->opcode);
1849
1850 /* When in bootloader mode and the command 0xfc09
1851 * is received, it needs to be send down the
1852 * bulk endpoint. So allocate a bulk URB instead.
1853 */
1854 if (opcode == 0xfc09)
1855 urb = alloc_bulk_urb(hdev, skb);
1856 else
1857 urb = alloc_ctrl_urb(hdev, skb);
1858
1859 /* When the 0xfc01 command is issued to boot into
1860 * the operational firmware, it will actually not
1861 * send a command complete event. To keep the flow
1862 * control working inject that event here.
1863 */
1864 if (opcode == 0xfc01)
1865 inject_cmd_complete(hdev, opcode);
1866 } else {
1867 urb = alloc_ctrl_urb(hdev, skb);
1868 }
1869 if (IS_ERR(urb))
1870 return PTR_ERR(urb);
1871
1872 hdev->stat.cmd_tx++;
1873 return submit_or_queue_tx_urb(hdev, urb);
1874
1875 case HCI_ACLDATA_PKT:
1876 urb = alloc_bulk_urb(hdev, skb);
1877 if (IS_ERR(urb))
1878 return PTR_ERR(urb);
1879
1880 hdev->stat.acl_tx++;
1881 return submit_or_queue_tx_urb(hdev, urb);
1882
1883 case HCI_SCODATA_PKT:
1884 if (hci_conn_num(hdev, SCO_LINK) < 1)
1885 return -ENODEV;
1886
1887 urb = alloc_isoc_urb(hdev, skb);
1888 if (IS_ERR(urb))
1889 return PTR_ERR(urb);
1890
1891 hdev->stat.sco_tx++;
1892 return submit_tx_urb(hdev, urb);
1893 }
1894
1895 return -EILSEQ;
1896}
1897
1898static int btusb_intel_secure_send(struct hci_dev *hdev, u8 fragment_type,
1899 u32 plen, const void *param)
1900{
1901 while (plen > 0) {
1902 struct sk_buff *skb;
1903 u8 cmd_param[253], fragment_len = (plen > 252) ? 252 : plen;
1904
1905 cmd_param[0] = fragment_type;
1906 memcpy(cmd_param + 1, param, fragment_len);
1907
1908 skb = __hci_cmd_sync(hdev, 0xfc09, fragment_len + 1,
1909 cmd_param, HCI_INIT_TIMEOUT);
1910 if (IS_ERR(skb))
1911 return PTR_ERR(skb);
1912
1913 kfree_skb(skb);
1914
1915 plen -= fragment_len;
1916 param += fragment_len;
1917 }
1918
1919 return 0;
1920}
1921
1922static void btusb_intel_version_info(struct hci_dev *hdev,
1923 struct intel_version *ver)
1924{
1925 const char *variant;
1926
1927 switch (ver->fw_variant) {
1928 case 0x06:
1929 variant = "Bootloader";
1930 break;
1931 case 0x23:
1932 variant = "Firmware";
1933 break;
1934 default:
1935 return;
1936 }
1937
1938 BT_INFO("%s: %s revision %u.%u build %u week %u %u", hdev->name,
1939 variant, ver->fw_revision >> 4, ver->fw_revision & 0x0f,
1940 ver->fw_build_num, ver->fw_build_ww, 2000 + ver->fw_build_yy);
1941}
1942
1943static int btusb_setup_intel_new(struct hci_dev *hdev)
1944{
1945 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1946 0x00, 0x08, 0x04, 0x00 };
1947 struct btusb_data *data = hci_get_drvdata(hdev);
1948 struct sk_buff *skb;
1949 struct intel_version *ver;
1950 struct intel_boot_params *params;
1951 const struct firmware *fw;
1952 const u8 *fw_ptr;
1953 char fwname[64];
1954 ktime_t calltime, delta, rettime;
1955 unsigned long long duration;
1956 int err;
1957
1958 BT_DBG("%s", hdev->name);
1959
1960 calltime = ktime_get();
1961
1962 /* Read the Intel version information to determine if the device
1963 * is in bootloader mode or if it already has operational firmware
1964 * loaded.
1965 */
1966 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1967 if (IS_ERR(skb)) {
1968 BT_ERR("%s: Reading Intel version information failed (%ld)",
1969 hdev->name, PTR_ERR(skb));
1970 return PTR_ERR(skb);
1971 }
1972
1973 if (skb->len != sizeof(*ver)) {
1974 BT_ERR("%s: Intel version event size mismatch", hdev->name);
1975 kfree_skb(skb);
1976 return -EILSEQ;
1977 }
1978
1979 ver = (struct intel_version *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001980
1981 /* The hardware platform number has a fixed value of 0x37 and
1982 * for now only accept this single value.
1983 */
1984 if (ver->hw_platform != 0x37) {
1985 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
1986 hdev->name, ver->hw_platform);
1987 kfree_skb(skb);
1988 return -EINVAL;
1989 }
1990
1991 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
1992 * supported by this firmware loading method. This check has been
1993 * put in place to ensure correct forward compatibility options
1994 * when newer hardware variants come along.
1995 */
1996 if (ver->hw_variant != 0x0b) {
1997 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
1998 hdev->name, ver->hw_variant);
1999 kfree_skb(skb);
2000 return -EINVAL;
2001 }
2002
2003 btusb_intel_version_info(hdev, ver);
2004
2005 /* The firmware variant determines if the device is in bootloader
2006 * mode or is running operational firmware. The value 0x06 identifies
2007 * the bootloader and the value 0x23 identifies the operational
2008 * firmware.
2009 *
2010 * When the operational firmware is already present, then only
2011 * the check for valid Bluetooth device address is needed. This
2012 * determines if the device will be added as configured or
2013 * unconfigured controller.
2014 *
2015 * It is not possible to use the Secure Boot Parameters in this
2016 * case since that command is only available in bootloader mode.
2017 */
2018 if (ver->fw_variant == 0x23) {
2019 kfree_skb(skb);
2020 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002021 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002022 return 0;
2023 }
2024
2025 /* If the device is not in bootloader mode, then the only possible
2026 * choice is to return an error and abort the device initialization.
2027 */
2028 if (ver->fw_variant != 0x06) {
2029 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2030 hdev->name, ver->fw_variant);
2031 kfree_skb(skb);
2032 return -ENODEV;
2033 }
2034
2035 kfree_skb(skb);
2036
2037 /* Read the secure boot parameters to identify the operating
2038 * details of the bootloader.
2039 */
2040 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2041 if (IS_ERR(skb)) {
2042 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2043 hdev->name, PTR_ERR(skb));
2044 return PTR_ERR(skb);
2045 }
2046
2047 if (skb->len != sizeof(*params)) {
2048 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2049 kfree_skb(skb);
2050 return -EILSEQ;
2051 }
2052
2053 params = (struct intel_boot_params *)skb->data;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002054
2055 BT_INFO("%s: Device revision is %u", hdev->name,
2056 le16_to_cpu(params->dev_revid));
2057
2058 BT_INFO("%s: Secure boot is %s", hdev->name,
2059 params->secure_boot ? "enabled" : "disabled");
2060
2061 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2062 params->min_fw_build_nn, params->min_fw_build_cw,
2063 2000 + params->min_fw_build_yy);
2064
2065 /* It is required that every single firmware fragment is acknowledged
2066 * with a command complete event. If the boot parameters indicate
2067 * that this bootloader does not send them, then abort the setup.
2068 */
2069 if (params->limited_cce != 0x00) {
2070 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2071 hdev->name, params->limited_cce);
2072 kfree_skb(skb);
2073 return -EINVAL;
2074 }
2075
2076 /* If the OTP has no valid Bluetooth device address, then there will
2077 * also be no valid address for the operational firmware.
2078 */
2079 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2080 BT_INFO("%s: No device address configured", hdev->name);
2081 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2082 }
2083
2084 /* With this Intel bootloader only the hardware variant and device
2085 * revision information are used to select the right firmware.
2086 *
2087 * Currently this bootloader support is limited to hardware variant
2088 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2089 */
2090 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2091 le16_to_cpu(params->dev_revid));
2092
2093 err = request_firmware(&fw, fwname, &hdev->dev);
2094 if (err < 0) {
2095 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2096 hdev->name, err);
2097 kfree_skb(skb);
2098 return err;
2099 }
2100
2101 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2102
2103 kfree_skb(skb);
2104
2105 if (fw->size < 644) {
2106 BT_ERR("%s: Invalid size of firmware file (%zu)",
2107 hdev->name, fw->size);
2108 err = -EBADF;
2109 goto done;
2110 }
2111
2112 set_bit(BTUSB_DOWNLOADING, &data->flags);
2113
2114 /* Start the firmware download transaction with the Init fragment
2115 * represented by the 128 bytes of CSS header.
2116 */
2117 err = btusb_intel_secure_send(hdev, 0x00, 128, fw->data);
2118 if (err < 0) {
2119 BT_ERR("%s: Failed to send firmware header (%d)",
2120 hdev->name, err);
2121 goto done;
2122 }
2123
2124 /* Send the 256 bytes of public key information from the firmware
2125 * as the PKey fragment.
2126 */
2127 err = btusb_intel_secure_send(hdev, 0x03, 256, fw->data + 128);
2128 if (err < 0) {
2129 BT_ERR("%s: Failed to send firmware public key (%d)",
2130 hdev->name, err);
2131 goto done;
2132 }
2133
2134 /* Send the 256 bytes of signature information from the firmware
2135 * as the Sign fragment.
2136 */
2137 err = btusb_intel_secure_send(hdev, 0x02, 256, fw->data + 388);
2138 if (err < 0) {
2139 BT_ERR("%s: Failed to send firmware signature (%d)",
2140 hdev->name, err);
2141 goto done;
2142 }
2143
2144 fw_ptr = fw->data + 644;
2145
2146 while (fw_ptr - fw->data < fw->size) {
2147 struct hci_command_hdr *cmd = (void *)fw_ptr;
2148 u8 cmd_len;
2149
2150 cmd_len = sizeof(*cmd) + cmd->plen;
2151
2152 /* Send each command from the firmware data buffer as
2153 * a single Data fragment.
2154 */
2155 err = btusb_intel_secure_send(hdev, 0x01, cmd_len, fw_ptr);
2156 if (err < 0) {
2157 BT_ERR("%s: Failed to send firmware data (%d)",
2158 hdev->name, err);
2159 goto done;
2160 }
2161
2162 fw_ptr += cmd_len;
2163 }
2164
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002165 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2166
Johan Hedberga087a982015-01-30 10:58:54 +02002167 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2168
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002169 /* Before switching the device into operational mode and with that
2170 * booting the loaded firmware, wait for the bootloader notification
2171 * that all fragments have been successfully received.
2172 *
Johan Hedberga087a982015-01-30 10:58:54 +02002173 * When the event processing receives the notification, then the
2174 * BTUSB_DOWNLOADING flag will be cleared.
2175 *
2176 * The firmware loading should not take longer than 5 seconds
2177 * and thus just timeout if that happens and fail the setup
2178 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002179 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002180 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2181 TASK_INTERRUPTIBLE,
2182 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002183 if (err == 1) {
2184 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2185 err = -EINTR;
2186 goto done;
2187 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002188
Johan Hedberga087a982015-01-30 10:58:54 +02002189 if (err) {
2190 BT_ERR("%s: Firmware loading timeout", hdev->name);
2191 err = -ETIMEDOUT;
2192 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002193 }
2194
2195 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2196 BT_ERR("%s: Firmware loading failed", hdev->name);
2197 err = -ENOEXEC;
2198 goto done;
2199 }
2200
2201 rettime = ktime_get();
2202 delta = ktime_sub(rettime, calltime);
2203 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2204
2205 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2206
2207done:
2208 release_firmware(fw);
2209
2210 if (err < 0)
2211 return err;
2212
2213 calltime = ktime_get();
2214
2215 set_bit(BTUSB_BOOTING, &data->flags);
2216
2217 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2218 HCI_INIT_TIMEOUT);
2219 if (IS_ERR(skb))
2220 return PTR_ERR(skb);
2221
2222 kfree_skb(skb);
2223
2224 /* The bootloader will not indicate when the device is ready. This
2225 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002226 *
2227 * Booting into operational firmware should not take longer than
2228 * 1 second. However if that happens, then just fail the setup
2229 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002230 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002231 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002232
Johan Hedberg129a7692015-02-14 09:33:35 +02002233 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2234 TASK_INTERRUPTIBLE,
2235 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002236
Johan Hedbergfad70972015-01-30 10:58:55 +02002237 if (err == 1) {
2238 BT_ERR("%s: Device boot interrupted", hdev->name);
2239 return -EINTR;
2240 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002241
Johan Hedbergfad70972015-01-30 10:58:55 +02002242 if (err) {
2243 BT_ERR("%s: Device boot timeout", hdev->name);
2244 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002245 }
2246
2247 rettime = ktime_get();
2248 delta = ktime_sub(rettime, calltime);
2249 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2250
2251 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2252
2253 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2254
2255 return 0;
2256}
2257
Marcel Holtmann385a7682015-01-28 11:09:56 -08002258static void btusb_hw_error_intel(struct hci_dev *hdev, u8 code)
2259{
2260 struct sk_buff *skb;
2261 u8 type = 0x00;
2262
2263 BT_ERR("%s: Hardware error 0x%2.2x", hdev->name, code);
2264
2265 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2266 if (IS_ERR(skb)) {
2267 BT_ERR("%s: Reset after hardware error failed (%ld)",
2268 hdev->name, PTR_ERR(skb));
2269 return;
2270 }
2271 kfree_skb(skb);
2272
2273 skb = __hci_cmd_sync(hdev, 0xfc22, 1, &type, HCI_INIT_TIMEOUT);
2274 if (IS_ERR(skb)) {
2275 BT_ERR("%s: Retrieving Intel exception info failed (%ld)",
2276 hdev->name, PTR_ERR(skb));
2277 return;
2278 }
2279
2280 if (skb->len != 13) {
2281 BT_ERR("%s: Exception info size mismatch", hdev->name);
2282 kfree_skb(skb);
2283 return;
2284 }
2285
Marcel Holtmann385a7682015-01-28 11:09:56 -08002286 BT_ERR("%s: Exception info %s", hdev->name, (char *)(skb->data + 1));
2287
2288 kfree_skb(skb);
2289}
2290
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002291static int btusb_shutdown_intel(struct hci_dev *hdev)
2292{
2293 struct sk_buff *skb;
2294 long ret;
2295
2296 /* Some platforms have an issue with BT LED when the interface is
2297 * down or BT radio is turned off, which takes 5 seconds to BT LED
2298 * goes off. This command turns off the BT LED immediately.
2299 */
2300 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2301 if (IS_ERR(skb)) {
2302 ret = PTR_ERR(skb);
2303 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2304 hdev->name, ret);
2305 return ret;
2306 }
2307 kfree_skb(skb);
2308
2309 return 0;
2310}
2311
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002312static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2313 const bdaddr_t *bdaddr)
2314{
2315 struct sk_buff *skb;
2316 u8 buf[8];
2317 long ret;
2318
2319 buf[0] = 0xfe;
2320 buf[1] = sizeof(bdaddr_t);
2321 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2322
2323 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2324 if (IS_ERR(skb)) {
2325 ret = PTR_ERR(skb);
2326 BT_ERR("%s: changing Marvell device address failed (%ld)",
2327 hdev->name, ret);
2328 return ret;
2329 }
2330 kfree_skb(skb);
2331
2332 return 0;
2333}
2334
Toshi Kikuchi58592232014-12-12 10:58:05 -08002335static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2336 const bdaddr_t *bdaddr)
2337{
2338 struct sk_buff *skb;
2339 u8 buf[10];
2340 long ret;
2341
2342 buf[0] = 0x01;
2343 buf[1] = 0x01;
2344 buf[2] = 0x00;
2345 buf[3] = sizeof(bdaddr_t);
2346 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2347
2348 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2349 if (IS_ERR(skb)) {
2350 ret = PTR_ERR(skb);
2351 BT_ERR("%s: Change address command failed (%ld)",
2352 hdev->name, ret);
2353 return ret;
2354 }
2355 kfree_skb(skb);
2356
2357 return 0;
2358}
2359
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002360#define QCA_DFU_PACKET_LEN 4096
2361
2362#define QCA_GET_TARGET_VERSION 0x09
2363#define QCA_CHECK_STATUS 0x05
2364#define QCA_DFU_DOWNLOAD 0x01
2365
2366#define QCA_SYSCFG_UPDATED 0x40
2367#define QCA_PATCH_UPDATED 0x80
2368#define QCA_DFU_TIMEOUT 3000
2369
2370struct qca_version {
2371 __le32 rom_version;
2372 __le32 patch_version;
2373 __le32 ram_version;
2374 __le32 ref_clock;
2375 __u8 reserved[4];
2376} __packed;
2377
2378struct qca_rampatch_version {
2379 __le16 rom_version;
2380 __le16 patch_version;
2381} __packed;
2382
2383struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002384 u32 rom_version;
2385 u8 rampatch_hdr; /* length of header in rampatch */
2386 u8 nvm_hdr; /* length of header in NVM */
2387 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002388};
2389
2390static const struct qca_device_info qca_devices_table[] = {
2391 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2392 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09002393 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002394 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2395 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2396 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2397};
2398
2399static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2400 void *data, u16 size)
2401{
2402 struct btusb_data *btdata = hci_get_drvdata(hdev);
2403 struct usb_device *udev = btdata->udev;
2404 int pipe, err;
2405 u8 *buf;
2406
2407 buf = kmalloc(size, GFP_KERNEL);
2408 if (!buf)
2409 return -ENOMEM;
2410
2411 /* Found some of USB hosts have IOT issues with ours so that we should
2412 * not wait until HCI layer is ready.
2413 */
2414 pipe = usb_rcvctrlpipe(udev, 0);
2415 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2416 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2417 if (err < 0) {
2418 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2419 goto done;
2420 }
2421
2422 memcpy(data, buf, size);
2423
2424done:
2425 kfree(buf);
2426
2427 return err;
2428}
2429
2430static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2431 const struct firmware *firmware,
2432 size_t hdr_size)
2433{
2434 struct btusb_data *btdata = hci_get_drvdata(hdev);
2435 struct usb_device *udev = btdata->udev;
2436 size_t count, size, sent = 0;
2437 int pipe, len, err;
2438 u8 *buf;
2439
2440 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2441 if (!buf)
2442 return -ENOMEM;
2443
2444 count = firmware->size;
2445
2446 size = min_t(size_t, count, hdr_size);
2447 memcpy(buf, firmware->data, size);
2448
2449 /* USB patches should go down to controller through USB path
2450 * because binary format fits to go down through USB channel.
2451 * USB control path is for patching headers and USB bulk is for
2452 * patch body.
2453 */
2454 pipe = usb_sndctrlpipe(udev, 0);
2455 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2456 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2457 if (err < 0) {
2458 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2459 goto done;
2460 }
2461
2462 sent += size;
2463 count -= size;
2464
2465 while (count) {
2466 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2467
2468 memcpy(buf, firmware->data + sent, size);
2469
2470 pipe = usb_sndbulkpipe(udev, 0x02);
2471 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2472 QCA_DFU_TIMEOUT);
2473 if (err < 0) {
2474 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2475 hdev->name, sent, firmware->size, err);
2476 break;
2477 }
2478
2479 if (size != len) {
2480 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2481 err = -EILSEQ;
2482 break;
2483 }
2484
2485 sent += size;
2486 count -= size;
2487 }
2488
2489done:
2490 kfree(buf);
2491 return err;
2492}
2493
2494static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2495 struct qca_version *ver,
2496 const struct qca_device_info *info)
2497{
2498 struct qca_rampatch_version *rver;
2499 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002500 u32 ver_rom, ver_patch;
2501 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002502 char fwname[64];
2503 int err;
2504
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002505 ver_rom = le32_to_cpu(ver->rom_version);
2506 ver_patch = le32_to_cpu(ver->patch_version);
2507
2508 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002509
2510 err = request_firmware(&fw, fwname, &hdev->dev);
2511 if (err) {
2512 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2513 hdev->name, fwname, err);
2514 return err;
2515 }
2516
2517 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002518
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002519 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2520 rver_rom = le16_to_cpu(rver->rom_version);
2521 rver_patch = le16_to_cpu(rver->patch_version);
2522
2523 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2524 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2525 ver_patch);
2526
2527 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002528 BT_ERR("%s: rampatch file version did not match with firmware",
2529 hdev->name);
2530 err = -EINVAL;
2531 goto done;
2532 }
2533
2534 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2535
2536done:
2537 release_firmware(fw);
2538
2539 return err;
2540}
2541
2542static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2543 struct qca_version *ver,
2544 const struct qca_device_info *info)
2545{
2546 const struct firmware *fw;
2547 char fwname[64];
2548 int err;
2549
2550 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2551 le32_to_cpu(ver->rom_version));
2552
2553 err = request_firmware(&fw, fwname, &hdev->dev);
2554 if (err) {
2555 BT_ERR("%s: failed to request NVM file: %s (%d)",
2556 hdev->name, fwname, err);
2557 return err;
2558 }
2559
2560 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2561
2562 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2563
2564 release_firmware(fw);
2565
2566 return err;
2567}
2568
2569static int btusb_setup_qca(struct hci_dev *hdev)
2570{
2571 const struct qca_device_info *info = NULL;
2572 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002573 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002574 u8 status;
2575 int i, err;
2576
2577 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002578 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002579 if (err < 0)
2580 return err;
2581
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002582 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002583 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002584 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002585 info = &qca_devices_table[i];
2586 }
2587 if (!info) {
2588 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002589 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002590 return -ENODEV;
2591 }
2592
2593 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2594 sizeof(status));
2595 if (err < 0)
2596 return err;
2597
2598 if (!(status & QCA_PATCH_UPDATED)) {
2599 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2600 if (err < 0)
2601 return err;
2602 }
2603
2604 if (!(status & QCA_SYSCFG_UPDATED)) {
2605 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2606 if (err < 0)
2607 return err;
2608 }
2609
2610 return 0;
2611}
2612
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002613static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002614 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002615{
2616 struct usb_endpoint_descriptor *ep_desc;
2617 struct btusb_data *data;
2618 struct hci_dev *hdev;
2619 int i, err;
2620
2621 BT_DBG("intf %p id %p", intf, id);
2622
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002623 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002624 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2625 return -ENODEV;
2626
2627 if (!id->driver_info) {
2628 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002629
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002630 match = usb_match_id(intf, blacklist_table);
2631 if (match)
2632 id = match;
2633 }
2634
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002635 if (id->driver_info == BTUSB_IGNORE)
2636 return -ENODEV;
2637
Steven.Li2d25f8b2011-07-01 14:02:36 +08002638 if (id->driver_info & BTUSB_ATH3012) {
2639 struct usb_device *udev = interface_to_usbdev(intf);
2640
2641 /* Old firmware would otherwise let ath3k driver load
2642 * patch and sysconfig files */
2643 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2644 return -ENODEV;
2645 }
2646
Sachin Kamat98921db2012-07-27 12:38:39 +05302647 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002648 if (!data)
2649 return -ENOMEM;
2650
2651 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2652 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2653
2654 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2655 data->intr_ep = ep_desc;
2656 continue;
2657 }
2658
2659 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2660 data->bulk_tx_ep = ep_desc;
2661 continue;
2662 }
2663
2664 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2665 data->bulk_rx_ep = ep_desc;
2666 continue;
2667 }
2668 }
2669
Sachin Kamat98921db2012-07-27 12:38:39 +05302670 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002671 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002672
Marcel Holtmann893ba542015-01-28 20:27:34 -08002673 if (id->driver_info & BTUSB_AMP) {
2674 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2675 data->cmdreq = 0x2b;
2676 } else {
2677 data->cmdreq_type = USB_TYPE_CLASS;
2678 data->cmdreq = 0x00;
2679 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002680
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002681 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002682 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002683
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002684 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002685 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002686 init_usb_anchor(&data->deferred);
2687 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002688 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002689
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002690 init_usb_anchor(&data->intr_anchor);
2691 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002692 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002693 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002694
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002695 if (id->driver_info & BTUSB_INTEL_NEW) {
2696 data->recv_event = btusb_recv_event_intel;
2697 data->recv_bulk = btusb_recv_bulk_intel;
2698 set_bit(BTUSB_BOOTLOADER, &data->flags);
2699 } else {
2700 data->recv_event = hci_recv_frame;
2701 data->recv_bulk = btusb_recv_bulk;
2702 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002703
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002704 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302705 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002706 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002707
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002708 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002709 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002710
Marcel Holtmann893ba542015-01-28 20:27:34 -08002711 if (id->driver_info & BTUSB_AMP)
2712 hdev->dev_type = HCI_AMP;
2713 else
2714 hdev->dev_type = HCI_BREDR;
2715
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002716 data->hdev = hdev;
2717
2718 SET_HCIDEV_DEV(hdev, &intf->dev);
2719
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002720 hdev->open = btusb_open;
2721 hdev->close = btusb_close;
2722 hdev->flush = btusb_flush;
2723 hdev->send = btusb_send_frame;
2724 hdev->notify = btusb_notify;
2725
2726 if (id->driver_info & BTUSB_BCM92035)
2727 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002728
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002729#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002730 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002731 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002732 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002733 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002734
Marcel Holtmann941521e2015-04-05 22:52:15 -07002735 if (id->driver_info & BTUSB_BCM_APPLE)
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002736 hdev->setup = btbcm_setup_apple;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002737#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002738
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002739 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002740 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002741 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002742 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002743 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002744 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002745 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002746
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002747 if (id->driver_info & BTUSB_INTEL_NEW) {
2748 hdev->send = btusb_send_frame_intel;
2749 hdev->setup = btusb_setup_intel_new;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002750 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002751 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002752 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002753 }
2754
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002755 if (id->driver_info & BTUSB_MARVELL)
2756 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2757
Marcel Holtmann661cf882015-01-02 23:35:20 -08002758 if (id->driver_info & BTUSB_SWAVE) {
2759 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002760 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002761 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002762
Marcel Holtmann40df7832014-07-06 13:29:58 +02002763 if (id->driver_info & BTUSB_INTEL_BOOT)
2764 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2765
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002766 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002767 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002768 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002769 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2770 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002771
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002772 if (id->driver_info & BTUSB_QCA_ROME) {
2773 data->setup_on_usb = btusb_setup_qca;
2774 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2775 }
2776
Carlo Caionedb33c772015-05-14 10:49:09 +02002777#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drake04b8c812015-05-21 08:23:50 -06002778 if (id->driver_info & BTUSB_REALTEK) {
Carlo Caionedb33c772015-05-14 10:49:09 +02002779 hdev->setup = btrtl_setup_realtek;
Daniel Drake04b8c812015-05-21 08:23:50 -06002780
2781 /* Realtek devices lose their updated firmware over suspend,
2782 * but the USB hub doesn't notice any status change.
2783 * Explicitly request a device reset on resume.
2784 */
2785 set_bit(BTUSB_RESET_RESUME, &data->flags);
2786 }
Carlo Caionedb33c772015-05-14 10:49:09 +02002787#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002788
Marcel Holtmann893ba542015-01-28 20:27:34 -08002789 if (id->driver_info & BTUSB_AMP) {
2790 /* AMP controllers do not support SCO packets */
2791 data->isoc = NULL;
2792 } else {
2793 /* Interface numbers are hardcoded in the specification */
2794 data->isoc = usb_ifnum_to_if(data->udev, 1);
2795 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002796
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002797 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002798 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002799
2800 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2801 if (!disable_scofix)
2802 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2803 }
2804
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002805 if (id->driver_info & BTUSB_BROKEN_ISOC)
2806 data->isoc = NULL;
2807
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002808 if (id->driver_info & BTUSB_DIGIANSWER) {
2809 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002810 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002811 }
2812
2813 if (id->driver_info & BTUSB_CSR) {
2814 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002815 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002816
2817 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002818 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002819 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002820
2821 /* Fake CSR devices with broken commands */
2822 if (bcdDevice <= 0x100)
2823 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002824
2825 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002826 }
2827
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002828 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002829 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002830
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002831 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002832 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2833 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2834 }
2835
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002836 if (id->driver_info & BTUSB_INTEL_BOOT) {
2837 /* A bug in the bootloader causes that interrupt interface is
2838 * only enabled after receiving SetInterface(0, AltSetting=0).
2839 */
2840 err = usb_set_interface(data->udev, 0, 0);
2841 if (err < 0) {
2842 BT_ERR("failed to set interface 0, alt 0 %d", err);
2843 hci_free_dev(hdev);
2844 return err;
2845 }
2846 }
2847
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002848 if (data->isoc) {
2849 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002850 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002851 if (err < 0) {
2852 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002853 return err;
2854 }
2855 }
2856
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002857 err = hci_register_dev(hdev);
2858 if (err < 0) {
2859 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002860 return err;
2861 }
2862
2863 usb_set_intfdata(intf, data);
2864
2865 return 0;
2866}
2867
2868static void btusb_disconnect(struct usb_interface *intf)
2869{
2870 struct btusb_data *data = usb_get_intfdata(intf);
2871 struct hci_dev *hdev;
2872
2873 BT_DBG("intf %p", intf);
2874
2875 if (!data)
2876 return;
2877
2878 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002879 usb_set_intfdata(data->intf, NULL);
2880
2881 if (data->isoc)
2882 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002883
2884 hci_unregister_dev(hdev);
2885
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002886 if (intf == data->isoc)
2887 usb_driver_release_interface(&btusb_driver, data->intf);
2888 else if (data->isoc)
2889 usb_driver_release_interface(&btusb_driver, data->isoc);
2890
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002891 hci_free_dev(hdev);
2892}
2893
Oliver Neukum7bee5492009-08-24 23:44:59 +02002894#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002895static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2896{
2897 struct btusb_data *data = usb_get_intfdata(intf);
2898
2899 BT_DBG("intf %p", intf);
2900
2901 if (data->suspend_count++)
2902 return 0;
2903
Oliver Neukum7bee5492009-08-24 23:44:59 +02002904 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002905 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002906 set_bit(BTUSB_SUSPENDING, &data->flags);
2907 spin_unlock_irq(&data->txlock);
2908 } else {
2909 spin_unlock_irq(&data->txlock);
2910 data->suspend_count--;
2911 return -EBUSY;
2912 }
2913
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002914 cancel_work_sync(&data->work);
2915
Oliver Neukum7bee5492009-08-24 23:44:59 +02002916 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002917 usb_kill_anchored_urbs(&data->tx_anchor);
2918
Daniel Drake04b8c812015-05-21 08:23:50 -06002919 /* Optionally request a device reset on resume, but only when
2920 * wakeups are disabled. If wakeups are enabled we assume the
2921 * device will stay powered up throughout suspend.
2922 */
2923 if (test_bit(BTUSB_RESET_RESUME, &data->flags) &&
2924 !device_may_wakeup(&data->udev->dev))
2925 data->udev->reset_resume = 1;
2926
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002927 return 0;
2928}
2929
Oliver Neukum7bee5492009-08-24 23:44:59 +02002930static void play_deferred(struct btusb_data *data)
2931{
2932 struct urb *urb;
2933 int err;
2934
2935 while ((urb = usb_get_from_anchor(&data->deferred))) {
2936 err = usb_submit_urb(urb, GFP_ATOMIC);
2937 if (err < 0)
2938 break;
2939
2940 data->tx_in_flight++;
2941 }
2942 usb_scuttle_anchored_urbs(&data->deferred);
2943}
2944
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002945static int btusb_resume(struct usb_interface *intf)
2946{
2947 struct btusb_data *data = usb_get_intfdata(intf);
2948 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002949 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002950
2951 BT_DBG("intf %p", intf);
2952
2953 if (--data->suspend_count)
2954 return 0;
2955
2956 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02002957 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002958
2959 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2960 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2961 if (err < 0) {
2962 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002963 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002964 }
2965 }
2966
2967 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01002968 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2969 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002970 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002971 goto failed;
2972 }
2973
2974 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002975 }
2976
2977 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2978 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2979 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2980 else
2981 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2982 }
2983
Oliver Neukum7bee5492009-08-24 23:44:59 +02002984 spin_lock_irq(&data->txlock);
2985 play_deferred(data);
2986 clear_bit(BTUSB_SUSPENDING, &data->flags);
2987 spin_unlock_irq(&data->txlock);
2988 schedule_work(&data->work);
2989
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002990 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002991
2992failed:
2993 usb_scuttle_anchored_urbs(&data->deferred);
2994done:
2995 spin_lock_irq(&data->txlock);
2996 clear_bit(BTUSB_SUSPENDING, &data->flags);
2997 spin_unlock_irq(&data->txlock);
2998
2999 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003000}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003001#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003002
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003003static struct usb_driver btusb_driver = {
3004 .name = "btusb",
3005 .probe = btusb_probe,
3006 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003007#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003008 .suspend = btusb_suspend,
3009 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003010#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003011 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003012 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003013 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003014};
3015
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003016module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003017
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003018module_param(disable_scofix, bool, 0644);
3019MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3020
3021module_param(force_scofix, bool, 0644);
3022MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3023
3024module_param(reset, bool, 0644);
3025MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3026
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003027MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3028MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3029MODULE_VERSION(VERSION);
3030MODULE_LICENSE("GPL");