blob: df87016d18ab4bbc0935a3ce7c914b6980ded243 [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
Rusty Russell90ab5ee2012-01-13 09:32:20 +103041static bool reset = 1;
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 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530182 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200183 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
184 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
185 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
186 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700187 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200188 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
189 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200190 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200191 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
192 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100193 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200194 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800195 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Steven.Li2d25f8b2011-07-01 14:02:36 +0800196 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900197 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200198 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100199 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100200 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200201 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800202 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200203 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800204 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800205 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200206 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
207 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800208 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530209 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300210 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300211 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530212 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530213
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800214 /* Atheros AR5BBU12 with sflash firmware */
215 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
216
Michael Gruetzner85d59722012-05-02 22:33:40 +0200217 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530218 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200219 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200220
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000221 /* QCA ROME chipset */
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700222 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
223 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000224
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200225 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100226 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200227 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
228 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200229
230 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100231 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
232 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200233
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200234 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100235 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
236 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200237
238 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100239 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200240
241 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100242 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200243
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100244 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100245 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100246 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200247
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100248 /* Belkin F8T012 and F8T013 devices */
249 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
250 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200251
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100252 /* Asus WL-BTD202 device */
253 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
254
255 /* Kensington Bluetooth USB adapter */
256 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
257
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200258 /* RTX Telecom based adapters with buggy SCO support */
259 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
260 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
261
262 /* CONWISE Technology based adapters with buggy SCO support */
263 { USB_DEVICE(0x0e5e, 0x6622), .driver_info = BTUSB_BROKEN_ISOC },
264
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800265 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
266 { USB_DEVICE(0x1300, 0x0001), .driver_info = BTUSB_SWAVE },
267
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200268 /* Digianswer devices */
269 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
270 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
271
272 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200273 { USB_DEVICE(0x0a12, 0x0002),
274 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200275
276 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200277 { USB_DEVICE(0x16d3, 0x0002),
278 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200279
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800280 /* Marvell Bluetooth devices */
281 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
282 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
283
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800284 /* Intel Bluetooth devices */
Marcel Holtmann407550f2015-02-22 15:41:18 -0800285 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700286 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800287 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800288 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700289
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800290 /* Other Intel Bluetooth devices */
291 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
292 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700293
Daniel Drakea2698a92015-04-16 14:09:55 -0600294 /* Realtek Bluetooth devices */
295 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
296 .driver_info = BTUSB_REALTEK },
297
298 /* Additional Realtek 8723AE Bluetooth devices */
299 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
300 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
301
302 /* Additional Realtek 8723BE Bluetooth devices */
303 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
304 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
305 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
306 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
307 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
308
309 /* Additional Realtek 8821AE Bluetooth devices */
310 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
311 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
312 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
313 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
314 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
315
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200316 { } /* Terminating entry */
317};
318
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200319#define BTUSB_MAX_ISOC_FRAMES 10
320
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200321#define BTUSB_INTR_RUNNING 0
322#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200323#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200324#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300325#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800326#define BTUSB_BOOTLOADER 5
327#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800328#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800329#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800330#define BTUSB_BOOTING 9
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200331
332struct btusb_data {
333 struct hci_dev *hdev;
334 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200335 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200336 struct usb_interface *isoc;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200337
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200338 unsigned long flags;
339
340 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200341 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200342
Marcel Holtmann803b5832014-09-16 08:00:29 +0200343 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200344 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200345 int tx_in_flight;
346 spinlock_t txlock;
347
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200348 struct usb_anchor intr_anchor;
349 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200350 struct usb_anchor isoc_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200351 spinlock_t rxlock;
352
353 struct sk_buff *evt_skb;
354 struct sk_buff *acl_skb;
355 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200356
357 struct usb_endpoint_descriptor *intr_ep;
358 struct usb_endpoint_descriptor *bulk_tx_ep;
359 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200360 struct usb_endpoint_descriptor *isoc_tx_ep;
361 struct usb_endpoint_descriptor *isoc_rx_ep;
362
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100363 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800364 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100365
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100366 unsigned int sco_num;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200367 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100368 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100369
Marcel Holtmann97307f52015-01-12 13:51:10 -0800370 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100371 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000372
373 int (*setup_on_usb)(struct hci_dev *hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200374};
375
Marcel Holtmann803b5832014-09-16 08:00:29 +0200376static inline void btusb_free_frags(struct btusb_data *data)
377{
378 unsigned long flags;
379
380 spin_lock_irqsave(&data->rxlock, flags);
381
382 kfree_skb(data->evt_skb);
383 data->evt_skb = NULL;
384
385 kfree_skb(data->acl_skb);
386 data->acl_skb = NULL;
387
388 kfree_skb(data->sco_skb);
389 data->sco_skb = NULL;
390
391 spin_unlock_irqrestore(&data->rxlock, flags);
392}
393
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200394static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
395{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200396 struct sk_buff *skb;
397 int err = 0;
398
399 spin_lock(&data->rxlock);
400 skb = data->evt_skb;
401
402 while (count) {
403 int len;
404
405 if (!skb) {
406 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
407 if (!skb) {
408 err = -ENOMEM;
409 break;
410 }
411
412 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
413 bt_cb(skb)->expect = HCI_EVENT_HDR_SIZE;
414 }
415
416 len = min_t(uint, bt_cb(skb)->expect, count);
417 memcpy(skb_put(skb, len), buffer, len);
418
419 count -= len;
420 buffer += len;
421 bt_cb(skb)->expect -= len;
422
423 if (skb->len == HCI_EVENT_HDR_SIZE) {
424 /* Complete event header */
425 bt_cb(skb)->expect = hci_event_hdr(skb)->plen;
426
427 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
428 kfree_skb(skb);
429 skb = NULL;
430
431 err = -EILSEQ;
432 break;
433 }
434 }
435
436 if (bt_cb(skb)->expect == 0) {
437 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800438 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200439 skb = NULL;
440 }
441 }
442
443 data->evt_skb = skb;
444 spin_unlock(&data->rxlock);
445
446 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200447}
448
449static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
450{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200451 struct sk_buff *skb;
452 int err = 0;
453
454 spin_lock(&data->rxlock);
455 skb = data->acl_skb;
456
457 while (count) {
458 int len;
459
460 if (!skb) {
461 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
462 if (!skb) {
463 err = -ENOMEM;
464 break;
465 }
466
467 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
468 bt_cb(skb)->expect = HCI_ACL_HDR_SIZE;
469 }
470
471 len = min_t(uint, bt_cb(skb)->expect, count);
472 memcpy(skb_put(skb, len), buffer, len);
473
474 count -= len;
475 buffer += len;
476 bt_cb(skb)->expect -= len;
477
478 if (skb->len == HCI_ACL_HDR_SIZE) {
479 __le16 dlen = hci_acl_hdr(skb)->dlen;
480
481 /* Complete ACL header */
482 bt_cb(skb)->expect = __le16_to_cpu(dlen);
483
484 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
485 kfree_skb(skb);
486 skb = NULL;
487
488 err = -EILSEQ;
489 break;
490 }
491 }
492
493 if (bt_cb(skb)->expect == 0) {
494 /* Complete frame */
495 hci_recv_frame(data->hdev, skb);
496 skb = NULL;
497 }
498 }
499
500 data->acl_skb = skb;
501 spin_unlock(&data->rxlock);
502
503 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200504}
505
506static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
507{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200508 struct sk_buff *skb;
509 int err = 0;
510
511 spin_lock(&data->rxlock);
512 skb = data->sco_skb;
513
514 while (count) {
515 int len;
516
517 if (!skb) {
518 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
519 if (!skb) {
520 err = -ENOMEM;
521 break;
522 }
523
524 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
525 bt_cb(skb)->expect = HCI_SCO_HDR_SIZE;
526 }
527
528 len = min_t(uint, bt_cb(skb)->expect, count);
529 memcpy(skb_put(skb, len), buffer, len);
530
531 count -= len;
532 buffer += len;
533 bt_cb(skb)->expect -= len;
534
535 if (skb->len == HCI_SCO_HDR_SIZE) {
536 /* Complete SCO header */
537 bt_cb(skb)->expect = hci_sco_hdr(skb)->dlen;
538
539 if (skb_tailroom(skb) < bt_cb(skb)->expect) {
540 kfree_skb(skb);
541 skb = NULL;
542
543 err = -EILSEQ;
544 break;
545 }
546 }
547
548 if (bt_cb(skb)->expect == 0) {
549 /* Complete frame */
550 hci_recv_frame(data->hdev, skb);
551 skb = NULL;
552 }
553 }
554
555 data->sco_skb = skb;
556 spin_unlock(&data->rxlock);
557
558 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200559}
560
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200561static void btusb_intr_complete(struct urb *urb)
562{
563 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100564 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200565 int err;
566
Marcel Holtmann89e75332014-09-16 04:44:50 +0200567 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
568 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200569
570 if (!test_bit(HCI_RUNNING, &hdev->flags))
571 return;
572
573 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200574 hdev->stat.byte_rx += urb->actual_length;
575
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200576 if (btusb_recv_intr(data, urb->transfer_buffer,
577 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200578 BT_ERR("%s corrupted event packet", hdev->name);
579 hdev->stat.err_rx++;
580 }
Champion Chen85560c42014-09-06 14:06:08 -0500581 } else if (urb->status == -ENOENT) {
582 /* Avoid suspend failed when usb_kill_urb */
583 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200584 }
585
586 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
587 return;
588
Oliver Neukum7bee5492009-08-24 23:44:59 +0200589 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200590 usb_anchor_urb(urb, &data->intr_anchor);
591
592 err = usb_submit_urb(urb, GFP_ATOMIC);
593 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200594 /* -EPERM: urb is being killed;
595 * -ENODEV: device got disconnected */
596 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100597 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200598 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200599 usb_unanchor_urb(urb);
600 }
601}
602
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100603static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200604{
David Herrmann155961e2012-02-09 21:58:32 +0100605 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200606 struct urb *urb;
607 unsigned char *buf;
608 unsigned int pipe;
609 int err, size;
610
611 BT_DBG("%s", hdev->name);
612
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200613 if (!data->intr_ep)
614 return -ENODEV;
615
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100616 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200617 if (!urb)
618 return -ENOMEM;
619
620 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
621
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100622 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200623 if (!buf) {
624 usb_free_urb(urb);
625 return -ENOMEM;
626 }
627
628 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
629
630 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200631 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200632
633 urb->transfer_flags |= URB_FREE_BUFFER;
634
635 usb_anchor_urb(urb, &data->intr_anchor);
636
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100637 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200638 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200639 if (err != -EPERM && err != -ENODEV)
640 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200641 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200642 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200643 }
644
645 usb_free_urb(urb);
646
647 return err;
648}
649
650static void btusb_bulk_complete(struct urb *urb)
651{
652 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100653 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200654 int err;
655
Marcel Holtmann89e75332014-09-16 04:44:50 +0200656 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
657 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200658
659 if (!test_bit(HCI_RUNNING, &hdev->flags))
660 return;
661
662 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200663 hdev->stat.byte_rx += urb->actual_length;
664
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100665 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200666 urb->actual_length) < 0) {
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200667 BT_ERR("%s corrupted ACL packet", hdev->name);
668 hdev->stat.err_rx++;
669 }
Champion Chen85560c42014-09-06 14:06:08 -0500670 } else if (urb->status == -ENOENT) {
671 /* Avoid suspend failed when usb_kill_urb */
672 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200673 }
674
675 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
676 return;
677
678 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100679 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200680
681 err = usb_submit_urb(urb, GFP_ATOMIC);
682 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200683 /* -EPERM: urb is being killed;
684 * -ENODEV: device got disconnected */
685 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100686 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200687 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200688 usb_unanchor_urb(urb);
689 }
690}
691
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100692static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200693{
David Herrmann155961e2012-02-09 21:58:32 +0100694 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200695 struct urb *urb;
696 unsigned char *buf;
697 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530698 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200699
700 BT_DBG("%s", hdev->name);
701
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200702 if (!data->bulk_rx_ep)
703 return -ENODEV;
704
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100705 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200706 if (!urb)
707 return -ENOMEM;
708
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100709 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200710 if (!buf) {
711 usb_free_urb(urb);
712 return -ENOMEM;
713 }
714
715 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
716
Marcel Holtmann89e75332014-09-16 04:44:50 +0200717 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
718 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200719
720 urb->transfer_flags |= URB_FREE_BUFFER;
721
Oliver Neukum7bee5492009-08-24 23:44:59 +0200722 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200723 usb_anchor_urb(urb, &data->bulk_anchor);
724
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100725 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200726 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200727 if (err != -EPERM && err != -ENODEV)
728 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200729 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200730 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200731 }
732
733 usb_free_urb(urb);
734
735 return err;
736}
737
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200738static void btusb_isoc_complete(struct urb *urb)
739{
740 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100741 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200742 int i, err;
743
Marcel Holtmann89e75332014-09-16 04:44:50 +0200744 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
745 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200746
747 if (!test_bit(HCI_RUNNING, &hdev->flags))
748 return;
749
750 if (urb->status == 0) {
751 for (i = 0; i < urb->number_of_packets; i++) {
752 unsigned int offset = urb->iso_frame_desc[i].offset;
753 unsigned int length = urb->iso_frame_desc[i].actual_length;
754
755 if (urb->iso_frame_desc[i].status)
756 continue;
757
758 hdev->stat.byte_rx += length;
759
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200760 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
761 length) < 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200762 BT_ERR("%s corrupted SCO packet", hdev->name);
763 hdev->stat.err_rx++;
764 }
765 }
Champion Chen85560c42014-09-06 14:06:08 -0500766 } else if (urb->status == -ENOENT) {
767 /* Avoid suspend failed when usb_kill_urb */
768 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200769 }
770
771 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
772 return;
773
774 usb_anchor_urb(urb, &data->isoc_anchor);
775
776 err = usb_submit_urb(urb, GFP_ATOMIC);
777 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200778 /* -EPERM: urb is being killed;
779 * -ENODEV: device got disconnected */
780 if (err != -EPERM && err != -ENODEV)
Stefan Seyfried61faddf2010-11-30 21:49:08 +0100781 BT_ERR("%s urb %p failed to resubmit (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200782 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200783 usb_unanchor_urb(urb);
784 }
785}
786
Jesper Juhl42b16b32011-01-17 00:09:38 +0100787static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200788{
789 int i, offset = 0;
790
791 BT_DBG("len %d mtu %d", len, mtu);
792
793 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
794 i++, offset += mtu, len -= mtu) {
795 urb->iso_frame_desc[i].offset = offset;
796 urb->iso_frame_desc[i].length = mtu;
797 }
798
799 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
800 urb->iso_frame_desc[i].offset = offset;
801 urb->iso_frame_desc[i].length = len;
802 i++;
803 }
804
805 urb->number_of_packets = i;
806}
807
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100808static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200809{
David Herrmann155961e2012-02-09 21:58:32 +0100810 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200811 struct urb *urb;
812 unsigned char *buf;
813 unsigned int pipe;
814 int err, size;
815
816 BT_DBG("%s", hdev->name);
817
818 if (!data->isoc_rx_ep)
819 return -ENODEV;
820
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100821 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200822 if (!urb)
823 return -ENOMEM;
824
825 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
826 BTUSB_MAX_ISOC_FRAMES;
827
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100828 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200829 if (!buf) {
830 usb_free_urb(urb);
831 return -ENOMEM;
832 }
833
834 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
835
Bing Zhaofa0fb932011-12-20 18:19:00 -0800836 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200837 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200838
Marcel Holtmann89e75332014-09-16 04:44:50 +0200839 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200840
841 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200842 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200843
844 usb_anchor_urb(urb, &data->isoc_anchor);
845
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100846 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200847 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200848 if (err != -EPERM && err != -ENODEV)
849 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +0200850 hdev->name, urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200851 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200852 }
853
854 usb_free_urb(urb);
855
856 return err;
857}
858
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200859static void btusb_tx_complete(struct urb *urb)
860{
861 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200862 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +0100863 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200864
Marcel Holtmann89e75332014-09-16 04:44:50 +0200865 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
866 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200867
868 if (!test_bit(HCI_RUNNING, &hdev->flags))
869 goto done;
870
871 if (!urb->status)
872 hdev->stat.byte_tx += urb->transfer_buffer_length;
873 else
874 hdev->stat.err_tx++;
875
876done:
877 spin_lock(&data->txlock);
878 data->tx_in_flight--;
879 spin_unlock(&data->txlock);
880
881 kfree(urb->setup_packet);
882
883 kfree_skb(skb);
884}
885
886static void btusb_isoc_tx_complete(struct urb *urb)
887{
888 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +0200889 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200890
Marcel Holtmann89e75332014-09-16 04:44:50 +0200891 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
892 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200893
894 if (!test_bit(HCI_RUNNING, &hdev->flags))
895 goto done;
896
897 if (!urb->status)
898 hdev->stat.byte_tx += urb->transfer_buffer_length;
899 else
900 hdev->stat.err_tx++;
901
902done:
903 kfree(urb->setup_packet);
904
905 kfree_skb(skb);
906}
907
908static int btusb_open(struct hci_dev *hdev)
909{
David Herrmann155961e2012-02-09 21:58:32 +0100910 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200911 int err;
912
913 BT_DBG("%s", hdev->name);
914
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000915 /* Patching USB firmware files prior to starting any URBs of HCI path
916 * It is more safe to use USB bulk channel for downloading USB patch
917 */
918 if (data->setup_on_usb) {
919 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +0200920 if (err < 0)
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000921 return err;
922 }
923
Oliver Neukum7bee5492009-08-24 23:44:59 +0200924 err = usb_autopm_get_interface(data->intf);
925 if (err < 0)
926 return err;
927
928 data->intf->needs_remote_wakeup = 1;
929
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200930 if (test_and_set_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200931 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200932
933 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +0200934 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200935
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100936 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100937 if (err < 0)
938 goto failed;
939
940 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200941 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100942 usb_kill_anchored_urbs(&data->intr_anchor);
943 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200944 }
945
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100946 set_bit(BTUSB_BULK_RUNNING, &data->flags);
947 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
948
Oliver Neukum7bee5492009-08-24 23:44:59 +0200949done:
950 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100951 return 0;
952
953failed:
954 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
955 clear_bit(HCI_RUNNING, &hdev->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200956 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200957 return err;
958}
959
Oliver Neukum7bee5492009-08-24 23:44:59 +0200960static void btusb_stop_traffic(struct btusb_data *data)
961{
962 usb_kill_anchored_urbs(&data->intr_anchor);
963 usb_kill_anchored_urbs(&data->bulk_anchor);
964 usb_kill_anchored_urbs(&data->isoc_anchor);
965}
966
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200967static int btusb_close(struct hci_dev *hdev)
968{
David Herrmann155961e2012-02-09 21:58:32 +0100969 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200970 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200971
972 BT_DBG("%s", hdev->name);
973
974 if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
975 return 0;
976
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200977 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -0800978 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +0200979
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200980 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200981 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200982 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +0200983
984 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200985 btusb_free_frags(data);
986
Oliver Neukum7bee5492009-08-24 23:44:59 +0200987 err = usb_autopm_get_interface(data->intf);
988 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100989 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200990
991 data->intf->needs_remote_wakeup = 0;
992 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200993
Oliver Neukum7b8e2c12009-11-13 14:26:23 +0100994failed:
995 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200996 return 0;
997}
998
999static int btusb_flush(struct hci_dev *hdev)
1000{
David Herrmann155961e2012-02-09 21:58:32 +01001001 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001002
1003 BT_DBG("%s", hdev->name);
1004
1005 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001006 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001007
1008 return 0;
1009}
1010
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001011static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001012{
David Herrmann155961e2012-02-09 21:58:32 +01001013 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001014 struct usb_ctrlrequest *dr;
1015 struct urb *urb;
1016 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001017
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001018 urb = usb_alloc_urb(0, GFP_KERNEL);
1019 if (!urb)
1020 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001021
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001022 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1023 if (!dr) {
1024 usb_free_urb(urb);
1025 return ERR_PTR(-ENOMEM);
1026 }
1027
1028 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001029 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001030 dr->wIndex = 0;
1031 dr->wValue = 0;
1032 dr->wLength = __cpu_to_le16(skb->len);
1033
1034 pipe = usb_sndctrlpipe(data->udev, 0x00);
1035
Marcel Holtmann89e75332014-09-16 04:44:50 +02001036 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001037 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001038
Marcel Holtmann89e75332014-09-16 04:44:50 +02001039 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001040
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001041 return urb;
1042}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001043
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001044static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1045{
1046 struct btusb_data *data = hci_get_drvdata(hdev);
1047 struct urb *urb;
1048 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001049
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001050 if (!data->bulk_tx_ep)
1051 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001052
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001053 urb = usb_alloc_urb(0, GFP_KERNEL);
1054 if (!urb)
1055 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001056
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001057 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001058
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001059 usb_fill_bulk_urb(urb, data->udev, pipe,
1060 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001061
Marcel Holtmann89e75332014-09-16 04:44:50 +02001062 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001063
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001064 return urb;
1065}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001066
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001067static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1068{
1069 struct btusb_data *data = hci_get_drvdata(hdev);
1070 struct urb *urb;
1071 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001072
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001073 if (!data->isoc_tx_ep)
1074 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001075
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001076 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1077 if (!urb)
1078 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001079
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001080 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001081
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001082 usb_fill_int_urb(urb, data->udev, pipe,
1083 skb->data, skb->len, btusb_isoc_tx_complete,
1084 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001085
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001086 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001087
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001088 __fill_isoc_descriptor(urb, skb->len,
1089 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001090
Marcel Holtmann89e75332014-09-16 04:44:50 +02001091 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001092
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001093 return urb;
1094}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001095
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001096static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1097{
1098 struct btusb_data *data = hci_get_drvdata(hdev);
1099 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001100
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001101 usb_anchor_urb(urb, &data->tx_anchor);
1102
Johan Hedberge9753ef2014-09-14 08:49:34 +03001103 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001104 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001105 if (err != -EPERM && err != -ENODEV)
1106 BT_ERR("%s urb %p submission failed (%d)",
Marcel Holtmann89e75332014-09-16 04:44:50 +02001107 hdev->name, urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001108 kfree(urb->setup_packet);
1109 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001110 } else {
1111 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001112 }
1113
Cong Wang54a8a792011-11-22 09:32:57 +08001114 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001115 return err;
1116}
1117
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001118static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1119{
1120 struct btusb_data *data = hci_get_drvdata(hdev);
1121 unsigned long flags;
1122 bool suspending;
1123
1124 spin_lock_irqsave(&data->txlock, flags);
1125 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1126 if (!suspending)
1127 data->tx_in_flight++;
1128 spin_unlock_irqrestore(&data->txlock, flags);
1129
1130 if (!suspending)
1131 return submit_tx_urb(hdev, urb);
1132
1133 usb_anchor_urb(urb, &data->deferred);
1134 schedule_work(&data->waker);
1135
1136 usb_free_urb(urb);
1137 return 0;
1138}
1139
1140static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1141{
1142 struct urb *urb;
1143
1144 BT_DBG("%s", hdev->name);
1145
1146 if (!test_bit(HCI_RUNNING, &hdev->flags))
1147 return -EBUSY;
1148
1149 switch (bt_cb(skb)->pkt_type) {
1150 case HCI_COMMAND_PKT:
1151 urb = alloc_ctrl_urb(hdev, skb);
1152 if (IS_ERR(urb))
1153 return PTR_ERR(urb);
1154
1155 hdev->stat.cmd_tx++;
1156 return submit_or_queue_tx_urb(hdev, urb);
1157
1158 case HCI_ACLDATA_PKT:
1159 urb = alloc_bulk_urb(hdev, skb);
1160 if (IS_ERR(urb))
1161 return PTR_ERR(urb);
1162
1163 hdev->stat.acl_tx++;
1164 return submit_or_queue_tx_urb(hdev, urb);
1165
1166 case HCI_SCODATA_PKT:
1167 if (hci_conn_num(hdev, SCO_LINK) < 1)
1168 return -ENODEV;
1169
1170 urb = alloc_isoc_urb(hdev, skb);
1171 if (IS_ERR(urb))
1172 return PTR_ERR(urb);
1173
1174 hdev->stat.sco_tx++;
1175 return submit_tx_urb(hdev, urb);
1176 }
1177
1178 return -EILSEQ;
1179}
1180
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001181static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1182{
David Herrmann155961e2012-02-09 21:58:32 +01001183 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001184
1185 BT_DBG("%s evt %d", hdev->name, evt);
1186
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001187 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1188 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001189 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001190 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001191}
1192
Jesper Juhl42b16b32011-01-17 00:09:38 +01001193static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001194{
David Herrmann155961e2012-02-09 21:58:32 +01001195 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001196 struct usb_interface *intf = data->isoc;
1197 struct usb_endpoint_descriptor *ep_desc;
1198 int i, err;
1199
1200 if (!data->isoc)
1201 return -ENODEV;
1202
1203 err = usb_set_interface(data->udev, 1, altsetting);
1204 if (err < 0) {
1205 BT_ERR("%s setting interface failed (%d)", hdev->name, -err);
1206 return err;
1207 }
1208
1209 data->isoc_altsetting = altsetting;
1210
1211 data->isoc_tx_ep = NULL;
1212 data->isoc_rx_ep = NULL;
1213
1214 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1215 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1216
1217 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1218 data->isoc_tx_ep = ep_desc;
1219 continue;
1220 }
1221
1222 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1223 data->isoc_rx_ep = ep_desc;
1224 continue;
1225 }
1226 }
1227
1228 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
1229 BT_ERR("%s invalid SCO descriptors", hdev->name);
1230 return -ENODEV;
1231 }
1232
1233 return 0;
1234}
1235
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001236static void btusb_work(struct work_struct *work)
1237{
1238 struct btusb_data *data = container_of(work, struct btusb_data, work);
1239 struct hci_dev *hdev = data->hdev;
Mikel Astizf4001d22012-04-11 08:48:51 +02001240 int new_alts;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001241 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001242
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001243 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001244 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001245 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001246 if (err < 0) {
1247 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1248 usb_kill_anchored_urbs(&data->isoc_anchor);
1249 return;
1250 }
1251
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001252 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001253 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001254
1255 if (hdev->voice_setting & 0x0020) {
1256 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001257
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001258 new_alts = alts[data->sco_num - 1];
Mikel Astizf4001d22012-04-11 08:48:51 +02001259 } else {
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001260 new_alts = data->sco_num;
Mikel Astizf4001d22012-04-11 08:48:51 +02001261 }
1262
1263 if (data->isoc_altsetting != new_alts) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001264 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1265 usb_kill_anchored_urbs(&data->isoc_anchor);
1266
Mikel Astizf4001d22012-04-11 08:48:51 +02001267 if (__set_isoc_interface(hdev, new_alts) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001268 return;
1269 }
1270
1271 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001272 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001273 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1274 else
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001275 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001276 }
1277 } else {
1278 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1279 usb_kill_anchored_urbs(&data->isoc_anchor);
1280
1281 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001282 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001283 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001284 }
1285}
1286
Oliver Neukum7bee5492009-08-24 23:44:59 +02001287static void btusb_waker(struct work_struct *work)
1288{
1289 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1290 int err;
1291
1292 err = usb_autopm_get_interface(data->intf);
1293 if (err < 0)
1294 return;
1295
1296 usb_autopm_put_interface(data->intf);
1297}
1298
Daniel Drake6576fe42015-02-23 18:16:47 -06001299static struct sk_buff *btusb_read_local_version(struct hci_dev *hdev)
1300{
1301 struct sk_buff *skb;
1302
1303 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1304 HCI_INIT_TIMEOUT);
1305 if (IS_ERR(skb)) {
1306 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION failed (%ld)",
1307 hdev->name, PTR_ERR(skb));
1308 return skb;
1309 }
1310
1311 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
1312 BT_ERR("%s: HCI_OP_READ_LOCAL_VERSION event length mismatch",
1313 hdev->name);
1314 kfree_skb(skb);
1315 return ERR_PTR(-EIO);
1316 }
1317
1318 return skb;
1319}
1320
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001321static int btusb_setup_bcm92035(struct hci_dev *hdev)
1322{
1323 struct sk_buff *skb;
1324 u8 val = 0x00;
1325
1326 BT_DBG("%s", hdev->name);
1327
1328 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1329 if (IS_ERR(skb))
1330 BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
1331 else
1332 kfree_skb(skb);
1333
1334 return 0;
1335}
1336
Marcel Holtmann81cac642014-01-03 03:02:36 -08001337static int btusb_setup_csr(struct hci_dev *hdev)
1338{
1339 struct hci_rp_read_local_version *rp;
1340 struct sk_buff *skb;
1341 int ret;
1342
1343 BT_DBG("%s", hdev->name);
1344
Daniel Drake6576fe42015-02-23 18:16:47 -06001345 skb = btusb_read_local_version(hdev);
1346 if (IS_ERR(skb))
Marcel Holtmann81cac642014-01-03 03:02:36 -08001347 return -PTR_ERR(skb);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001348
Marcel Holtmann89e75332014-09-16 04:44:50 +02001349 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001350
1351 if (!rp->status) {
1352 if (le16_to_cpu(rp->manufacturer) != 10) {
1353 /* Clear the reset quirk since this is not an actual
1354 * early Bluetooth 1.1 device from CSR.
1355 */
1356 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
1357
1358 /* These fake CSR controllers have all a broken
1359 * stored link key handling and so just disable it.
1360 */
1361 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY,
1362 &hdev->quirks);
1363 }
1364 }
1365
1366 ret = -bt_to_errno(rp->status);
1367
1368 kfree_skb(skb);
1369
1370 return ret;
1371}
1372
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001373static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001374 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001375{
1376 const struct firmware *fw;
1377 char fwname[64];
1378 int ret;
1379
1380 snprintf(fwname, sizeof(fwname),
1381 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1382 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1383 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1384 ver->fw_build_ww, ver->fw_build_yy);
1385
1386 ret = request_firmware(&fw, fwname, &hdev->dev);
1387 if (ret < 0) {
1388 if (ret == -EINVAL) {
1389 BT_ERR("%s Intel firmware file request failed (%d)",
1390 hdev->name, ret);
1391 return NULL;
1392 }
1393
1394 BT_ERR("%s failed to open Intel firmware file: %s(%d)",
1395 hdev->name, fwname, ret);
1396
1397 /* If the correct firmware patch file is not found, use the
1398 * default firmware patch file instead
1399 */
1400 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1401 ver->hw_platform, ver->hw_variant);
1402 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
1403 BT_ERR("%s failed to open default Intel fw file: %s",
1404 hdev->name, fwname);
1405 return NULL;
1406 }
1407 }
1408
1409 BT_INFO("%s: Intel Bluetooth firmware file: %s", hdev->name, fwname);
1410
1411 return fw;
1412}
1413
1414static int btusb_setup_intel_patching(struct hci_dev *hdev,
1415 const struct firmware *fw,
1416 const u8 **fw_ptr, int *disable_patch)
1417{
1418 struct sk_buff *skb;
1419 struct hci_command_hdr *cmd;
1420 const u8 *cmd_param;
1421 struct hci_event_hdr *evt = NULL;
1422 const u8 *evt_param = NULL;
1423 int remain = fw->size - (*fw_ptr - fw->data);
1424
1425 /* The first byte indicates the types of the patch command or event.
1426 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1427 * in the current firmware buffer doesn't start with 0x01 or
1428 * the size of remain buffer is smaller than HCI command header,
1429 * the firmware file is corrupted and it should stop the patching
1430 * process.
1431 */
1432 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
1433 BT_ERR("%s Intel fw corrupted: invalid cmd read", hdev->name);
1434 return -EINVAL;
1435 }
1436 (*fw_ptr)++;
1437 remain--;
1438
1439 cmd = (struct hci_command_hdr *)(*fw_ptr);
1440 *fw_ptr += sizeof(*cmd);
1441 remain -= sizeof(*cmd);
1442
1443 /* Ensure that the remain firmware data is long enough than the length
1444 * of command parameter. If not, the firmware file is corrupted.
1445 */
1446 if (remain < cmd->plen) {
1447 BT_ERR("%s Intel fw corrupted: invalid cmd len", hdev->name);
1448 return -EFAULT;
1449 }
1450
1451 /* If there is a command that loads a patch in the firmware
1452 * file, then enable the patch upon success, otherwise just
1453 * disable the manufacturer mode, for example patch activation
1454 * is not required when the default firmware patch file is used
1455 * because there are no patch data to load.
1456 */
1457 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1458 *disable_patch = 0;
1459
1460 cmd_param = *fw_ptr;
1461 *fw_ptr += cmd->plen;
1462 remain -= cmd->plen;
1463
1464 /* This reads the expected events when the above command is sent to the
1465 * device. Some vendor commands expects more than one events, for
1466 * example command status event followed by vendor specific event.
1467 * For this case, it only keeps the last expected event. so the command
1468 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1469 * last expected event.
1470 */
1471 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1472 (*fw_ptr)++;
1473 remain--;
1474
1475 evt = (struct hci_event_hdr *)(*fw_ptr);
1476 *fw_ptr += sizeof(*evt);
1477 remain -= sizeof(*evt);
1478
1479 if (remain < evt->plen) {
1480 BT_ERR("%s Intel fw corrupted: invalid evt len",
1481 hdev->name);
1482 return -EFAULT;
1483 }
1484
1485 evt_param = *fw_ptr;
1486 *fw_ptr += evt->plen;
1487 remain -= evt->plen;
1488 }
1489
1490 /* Every HCI commands in the firmware file has its correspond event.
1491 * If event is not found or remain is smaller than zero, the firmware
1492 * file is corrupted.
1493 */
1494 if (!evt || !evt_param || remain < 0) {
1495 BT_ERR("%s Intel fw corrupted: invalid evt read", hdev->name);
1496 return -EFAULT;
1497 }
1498
1499 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1500 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1501 if (IS_ERR(skb)) {
1502 BT_ERR("%s sending Intel patch command (0x%4.4x) failed (%ld)",
1503 hdev->name, cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001504 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001505 }
1506
1507 /* It ensures that the returned event matches the event data read from
1508 * the firmware file. At fist, it checks the length and then
1509 * the contents of the event.
1510 */
1511 if (skb->len != evt->plen) {
1512 BT_ERR("%s mismatch event length (opcode 0x%4.4x)", hdev->name,
1513 le16_to_cpu(cmd->opcode));
1514 kfree_skb(skb);
1515 return -EFAULT;
1516 }
1517
1518 if (memcmp(skb->data, evt_param, evt->plen)) {
1519 BT_ERR("%s mismatch event parameter (opcode 0x%4.4x)",
1520 hdev->name, le16_to_cpu(cmd->opcode));
1521 kfree_skb(skb);
1522 return -EFAULT;
1523 }
1524 kfree_skb(skb);
1525
1526 return 0;
1527}
1528
1529static int btusb_setup_intel(struct hci_dev *hdev)
1530{
1531 struct sk_buff *skb;
1532 const struct firmware *fw;
1533 const u8 *fw_ptr;
1534 int disable_patch;
1535 struct intel_version *ver;
1536
1537 const u8 mfg_enable[] = { 0x01, 0x00 };
1538 const u8 mfg_disable[] = { 0x00, 0x00 };
1539 const u8 mfg_reset_deactivate[] = { 0x00, 0x01 };
1540 const u8 mfg_reset_activate[] = { 0x00, 0x02 };
1541
1542 BT_DBG("%s", hdev->name);
1543
1544 /* The controller has a bug with the first HCI command sent to it
1545 * returning number of completed commands as zero. This would stall the
1546 * command processing in the Bluetooth core.
1547 *
1548 * As a workaround, send HCI Reset command first which will reset the
1549 * number of completed commands and allow normal command processing
1550 * from now on.
1551 */
1552 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1553 if (IS_ERR(skb)) {
1554 BT_ERR("%s sending initial HCI reset command failed (%ld)",
1555 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001556 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001557 }
1558 kfree_skb(skb);
1559
1560 /* Read Intel specific controller version first to allow selection of
1561 * which firmware file to load.
1562 *
1563 * The returned information are hardware variant and revision plus
1564 * firmware variant, revision and build number.
1565 */
1566 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1567 if (IS_ERR(skb)) {
1568 BT_ERR("%s reading Intel fw version command failed (%ld)",
1569 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001570 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001571 }
1572
1573 if (skb->len != sizeof(*ver)) {
1574 BT_ERR("%s Intel version event length mismatch", hdev->name);
1575 kfree_skb(skb);
1576 return -EIO;
1577 }
1578
1579 ver = (struct intel_version *)skb->data;
1580 if (ver->status) {
1581 BT_ERR("%s Intel fw version event failed (%02x)", hdev->name,
1582 ver->status);
1583 kfree_skb(skb);
1584 return -bt_to_errno(ver->status);
1585 }
1586
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
1619 /* This Intel specific command enables the manufacturer mode of the
1620 * controller.
1621 *
1622 * Only while this mode is enabled, the driver can download the
1623 * firmware patch data and configuration parameters.
1624 */
1625 skb = __hci_cmd_sync(hdev, 0xfc11, 2, mfg_enable, HCI_INIT_TIMEOUT);
1626 if (IS_ERR(skb)) {
1627 BT_ERR("%s entering Intel manufacturer mode failed (%ld)",
1628 hdev->name, PTR_ERR(skb));
1629 release_firmware(fw);
Adam Leed9c78e92013-07-10 10:02:12 +08001630 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001631 }
1632
1633 if (skb->data[0]) {
1634 u8 evt_status = skb->data[0];
Marcel Holtmann89e75332014-09-16 04:44:50 +02001635
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001636 BT_ERR("%s enable Intel manufacturer mode event failed (%02x)",
1637 hdev->name, evt_status);
1638 kfree_skb(skb);
1639 release_firmware(fw);
1640 return -bt_to_errno(evt_status);
1641 }
1642 kfree_skb(skb);
1643
1644 disable_patch = 1;
1645
1646 /* The firmware data file consists of list of Intel specific HCI
1647 * commands and its expected events. The first byte indicates the
1648 * type of the message, either HCI command or HCI event.
1649 *
1650 * It reads the command and its expected event from the firmware file,
1651 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1652 * the returned event is compared with the event read from the firmware
1653 * file and it will continue until all the messages are downloaded to
1654 * the controller.
1655 *
1656 * Once the firmware patching is completed successfully,
1657 * the manufacturer mode is disabled with reset and activating the
1658 * downloaded patch.
1659 *
1660 * If the firmware patching fails, the manufacturer mode is
1661 * disabled with reset and deactivating the patch.
1662 *
1663 * If the default patch file is used, no reset is done when disabling
1664 * the manufacturer.
1665 */
1666 while (fw->size > fw_ptr - fw->data) {
1667 int ret;
1668
1669 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
1670 &disable_patch);
1671 if (ret < 0)
1672 goto exit_mfg_deactivate;
1673 }
1674
1675 release_firmware(fw);
1676
1677 if (disable_patch)
1678 goto exit_mfg_disable;
1679
1680 /* Patching completed successfully and disable the manufacturer mode
1681 * with reset and activate the downloaded firmware patches.
1682 */
1683 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_activate),
1684 mfg_reset_activate, HCI_INIT_TIMEOUT);
1685 if (IS_ERR(skb)) {
1686 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1687 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001688 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001689 }
1690 kfree_skb(skb);
1691
1692 BT_INFO("%s: Intel Bluetooth firmware patch completed and activated",
1693 hdev->name);
1694
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001695 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001696 return 0;
1697
1698exit_mfg_disable:
1699 /* Disable the manufacturer mode without reset */
1700 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_disable), mfg_disable,
1701 HCI_INIT_TIMEOUT);
1702 if (IS_ERR(skb)) {
1703 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1704 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001705 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001706 }
1707 kfree_skb(skb);
1708
1709 BT_INFO("%s: Intel Bluetooth firmware patch completed", hdev->name);
Marcel Holtmann40cb0982014-07-02 12:06:45 +02001710
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001711 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001712 return 0;
1713
1714exit_mfg_deactivate:
1715 release_firmware(fw);
1716
1717 /* Patching failed. Disable the manufacturer mode with reset and
1718 * deactivate the downloaded firmware patches.
1719 */
1720 skb = __hci_cmd_sync(hdev, 0xfc11, sizeof(mfg_reset_deactivate),
1721 mfg_reset_deactivate, HCI_INIT_TIMEOUT);
1722 if (IS_ERR(skb)) {
1723 BT_ERR("%s exiting Intel manufacturer mode failed (%ld)",
1724 hdev->name, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001725 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001726 }
1727 kfree_skb(skb);
1728
1729 BT_INFO("%s: Intel Bluetooth firmware patch completed and deactivated",
1730 hdev->name);
1731
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07001732 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001733 return 0;
1734}
1735
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001736static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
1737{
1738 struct sk_buff *skb;
1739 struct hci_event_hdr *hdr;
1740 struct hci_ev_cmd_complete *evt;
1741
1742 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_ATOMIC);
1743 if (!skb)
1744 return -ENOMEM;
1745
1746 hdr = (struct hci_event_hdr *)skb_put(skb, sizeof(*hdr));
1747 hdr->evt = HCI_EV_CMD_COMPLETE;
1748 hdr->plen = sizeof(*evt) + 1;
1749
1750 evt = (struct hci_ev_cmd_complete *)skb_put(skb, sizeof(*evt));
1751 evt->ncmd = 0x01;
1752 evt->opcode = cpu_to_le16(opcode);
1753
1754 *skb_put(skb, 1) = 0x00;
1755
1756 bt_cb(skb)->pkt_type = HCI_EVENT_PKT;
1757
1758 return hci_recv_frame(hdev, skb);
1759}
1760
1761static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
1762 int count)
1763{
1764 /* When the device is in bootloader mode, then it can send
1765 * events via the bulk endpoint. These events are treated the
1766 * same way as the ones received from the interrupt endpoint.
1767 */
1768 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
1769 return btusb_recv_intr(data, buffer, count);
1770
1771 return btusb_recv_bulk(data, buffer, count);
1772}
1773
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001774static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
1775 unsigned int len)
1776{
1777 const struct intel_bootup *evt = ptr;
1778
1779 if (len != sizeof(*evt))
1780 return;
1781
1782 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags)) {
1783 smp_mb__after_atomic();
1784 wake_up_bit(&data->flags, BTUSB_BOOTING);
1785 }
1786}
1787
1788static void btusb_intel_secure_send_result(struct btusb_data *data,
1789 const void *ptr, unsigned int len)
1790{
1791 const struct intel_secure_send_result *evt = ptr;
1792
1793 if (len != sizeof(*evt))
1794 return;
1795
1796 if (evt->result)
1797 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
1798
1799 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
1800 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags)) {
1801 smp_mb__after_atomic();
1802 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
1803 }
1804}
1805
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001806static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
1807{
1808 struct btusb_data *data = hci_get_drvdata(hdev);
1809
1810 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1811 struct hci_event_hdr *hdr = (void *)skb->data;
1812
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001813 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
1814 hdr->plen > 0) {
1815 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
1816 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001817
Marcel Holtmannccd6da22015-04-09 00:35:19 -07001818 switch (skb->data[2]) {
1819 case 0x02:
1820 /* When switching to the operational firmware
1821 * the device sends a vendor specific event
1822 * indicating that the bootup completed.
1823 */
1824 btusb_intel_bootup(data, ptr, len);
1825 break;
1826 case 0x06:
1827 /* When the firmware loading completes the
1828 * device sends out a vendor specific event
1829 * indicating the result of the firmware
1830 * loading.
1831 */
1832 btusb_intel_secure_send_result(data, ptr, len);
1833 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02001834 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08001835 }
1836 }
1837
1838 return hci_recv_frame(hdev, skb);
1839}
1840
1841static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
1842{
1843 struct btusb_data *data = hci_get_drvdata(hdev);
1844 struct urb *urb;
1845
1846 BT_DBG("%s", hdev->name);
1847
1848 if (!test_bit(HCI_RUNNING, &hdev->flags))
1849 return -EBUSY;
1850
1851 switch (bt_cb(skb)->pkt_type) {
1852 case HCI_COMMAND_PKT:
1853 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
1854 struct hci_command_hdr *cmd = (void *)skb->data;
1855 __u16 opcode = le16_to_cpu(cmd->opcode);
1856
1857 /* When in bootloader mode and the command 0xfc09
1858 * is received, it needs to be send down the
1859 * bulk endpoint. So allocate a bulk URB instead.
1860 */
1861 if (opcode == 0xfc09)
1862 urb = alloc_bulk_urb(hdev, skb);
1863 else
1864 urb = alloc_ctrl_urb(hdev, skb);
1865
1866 /* When the 0xfc01 command is issued to boot into
1867 * the operational firmware, it will actually not
1868 * send a command complete event. To keep the flow
1869 * control working inject that event here.
1870 */
1871 if (opcode == 0xfc01)
1872 inject_cmd_complete(hdev, opcode);
1873 } else {
1874 urb = alloc_ctrl_urb(hdev, skb);
1875 }
1876 if (IS_ERR(urb))
1877 return PTR_ERR(urb);
1878
1879 hdev->stat.cmd_tx++;
1880 return submit_or_queue_tx_urb(hdev, urb);
1881
1882 case HCI_ACLDATA_PKT:
1883 urb = alloc_bulk_urb(hdev, skb);
1884 if (IS_ERR(urb))
1885 return PTR_ERR(urb);
1886
1887 hdev->stat.acl_tx++;
1888 return submit_or_queue_tx_urb(hdev, urb);
1889
1890 case HCI_SCODATA_PKT:
1891 if (hci_conn_num(hdev, SCO_LINK) < 1)
1892 return -ENODEV;
1893
1894 urb = alloc_isoc_urb(hdev, skb);
1895 if (IS_ERR(urb))
1896 return PTR_ERR(urb);
1897
1898 hdev->stat.sco_tx++;
1899 return submit_tx_urb(hdev, urb);
1900 }
1901
1902 return -EILSEQ;
1903}
1904
1905static int btusb_intel_secure_send(struct hci_dev *hdev, u8 fragment_type,
1906 u32 plen, const void *param)
1907{
1908 while (plen > 0) {
1909 struct sk_buff *skb;
1910 u8 cmd_param[253], fragment_len = (plen > 252) ? 252 : plen;
1911
1912 cmd_param[0] = fragment_type;
1913 memcpy(cmd_param + 1, param, fragment_len);
1914
1915 skb = __hci_cmd_sync(hdev, 0xfc09, fragment_len + 1,
1916 cmd_param, HCI_INIT_TIMEOUT);
1917 if (IS_ERR(skb))
1918 return PTR_ERR(skb);
1919
1920 kfree_skb(skb);
1921
1922 plen -= fragment_len;
1923 param += fragment_len;
1924 }
1925
1926 return 0;
1927}
1928
1929static void btusb_intel_version_info(struct hci_dev *hdev,
1930 struct intel_version *ver)
1931{
1932 const char *variant;
1933
1934 switch (ver->fw_variant) {
1935 case 0x06:
1936 variant = "Bootloader";
1937 break;
1938 case 0x23:
1939 variant = "Firmware";
1940 break;
1941 default:
1942 return;
1943 }
1944
1945 BT_INFO("%s: %s revision %u.%u build %u week %u %u", hdev->name,
1946 variant, ver->fw_revision >> 4, ver->fw_revision & 0x0f,
1947 ver->fw_build_num, ver->fw_build_ww, 2000 + ver->fw_build_yy);
1948}
1949
1950static int btusb_setup_intel_new(struct hci_dev *hdev)
1951{
1952 static const u8 reset_param[] = { 0x00, 0x01, 0x00, 0x01,
1953 0x00, 0x08, 0x04, 0x00 };
1954 struct btusb_data *data = hci_get_drvdata(hdev);
1955 struct sk_buff *skb;
1956 struct intel_version *ver;
1957 struct intel_boot_params *params;
1958 const struct firmware *fw;
1959 const u8 *fw_ptr;
1960 char fwname[64];
1961 ktime_t calltime, delta, rettime;
1962 unsigned long long duration;
1963 int err;
1964
1965 BT_DBG("%s", hdev->name);
1966
1967 calltime = ktime_get();
1968
1969 /* Read the Intel version information to determine if the device
1970 * is in bootloader mode or if it already has operational firmware
1971 * loaded.
1972 */
1973 skb = __hci_cmd_sync(hdev, 0xfc05, 0, NULL, HCI_INIT_TIMEOUT);
1974 if (IS_ERR(skb)) {
1975 BT_ERR("%s: Reading Intel version information failed (%ld)",
1976 hdev->name, PTR_ERR(skb));
1977 return PTR_ERR(skb);
1978 }
1979
1980 if (skb->len != sizeof(*ver)) {
1981 BT_ERR("%s: Intel version event size mismatch", hdev->name);
1982 kfree_skb(skb);
1983 return -EILSEQ;
1984 }
1985
1986 ver = (struct intel_version *)skb->data;
1987 if (ver->status) {
1988 BT_ERR("%s: Intel version command failure (%02x)",
1989 hdev->name, ver->status);
1990 err = -bt_to_errno(ver->status);
1991 kfree_skb(skb);
1992 return err;
1993 }
1994
1995 /* The hardware platform number has a fixed value of 0x37 and
1996 * for now only accept this single value.
1997 */
1998 if (ver->hw_platform != 0x37) {
1999 BT_ERR("%s: Unsupported Intel hardware platform (%u)",
2000 hdev->name, ver->hw_platform);
2001 kfree_skb(skb);
2002 return -EINVAL;
2003 }
2004
2005 /* At the moment only the hardware variant iBT 3.0 (LnP/SfP) is
2006 * supported by this firmware loading method. This check has been
2007 * put in place to ensure correct forward compatibility options
2008 * when newer hardware variants come along.
2009 */
2010 if (ver->hw_variant != 0x0b) {
2011 BT_ERR("%s: Unsupported Intel hardware variant (%u)",
2012 hdev->name, ver->hw_variant);
2013 kfree_skb(skb);
2014 return -EINVAL;
2015 }
2016
2017 btusb_intel_version_info(hdev, ver);
2018
2019 /* The firmware variant determines if the device is in bootloader
2020 * mode or is running operational firmware. The value 0x06 identifies
2021 * the bootloader and the value 0x23 identifies the operational
2022 * firmware.
2023 *
2024 * When the operational firmware is already present, then only
2025 * the check for valid Bluetooth device address is needed. This
2026 * determines if the device will be added as configured or
2027 * unconfigured controller.
2028 *
2029 * It is not possible to use the Secure Boot Parameters in this
2030 * case since that command is only available in bootloader mode.
2031 */
2032 if (ver->fw_variant == 0x23) {
2033 kfree_skb(skb);
2034 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002035 btintel_check_bdaddr(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002036 return 0;
2037 }
2038
2039 /* If the device is not in bootloader mode, then the only possible
2040 * choice is to return an error and abort the device initialization.
2041 */
2042 if (ver->fw_variant != 0x06) {
2043 BT_ERR("%s: Unsupported Intel firmware variant (%u)",
2044 hdev->name, ver->fw_variant);
2045 kfree_skb(skb);
2046 return -ENODEV;
2047 }
2048
2049 kfree_skb(skb);
2050
2051 /* Read the secure boot parameters to identify the operating
2052 * details of the bootloader.
2053 */
2054 skb = __hci_cmd_sync(hdev, 0xfc0d, 0, NULL, HCI_INIT_TIMEOUT);
2055 if (IS_ERR(skb)) {
2056 BT_ERR("%s: Reading Intel boot parameters failed (%ld)",
2057 hdev->name, PTR_ERR(skb));
2058 return PTR_ERR(skb);
2059 }
2060
2061 if (skb->len != sizeof(*params)) {
2062 BT_ERR("%s: Intel boot parameters size mismatch", hdev->name);
2063 kfree_skb(skb);
2064 return -EILSEQ;
2065 }
2066
2067 params = (struct intel_boot_params *)skb->data;
2068 if (params->status) {
2069 BT_ERR("%s: Intel boot parameters command failure (%02x)",
2070 hdev->name, params->status);
2071 err = -bt_to_errno(params->status);
2072 kfree_skb(skb);
2073 return err;
2074 }
2075
2076 BT_INFO("%s: Device revision is %u", hdev->name,
2077 le16_to_cpu(params->dev_revid));
2078
2079 BT_INFO("%s: Secure boot is %s", hdev->name,
2080 params->secure_boot ? "enabled" : "disabled");
2081
2082 BT_INFO("%s: Minimum firmware build %u week %u %u", hdev->name,
2083 params->min_fw_build_nn, params->min_fw_build_cw,
2084 2000 + params->min_fw_build_yy);
2085
2086 /* It is required that every single firmware fragment is acknowledged
2087 * with a command complete event. If the boot parameters indicate
2088 * that this bootloader does not send them, then abort the setup.
2089 */
2090 if (params->limited_cce != 0x00) {
2091 BT_ERR("%s: Unsupported Intel firmware loading method (%u)",
2092 hdev->name, params->limited_cce);
2093 kfree_skb(skb);
2094 return -EINVAL;
2095 }
2096
2097 /* If the OTP has no valid Bluetooth device address, then there will
2098 * also be no valid address for the operational firmware.
2099 */
2100 if (!bacmp(&params->otp_bdaddr, BDADDR_ANY)) {
2101 BT_INFO("%s: No device address configured", hdev->name);
2102 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2103 }
2104
2105 /* With this Intel bootloader only the hardware variant and device
2106 * revision information are used to select the right firmware.
2107 *
2108 * Currently this bootloader support is limited to hardware variant
2109 * iBT 3.0 (LnP/SfP) which is identified by the value 11 (0x0b).
2110 */
2111 snprintf(fwname, sizeof(fwname), "intel/ibt-11-%u.sfi",
2112 le16_to_cpu(params->dev_revid));
2113
2114 err = request_firmware(&fw, fwname, &hdev->dev);
2115 if (err < 0) {
2116 BT_ERR("%s: Failed to load Intel firmware file (%d)",
2117 hdev->name, err);
2118 kfree_skb(skb);
2119 return err;
2120 }
2121
2122 BT_INFO("%s: Found device firmware: %s", hdev->name, fwname);
2123
2124 kfree_skb(skb);
2125
2126 if (fw->size < 644) {
2127 BT_ERR("%s: Invalid size of firmware file (%zu)",
2128 hdev->name, fw->size);
2129 err = -EBADF;
2130 goto done;
2131 }
2132
2133 set_bit(BTUSB_DOWNLOADING, &data->flags);
2134
2135 /* Start the firmware download transaction with the Init fragment
2136 * represented by the 128 bytes of CSS header.
2137 */
2138 err = btusb_intel_secure_send(hdev, 0x00, 128, fw->data);
2139 if (err < 0) {
2140 BT_ERR("%s: Failed to send firmware header (%d)",
2141 hdev->name, err);
2142 goto done;
2143 }
2144
2145 /* Send the 256 bytes of public key information from the firmware
2146 * as the PKey fragment.
2147 */
2148 err = btusb_intel_secure_send(hdev, 0x03, 256, fw->data + 128);
2149 if (err < 0) {
2150 BT_ERR("%s: Failed to send firmware public key (%d)",
2151 hdev->name, err);
2152 goto done;
2153 }
2154
2155 /* Send the 256 bytes of signature information from the firmware
2156 * as the Sign fragment.
2157 */
2158 err = btusb_intel_secure_send(hdev, 0x02, 256, fw->data + 388);
2159 if (err < 0) {
2160 BT_ERR("%s: Failed to send firmware signature (%d)",
2161 hdev->name, err);
2162 goto done;
2163 }
2164
2165 fw_ptr = fw->data + 644;
2166
2167 while (fw_ptr - fw->data < fw->size) {
2168 struct hci_command_hdr *cmd = (void *)fw_ptr;
2169 u8 cmd_len;
2170
2171 cmd_len = sizeof(*cmd) + cmd->plen;
2172
2173 /* Send each command from the firmware data buffer as
2174 * a single Data fragment.
2175 */
2176 err = btusb_intel_secure_send(hdev, 0x01, cmd_len, fw_ptr);
2177 if (err < 0) {
2178 BT_ERR("%s: Failed to send firmware data (%d)",
2179 hdev->name, err);
2180 goto done;
2181 }
2182
2183 fw_ptr += cmd_len;
2184 }
2185
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002186 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2187
Johan Hedberga087a982015-01-30 10:58:54 +02002188 BT_INFO("%s: Waiting for firmware download to complete", hdev->name);
2189
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002190 /* Before switching the device into operational mode and with that
2191 * booting the loaded firmware, wait for the bootloader notification
2192 * that all fragments have been successfully received.
2193 *
Johan Hedberga087a982015-01-30 10:58:54 +02002194 * When the event processing receives the notification, then the
2195 * BTUSB_DOWNLOADING flag will be cleared.
2196 *
2197 * The firmware loading should not take longer than 5 seconds
2198 * and thus just timeout if that happens and fail the setup
2199 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002200 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002201 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2202 TASK_INTERRUPTIBLE,
2203 msecs_to_jiffies(5000));
Johan Hedberga087a982015-01-30 10:58:54 +02002204 if (err == 1) {
2205 BT_ERR("%s: Firmware loading interrupted", hdev->name);
2206 err = -EINTR;
2207 goto done;
2208 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002209
Johan Hedberga087a982015-01-30 10:58:54 +02002210 if (err) {
2211 BT_ERR("%s: Firmware loading timeout", hdev->name);
2212 err = -ETIMEDOUT;
2213 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002214 }
2215
2216 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
2217 BT_ERR("%s: Firmware loading failed", hdev->name);
2218 err = -ENOEXEC;
2219 goto done;
2220 }
2221
2222 rettime = ktime_get();
2223 delta = ktime_sub(rettime, calltime);
2224 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2225
2226 BT_INFO("%s: Firmware loaded in %llu usecs", hdev->name, duration);
2227
2228done:
2229 release_firmware(fw);
2230
2231 if (err < 0)
2232 return err;
2233
2234 calltime = ktime_get();
2235
2236 set_bit(BTUSB_BOOTING, &data->flags);
2237
2238 skb = __hci_cmd_sync(hdev, 0xfc01, sizeof(reset_param), reset_param,
2239 HCI_INIT_TIMEOUT);
2240 if (IS_ERR(skb))
2241 return PTR_ERR(skb);
2242
2243 kfree_skb(skb);
2244
2245 /* The bootloader will not indicate when the device is ready. This
2246 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002247 *
2248 * Booting into operational firmware should not take longer than
2249 * 1 second. However if that happens, then just fail the setup
2250 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002251 */
Johan Hedbergfad70972015-01-30 10:58:55 +02002252 BT_INFO("%s: Waiting for device to boot", hdev->name);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002253
Johan Hedberg129a7692015-02-14 09:33:35 +02002254 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2255 TASK_INTERRUPTIBLE,
2256 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002257
Johan Hedbergfad70972015-01-30 10:58:55 +02002258 if (err == 1) {
2259 BT_ERR("%s: Device boot interrupted", hdev->name);
2260 return -EINTR;
2261 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002262
Johan Hedbergfad70972015-01-30 10:58:55 +02002263 if (err) {
2264 BT_ERR("%s: Device boot timeout", hdev->name);
2265 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002266 }
2267
2268 rettime = ktime_get();
2269 delta = ktime_sub(rettime, calltime);
2270 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2271
2272 BT_INFO("%s: Device booted in %llu usecs", hdev->name, duration);
2273
2274 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2275
2276 return 0;
2277}
2278
Marcel Holtmann385a7682015-01-28 11:09:56 -08002279static void btusb_hw_error_intel(struct hci_dev *hdev, u8 code)
2280{
2281 struct sk_buff *skb;
2282 u8 type = 0x00;
2283
2284 BT_ERR("%s: Hardware error 0x%2.2x", hdev->name, code);
2285
2286 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2287 if (IS_ERR(skb)) {
2288 BT_ERR("%s: Reset after hardware error failed (%ld)",
2289 hdev->name, PTR_ERR(skb));
2290 return;
2291 }
2292 kfree_skb(skb);
2293
2294 skb = __hci_cmd_sync(hdev, 0xfc22, 1, &type, HCI_INIT_TIMEOUT);
2295 if (IS_ERR(skb)) {
2296 BT_ERR("%s: Retrieving Intel exception info failed (%ld)",
2297 hdev->name, PTR_ERR(skb));
2298 return;
2299 }
2300
2301 if (skb->len != 13) {
2302 BT_ERR("%s: Exception info size mismatch", hdev->name);
2303 kfree_skb(skb);
2304 return;
2305 }
2306
2307 if (skb->data[0] != 0x00) {
2308 BT_ERR("%s: Exception info command failure (%02x)",
2309 hdev->name, skb->data[0]);
2310 kfree_skb(skb);
2311 return;
2312 }
2313
2314 BT_ERR("%s: Exception info %s", hdev->name, (char *)(skb->data + 1));
2315
2316 kfree_skb(skb);
2317}
2318
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002319static int btusb_shutdown_intel(struct hci_dev *hdev)
2320{
2321 struct sk_buff *skb;
2322 long ret;
2323
2324 /* Some platforms have an issue with BT LED when the interface is
2325 * down or BT radio is turned off, which takes 5 seconds to BT LED
2326 * goes off. This command turns off the BT LED immediately.
2327 */
2328 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2329 if (IS_ERR(skb)) {
2330 ret = PTR_ERR(skb);
2331 BT_ERR("%s: turning off Intel device LED failed (%ld)",
2332 hdev->name, ret);
2333 return ret;
2334 }
2335 kfree_skb(skb);
2336
2337 return 0;
2338}
2339
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002340static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
2341 const bdaddr_t *bdaddr)
2342{
2343 struct sk_buff *skb;
2344 u8 buf[8];
2345 long ret;
2346
2347 buf[0] = 0xfe;
2348 buf[1] = sizeof(bdaddr_t);
2349 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
2350
2351 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2352 if (IS_ERR(skb)) {
2353 ret = PTR_ERR(skb);
2354 BT_ERR("%s: changing Marvell device address failed (%ld)",
2355 hdev->name, ret);
2356 return ret;
2357 }
2358 kfree_skb(skb);
2359
2360 return 0;
2361}
2362
Toshi Kikuchi58592232014-12-12 10:58:05 -08002363static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
2364 const bdaddr_t *bdaddr)
2365{
2366 struct sk_buff *skb;
2367 u8 buf[10];
2368 long ret;
2369
2370 buf[0] = 0x01;
2371 buf[1] = 0x01;
2372 buf[2] = 0x00;
2373 buf[3] = sizeof(bdaddr_t);
2374 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
2375
2376 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
2377 if (IS_ERR(skb)) {
2378 ret = PTR_ERR(skb);
2379 BT_ERR("%s: Change address command failed (%ld)",
2380 hdev->name, ret);
2381 return ret;
2382 }
2383 kfree_skb(skb);
2384
2385 return 0;
2386}
2387
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002388#define QCA_DFU_PACKET_LEN 4096
2389
2390#define QCA_GET_TARGET_VERSION 0x09
2391#define QCA_CHECK_STATUS 0x05
2392#define QCA_DFU_DOWNLOAD 0x01
2393
2394#define QCA_SYSCFG_UPDATED 0x40
2395#define QCA_PATCH_UPDATED 0x80
2396#define QCA_DFU_TIMEOUT 3000
2397
2398struct qca_version {
2399 __le32 rom_version;
2400 __le32 patch_version;
2401 __le32 ram_version;
2402 __le32 ref_clock;
2403 __u8 reserved[4];
2404} __packed;
2405
2406struct qca_rampatch_version {
2407 __le16 rom_version;
2408 __le16 patch_version;
2409} __packed;
2410
2411struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002412 u32 rom_version;
2413 u8 rampatch_hdr; /* length of header in rampatch */
2414 u8 nvm_hdr; /* length of header in NVM */
2415 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002416};
2417
2418static const struct qca_device_info qca_devices_table[] = {
2419 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
2420 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
2421 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
2422 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
2423 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
2424};
2425
2426static int btusb_qca_send_vendor_req(struct hci_dev *hdev, u8 request,
2427 void *data, u16 size)
2428{
2429 struct btusb_data *btdata = hci_get_drvdata(hdev);
2430 struct usb_device *udev = btdata->udev;
2431 int pipe, err;
2432 u8 *buf;
2433
2434 buf = kmalloc(size, GFP_KERNEL);
2435 if (!buf)
2436 return -ENOMEM;
2437
2438 /* Found some of USB hosts have IOT issues with ours so that we should
2439 * not wait until HCI layer is ready.
2440 */
2441 pipe = usb_rcvctrlpipe(udev, 0);
2442 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
2443 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2444 if (err < 0) {
2445 BT_ERR("%s: Failed to access otp area (%d)", hdev->name, err);
2446 goto done;
2447 }
2448
2449 memcpy(data, buf, size);
2450
2451done:
2452 kfree(buf);
2453
2454 return err;
2455}
2456
2457static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
2458 const struct firmware *firmware,
2459 size_t hdr_size)
2460{
2461 struct btusb_data *btdata = hci_get_drvdata(hdev);
2462 struct usb_device *udev = btdata->udev;
2463 size_t count, size, sent = 0;
2464 int pipe, len, err;
2465 u8 *buf;
2466
2467 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
2468 if (!buf)
2469 return -ENOMEM;
2470
2471 count = firmware->size;
2472
2473 size = min_t(size_t, count, hdr_size);
2474 memcpy(buf, firmware->data, size);
2475
2476 /* USB patches should go down to controller through USB path
2477 * because binary format fits to go down through USB channel.
2478 * USB control path is for patching headers and USB bulk is for
2479 * patch body.
2480 */
2481 pipe = usb_sndctrlpipe(udev, 0);
2482 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
2483 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
2484 if (err < 0) {
2485 BT_ERR("%s: Failed to send headers (%d)", hdev->name, err);
2486 goto done;
2487 }
2488
2489 sent += size;
2490 count -= size;
2491
2492 while (count) {
2493 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
2494
2495 memcpy(buf, firmware->data + sent, size);
2496
2497 pipe = usb_sndbulkpipe(udev, 0x02);
2498 err = usb_bulk_msg(udev, pipe, buf, size, &len,
2499 QCA_DFU_TIMEOUT);
2500 if (err < 0) {
2501 BT_ERR("%s: Failed to send body at %zd of %zd (%d)",
2502 hdev->name, sent, firmware->size, err);
2503 break;
2504 }
2505
2506 if (size != len) {
2507 BT_ERR("%s: Failed to get bulk buffer", hdev->name);
2508 err = -EILSEQ;
2509 break;
2510 }
2511
2512 sent += size;
2513 count -= size;
2514 }
2515
2516done:
2517 kfree(buf);
2518 return err;
2519}
2520
2521static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
2522 struct qca_version *ver,
2523 const struct qca_device_info *info)
2524{
2525 struct qca_rampatch_version *rver;
2526 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002527 u32 ver_rom, ver_patch;
2528 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002529 char fwname[64];
2530 int err;
2531
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002532 ver_rom = le32_to_cpu(ver->rom_version);
2533 ver_patch = le32_to_cpu(ver->patch_version);
2534
2535 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002536
2537 err = request_firmware(&fw, fwname, &hdev->dev);
2538 if (err) {
2539 BT_ERR("%s: failed to request rampatch file: %s (%d)",
2540 hdev->name, fwname, err);
2541 return err;
2542 }
2543
2544 BT_INFO("%s: using rampatch file: %s", hdev->name, fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002545
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002546 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
2547 rver_rom = le16_to_cpu(rver->rom_version);
2548 rver_patch = le16_to_cpu(rver->patch_version);
2549
2550 BT_INFO("%s: QCA: patch rome 0x%x build 0x%x, firmware rome 0x%x "
2551 "build 0x%x", hdev->name, rver_rom, rver_patch, ver_rom,
2552 ver_patch);
2553
2554 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002555 BT_ERR("%s: rampatch file version did not match with firmware",
2556 hdev->name);
2557 err = -EINVAL;
2558 goto done;
2559 }
2560
2561 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
2562
2563done:
2564 release_firmware(fw);
2565
2566 return err;
2567}
2568
2569static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
2570 struct qca_version *ver,
2571 const struct qca_device_info *info)
2572{
2573 const struct firmware *fw;
2574 char fwname[64];
2575 int err;
2576
2577 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
2578 le32_to_cpu(ver->rom_version));
2579
2580 err = request_firmware(&fw, fwname, &hdev->dev);
2581 if (err) {
2582 BT_ERR("%s: failed to request NVM file: %s (%d)",
2583 hdev->name, fwname, err);
2584 return err;
2585 }
2586
2587 BT_INFO("%s: using NVM file: %s", hdev->name, fwname);
2588
2589 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
2590
2591 release_firmware(fw);
2592
2593 return err;
2594}
2595
2596static int btusb_setup_qca(struct hci_dev *hdev)
2597{
2598 const struct qca_device_info *info = NULL;
2599 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002600 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002601 u8 status;
2602 int i, err;
2603
2604 err = btusb_qca_send_vendor_req(hdev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02002605 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002606 if (err < 0)
2607 return err;
2608
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002609 ver_rom = le32_to_cpu(ver.rom_version);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002610 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002611 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002612 info = &qca_devices_table[i];
2613 }
2614 if (!info) {
2615 BT_ERR("%s: don't support firmware rome 0x%x", hdev->name,
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00002616 ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002617 return -ENODEV;
2618 }
2619
2620 err = btusb_qca_send_vendor_req(hdev, QCA_CHECK_STATUS, &status,
2621 sizeof(status));
2622 if (err < 0)
2623 return err;
2624
2625 if (!(status & QCA_PATCH_UPDATED)) {
2626 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
2627 if (err < 0)
2628 return err;
2629 }
2630
2631 if (!(status & QCA_SYSCFG_UPDATED)) {
2632 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
2633 if (err < 0)
2634 return err;
2635 }
2636
2637 return 0;
2638}
2639
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002640static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002641 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002642{
2643 struct usb_endpoint_descriptor *ep_desc;
2644 struct btusb_data *data;
2645 struct hci_dev *hdev;
2646 int i, err;
2647
2648 BT_DBG("intf %p id %p", intf, id);
2649
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002650 /* interface numbers are hardcoded in the spec */
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002651 if (intf->cur_altsetting->desc.bInterfaceNumber != 0)
2652 return -ENODEV;
2653
2654 if (!id->driver_info) {
2655 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02002656
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002657 match = usb_match_id(intf, blacklist_table);
2658 if (match)
2659 id = match;
2660 }
2661
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002662 if (id->driver_info == BTUSB_IGNORE)
2663 return -ENODEV;
2664
Steven.Li2d25f8b2011-07-01 14:02:36 +08002665 if (id->driver_info & BTUSB_ATH3012) {
2666 struct usb_device *udev = interface_to_usbdev(intf);
2667
2668 /* Old firmware would otherwise let ath3k driver load
2669 * patch and sysconfig files */
2670 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001)
2671 return -ENODEV;
2672 }
2673
Sachin Kamat98921db2012-07-27 12:38:39 +05302674 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002675 if (!data)
2676 return -ENOMEM;
2677
2678 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
2679 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
2680
2681 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
2682 data->intr_ep = ep_desc;
2683 continue;
2684 }
2685
2686 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
2687 data->bulk_tx_ep = ep_desc;
2688 continue;
2689 }
2690
2691 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
2692 data->bulk_rx_ep = ep_desc;
2693 continue;
2694 }
2695 }
2696
Sachin Kamat98921db2012-07-27 12:38:39 +05302697 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002698 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002699
Marcel Holtmann893ba542015-01-28 20:27:34 -08002700 if (id->driver_info & BTUSB_AMP) {
2701 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
2702 data->cmdreq = 0x2b;
2703 } else {
2704 data->cmdreq_type = USB_TYPE_CLASS;
2705 data->cmdreq = 0x00;
2706 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002707
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002708 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002709 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002710
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002711 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002712 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002713 init_usb_anchor(&data->deferred);
2714 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002715 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002716
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002717 init_usb_anchor(&data->intr_anchor);
2718 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002719 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02002720 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002721
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002722 if (id->driver_info & BTUSB_INTEL_NEW) {
2723 data->recv_event = btusb_recv_event_intel;
2724 data->recv_bulk = btusb_recv_bulk_intel;
2725 set_bit(BTUSB_BOOTLOADER, &data->flags);
2726 } else {
2727 data->recv_event = hci_recv_frame;
2728 data->recv_bulk = btusb_recv_bulk;
2729 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01002730
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002731 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05302732 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002733 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002734
Marcel Holtmannc13854c2010-02-08 15:27:07 +01002735 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01002736 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002737
Marcel Holtmann893ba542015-01-28 20:27:34 -08002738 if (id->driver_info & BTUSB_AMP)
2739 hdev->dev_type = HCI_AMP;
2740 else
2741 hdev->dev_type = HCI_BREDR;
2742
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002743 data->hdev = hdev;
2744
2745 SET_HCIDEV_DEV(hdev, &intf->dev);
2746
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07002747 hdev->open = btusb_open;
2748 hdev->close = btusb_close;
2749 hdev->flush = btusb_flush;
2750 hdev->send = btusb_send_frame;
2751 hdev->notify = btusb_notify;
2752
2753 if (id->driver_info & BTUSB_BCM92035)
2754 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002755
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002756#ifdef CONFIG_BT_HCIBTUSB_BCM
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002757 if (id->driver_info & BTUSB_BCM_PATCHRAM) {
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002758 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07002759 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmannabbaf502014-07-02 00:53:48 +02002760 }
Petri Gynther10d4c672014-05-08 15:50:01 -07002761
Marcel Holtmann941521e2015-04-05 22:52:15 -07002762 if (id->driver_info & BTUSB_BCM_APPLE)
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002763 hdev->setup = btbcm_setup_apple;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07002764#endif
Marcel Holtmann17b27722015-03-22 15:52:38 +01002765
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002766 if (id->driver_info & BTUSB_INTEL) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002767 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002768 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002769 hdev->set_bdaddr = btintel_set_bdaddr;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08002770 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07002771 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02002772 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002773
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002774 if (id->driver_info & BTUSB_INTEL_NEW) {
2775 hdev->send = btusb_send_frame_intel;
2776 hdev->setup = btusb_setup_intel_new;
Marcel Holtmann385a7682015-01-28 11:09:56 -08002777 hdev->hw_error = btusb_hw_error_intel;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002778 hdev->set_bdaddr = btintel_set_bdaddr;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08002779 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002780 }
2781
Amitkumar Karwarae8df492014-07-18 14:47:06 -07002782 if (id->driver_info & BTUSB_MARVELL)
2783 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
2784
Marcel Holtmann661cf882015-01-02 23:35:20 -08002785 if (id->driver_info & BTUSB_SWAVE) {
2786 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002787 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08002788 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01002789
Marcel Holtmann40df7832014-07-06 13:29:58 +02002790 if (id->driver_info & BTUSB_INTEL_BOOT)
2791 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2792
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002793 if (id->driver_info & BTUSB_ATH3012) {
Toshi Kikuchi58592232014-12-12 10:58:05 -08002794 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07002795 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08002796 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
2797 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08002798
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00002799 if (id->driver_info & BTUSB_QCA_ROME) {
2800 data->setup_on_usb = btusb_setup_qca;
2801 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
2802 }
2803
Carlo Caionedb33c772015-05-14 10:49:09 +02002804#ifdef CONFIG_BT_HCIBTUSB_RTL
Daniel Drakea2698a92015-04-16 14:09:55 -06002805 if (id->driver_info & BTUSB_REALTEK)
Carlo Caionedb33c772015-05-14 10:49:09 +02002806 hdev->setup = btrtl_setup_realtek;
2807#endif
Daniel Drakea2698a92015-04-16 14:09:55 -06002808
Marcel Holtmann893ba542015-01-28 20:27:34 -08002809 if (id->driver_info & BTUSB_AMP) {
2810 /* AMP controllers do not support SCO packets */
2811 data->isoc = NULL;
2812 } else {
2813 /* Interface numbers are hardcoded in the specification */
2814 data->isoc = usb_ifnum_to_if(data->udev, 1);
2815 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002816
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002817 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02002818 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002819
2820 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
2821 if (!disable_scofix)
2822 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
2823 }
2824
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002825 if (id->driver_info & BTUSB_BROKEN_ISOC)
2826 data->isoc = NULL;
2827
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002828 if (id->driver_info & BTUSB_DIGIANSWER) {
2829 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02002830 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002831 }
2832
2833 if (id->driver_info & BTUSB_CSR) {
2834 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08002835 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002836
2837 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08002838 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02002839 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08002840
2841 /* Fake CSR devices with broken commands */
2842 if (bcdDevice <= 0x100)
2843 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07002844
2845 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002846 }
2847
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002848 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002849 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002850
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01002851 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02002852 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
2853 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
2854 }
2855
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02002856 if (id->driver_info & BTUSB_INTEL_BOOT) {
2857 /* A bug in the bootloader causes that interrupt interface is
2858 * only enabled after receiving SetInterface(0, AltSetting=0).
2859 */
2860 err = usb_set_interface(data->udev, 0, 0);
2861 if (err < 0) {
2862 BT_ERR("failed to set interface 0, alt 0 %d", err);
2863 hci_free_dev(hdev);
2864 return err;
2865 }
2866 }
2867
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002868 if (data->isoc) {
2869 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02002870 data->isoc, data);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002871 if (err < 0) {
2872 hci_free_dev(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02002873 return err;
2874 }
2875 }
2876
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002877 err = hci_register_dev(hdev);
2878 if (err < 0) {
2879 hci_free_dev(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002880 return err;
2881 }
2882
2883 usb_set_intfdata(intf, data);
2884
2885 return 0;
2886}
2887
2888static void btusb_disconnect(struct usb_interface *intf)
2889{
2890 struct btusb_data *data = usb_get_intfdata(intf);
2891 struct hci_dev *hdev;
2892
2893 BT_DBG("intf %p", intf);
2894
2895 if (!data)
2896 return;
2897
2898 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002899 usb_set_intfdata(data->intf, NULL);
2900
2901 if (data->isoc)
2902 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002903
2904 hci_unregister_dev(hdev);
2905
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02002906 if (intf == data->isoc)
2907 usb_driver_release_interface(&btusb_driver, data->intf);
2908 else if (data->isoc)
2909 usb_driver_release_interface(&btusb_driver, data->isoc);
2910
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002911 hci_free_dev(hdev);
2912}
2913
Oliver Neukum7bee5492009-08-24 23:44:59 +02002914#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002915static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
2916{
2917 struct btusb_data *data = usb_get_intfdata(intf);
2918
2919 BT_DBG("intf %p", intf);
2920
2921 if (data->suspend_count++)
2922 return 0;
2923
Oliver Neukum7bee5492009-08-24 23:44:59 +02002924 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02002925 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02002926 set_bit(BTUSB_SUSPENDING, &data->flags);
2927 spin_unlock_irq(&data->txlock);
2928 } else {
2929 spin_unlock_irq(&data->txlock);
2930 data->suspend_count--;
2931 return -EBUSY;
2932 }
2933
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002934 cancel_work_sync(&data->work);
2935
Oliver Neukum7bee5492009-08-24 23:44:59 +02002936 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002937 usb_kill_anchored_urbs(&data->tx_anchor);
2938
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002939 return 0;
2940}
2941
Oliver Neukum7bee5492009-08-24 23:44:59 +02002942static void play_deferred(struct btusb_data *data)
2943{
2944 struct urb *urb;
2945 int err;
2946
2947 while ((urb = usb_get_from_anchor(&data->deferred))) {
2948 err = usb_submit_urb(urb, GFP_ATOMIC);
2949 if (err < 0)
2950 break;
2951
2952 data->tx_in_flight++;
2953 }
2954 usb_scuttle_anchored_urbs(&data->deferred);
2955}
2956
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002957static int btusb_resume(struct usb_interface *intf)
2958{
2959 struct btusb_data *data = usb_get_intfdata(intf);
2960 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02002961 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002962
2963 BT_DBG("intf %p", intf);
2964
2965 if (--data->suspend_count)
2966 return 0;
2967
2968 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02002969 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002970
2971 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
2972 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
2973 if (err < 0) {
2974 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002975 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002976 }
2977 }
2978
2979 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01002980 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
2981 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002982 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02002983 goto failed;
2984 }
2985
2986 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01002987 }
2988
2989 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
2990 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
2991 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
2992 else
2993 btusb_submit_isoc_urb(hdev, GFP_NOIO);
2994 }
2995
Oliver Neukum7bee5492009-08-24 23:44:59 +02002996 spin_lock_irq(&data->txlock);
2997 play_deferred(data);
2998 clear_bit(BTUSB_SUSPENDING, &data->flags);
2999 spin_unlock_irq(&data->txlock);
3000 schedule_work(&data->work);
3001
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003002 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02003003
3004failed:
3005 usb_scuttle_anchored_urbs(&data->deferred);
3006done:
3007 spin_lock_irq(&data->txlock);
3008 clear_bit(BTUSB_SUSPENDING, &data->flags);
3009 spin_unlock_irq(&data->txlock);
3010
3011 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003012}
Oliver Neukum7bee5492009-08-24 23:44:59 +02003013#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003014
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003015static struct usb_driver btusb_driver = {
3016 .name = "btusb",
3017 .probe = btusb_probe,
3018 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003019#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01003020 .suspend = btusb_suspend,
3021 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003022#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003023 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02003024 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07003025 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003026};
3027
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08003028module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003029
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003030module_param(disable_scofix, bool, 0644);
3031MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
3032
3033module_param(force_scofix, bool, 0644);
3034MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
3035
3036module_param(reset, bool, 0644);
3037MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
3038
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003039MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
3040MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
3041MODULE_VERSION(VERSION);
3042MODULE_LICENSE("GPL");