blob: 5f022e9cf667e0248f9a17d1aba9aa7111880c82 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Marcel Holtmann5e23b922007-10-20 14:12:34 +02002/*
3 *
4 * Generic Bluetooth USB driver
5 *
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02006 * Copyright (C) 2005-2008 Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann5e23b922007-10-20 14:12:34 +02007 */
8
Hans de Goede1fdb9262018-02-20 09:06:18 +01009#include <linux/dmi.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020010#include <linux/module.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020011#include <linux/usb.h>
Hans de Goede61f5ace2018-01-08 10:44:16 +010012#include <linux/usb/quirks.h>
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070013#include <linux/firmware.h>
Sean Wanga1c49c432019-06-02 08:02:48 +080014#include <linux/iopoll.h>
Rajat Jainfd913ef2017-02-01 14:24:09 -080015#include <linux/of_device.h>
16#include <linux/of_irq.h>
Jeffy Chen017789f2017-02-24 14:24:29 +080017#include <linux/suspend.h>
Rajat Jaindc786b22019-01-24 15:28:14 -080018#include <linux/gpio/consumer.h>
Daniel Drakea2698a92015-04-16 14:09:55 -060019#include <asm/unaligned.h>
Marcel Holtmann5e23b922007-10-20 14:12:34 +020020
21#include <net/bluetooth/bluetooth.h>
22#include <net/bluetooth/hci_core.h>
23
Marcel Holtmann4185a0f2015-04-06 00:52:12 -070024#include "btintel.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070025#include "btbcm.h"
Carlo Caionedb33c772015-05-14 10:49:09 +020026#include "btrtl.h"
Marcel Holtmann1df1f592015-04-05 22:52:11 -070027
Marcel Holtmann34dced9b2015-04-05 22:52:16 -070028#define VERSION "0.8"
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020029
Rusty Russell90ab5ee2012-01-13 09:32:20 +103030static bool disable_scofix;
31static bool force_scofix;
Hans de Goedeeff2d682017-11-13 14:44:16 +010032static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010033
Shailendra Verma917a3332015-05-25 23:53:40 +053034static bool reset = true;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +020035
36static struct usb_driver btusb_driver;
37
38#define BTUSB_IGNORE 0x01
Marcel Holtmann7a9d4022008-11-30 12:17:26 +010039#define BTUSB_DIGIANSWER 0x02
40#define BTUSB_CSR 0x04
41#define BTUSB_SNIFFER 0x08
42#define BTUSB_BCM92035 0x10
43#define BTUSB_BROKEN_ISOC 0x20
44#define BTUSB_WRONG_SCO_MTU 0x40
Steven.Li2d25f8b2011-07-01 14:02:36 +080045#define BTUSB_ATH3012 0x80
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -070046#define BTUSB_INTEL 0x100
Marcel Holtmann40df7832014-07-06 13:29:58 +020047#define BTUSB_INTEL_BOOT 0x200
48#define BTUSB_BCM_PATCHRAM 0x400
Amitkumar Karwarae8df492014-07-18 14:47:06 -070049#define BTUSB_MARVELL 0x800
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -080050#define BTUSB_SWAVE 0x1000
Marcel Holtmanncda0dd72015-01-26 21:33:48 -080051#define BTUSB_INTEL_NEW 0x2000
Marcel Holtmann893ba542015-01-28 20:27:34 -080052#define BTUSB_AMP 0x4000
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +000053#define BTUSB_QCA_ROME 0x8000
Marcel Holtmann17b27722015-03-22 15:52:38 +010054#define BTUSB_BCM_APPLE 0x10000
Daniel Drakea2698a92015-04-16 14:09:55 -060055#define BTUSB_REALTEK 0x20000
Marcel Holtmann6c9d4352015-10-17 14:39:27 +020056#define BTUSB_BCM2045 0x40000
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020057#define BTUSB_IFNUM_2 0x80000
Szymon Janc418678b2016-09-01 17:22:37 +020058#define BTUSB_CW6622 0x100000
Sean Wanga1c49c432019-06-02 08:02:48 +080059#define BTUSB_MEDIATEK 0x200000
Alain Michaud3e4e3f72020-02-27 18:29:37 +000060#define BTUSB_WIDEBAND_SPEECH 0x400000
Alain Michaud220915852020-04-23 14:43:27 +000061#define BTUSB_VALID_LE_STATES 0x800000
Marcel Holtmann5e23b922007-10-20 14:12:34 +020062
Marcel Holtmann54265202013-10-11 07:46:18 -070063static const struct usb_device_id btusb_table[] = {
Marcel Holtmann5e23b922007-10-20 14:12:34 +020064 /* Generic Bluetooth USB device */
65 { USB_DEVICE_INFO(0xe0, 0x01, 0x01) },
66
Marcel Holtmann893ba542015-01-28 20:27:34 -080067 /* Generic Bluetooth AMP device */
68 { USB_DEVICE_INFO(0xe0, 0x01, 0x04), .driver_info = BTUSB_AMP },
69
Daniel Draked63b2822015-07-17 11:12:25 -060070 /* Generic Bluetooth USB interface */
71 { USB_INTERFACE_INFO(0xe0, 0x01, 0x01) },
72
Henrik Rydberg1fa65352012-08-25 19:28:06 +020073 /* Apple-specific (Broadcom) devices */
Marcel Holtmann17b27722015-03-22 15:52:38 +010074 { USB_VENDOR_AND_INTERFACE_INFO(0x05ac, 0xff, 0x01, 0x01),
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +020075 .driver_info = BTUSB_BCM_APPLE | BTUSB_IFNUM_2 },
Henrik Rydberg1fa65352012-08-25 19:28:06 +020076
Cho, Yu-Chen178c0592013-06-04 21:40:26 +080077 /* MediaTek MT76x0E */
78 { USB_DEVICE(0x0e8d, 0x763f) },
79
Oliver Neukumc510eae2011-09-21 11:41:45 +020080 /* Broadcom SoftSailing reporting vendor specific */
Don Zickus2e8b50632012-03-28 16:41:11 -040081 { USB_DEVICE(0x0a5c, 0x21e1) },
Oliver Neukumc510eae2011-09-21 11:41:45 +020082
Nobuhiro Iwamatsu3cd01972010-08-20 16:24:07 +090083 /* Apple MacBookPro 7,1 */
84 { USB_DEVICE(0x05ac, 0x8213) },
85
Cyril Lacoux0a79f672010-07-14 10:29:27 +040086 /* Apple iMac11,1 */
87 { USB_DEVICE(0x05ac, 0x8215) },
88
Nobuhiro Iwamatsu9c047152010-08-20 16:24:06 +090089 /* Apple MacBookPro6,2 */
90 { USB_DEVICE(0x05ac, 0x8218) },
91
Edgar (gimli) Hucek3e3ede72010-11-04 08:04:33 +010092 /* Apple MacBookAir3,1, MacBookAir3,2 */
93 { USB_DEVICE(0x05ac, 0x821b) },
94
Pieter-Augustijn Van Malleghema63b7232011-09-07 02:28:10 -040095 /* Apple MacBookAir4,1 */
96 { USB_DEVICE(0x05ac, 0x821f) },
97
Marc-Antoine Perennou88d377b2011-03-24 14:51:21 -030098 /* Apple MacBookPro8,2 */
99 { USB_DEVICE(0x05ac, 0x821a) },
100
Jurgen Kramerf78b68262011-09-04 18:01:42 +0200101 /* Apple MacMini5,1 */
102 { USB_DEVICE(0x05ac, 0x8281) },
103
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200104 /* AVM BlueFRITZ! USB v2.0 */
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800105 { USB_DEVICE(0x057c, 0x3800), .driver_info = BTUSB_SWAVE },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200106
107 /* Bluetooth Ultraport Module from IBM */
108 { USB_DEVICE(0x04bf, 0x030a) },
109
110 /* ALPS Modules with non-standard id */
111 { USB_DEVICE(0x044e, 0x3001) },
112 { USB_DEVICE(0x044e, 0x3002) },
113
114 /* Ericsson with non-standard id */
115 { USB_DEVICE(0x0bdb, 0x1002) },
116
117 /* Canyon CN-BTU1 with HID interfaces */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100118 { USB_DEVICE(0x0c10, 0x0000) },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200119
Wen-chien Jesse Sungd13431c2011-11-08 14:30:22 +0800120 /* Broadcom BCM20702A0 */
121 { USB_DEVICE(0x413c, 0x8197) },
122
Marcel Holtmannd049f4e2015-01-26 20:35:32 -0800123 /* Broadcom BCM20702B0 (Dynex/Insignia) */
124 { USB_DEVICE(0x19ff, 0x0239), .driver_info = BTUSB_BCM_PATCHRAM },
125
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300126 /* Broadcom BCM43142A0 (Foxconn/Lenovo) */
Dmitry Tunin628c26b2017-07-06 14:41:13 +0300127 { USB_VENDOR_AND_INTERFACE_INFO(0x105b, 0xff, 0x01, 0x01),
128 .driver_info = BTUSB_BCM_PATCHRAM },
Santtu Rekilä2faf71c2015-10-05 15:45:27 +0300129
Christoph Haaga57bac42017-02-10 14:02:45 +0100130 /* Broadcom BCM920703 (HTC Vive) */
131 { USB_VENDOR_AND_INTERFACE_INFO(0x0bb4, 0xff, 0x01, 0x01),
132 .driver_info = BTUSB_BCM_PATCHRAM },
133
Steven Harms98514032012-04-13 14:45:55 -0400134 /* Foxconn - Hon Hai */
Heinrich Siebmanns6029ddc2014-12-03 19:32:22 +0100135 { USB_VENDOR_AND_INTERFACE_INFO(0x0489, 0xff, 0x01, 0x01),
136 .driver_info = BTUSB_BCM_PATCHRAM },
Steven Harms98514032012-04-13 14:45:55 -0400137
Matej Dubovy8f0c3042015-02-02 18:50:14 +0100138 /* Lite-On Technology - Broadcom based */
139 { USB_VENDOR_AND_INTERFACE_INFO(0x04ca, 0xff, 0x01, 0x01),
140 .driver_info = BTUSB_BCM_PATCHRAM },
141
Andy Shevchenko0b880062014-02-18 18:26:19 +0200142 /* Broadcom devices with vendor specific id */
Petri Gynther10d4c672014-05-08 15:50:01 -0700143 { USB_VENDOR_AND_INTERFACE_INFO(0x0a5c, 0xff, 0x01, 0x01),
144 .driver_info = BTUSB_BCM_PATCHRAM },
Gustavo Padovan92c385f2012-08-06 15:36:49 -0300145
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200146 /* ASUSTek Computer - Broadcom based */
Rick Dunn9a5abdaa2015-01-17 05:29:12 +0100147 { USB_VENDOR_AND_INTERFACE_INFO(0x0b05, 0xff, 0x01, 0x01),
148 .driver_info = BTUSB_BCM_PATCHRAM },
Marcel Holtmannc2aef6e2014-07-21 14:02:33 +0200149
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100150 /* Belkin F8065bf - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700151 { USB_VENDOR_AND_INTERFACE_INFO(0x050d, 0xff, 0x01, 0x01),
152 .driver_info = BTUSB_BCM_PATCHRAM },
Ken O'Brien5bcecf32013-09-21 19:14:43 +0100153
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100154 /* IMC Networks - Broadcom based */
Marcel Holtmann6331c682015-03-27 15:11:41 -0700155 { USB_VENDOR_AND_INTERFACE_INFO(0x13d3, 0xff, 0x01, 0x01),
156 .driver_info = BTUSB_BCM_PATCHRAM },
Jurgen Kramer9113bfd2014-02-15 12:01:09 +0100157
Wen-chien Jesse Sungfdfddc62017-01-10 15:41:13 +0800158 /* Dell Computer - Broadcom based */
159 { USB_VENDOR_AND_INTERFACE_INFO(0x413c, 0xff, 0x01, 0x01),
160 .driver_info = BTUSB_BCM_PATCHRAM },
161
Dmitry Tunin1623d0b2015-12-05 14:09:36 +0300162 /* Toshiba Corp - Broadcom based */
163 { USB_VENDOR_AND_INTERFACE_INFO(0x0930, 0xff, 0x01, 0x01),
164 .driver_info = BTUSB_BCM_PATCHRAM },
165
Marcel Holtmann40df7832014-07-06 13:29:58 +0200166 /* Intel Bluetooth USB Bootloader (RAM module) */
Marcel Holtmannd92f2df2014-07-06 14:53:55 +0200167 { USB_DEVICE(0x8087, 0x0a5a),
168 .driver_info = BTUSB_INTEL_BOOT | BTUSB_BROKEN_ISOC },
Marcel Holtmann40df7832014-07-06 13:29:58 +0200169
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200170 { } /* Terminating entry */
171};
172
173MODULE_DEVICE_TABLE(usb, btusb_table);
174
Marcel Holtmann54265202013-10-11 07:46:18 -0700175static const struct usb_device_id blacklist_table[] = {
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200176 /* CSR BlueCore devices */
177 { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR },
178
179 /* Broadcom BCM2033 without firmware */
180 { USB_DEVICE(0x0a5c, 0x2033), .driver_info = BTUSB_IGNORE },
181
Marcel Holtmann6c9d4352015-10-17 14:39:27 +0200182 /* Broadcom BCM2045 devices */
183 { USB_DEVICE(0x0a5c, 0x2045), .driver_info = BTUSB_BCM2045 },
184
Bala Shanmugambe931122010-11-26 17:35:46 +0530185 /* Atheros 3011 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200186 { USB_DEVICE(0x0489, 0xe027), .driver_info = BTUSB_IGNORE },
187 { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE },
Alexander Ploumistos2eeff0b2015-02-13 21:05:11 +0200188 { USB_DEVICE(0x04f2, 0xaff1), .driver_info = BTUSB_IGNORE },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200189 { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530190 { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE },
Marek Vasut6eda5412012-06-08 14:32:50 +0200191 { USB_DEVICE(0x0cf3, 0xe019), .driver_info = BTUSB_IGNORE },
Andy Ross2a7bccc2011-05-09 16:11:16 -0700192 { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE },
Bala Shanmugambe931122010-11-26 17:35:46 +0530193
Cho, Yu-Chen509e7862011-01-26 17:10:59 +0800194 /* Atheros AR9285 Malbec with sflash firmware */
195 { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE },
196
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530197 /* Atheros 3012 with sflash firmware */
Andy Shevchenko0b880062014-02-18 18:26:19 +0200198 { USB_DEVICE(0x0489, 0xe04d), .driver_info = BTUSB_ATH3012 },
199 { USB_DEVICE(0x0489, 0xe04e), .driver_info = BTUSB_ATH3012 },
200 { USB_DEVICE(0x0489, 0xe056), .driver_info = BTUSB_ATH3012 },
201 { USB_DEVICE(0x0489, 0xe057), .driver_info = BTUSB_ATH3012 },
202 { USB_DEVICE(0x0489, 0xe05f), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin692c0622015-06-06 20:25:40 +0300203 { USB_DEVICE(0x0489, 0xe076), .driver_info = BTUSB_ATH3012 },
Anantha Krishnan4b552bc2014-10-06 16:31:49 +0530204 { USB_DEVICE(0x0489, 0xe078), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin28c971d2016-02-10 00:49:11 +0300205 { USB_DEVICE(0x0489, 0xe095), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200206 { USB_DEVICE(0x04c5, 0x1330), .driver_info = BTUSB_ATH3012 },
207 { USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },
208 { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },
209 { USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },
Mohammed Habibulla1fb4e092014-04-17 11:37:13 -0700210 { USB_DEVICE(0x04ca, 0x3007), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200211 { USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 },
212 { USB_DEVICE(0x04ca, 0x300b), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin7e730c7f2015-06-18 20:41:51 +0300213 { USB_DEVICE(0x04ca, 0x300d), .driver_info = BTUSB_ATH3012 },
Dmitry Tuninec0810d2015-05-02 13:36:58 +0300214 { USB_DEVICE(0x04ca, 0x300f), .driver_info = BTUSB_ATH3012 },
Janne Heikkinen134d3b32014-12-09 07:44:51 +0200215 { USB_DEVICE(0x04ca, 0x3010), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin81d90442016-02-28 11:04:06 +0300216 { USB_DEVICE(0x04ca, 0x3014), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin441ad622017-01-05 13:19:53 +0300217 { USB_DEVICE(0x04ca, 0x3018), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200218 { USB_DEVICE(0x0930, 0x0219), .driver_info = BTUSB_ATH3012 },
Dmitry Tunincd355ff2015-10-05 19:29:33 +0300219 { USB_DEVICE(0x0930, 0x021c), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200220 { USB_DEVICE(0x0930, 0x0220), .driver_info = BTUSB_ATH3012 },
Vincent Zwanenburg89d29752014-08-08 12:33:56 +0100221 { USB_DEVICE(0x0930, 0x0227), .driver_info = BTUSB_ATH3012 },
Andy Shevchenkoa735f9e2014-02-18 18:26:20 +0200222 { USB_DEVICE(0x0b05, 0x17d0), .driver_info = BTUSB_ATH3012 },
Ming Leid66629c2013-03-15 11:00:39 +0800223 { USB_DEVICE(0x0cf3, 0x0036), .driver_info = BTUSB_ATH3012 },
Hans de Goede544a5912018-04-26 14:18:19 +0200224 { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 },
Sunguk Lee94a32d102013-03-12 04:41:58 +0900225 { USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },
Cho, Yu-Chen07c0ea82012-03-14 22:01:21 +0200226 { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },
Oliver Neukumb1312372014-01-16 15:37:11 +0100227 { USB_DEVICE(0x0cf3, 0x311e), .driver_info = BTUSB_ATH3012 },
Oliver Neukum1e56f1e2014-01-16 16:02:58 +0100228 { USB_DEVICE(0x0cf3, 0x311f), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200229 { USB_DEVICE(0x0cf3, 0x3121), .driver_info = BTUSB_ATH3012 },
Ming Leiebaf5792013-03-18 23:45:11 +0800230 { USB_DEVICE(0x0cf3, 0x817a), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin18e0afa2015-10-16 11:45:26 +0300231 { USB_DEVICE(0x0cf3, 0x817b), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200232 { USB_DEVICE(0x0cf3, 0xe003), .driver_info = BTUSB_ATH3012 },
AceLan Kaoac713112012-04-19 14:53:45 +0800233 { USB_DEVICE(0x0cf3, 0xe004), .driver_info = BTUSB_ATH3012 },
Peng Chen0a3658c2013-08-30 17:41:40 +0800234 { USB_DEVICE(0x0cf3, 0xe005), .driver_info = BTUSB_ATH3012 },
Wen-chien Jesse Sungca79f232015-05-13 11:39:24 +0800235 { USB_DEVICE(0x0cf3, 0xe006), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200236 { USB_DEVICE(0x13d3, 0x3362), .driver_info = BTUSB_ATH3012 },
237 { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 },
AceLan Kaoeed307e2012-12-11 11:41:20 +0800238 { USB_DEVICE(0x13d3, 0x3393), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin609574e2016-02-10 15:33:17 +0300239 { USB_DEVICE(0x13d3, 0x3395), .driver_info = BTUSB_ATH3012 },
Sujith Manoharan5b77a1f2013-07-15 09:29:03 +0530240 { USB_DEVICE(0x13d3, 0x3402), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin3bb30a7c2014-11-25 20:19:52 +0300241 { USB_DEVICE(0x13d3, 0x3408), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin033efa92015-01-18 00:16:51 +0300242 { USB_DEVICE(0x13d3, 0x3423), .driver_info = BTUSB_ATH3012 },
Anantha Krishnanfa2f1392014-07-08 19:25:08 +0530243 { USB_DEVICE(0x13d3, 0x3432), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin75c6aca2016-03-04 01:32:19 +0300244 { USB_DEVICE(0x13d3, 0x3472), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin0d0cef62015-06-06 20:29:25 +0300245 { USB_DEVICE(0x13d3, 0x3474), .driver_info = BTUSB_ATH3012 },
Lauro Costa72f9f8b2016-05-09 17:36:11 -0300246 { USB_DEVICE(0x13d3, 0x3487), .driver_info = BTUSB_ATH3012 },
Dmitry Tunin12d86892016-07-12 01:35:18 +0300247 { USB_DEVICE(0x13d3, 0x3490), .driver_info = BTUSB_ATH3012 },
Bala Shanmugamd9f51b52011-02-11 15:38:53 +0530248
Cho, Yu-Chene9036e32011-02-15 10:20:07 +0800249 /* Atheros AR5BBU12 with sflash firmware */
250 { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE },
251
Michael Gruetzner85d59722012-05-02 22:33:40 +0200252 /* Atheros AR5BBU12 with sflash firmware */
Yevgeniy Melnichukbc21fde2012-08-07 19:48:10 +0530253 { USB_DEVICE(0x0489, 0xe036), .driver_info = BTUSB_ATH3012 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200254 { USB_DEVICE(0x0489, 0xe03c), .driver_info = BTUSB_ATH3012 },
Michael Gruetzner85d59722012-05-02 22:33:40 +0200255
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000256 /* QCA ROME chipset */
Owen Lin1411a262018-10-18 04:37:57 +0000257 { USB_DEVICE(0x0cf3, 0x535b), .driver_info = BTUSB_QCA_ROME },
Wen-chien Jesse Sung20541112015-05-13 11:39:25 +0800258 { USB_DEVICE(0x0cf3, 0xe007), .driver_info = BTUSB_QCA_ROME },
Kai-Heng Feng93519932016-08-16 12:50:06 +0800259 { USB_DEVICE(0x0cf3, 0xe009), .driver_info = BTUSB_QCA_ROME },
AceLan Kaoe5a49ee2018-01-02 10:41:11 +0800260 { USB_DEVICE(0x0cf3, 0xe010), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700261 { USB_DEVICE(0x0cf3, 0xe300), .driver_info = BTUSB_QCA_ROME },
Gabriel1eef1c32017-02-20 12:32:22 -0500262 { USB_DEVICE(0x0cf3, 0xe301), .driver_info = BTUSB_QCA_ROME },
Marcel Holtmannc9e44472015-03-16 23:56:04 -0700263 { USB_DEVICE(0x0cf3, 0xe360), .driver_info = BTUSB_QCA_ROME },
Yvain THONNART47ca5892016-06-11 15:43:30 +0200264 { USB_DEVICE(0x0489, 0xe092), .driver_info = BTUSB_QCA_ROME },
Bartosz Chronowski858ff382017-10-26 10:22:43 +0200265 { USB_DEVICE(0x0489, 0xe09f), .driver_info = BTUSB_QCA_ROME },
Shih-Yuan Lee (FourDollars)06e41d82017-06-14 14:42:00 +0800266 { USB_DEVICE(0x0489, 0xe0a2), .driver_info = BTUSB_QCA_ROME },
Dmitry Tunin1144a4e2016-09-21 19:13:08 +0300267 { USB_DEVICE(0x04ca, 0x3011), .driver_info = BTUSB_QCA_ROME },
Ioan Moldovan0a03f982017-08-28 18:09:39 +0300268 { USB_DEVICE(0x04ca, 0x3015), .driver_info = BTUSB_QCA_ROME },
Brian Norrisd829b9e2017-07-31 17:59:39 -0700269 { USB_DEVICE(0x04ca, 0x3016), .driver_info = BTUSB_QCA_ROME },
Vic Weid666fc52018-04-23 15:17:07 -0700270 { USB_DEVICE(0x04ca, 0x301a), .driver_info = BTUSB_QCA_ROME },
Rocky Liao19220f32020-01-06 14:07:44 +0800271 { USB_DEVICE(0x04ca, 0x3021), .driver_info = BTUSB_QCA_ROME },
João Paulo Rechi Vita44d34af2019-05-23 13:32:01 -0700272 { USB_DEVICE(0x13d3, 0x3491), .driver_info = BTUSB_QCA_ROME },
João Paulo Rechi Vitadf2445b2018-04-27 10:09:58 -0700273 { USB_DEVICE(0x13d3, 0x3496), .driver_info = BTUSB_QCA_ROME },
João Paulo Rechi Vita881cec42019-05-23 13:32:02 -0700274 { USB_DEVICE(0x13d3, 0x3501), .driver_info = BTUSB_QCA_ROME },
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +0000275
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200276 /* Broadcom BCM2035 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100277 { USB_DEVICE(0x0a5c, 0x2009), .driver_info = BTUSB_BCM92035 },
Andy Shevchenko0b880062014-02-18 18:26:19 +0200278 { USB_DEVICE(0x0a5c, 0x200a), .driver_info = BTUSB_WRONG_SCO_MTU },
279 { USB_DEVICE(0x0a5c, 0x2035), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200280
281 /* Broadcom BCM2045 */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100282 { USB_DEVICE(0x0a5c, 0x2039), .driver_info = BTUSB_WRONG_SCO_MTU },
283 { USB_DEVICE(0x0a5c, 0x2101), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmannbdbef3d2008-09-23 00:16:35 +0200284
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200285 /* IBM/Lenovo ThinkPad with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100286 { USB_DEVICE(0x0a5c, 0x201e), .driver_info = BTUSB_WRONG_SCO_MTU },
287 { USB_DEVICE(0x0a5c, 0x2110), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200288
289 /* HP laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100290 { USB_DEVICE(0x03f0, 0x171d), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200291
292 /* Dell laptop with Broadcom chip */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100293 { USB_DEVICE(0x413c, 0x8126), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200294
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100295 /* Dell Wireless 370 and 410 devices */
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100296 { USB_DEVICE(0x413c, 0x8152), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100297 { USB_DEVICE(0x413c, 0x8156), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200298
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100299 /* Belkin F8T012 and F8T013 devices */
300 { USB_DEVICE(0x050d, 0x0012), .driver_info = BTUSB_WRONG_SCO_MTU },
301 { USB_DEVICE(0x050d, 0x0013), .driver_info = BTUSB_WRONG_SCO_MTU },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200302
Marcel Holtmann5ddd4a62008-11-30 12:17:27 +0100303 /* Asus WL-BTD202 device */
304 { USB_DEVICE(0x0b05, 0x1715), .driver_info = BTUSB_WRONG_SCO_MTU },
305
306 /* Kensington Bluetooth USB adapter */
307 { USB_DEVICE(0x047d, 0x105e), .driver_info = BTUSB_WRONG_SCO_MTU },
308
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200309 /* RTX Telecom based adapters with buggy SCO support */
310 { USB_DEVICE(0x0400, 0x0807), .driver_info = BTUSB_BROKEN_ISOC },
311 { USB_DEVICE(0x0400, 0x080a), .driver_info = BTUSB_BROKEN_ISOC },
312
313 /* CONWISE Technology based adapters with buggy SCO support */
Szymon Janc418678b2016-09-01 17:22:37 +0200314 { USB_DEVICE(0x0e5e, 0x6622),
315 .driver_info = BTUSB_BROKEN_ISOC | BTUSB_CW6622},
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200316
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800317 /* Roper Class 1 Bluetooth Dongle (Silicon Wave based) */
Aleksei Volkov2eeac872015-06-08 12:02:10 +0300318 { USB_DEVICE(0x1310, 0x0001), .driver_info = BTUSB_SWAVE },
Marcel Holtmann4fcef8e2015-01-01 17:34:37 -0800319
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200320 /* Digianswer devices */
321 { USB_DEVICE(0x08fd, 0x0001), .driver_info = BTUSB_DIGIANSWER },
322 { USB_DEVICE(0x08fd, 0x0002), .driver_info = BTUSB_IGNORE },
323
324 /* CSR BlueCore Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200325 { USB_DEVICE(0x0a12, 0x0002),
326 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200327
328 /* Frontline ComProbe Bluetooth Sniffer */
Marcel Holtmann4f64fa82014-07-07 00:12:04 +0200329 { USB_DEVICE(0x16d3, 0x0002),
330 .driver_info = BTUSB_SNIFFER | BTUSB_BROKEN_ISOC },
Marcel Holtmanncfeb4142008-08-07 22:26:56 +0200331
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800332 /* Marvell Bluetooth devices */
333 { USB_DEVICE(0x1286, 0x2044), .driver_info = BTUSB_MARVELL },
334 { USB_DEVICE(0x1286, 0x2046), .driver_info = BTUSB_MARVELL },
Amitkumar Karwar1165df02016-09-28 16:18:35 +0530335 { USB_DEVICE(0x1286, 0x204e), .driver_info = BTUSB_MARVELL },
Marcel Holtmanncb1ee892015-01-28 19:41:42 -0800336
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800337 /* Intel Bluetooth devices */
Alain Michaud3e4e3f72020-02-27 18:29:37 +0000338 { USB_DEVICE(0x8087, 0x0025), .driver_info = BTUSB_INTEL_NEW |
Alain Michaudaff8c482020-04-23 14:43:31 +0000339 BTUSB_WIDEBAND_SPEECH |
340 BTUSB_VALID_LE_STATES },
Alain Michaud3e4e3f72020-02-27 18:29:37 +0000341 { USB_DEVICE(0x8087, 0x0026), .driver_info = BTUSB_INTEL_NEW |
342 BTUSB_WIDEBAND_SPEECH },
343 { USB_DEVICE(0x8087, 0x0029), .driver_info = BTUSB_INTEL_NEW |
344 BTUSB_WIDEBAND_SPEECH },
Raghuram Hegde875e167592020-05-11 16:40:40 +0530345 { USB_DEVICE(0x8087, 0x0032), .driver_info = BTUSB_INTEL_NEW |
346 BTUSB_WIDEBAND_SPEECH},
Marcel Holtmann407550f2015-02-22 15:41:18 -0800347 { USB_DEVICE(0x8087, 0x07da), .driver_info = BTUSB_CSR },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700348 { USB_DEVICE(0x8087, 0x07dc), .driver_info = BTUSB_INTEL },
Tedd Ho-Jeong Anef4e5e42013-11-12 13:10:58 -0800349 { USB_DEVICE(0x8087, 0x0a2a), .driver_info = BTUSB_INTEL },
Alain Michaud3e4e3f72020-02-27 18:29:37 +0000350 { USB_DEVICE(0x8087, 0x0a2b), .driver_info = BTUSB_INTEL_NEW |
351 BTUSB_WIDEBAND_SPEECH },
352 { USB_DEVICE(0x8087, 0x0aa7), .driver_info = BTUSB_INTEL |
353 BTUSB_WIDEBAND_SPEECH },
354 { USB_DEVICE(0x8087, 0x0aaa), .driver_info = BTUSB_INTEL_NEW |
Alain Michaudaff8c482020-04-23 14:43:31 +0000355 BTUSB_WIDEBAND_SPEECH |
356 BTUSB_VALID_LE_STATES },
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -0700357
Marcel Holtmannd0ac9eb2015-01-28 19:41:43 -0800358 /* Other Intel Bluetooth devices */
359 { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01),
360 .driver_info = BTUSB_IGNORE },
Amitkumar Karwarae8df492014-07-18 14:47:06 -0700361
Daniel Drakea2698a92015-04-16 14:09:55 -0600362 /* Realtek Bluetooth devices */
363 { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01),
364 .driver_info = BTUSB_REALTEK },
365
Sean Wanga1c49c432019-06-02 08:02:48 +0800366 /* MediaTek Bluetooth devices */
367 { USB_VENDOR_AND_INTERFACE_INFO(0x0e8d, 0xe0, 0x01, 0x01),
368 .driver_info = BTUSB_MEDIATEK },
369
Daniel Drakea2698a92015-04-16 14:09:55 -0600370 /* Additional Realtek 8723AE Bluetooth devices */
371 { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
372 { USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },
373
374 /* Additional Realtek 8723BE Bluetooth devices */
375 { USB_DEVICE(0x0489, 0xe085), .driver_info = BTUSB_REALTEK },
376 { USB_DEVICE(0x0489, 0xe08b), .driver_info = BTUSB_REALTEK },
377 { USB_DEVICE(0x13d3, 0x3410), .driver_info = BTUSB_REALTEK },
378 { USB_DEVICE(0x13d3, 0x3416), .driver_info = BTUSB_REALTEK },
379 { USB_DEVICE(0x13d3, 0x3459), .driver_info = BTUSB_REALTEK },
Dmitry Tunina81d72d2017-08-08 14:09:02 +0300380 { USB_DEVICE(0x13d3, 0x3494), .driver_info = BTUSB_REALTEK },
Daniel Drakea2698a92015-04-16 14:09:55 -0600381
Vicente Bergasa41e0792018-03-20 19:41:10 +0100382 /* Additional Realtek 8723BU Bluetooth devices */
383 { USB_DEVICE(0x7392, 0xa611), .driver_info = BTUSB_REALTEK },
384
Jian-Hong Pan66d99752018-05-21 18:09:20 +0800385 /* Additional Realtek 8723DE Bluetooth devices */
Jian-Hong Pan45ae68b2018-05-25 17:54:52 +0800386 { USB_DEVICE(0x0bda, 0xb009), .driver_info = BTUSB_REALTEK },
Jian-Hong Pan66d99752018-05-21 18:09:20 +0800387 { USB_DEVICE(0x2ff8, 0xb011), .driver_info = BTUSB_REALTEK },
388
Daniel Drakea2698a92015-04-16 14:09:55 -0600389 /* Additional Realtek 8821AE Bluetooth devices */
390 { USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
391 { USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
392 { USB_DEVICE(0x13d3, 0x3458), .driver_info = BTUSB_REALTEK },
393 { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK },
394 { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK },
395
Larry Fingerfed03fe2018-02-11 12:24:32 -0600396 /* Additional Realtek 8822BE Bluetooth devices */
Artiom Vaskov1cd2fab2018-05-30 11:23:00 +0300397 { USB_DEVICE(0x13d3, 0x3526), .driver_info = BTUSB_REALTEK },
Larry Fingerfed03fe2018-02-11 12:24:32 -0600398 { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK },
399
Jian-Hong Pan6d0762b2019-09-03 17:10:42 +0800400 /* Additional Realtek 8822CE Bluetooth devices */
401 { USB_DEVICE(0x04ca, 0x4005), .driver_info = BTUSB_REALTEK },
Sergey Shatunoveb3939e32020-02-08 23:53:15 +0800402 { USB_DEVICE(0x13d3, 0x3548), .driver_info = BTUSB_REALTEK },
Jian-Hong Pan6d0762b2019-09-03 17:10:42 +0800403
Peter Poklop4481c072015-08-15 20:47:09 +0200404 /* Silicon Wave based devices */
405 { USB_DEVICE(0x0c10, 0x0000), .driver_info = BTUSB_SWAVE },
406
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200407 { } /* Terminating entry */
408};
409
Hans de Goede1fdb9262018-02-20 09:06:18 +0100410/* The Bluetooth USB module build into some devices needs to be reset on resume,
411 * this is a problem with the platform (likely shutting off all power) not with
412 * the module itself. So we use a DMI list to match known broken platforms.
413 */
414static const struct dmi_system_id btusb_needs_reset_resume_table[] = {
415 {
Kai-Heng Feng0c6e5262018-03-01 13:42:52 +0800416 /* Dell OptiPlex 3060 (QCA ROME device 0cf3:e007) */
Hans de Goede1fdb9262018-02-20 09:06:18 +0100417 .matches = {
Kai-Heng Feng0c6e5262018-03-01 13:42:52 +0800418 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
419 DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 3060"),
Hans de Goede1fdb9262018-02-20 09:06:18 +0100420 },
421 },
Hans de Goede596b07a2018-04-26 20:52:06 +0200422 {
423 /* Dell XPS 9360 (QCA ROME device 0cf3:e300) */
424 .matches = {
425 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
426 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9360"),
427 },
428 },
Hans de Goede939bc6c2018-05-22 09:34:10 +0200429 {
430 /* Dell Inspiron 5565 (QCA ROME device 0cf3:e009) */
431 .matches = {
432 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
433 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5565"),
434 },
435 },
Hans de Goede1fdb9262018-02-20 09:06:18 +0100436 {}
437};
438
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200439#define BTUSB_MAX_ISOC_FRAMES 10
440
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200441#define BTUSB_INTR_RUNNING 0
442#define BTUSB_BULK_RUNNING 1
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200443#define BTUSB_ISOC_RUNNING 2
Oliver Neukum7bee5492009-08-24 23:44:59 +0200444#define BTUSB_SUSPENDING 3
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -0300445#define BTUSB_DID_ISO_RESUME 4
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800446#define BTUSB_BOOTLOADER 5
447#define BTUSB_DOWNLOADING 6
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800448#define BTUSB_FIRMWARE_LOADED 7
Marcel Holtmanncda0dd72015-01-26 21:33:48 -0800449#define BTUSB_FIRMWARE_FAILED 8
Marcel Holtmannce6bb922015-01-28 01:58:40 -0800450#define BTUSB_BOOTING 9
Hans de Goede61f5ace2018-01-08 10:44:16 +0100451#define BTUSB_DIAG_RUNNING 10
452#define BTUSB_OOB_WAKE_ENABLED 11
Rajat Jaindc786b22019-01-24 15:28:14 -0800453#define BTUSB_HW_RESET_ACTIVE 12
Sean Wanga1c49c432019-06-02 08:02:48 +0800454#define BTUSB_TX_WAIT_VND_EVT 13
Alex Lu9e455242019-08-14 20:02:52 +0800455#define BTUSB_WAKEUP_DISABLE 14
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200456
457struct btusb_data {
458 struct hci_dev *hdev;
459 struct usb_device *udev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +0200460 struct usb_interface *intf;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200461 struct usb_interface *isoc;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200462 struct usb_interface *diag;
Marcel Holtmann459232f2017-10-24 19:42:45 +0200463 unsigned isoc_ifnum;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200464
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200465 unsigned long flags;
466
467 struct work_struct work;
Oliver Neukum7bee5492009-08-24 23:44:59 +0200468 struct work_struct waker;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200469
Marcel Holtmann803b5832014-09-16 08:00:29 +0200470 struct usb_anchor deferred;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200471 struct usb_anchor tx_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200472 int tx_in_flight;
473 spinlock_t txlock;
474
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200475 struct usb_anchor intr_anchor;
476 struct usb_anchor bulk_anchor;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200477 struct usb_anchor isoc_anchor;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200478 struct usb_anchor diag_anchor;
Sean Wanga1c49c432019-06-02 08:02:48 +0800479 struct usb_anchor ctrl_anchor;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200480 spinlock_t rxlock;
481
482 struct sk_buff *evt_skb;
483 struct sk_buff *acl_skb;
484 struct sk_buff *sco_skb;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200485
486 struct usb_endpoint_descriptor *intr_ep;
487 struct usb_endpoint_descriptor *bulk_tx_ep;
488 struct usb_endpoint_descriptor *bulk_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200489 struct usb_endpoint_descriptor *isoc_tx_ep;
490 struct usb_endpoint_descriptor *isoc_rx_ep;
Marcel Holtmann9d08f502015-10-08 20:23:08 +0200491 struct usb_endpoint_descriptor *diag_tx_ep;
492 struct usb_endpoint_descriptor *diag_rx_ep;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200493
Rajat Jaindc786b22019-01-24 15:28:14 -0800494 struct gpio_desc *reset_gpio;
495
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100496 __u8 cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -0800497 __u8 cmdreq;
Marcel Holtmann7a9d4022008-11-30 12:17:26 +0100498
Marcel Holtmann43c2e572009-02-04 17:41:38 +0100499 unsigned int sco_num;
Sathish Narasimmanbaac6272020-04-03 21:43:59 +0200500 unsigned int air_mode;
501 bool usb_alt6_packet_flow;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200502 int isoc_altsetting;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +0100503 int suspend_count;
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100504
Marcel Holtmann97307f52015-01-12 13:51:10 -0800505 int (*recv_event)(struct hci_dev *hdev, struct sk_buff *skb);
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100506 int (*recv_bulk)(struct btusb_data *data, void *buffer, int count);
Kim, Ben Young Taeace31982015-02-15 23:06:14 +0000507
508 int (*setup_on_usb)(struct hci_dev *hdev);
Rajat Jainfd913ef2017-02-01 14:24:09 -0800509
510 int oob_wake_irq; /* irq for out-of-band wake-on-bt */
Rajat Jaindc786b22019-01-24 15:28:14 -0800511 unsigned cmd_timeout_cnt;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200512};
513
Rajat Jaindc786b22019-01-24 15:28:14 -0800514
515static void btusb_intel_cmd_timeout(struct hci_dev *hdev)
516{
517 struct btusb_data *data = hci_get_drvdata(hdev);
518 struct gpio_desc *reset_gpio = data->reset_gpio;
519
520 if (++data->cmd_timeout_cnt < 5)
521 return;
522
523 if (!reset_gpio) {
524 bt_dev_err(hdev, "No way to reset. Ignoring and continuing");
525 return;
526 }
527
528 /*
529 * Toggle the hard reset line if the platform provides one. The reset
530 * is going to yank the device off the USB and then replug. So doing
531 * once is enough. The cleanup is handled correctly on the way out
532 * (standard USB disconnect), and the new device is detected cleanly
533 * and bound to the driver again like it should be.
534 */
535 if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
536 bt_dev_err(hdev, "last reset failed? Not resetting again");
537 return;
538 }
539
540 bt_dev_err(hdev, "Initiating HW reset via gpio");
Rajat Jain2de66bb82019-01-28 15:08:09 -0800541 gpiod_set_value_cansleep(reset_gpio, 1);
542 msleep(100);
543 gpiod_set_value_cansleep(reset_gpio, 0);
Rajat Jaindc786b22019-01-24 15:28:14 -0800544}
545
Alex Lud7ef0d12019-09-05 10:36:31 +0800546static void btusb_rtl_cmd_timeout(struct hci_dev *hdev)
547{
548 struct btusb_data *data = hci_get_drvdata(hdev);
549 struct gpio_desc *reset_gpio = data->reset_gpio;
550
551 if (++data->cmd_timeout_cnt < 5)
552 return;
553
554 if (!reset_gpio) {
555 bt_dev_err(hdev, "No gpio to reset Realtek device, ignoring");
556 return;
557 }
558
559 /* Toggle the hard reset line. The Realtek device is going to
560 * yank itself off the USB and then replug. The cleanup is handled
561 * correctly on the way out (standard USB disconnect), and the new
562 * device is detected cleanly and bound to the driver again like
563 * it should be.
564 */
565 if (test_and_set_bit(BTUSB_HW_RESET_ACTIVE, &data->flags)) {
566 bt_dev_err(hdev, "last reset failed? Not resetting again");
567 return;
568 }
569
570 bt_dev_err(hdev, "Reset Realtek device via gpio");
Alex Lud7ef0d12019-09-05 10:36:31 +0800571 gpiod_set_value_cansleep(reset_gpio, 1);
Max Chou34682112019-11-27 11:01:07 +0800572 msleep(200);
573 gpiod_set_value_cansleep(reset_gpio, 0);
Alex Lud7ef0d12019-09-05 10:36:31 +0800574}
575
Marcel Holtmann803b5832014-09-16 08:00:29 +0200576static inline void btusb_free_frags(struct btusb_data *data)
577{
578 unsigned long flags;
579
580 spin_lock_irqsave(&data->rxlock, flags);
581
582 kfree_skb(data->evt_skb);
583 data->evt_skb = NULL;
584
585 kfree_skb(data->acl_skb);
586 data->acl_skb = NULL;
587
588 kfree_skb(data->sco_skb);
589 data->sco_skb = NULL;
590
591 spin_unlock_irqrestore(&data->rxlock, flags);
592}
593
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200594static int btusb_recv_intr(struct btusb_data *data, void *buffer, int count)
595{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200596 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200597 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200598 int err = 0;
599
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200600 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200601 skb = data->evt_skb;
602
603 while (count) {
604 int len;
605
606 if (!skb) {
607 skb = bt_skb_alloc(HCI_MAX_EVENT_SIZE, GFP_ATOMIC);
608 if (!skb) {
609 err = -ENOMEM;
610 break;
611 }
612
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100613 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
614 hci_skb_expect(skb) = HCI_EVENT_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200615 }
616
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100617 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200618 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200619
620 count -= len;
621 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100622 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200623
624 if (skb->len == HCI_EVENT_HDR_SIZE) {
625 /* Complete event header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100626 hci_skb_expect(skb) = hci_event_hdr(skb)->plen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200627
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100628 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200629 kfree_skb(skb);
630 skb = NULL;
631
632 err = -EILSEQ;
633 break;
634 }
635 }
636
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100637 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200638 /* Complete frame */
Marcel Holtmann97307f52015-01-12 13:51:10 -0800639 data->recv_event(data->hdev, skb);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200640 skb = NULL;
641 }
642 }
643
644 data->evt_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200645 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200646
647 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200648}
649
650static int btusb_recv_bulk(struct btusb_data *data, void *buffer, int count)
651{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200652 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200653 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200654 int err = 0;
655
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200656 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200657 skb = data->acl_skb;
658
659 while (count) {
660 int len;
661
662 if (!skb) {
663 skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);
664 if (!skb) {
665 err = -ENOMEM;
666 break;
667 }
668
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100669 hci_skb_pkt_type(skb) = HCI_ACLDATA_PKT;
670 hci_skb_expect(skb) = HCI_ACL_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200671 }
672
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100673 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200674 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200675
676 count -= len;
677 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100678 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200679
680 if (skb->len == HCI_ACL_HDR_SIZE) {
681 __le16 dlen = hci_acl_hdr(skb)->dlen;
682
683 /* Complete ACL header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100684 hci_skb_expect(skb) = __le16_to_cpu(dlen);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200685
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100686 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200687 kfree_skb(skb);
688 skb = NULL;
689
690 err = -EILSEQ;
691 break;
692 }
693 }
694
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100695 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200696 /* Complete frame */
697 hci_recv_frame(data->hdev, skb);
698 skb = NULL;
699 }
700 }
701
702 data->acl_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200703 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200704
705 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200706}
707
708static int btusb_recv_isoc(struct btusb_data *data, void *buffer, int count)
709{
Marcel Holtmann803b5832014-09-16 08:00:29 +0200710 struct sk_buff *skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200711 unsigned long flags;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200712 int err = 0;
713
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200714 spin_lock_irqsave(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200715 skb = data->sco_skb;
716
717 while (count) {
718 int len;
719
720 if (!skb) {
721 skb = bt_skb_alloc(HCI_MAX_SCO_SIZE, GFP_ATOMIC);
722 if (!skb) {
723 err = -ENOMEM;
724 break;
725 }
726
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100727 hci_skb_pkt_type(skb) = HCI_SCODATA_PKT;
728 hci_skb_expect(skb) = HCI_SCO_HDR_SIZE;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200729 }
730
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100731 len = min_t(uint, hci_skb_expect(skb), count);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200732 skb_put_data(skb, buffer, len);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200733
734 count -= len;
735 buffer += len;
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100736 hci_skb_expect(skb) -= len;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200737
738 if (skb->len == HCI_SCO_HDR_SIZE) {
739 /* Complete SCO header */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100740 hci_skb_expect(skb) = hci_sco_hdr(skb)->dlen;
Marcel Holtmann803b5832014-09-16 08:00:29 +0200741
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100742 if (skb_tailroom(skb) < hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200743 kfree_skb(skb);
744 skb = NULL;
745
746 err = -EILSEQ;
747 break;
748 }
749 }
750
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100751 if (!hci_skb_expect(skb)) {
Marcel Holtmann803b5832014-09-16 08:00:29 +0200752 /* Complete frame */
753 hci_recv_frame(data->hdev, skb);
754 skb = NULL;
755 }
756 }
757
758 data->sco_skb = skb;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +0200759 spin_unlock_irqrestore(&data->rxlock, flags);
Marcel Holtmann803b5832014-09-16 08:00:29 +0200760
761 return err;
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200762}
763
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200764static void btusb_intr_complete(struct urb *urb)
765{
766 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100767 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200768 int err;
769
Marcel Holtmann89e75332014-09-16 04:44:50 +0200770 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
771 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200772
773 if (!test_bit(HCI_RUNNING, &hdev->flags))
774 return;
775
776 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200777 hdev->stat.byte_rx += urb->actual_length;
778
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200779 if (btusb_recv_intr(data, urb->transfer_buffer,
780 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100781 bt_dev_err(hdev, "corrupted event packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200782 hdev->stat.err_rx++;
783 }
Champion Chen85560c42014-09-06 14:06:08 -0500784 } else if (urb->status == -ENOENT) {
785 /* Avoid suspend failed when usb_kill_urb */
786 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200787 }
788
789 if (!test_bit(BTUSB_INTR_RUNNING, &data->flags))
790 return;
791
Oliver Neukum7bee5492009-08-24 23:44:59 +0200792 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200793 usb_anchor_urb(urb, &data->intr_anchor);
794
795 err = usb_submit_urb(urb, GFP_ATOMIC);
796 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200797 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200798 * -ENODEV: device got disconnected
799 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200800 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100801 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
802 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200803 usb_unanchor_urb(urb);
804 }
805}
806
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100807static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200808{
David Herrmann155961e2012-02-09 21:58:32 +0100809 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200810 struct urb *urb;
811 unsigned char *buf;
812 unsigned int pipe;
813 int err, size;
814
815 BT_DBG("%s", hdev->name);
816
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200817 if (!data->intr_ep)
818 return -ENODEV;
819
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100820 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200821 if (!urb)
822 return -ENOMEM;
823
824 size = le16_to_cpu(data->intr_ep->wMaxPacketSize);
825
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100826 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200827 if (!buf) {
828 usb_free_urb(urb);
829 return -ENOMEM;
830 }
831
832 pipe = usb_rcvintpipe(data->udev, data->intr_ep->bEndpointAddress);
833
834 usb_fill_int_urb(urb, data->udev, pipe, buf, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +0200835 btusb_intr_complete, hdev, data->intr_ep->bInterval);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200836
837 urb->transfer_flags |= URB_FREE_BUFFER;
838
839 usb_anchor_urb(urb, &data->intr_anchor);
840
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100841 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200842 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200843 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100844 bt_dev_err(hdev, "urb %p submission failed (%d)",
845 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200846 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200847 }
848
849 usb_free_urb(urb);
850
851 return err;
852}
853
854static void btusb_bulk_complete(struct urb *urb)
855{
856 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100857 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200858 int err;
859
Marcel Holtmann89e75332014-09-16 04:44:50 +0200860 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
861 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200862
863 if (!test_bit(HCI_RUNNING, &hdev->flags))
864 return;
865
866 if (urb->status == 0) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200867 hdev->stat.byte_rx += urb->actual_length;
868
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +0100869 if (data->recv_bulk(data, urb->transfer_buffer,
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200870 urb->actual_length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100871 bt_dev_err(hdev, "corrupted ACL packet");
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200872 hdev->stat.err_rx++;
873 }
Champion Chen85560c42014-09-06 14:06:08 -0500874 } else if (urb->status == -ENOENT) {
875 /* Avoid suspend failed when usb_kill_urb */
876 return;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200877 }
878
879 if (!test_bit(BTUSB_BULK_RUNNING, &data->flags))
880 return;
881
882 usb_anchor_urb(urb, &data->bulk_anchor);
Oliver Neukum652fd782009-12-16 19:23:43 +0100883 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200884
885 err = usb_submit_urb(urb, GFP_ATOMIC);
886 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200887 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200888 * -ENODEV: device got disconnected
889 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200890 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100891 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
892 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200893 usb_unanchor_urb(urb);
894 }
895}
896
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100897static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200898{
David Herrmann155961e2012-02-09 21:58:32 +0100899 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200900 struct urb *urb;
901 unsigned char *buf;
902 unsigned int pipe;
Vikram Kandukuri290ba202009-07-02 14:31:59 +0530903 int err, size = HCI_MAX_FRAME_SIZE;
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200904
905 BT_DBG("%s", hdev->name);
906
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200907 if (!data->bulk_rx_ep)
908 return -ENODEV;
909
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100910 urb = usb_alloc_urb(0, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200911 if (!urb)
912 return -ENOMEM;
913
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100914 buf = kmalloc(size, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200915 if (!buf) {
916 usb_free_urb(urb);
917 return -ENOMEM;
918 }
919
920 pipe = usb_rcvbulkpipe(data->udev, data->bulk_rx_ep->bEndpointAddress);
921
Marcel Holtmann89e75332014-09-16 04:44:50 +0200922 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
923 btusb_bulk_complete, hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200924
925 urb->transfer_flags |= URB_FREE_BUFFER;
926
Oliver Neukum7bee5492009-08-24 23:44:59 +0200927 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200928 usb_anchor_urb(urb, &data->bulk_anchor);
929
Marcel Holtmann2eda66f2008-11-30 12:17:10 +0100930 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200931 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +0200932 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100933 bt_dev_err(hdev, "urb %p submission failed (%d)",
934 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200935 usb_unanchor_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +0200936 }
937
938 usb_free_urb(urb);
939
940 return err;
941}
942
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200943static void btusb_isoc_complete(struct urb *urb)
944{
945 struct hci_dev *hdev = urb->context;
David Herrmann155961e2012-02-09 21:58:32 +0100946 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200947 int i, err;
948
Marcel Holtmann89e75332014-09-16 04:44:50 +0200949 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
950 urb->actual_length);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200951
952 if (!test_bit(HCI_RUNNING, &hdev->flags))
953 return;
954
955 if (urb->status == 0) {
956 for (i = 0; i < urb->number_of_packets; i++) {
957 unsigned int offset = urb->iso_frame_desc[i].offset;
958 unsigned int length = urb->iso_frame_desc[i].actual_length;
959
960 if (urb->iso_frame_desc[i].status)
961 continue;
962
963 hdev->stat.byte_rx += length;
964
Marcel Holtmann1ffa4ad2014-09-16 05:33:33 +0200965 if (btusb_recv_isoc(data, urb->transfer_buffer + offset,
966 length) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100967 bt_dev_err(hdev, "corrupted SCO packet");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200968 hdev->stat.err_rx++;
969 }
970 }
Champion Chen85560c42014-09-06 14:06:08 -0500971 } else if (urb->status == -ENOENT) {
972 /* Avoid suspend failed when usb_kill_urb */
973 return;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200974 }
975
976 if (!test_bit(BTUSB_ISOC_RUNNING, &data->flags))
977 return;
978
979 usb_anchor_urb(urb, &data->isoc_anchor);
980
981 err = usb_submit_urb(urb, GFP_ATOMIC);
982 if (err < 0) {
Paul Bolle4935f1c2011-08-09 17:16:28 +0200983 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +1200984 * -ENODEV: device got disconnected
985 */
Paul Bolle4935f1c2011-08-09 17:16:28 +0200986 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100987 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
988 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +0200989 usb_unanchor_urb(urb);
990 }
991}
992
Sathish Narasimmanbaac6272020-04-03 21:43:59 +0200993static inline void __fill_isoc_descriptor_msbc(struct urb *urb, int len,
994 int mtu, struct btusb_data *data)
995{
996 int i, offset = 0;
997 unsigned int interval;
998
999 BT_DBG("len %d mtu %d", len, mtu);
1000
1001 /* For mSBC ALT 6 setting the host will send the packet at continuous
1002 * flow. As per core spec 5, vol 4, part B, table 2.1. For ALT setting
1003 * 6 the HCI PACKET INTERVAL should be 7.5ms for every usb packets.
1004 * To maintain the rate we send 63bytes of usb packets alternatively for
1005 * 7ms and 8ms to maintain the rate as 7.5ms.
1006 */
1007 if (data->usb_alt6_packet_flow) {
1008 interval = 7;
1009 data->usb_alt6_packet_flow = false;
1010 } else {
1011 interval = 6;
1012 data->usb_alt6_packet_flow = true;
1013 }
1014
1015 for (i = 0; i < interval; i++) {
1016 urb->iso_frame_desc[i].offset = offset;
1017 urb->iso_frame_desc[i].length = offset;
1018 }
1019
1020 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1021 urb->iso_frame_desc[i].offset = offset;
1022 urb->iso_frame_desc[i].length = len;
1023 i++;
1024 }
1025
1026 urb->number_of_packets = i;
1027}
1028
Jesper Juhl42b16b32011-01-17 00:09:38 +01001029static inline void __fill_isoc_descriptor(struct urb *urb, int len, int mtu)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001030{
1031 int i, offset = 0;
1032
1033 BT_DBG("len %d mtu %d", len, mtu);
1034
1035 for (i = 0; i < BTUSB_MAX_ISOC_FRAMES && len >= mtu;
1036 i++, offset += mtu, len -= mtu) {
1037 urb->iso_frame_desc[i].offset = offset;
1038 urb->iso_frame_desc[i].length = mtu;
1039 }
1040
1041 if (len && i < BTUSB_MAX_ISOC_FRAMES) {
1042 urb->iso_frame_desc[i].offset = offset;
1043 urb->iso_frame_desc[i].length = len;
1044 i++;
1045 }
1046
1047 urb->number_of_packets = i;
1048}
1049
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001050static int btusb_submit_isoc_urb(struct hci_dev *hdev, gfp_t mem_flags)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001051{
David Herrmann155961e2012-02-09 21:58:32 +01001052 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001053 struct urb *urb;
1054 unsigned char *buf;
1055 unsigned int pipe;
1056 int err, size;
1057
1058 BT_DBG("%s", hdev->name);
1059
1060 if (!data->isoc_rx_ep)
1061 return -ENODEV;
1062
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001063 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001064 if (!urb)
1065 return -ENOMEM;
1066
1067 size = le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize) *
1068 BTUSB_MAX_ISOC_FRAMES;
1069
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001070 buf = kmalloc(size, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001071 if (!buf) {
1072 usb_free_urb(urb);
1073 return -ENOMEM;
1074 }
1075
1076 pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress);
1077
Bing Zhaofa0fb932011-12-20 18:19:00 -08001078 usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001079 hdev, data->isoc_rx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001080
Marcel Holtmann89e75332014-09-16 04:44:50 +02001081 urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001082
1083 __fill_isoc_descriptor(urb, size,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001084 le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize));
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001085
1086 usb_anchor_urb(urb, &data->isoc_anchor);
1087
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001088 err = usb_submit_urb(urb, mem_flags);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001089 if (err < 0) {
Paul Bolled4b8d1c2011-10-09 12:12:22 +02001090 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001091 bt_dev_err(hdev, "urb %p submission failed (%d)",
1092 urb, -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001093 usb_unanchor_urb(urb);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001094 }
1095
1096 usb_free_urb(urb);
1097
1098 return err;
1099}
1100
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001101static void btusb_diag_complete(struct urb *urb)
1102{
1103 struct hci_dev *hdev = urb->context;
1104 struct btusb_data *data = hci_get_drvdata(hdev);
1105 int err;
1106
1107 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1108 urb->actual_length);
1109
1110 if (urb->status == 0) {
1111 struct sk_buff *skb;
1112
1113 skb = bt_skb_alloc(urb->actual_length, GFP_ATOMIC);
1114 if (skb) {
Johannes Berg59ae1d12017-06-16 14:29:20 +02001115 skb_put_data(skb, urb->transfer_buffer,
1116 urb->actual_length);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001117 hci_recv_diag(hdev, skb);
1118 }
1119 } else if (urb->status == -ENOENT) {
1120 /* Avoid suspend failed when usb_kill_urb */
1121 return;
1122 }
1123
1124 if (!test_bit(BTUSB_DIAG_RUNNING, &data->flags))
1125 return;
1126
1127 usb_anchor_urb(urb, &data->diag_anchor);
1128 usb_mark_last_busy(data->udev);
1129
1130 err = usb_submit_urb(urb, GFP_ATOMIC);
1131 if (err < 0) {
1132 /* -EPERM: urb is being killed;
Derek Robsond98422c2017-07-22 13:47:07 +12001133 * -ENODEV: device got disconnected
1134 */
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001135 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001136 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
1137 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001138 usb_unanchor_urb(urb);
1139 }
1140}
1141
1142static int btusb_submit_diag_urb(struct hci_dev *hdev, gfp_t mem_flags)
1143{
1144 struct btusb_data *data = hci_get_drvdata(hdev);
1145 struct urb *urb;
1146 unsigned char *buf;
1147 unsigned int pipe;
1148 int err, size = HCI_MAX_FRAME_SIZE;
1149
1150 BT_DBG("%s", hdev->name);
1151
1152 if (!data->diag_rx_ep)
1153 return -ENODEV;
1154
1155 urb = usb_alloc_urb(0, mem_flags);
1156 if (!urb)
1157 return -ENOMEM;
1158
1159 buf = kmalloc(size, mem_flags);
1160 if (!buf) {
1161 usb_free_urb(urb);
1162 return -ENOMEM;
1163 }
1164
1165 pipe = usb_rcvbulkpipe(data->udev, data->diag_rx_ep->bEndpointAddress);
1166
1167 usb_fill_bulk_urb(urb, data->udev, pipe, buf, size,
1168 btusb_diag_complete, hdev);
1169
1170 urb->transfer_flags |= URB_FREE_BUFFER;
1171
1172 usb_mark_last_busy(data->udev);
1173 usb_anchor_urb(urb, &data->diag_anchor);
1174
1175 err = usb_submit_urb(urb, mem_flags);
1176 if (err < 0) {
1177 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001178 bt_dev_err(hdev, "urb %p submission failed (%d)",
1179 urb, -err);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001180 usb_unanchor_urb(urb);
1181 }
1182
1183 usb_free_urb(urb);
1184
1185 return err;
1186}
1187
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001188static void btusb_tx_complete(struct urb *urb)
1189{
1190 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001191 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
David Herrmann155961e2012-02-09 21:58:32 +01001192 struct btusb_data *data = hci_get_drvdata(hdev);
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001193 unsigned long flags;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001194
Marcel Holtmann89e75332014-09-16 04:44:50 +02001195 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1196 urb->actual_length);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001197
1198 if (!test_bit(HCI_RUNNING, &hdev->flags))
1199 goto done;
1200
1201 if (!urb->status)
1202 hdev->stat.byte_tx += urb->transfer_buffer_length;
1203 else
1204 hdev->stat.err_tx++;
1205
1206done:
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001207 spin_lock_irqsave(&data->txlock, flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001208 data->tx_in_flight--;
Sebastian Andrzej Siewiora5e50d52018-06-19 23:56:57 +02001209 spin_unlock_irqrestore(&data->txlock, flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001210
1211 kfree(urb->setup_packet);
1212
1213 kfree_skb(skb);
1214}
1215
1216static void btusb_isoc_tx_complete(struct urb *urb)
1217{
1218 struct sk_buff *skb = urb->context;
Marcel Holtmann89e75332014-09-16 04:44:50 +02001219 struct hci_dev *hdev = (struct hci_dev *)skb->dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001220
Marcel Holtmann89e75332014-09-16 04:44:50 +02001221 BT_DBG("%s urb %p status %d count %d", hdev->name, urb, urb->status,
1222 urb->actual_length);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001223
1224 if (!test_bit(HCI_RUNNING, &hdev->flags))
1225 goto done;
1226
1227 if (!urb->status)
1228 hdev->stat.byte_tx += urb->transfer_buffer_length;
1229 else
1230 hdev->stat.err_tx++;
1231
1232done:
1233 kfree(urb->setup_packet);
1234
1235 kfree_skb(skb);
1236}
1237
1238static int btusb_open(struct hci_dev *hdev)
1239{
David Herrmann155961e2012-02-09 21:58:32 +01001240 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001241 int err;
1242
1243 BT_DBG("%s", hdev->name);
1244
Ethan Hsiehc7e163f2016-10-07 12:06:42 +08001245 err = usb_autopm_get_interface(data->intf);
1246 if (err < 0)
1247 return err;
1248
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001249 /* Patching USB firmware files prior to starting any URBs of HCI path
1250 * It is more safe to use USB bulk channel for downloading USB patch
1251 */
1252 if (data->setup_on_usb) {
1253 err = data->setup_on_usb(hdev);
Marcel Holtmanneb500422015-04-16 23:15:50 +02001254 if (err < 0)
Oliver Neukum3d44a6f2019-11-14 16:01:18 +01001255 goto setup_fail;
Kim, Ben Young Taeace31982015-02-15 23:06:14 +00001256 }
1257
Oliver Neukum7bee5492009-08-24 23:44:59 +02001258 data->intf->needs_remote_wakeup = 1;
1259
Alex Lu9e455242019-08-14 20:02:52 +08001260 /* Disable device remote wakeup when host is suspended
1261 * For Realtek chips, global suspend without
1262 * SET_FEATURE (DEVICE_REMOTE_WAKEUP) can save more power in device.
1263 */
1264 if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags))
1265 device_wakeup_disable(&data->udev->dev);
1266
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001267 if (test_and_set_bit(BTUSB_INTR_RUNNING, &data->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02001268 goto done;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001269
Marcel Holtmann2eda66f2008-11-30 12:17:10 +01001270 err = btusb_submit_intr_urb(hdev, GFP_KERNEL);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001271 if (err < 0)
1272 goto failed;
1273
1274 err = btusb_submit_bulk_urb(hdev, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001275 if (err < 0) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001276 usb_kill_anchored_urbs(&data->intr_anchor);
1277 goto failed;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001278 }
1279
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001280 set_bit(BTUSB_BULK_RUNNING, &data->flags);
1281 btusb_submit_bulk_urb(hdev, GFP_KERNEL);
1282
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001283 if (data->diag) {
1284 if (!btusb_submit_diag_urb(hdev, GFP_KERNEL))
1285 set_bit(BTUSB_DIAG_RUNNING, &data->flags);
1286 }
1287
Oliver Neukum7bee5492009-08-24 23:44:59 +02001288done:
1289 usb_autopm_put_interface(data->intf);
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001290 return 0;
1291
1292failed:
1293 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum3d44a6f2019-11-14 16:01:18 +01001294setup_fail:
Oliver Neukum7bee5492009-08-24 23:44:59 +02001295 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001296 return err;
1297}
1298
Oliver Neukum7bee5492009-08-24 23:44:59 +02001299static void btusb_stop_traffic(struct btusb_data *data)
1300{
1301 usb_kill_anchored_urbs(&data->intr_anchor);
1302 usb_kill_anchored_urbs(&data->bulk_anchor);
1303 usb_kill_anchored_urbs(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001304 usb_kill_anchored_urbs(&data->diag_anchor);
Sean Wanga1c49c432019-06-02 08:02:48 +08001305 usb_kill_anchored_urbs(&data->ctrl_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001306}
1307
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001308static int btusb_close(struct hci_dev *hdev)
1309{
David Herrmann155961e2012-02-09 21:58:32 +01001310 struct btusb_data *data = hci_get_drvdata(hdev);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001311 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001312
1313 BT_DBG("%s", hdev->name);
1314
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001315 cancel_work_sync(&data->work);
Linus Torvalds404291a2009-11-11 13:32:29 -08001316 cancel_work_sync(&data->waker);
Marcel Holtmanne8c3c3d2008-09-23 00:16:36 +02001317
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001318 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001319 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001320 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02001321 clear_bit(BTUSB_DIAG_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001322
1323 btusb_stop_traffic(data);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001324 btusb_free_frags(data);
1325
Oliver Neukum7bee5492009-08-24 23:44:59 +02001326 err = usb_autopm_get_interface(data->intf);
1327 if (err < 0)
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001328 goto failed;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001329
1330 data->intf->needs_remote_wakeup = 0;
Alex Lu9e455242019-08-14 20:02:52 +08001331
1332 /* Enable remote wake up for auto-suspend */
1333 if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags))
1334 data->intf->needs_remote_wakeup = 1;
1335
Oliver Neukum7bee5492009-08-24 23:44:59 +02001336 usb_autopm_put_interface(data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001337
Oliver Neukum7b8e2c12009-11-13 14:26:23 +01001338failed:
1339 usb_scuttle_anchored_urbs(&data->deferred);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001340 return 0;
1341}
1342
1343static int btusb_flush(struct hci_dev *hdev)
1344{
David Herrmann155961e2012-02-09 21:58:32 +01001345 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001346
1347 BT_DBG("%s", hdev->name);
1348
1349 usb_kill_anchored_urbs(&data->tx_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02001350 btusb_free_frags(data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001351
1352 return 0;
1353}
1354
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001355static struct urb *alloc_ctrl_urb(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001356{
David Herrmann155961e2012-02-09 21:58:32 +01001357 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001358 struct usb_ctrlrequest *dr;
1359 struct urb *urb;
1360 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001361
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001362 urb = usb_alloc_urb(0, GFP_KERNEL);
1363 if (!urb)
1364 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001365
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001366 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1367 if (!dr) {
1368 usb_free_urb(urb);
1369 return ERR_PTR(-ENOMEM);
1370 }
1371
1372 dr->bRequestType = data->cmdreq_type;
Marcel Holtmann893ba542015-01-28 20:27:34 -08001373 dr->bRequest = data->cmdreq;
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001374 dr->wIndex = 0;
1375 dr->wValue = 0;
1376 dr->wLength = __cpu_to_le16(skb->len);
1377
1378 pipe = usb_sndctrlpipe(data->udev, 0x00);
1379
Marcel Holtmann89e75332014-09-16 04:44:50 +02001380 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001381 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001382
Marcel Holtmann89e75332014-09-16 04:44:50 +02001383 skb->dev = (void *)hdev;
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07001384
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001385 return urb;
1386}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001387
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001388static struct urb *alloc_bulk_urb(struct hci_dev *hdev, struct sk_buff *skb)
1389{
1390 struct btusb_data *data = hci_get_drvdata(hdev);
1391 struct urb *urb;
1392 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001393
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001394 if (!data->bulk_tx_ep)
1395 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001396
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001397 urb = usb_alloc_urb(0, GFP_KERNEL);
1398 if (!urb)
1399 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001400
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001401 pipe = usb_sndbulkpipe(data->udev, data->bulk_tx_ep->bEndpointAddress);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001402
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001403 usb_fill_bulk_urb(urb, data->udev, pipe,
1404 skb->data, skb->len, btusb_tx_complete, skb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001405
Marcel Holtmann89e75332014-09-16 04:44:50 +02001406 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001407
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001408 return urb;
1409}
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001410
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001411static struct urb *alloc_isoc_urb(struct hci_dev *hdev, struct sk_buff *skb)
1412{
1413 struct btusb_data *data = hci_get_drvdata(hdev);
1414 struct urb *urb;
1415 unsigned int pipe;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001416
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001417 if (!data->isoc_tx_ep)
1418 return ERR_PTR(-ENODEV);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001419
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001420 urb = usb_alloc_urb(BTUSB_MAX_ISOC_FRAMES, GFP_KERNEL);
1421 if (!urb)
1422 return ERR_PTR(-ENOMEM);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001423
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001424 pipe = usb_sndisocpipe(data->udev, data->isoc_tx_ep->bEndpointAddress);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001425
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001426 usb_fill_int_urb(urb, data->udev, pipe,
1427 skb->data, skb->len, btusb_isoc_tx_complete,
1428 skb, data->isoc_tx_ep->bInterval);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001429
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001430 urb->transfer_flags = URB_ISO_ASAP;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001431
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001432 if (data->isoc_altsetting == 6)
1433 __fill_isoc_descriptor_msbc(urb, skb->len,
1434 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize),
1435 data);
1436 else
1437 __fill_isoc_descriptor(urb, skb->len,
1438 le16_to_cpu(data->isoc_tx_ep->wMaxPacketSize));
Marcel Holtmann89e75332014-09-16 04:44:50 +02001439 skb->dev = (void *)hdev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001440
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001441 return urb;
1442}
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001443
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001444static int submit_tx_urb(struct hci_dev *hdev, struct urb *urb)
1445{
1446 struct btusb_data *data = hci_get_drvdata(hdev);
1447 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001448
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001449 usb_anchor_urb(urb, &data->tx_anchor);
1450
Johan Hedberge9753ef2014-09-14 08:49:34 +03001451 err = usb_submit_urb(urb, GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001452 if (err < 0) {
Paul Bolle5a9b80e2011-10-09 12:12:16 +02001453 if (err != -EPERM && err != -ENODEV)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001454 bt_dev_err(hdev, "urb %p submission failed (%d)",
1455 urb, -err);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001456 kfree(urb->setup_packet);
1457 usb_unanchor_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001458 } else {
1459 usb_mark_last_busy(data->udev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001460 }
1461
Cong Wang54a8a792011-11-22 09:32:57 +08001462 usb_free_urb(urb);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001463 return err;
1464}
1465
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001466static int submit_or_queue_tx_urb(struct hci_dev *hdev, struct urb *urb)
1467{
1468 struct btusb_data *data = hci_get_drvdata(hdev);
1469 unsigned long flags;
1470 bool suspending;
1471
1472 spin_lock_irqsave(&data->txlock, flags);
1473 suspending = test_bit(BTUSB_SUSPENDING, &data->flags);
1474 if (!suspending)
1475 data->tx_in_flight++;
1476 spin_unlock_irqrestore(&data->txlock, flags);
1477
1478 if (!suspending)
1479 return submit_tx_urb(hdev, urb);
1480
1481 usb_anchor_urb(urb, &data->deferred);
1482 schedule_work(&data->waker);
1483
1484 usb_free_urb(urb);
1485 return 0;
1486}
1487
1488static int btusb_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
1489{
1490 struct urb *urb;
1491
1492 BT_DBG("%s", hdev->name);
1493
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01001494 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmann047b2ec2014-09-14 09:11:06 +02001495 case HCI_COMMAND_PKT:
1496 urb = alloc_ctrl_urb(hdev, skb);
1497 if (IS_ERR(urb))
1498 return PTR_ERR(urb);
1499
1500 hdev->stat.cmd_tx++;
1501 return submit_or_queue_tx_urb(hdev, urb);
1502
1503 case HCI_ACLDATA_PKT:
1504 urb = alloc_bulk_urb(hdev, skb);
1505 if (IS_ERR(urb))
1506 return PTR_ERR(urb);
1507
1508 hdev->stat.acl_tx++;
1509 return submit_or_queue_tx_urb(hdev, urb);
1510
1511 case HCI_SCODATA_PKT:
1512 if (hci_conn_num(hdev, SCO_LINK) < 1)
1513 return -ENODEV;
1514
1515 urb = alloc_isoc_urb(hdev, skb);
1516 if (IS_ERR(urb))
1517 return PTR_ERR(urb);
1518
1519 hdev->stat.sco_tx++;
1520 return submit_tx_urb(hdev, urb);
1521 }
1522
1523 return -EILSEQ;
1524}
1525
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001526static void btusb_notify(struct hci_dev *hdev, unsigned int evt)
1527{
David Herrmann155961e2012-02-09 21:58:32 +01001528 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001529
1530 BT_DBG("%s evt %d", hdev->name, evt);
1531
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001532 if (hci_conn_num(hdev, SCO_LINK) != data->sco_num) {
1533 data->sco_num = hci_conn_num(hdev, SCO_LINK);
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001534 data->air_mode = evt;
Marcel Holtmann43c2e572009-02-04 17:41:38 +01001535 schedule_work(&data->work);
Marcel Holtmanna780efa2008-11-30 12:17:12 +01001536 }
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001537}
1538
Jesper Juhl42b16b32011-01-17 00:09:38 +01001539static inline int __set_isoc_interface(struct hci_dev *hdev, int altsetting)
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001540{
David Herrmann155961e2012-02-09 21:58:32 +01001541 struct btusb_data *data = hci_get_drvdata(hdev);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001542 struct usb_interface *intf = data->isoc;
1543 struct usb_endpoint_descriptor *ep_desc;
1544 int i, err;
1545
1546 if (!data->isoc)
1547 return -ENODEV;
1548
Marcel Holtmann459232f2017-10-24 19:42:45 +02001549 err = usb_set_interface(data->udev, data->isoc_ifnum, altsetting);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001550 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001551 bt_dev_err(hdev, "setting interface failed (%d)", -err);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001552 return err;
1553 }
1554
1555 data->isoc_altsetting = altsetting;
1556
1557 data->isoc_tx_ep = NULL;
1558 data->isoc_rx_ep = NULL;
1559
1560 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
1561 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
1562
1563 if (!data->isoc_tx_ep && usb_endpoint_is_isoc_out(ep_desc)) {
1564 data->isoc_tx_ep = ep_desc;
1565 continue;
1566 }
1567
1568 if (!data->isoc_rx_ep && usb_endpoint_is_isoc_in(ep_desc)) {
1569 data->isoc_rx_ep = ep_desc;
1570 continue;
1571 }
1572 }
1573
1574 if (!data->isoc_tx_ep || !data->isoc_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001575 bt_dev_err(hdev, "invalid SCO descriptors");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001576 return -ENODEV;
1577 }
1578
1579 return 0;
1580}
1581
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001582static int btusb_switch_alt_setting(struct hci_dev *hdev, int new_alts)
1583{
1584 struct btusb_data *data = hci_get_drvdata(hdev);
1585 int err;
1586
1587 if (data->isoc_altsetting != new_alts) {
1588 unsigned long flags;
1589
1590 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1591 usb_kill_anchored_urbs(&data->isoc_anchor);
1592
1593 /* When isochronous alternate setting needs to be
1594 * changed, because SCO connection has been added
1595 * or removed, a packet fragment may be left in the
1596 * reassembling state. This could lead to wrongly
1597 * assembled fragments.
1598 *
1599 * Clear outstanding fragment when selecting a new
1600 * alternate setting.
1601 */
1602 spin_lock_irqsave(&data->rxlock, flags);
1603 kfree_skb(data->sco_skb);
1604 data->sco_skb = NULL;
1605 spin_unlock_irqrestore(&data->rxlock, flags);
1606
1607 err = __set_isoc_interface(hdev, new_alts);
1608 if (err < 0)
1609 return err;
1610 }
1611
1612 if (!test_and_set_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
1613 if (btusb_submit_isoc_urb(hdev, GFP_KERNEL) < 0)
1614 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1615 else
1616 btusb_submit_isoc_urb(hdev, GFP_KERNEL);
1617 }
1618
1619 return 0;
1620}
1621
1622static struct usb_host_interface *btusb_find_altsetting(struct btusb_data *data,
1623 int alt)
1624{
1625 struct usb_interface *intf = data->isoc;
1626 int i;
1627
1628 BT_DBG("Looking for Alt no :%d", alt);
1629
Sathish Narasimmanfcd156ee2020-04-08 10:57:03 +05301630 if (!intf)
1631 return NULL;
1632
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001633 for (i = 0; i < intf->num_altsetting; i++) {
1634 if (intf->altsetting[i].desc.bAlternateSetting == alt)
1635 return &intf->altsetting[i];
1636 }
1637
1638 return NULL;
1639}
1640
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001641static void btusb_work(struct work_struct *work)
1642{
1643 struct btusb_data *data = container_of(work, struct btusb_data, work);
1644 struct hci_dev *hdev = data->hdev;
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001645 int new_alts = 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02001646 int err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001647
Marcel Holtmann014f7bc2013-10-10 09:47:55 -07001648 if (data->sco_num > 0) {
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001649 if (!test_bit(BTUSB_DID_ISO_RESUME, &data->flags)) {
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001650 err = usb_autopm_get_interface(data->isoc ? data->isoc : data->intf);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001651 if (err < 0) {
1652 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1653 usb_kill_anchored_urbs(&data->isoc_anchor);
1654 return;
1655 }
1656
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001657 set_bit(BTUSB_DID_ISO_RESUME, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02001658 }
Mikel Astizf4001d22012-04-11 08:48:51 +02001659
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001660 if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_CVSD) {
1661 if (hdev->voice_setting & 0x0020) {
1662 static const int alts[3] = { 2, 4, 5 };
Marcel Holtmann89e75332014-09-16 04:44:50 +02001663
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001664 new_alts = alts[data->sco_num - 1];
1665 } else {
1666 new_alts = data->sco_num;
1667 }
1668 } else if (data->air_mode == HCI_NOTIFY_ENABLE_SCO_TRANSP) {
Mikel Astizf4001d22012-04-11 08:48:51 +02001669
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001670 data->usb_alt6_packet_flow = true;
Kuba Pawlakf6fc86f2015-10-28 15:18:05 +01001671
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001672 /* Check if Alt 6 is supported for Transparent audio */
1673 if (btusb_find_altsetting(data, 6))
1674 new_alts = 6;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001675 else
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001676 bt_dev_err(hdev, "Device does not support ALT setting 6");
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001677 }
Sathish Narasimmanbaac6272020-04-03 21:43:59 +02001678
1679 if (btusb_switch_alt_setting(hdev, new_alts) < 0)
1680 bt_dev_err(hdev, "set USB alt:(%d) failed!", new_alts);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02001681 } else {
1682 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
1683 usb_kill_anchored_urbs(&data->isoc_anchor);
1684
1685 __set_isoc_interface(hdev, 0);
Gustavo F. Padovan08b8b6c2010-07-16 17:20:33 -03001686 if (test_and_clear_bit(BTUSB_DID_ISO_RESUME, &data->flags))
Oliver Neukum8efdd0c2011-02-11 13:00:06 +01001687 usb_autopm_put_interface(data->isoc ? data->isoc : data->intf);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02001688 }
1689}
1690
Oliver Neukum7bee5492009-08-24 23:44:59 +02001691static void btusb_waker(struct work_struct *work)
1692{
1693 struct btusb_data *data = container_of(work, struct btusb_data, waker);
1694 int err;
1695
1696 err = usb_autopm_get_interface(data->intf);
1697 if (err < 0)
1698 return;
1699
1700 usb_autopm_put_interface(data->intf);
1701}
1702
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001703static int btusb_setup_bcm92035(struct hci_dev *hdev)
1704{
1705 struct sk_buff *skb;
1706 u8 val = 0x00;
1707
1708 BT_DBG("%s", hdev->name);
1709
1710 skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
1711 if (IS_ERR(skb))
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001712 bt_dev_err(hdev, "BCM92035 command failed (%ld)", PTR_ERR(skb));
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07001713 else
1714 kfree_skb(skb);
1715
1716 return 0;
1717}
1718
Marcel Holtmann81cac642014-01-03 03:02:36 -08001719static int btusb_setup_csr(struct hci_dev *hdev)
1720{
1721 struct hci_rp_read_local_version *rp;
1722 struct sk_buff *skb;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001723
1724 BT_DBG("%s", hdev->name);
1725
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001726 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
1727 HCI_INIT_TIMEOUT);
1728 if (IS_ERR(skb)) {
1729 int err = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001730 bt_dev_err(hdev, "CSR: Local version failed (%d)", err);
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001731 return err;
1732 }
1733
1734 if (skb->len != sizeof(struct hci_rp_read_local_version)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001735 bt_dev_err(hdev, "CSR: Local version length mismatch");
Marcel Holtmann7cd84d72015-06-07 10:01:02 +02001736 kfree_skb(skb);
1737 return -EIO;
1738 }
Marcel Holtmann81cac642014-01-03 03:02:36 -08001739
Marcel Holtmann89e75332014-09-16 04:44:50 +02001740 rp = (struct hci_rp_read_local_version *)skb->data;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001741
Johan Hedberg6cafcd92015-08-30 21:47:21 +03001742 /* Detect controllers which aren't real CSR ones. */
1743 if (le16_to_cpu(rp->manufacturer) != 10 ||
1744 le16_to_cpu(rp->lmp_subver) == 0x0c5c) {
Marcel Holtmann9641d342015-06-07 10:01:01 +02001745 /* Clear the reset quirk since this is not an actual
1746 * early Bluetooth 1.1 device from CSR.
1747 */
1748 clear_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001749
Marcel Holtmann9641d342015-06-07 10:01:01 +02001750 /* These fake CSR controllers have all a broken
1751 * stored link key handling and so just disable it.
1752 */
1753 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08001754 }
1755
Marcel Holtmann81cac642014-01-03 03:02:36 -08001756 kfree_skb(skb);
1757
Marcel Holtmann9641d342015-06-07 10:01:01 +02001758 return 0;
Marcel Holtmann81cac642014-01-03 03:02:36 -08001759}
1760
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001761static const struct firmware *btusb_setup_intel_get_fw(struct hci_dev *hdev,
Marcel Holtmann89e75332014-09-16 04:44:50 +02001762 struct intel_version *ver)
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001763{
1764 const struct firmware *fw;
1765 char fwname[64];
1766 int ret;
1767
1768 snprintf(fwname, sizeof(fwname),
1769 "intel/ibt-hw-%x.%x.%x-fw-%x.%x.%x.%x.%x.bseq",
1770 ver->hw_platform, ver->hw_variant, ver->hw_revision,
1771 ver->fw_variant, ver->fw_revision, ver->fw_build_num,
1772 ver->fw_build_ww, ver->fw_build_yy);
1773
1774 ret = request_firmware(&fw, fwname, &hdev->dev);
1775 if (ret < 0) {
1776 if (ret == -EINVAL) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001777 bt_dev_err(hdev, "Intel firmware file request failed (%d)",
1778 ret);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001779 return NULL;
1780 }
1781
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001782 bt_dev_err(hdev, "failed to open Intel firmware file: %s (%d)",
1783 fwname, ret);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001784
1785 /* If the correct firmware patch file is not found, use the
1786 * default firmware patch file instead
1787 */
1788 snprintf(fwname, sizeof(fwname), "intel/ibt-hw-%x.%x.bseq",
1789 ver->hw_platform, ver->hw_variant);
1790 if (request_firmware(&fw, fwname, &hdev->dev) < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001791 bt_dev_err(hdev, "failed to open default fw file: %s",
1792 fwname);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001793 return NULL;
1794 }
1795 }
1796
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001797 bt_dev_info(hdev, "Intel Bluetooth firmware file: %s", fwname);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001798
1799 return fw;
1800}
1801
1802static int btusb_setup_intel_patching(struct hci_dev *hdev,
1803 const struct firmware *fw,
1804 const u8 **fw_ptr, int *disable_patch)
1805{
1806 struct sk_buff *skb;
1807 struct hci_command_hdr *cmd;
1808 const u8 *cmd_param;
1809 struct hci_event_hdr *evt = NULL;
1810 const u8 *evt_param = NULL;
1811 int remain = fw->size - (*fw_ptr - fw->data);
1812
1813 /* The first byte indicates the types of the patch command or event.
1814 * 0x01 means HCI command and 0x02 is HCI event. If the first bytes
1815 * in the current firmware buffer doesn't start with 0x01 or
1816 * the size of remain buffer is smaller than HCI command header,
1817 * the firmware file is corrupted and it should stop the patching
1818 * process.
1819 */
1820 if (remain > HCI_COMMAND_HDR_SIZE && *fw_ptr[0] != 0x01) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001821 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd read");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001822 return -EINVAL;
1823 }
1824 (*fw_ptr)++;
1825 remain--;
1826
1827 cmd = (struct hci_command_hdr *)(*fw_ptr);
1828 *fw_ptr += sizeof(*cmd);
1829 remain -= sizeof(*cmd);
1830
1831 /* Ensure that the remain firmware data is long enough than the length
1832 * of command parameter. If not, the firmware file is corrupted.
1833 */
1834 if (remain < cmd->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001835 bt_dev_err(hdev, "Intel fw corrupted: invalid cmd len");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001836 return -EFAULT;
1837 }
1838
1839 /* If there is a command that loads a patch in the firmware
1840 * file, then enable the patch upon success, otherwise just
1841 * disable the manufacturer mode, for example patch activation
1842 * is not required when the default firmware patch file is used
1843 * because there are no patch data to load.
1844 */
1845 if (*disable_patch && le16_to_cpu(cmd->opcode) == 0xfc8e)
1846 *disable_patch = 0;
1847
1848 cmd_param = *fw_ptr;
1849 *fw_ptr += cmd->plen;
1850 remain -= cmd->plen;
1851
1852 /* This reads the expected events when the above command is sent to the
1853 * device. Some vendor commands expects more than one events, for
1854 * example command status event followed by vendor specific event.
1855 * For this case, it only keeps the last expected event. so the command
1856 * can be sent with __hci_cmd_sync_ev() which returns the sk_buff of
1857 * last expected event.
1858 */
1859 while (remain > HCI_EVENT_HDR_SIZE && *fw_ptr[0] == 0x02) {
1860 (*fw_ptr)++;
1861 remain--;
1862
1863 evt = (struct hci_event_hdr *)(*fw_ptr);
1864 *fw_ptr += sizeof(*evt);
1865 remain -= sizeof(*evt);
1866
1867 if (remain < evt->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001868 bt_dev_err(hdev, "Intel fw corrupted: invalid evt len");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001869 return -EFAULT;
1870 }
1871
1872 evt_param = *fw_ptr;
1873 *fw_ptr += evt->plen;
1874 remain -= evt->plen;
1875 }
1876
1877 /* Every HCI commands in the firmware file has its correspond event.
1878 * If event is not found or remain is smaller than zero, the firmware
1879 * file is corrupted.
1880 */
1881 if (!evt || !evt_param || remain < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001882 bt_dev_err(hdev, "Intel fw corrupted: invalid evt read");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001883 return -EFAULT;
1884 }
1885
1886 skb = __hci_cmd_sync_ev(hdev, le16_to_cpu(cmd->opcode), cmd->plen,
1887 cmd_param, evt->evt, HCI_INIT_TIMEOUT);
1888 if (IS_ERR(skb)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001889 bt_dev_err(hdev, "sending Intel patch command (0x%4.4x) failed (%ld)",
1890 cmd->opcode, PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001891 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001892 }
1893
1894 /* It ensures that the returned event matches the event data read from
1895 * the firmware file. At fist, it checks the length and then
1896 * the contents of the event.
1897 */
1898 if (skb->len != evt->plen) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001899 bt_dev_err(hdev, "mismatch event length (opcode 0x%4.4x)",
1900 le16_to_cpu(cmd->opcode));
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001901 kfree_skb(skb);
1902 return -EFAULT;
1903 }
1904
1905 if (memcmp(skb->data, evt_param, evt->plen)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001906 bt_dev_err(hdev, "mismatch event parameter (opcode 0x%4.4x)",
1907 le16_to_cpu(cmd->opcode));
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001908 kfree_skb(skb);
1909 return -EFAULT;
1910 }
1911 kfree_skb(skb);
1912
1913 return 0;
1914}
1915
1916static int btusb_setup_intel(struct hci_dev *hdev)
1917{
1918 struct sk_buff *skb;
1919 const struct firmware *fw;
1920 const u8 *fw_ptr;
Loic Poulain28dc4b92015-12-03 16:10:22 +01001921 int disable_patch, err;
Loic Poulain6c483de2015-12-06 16:18:34 +01001922 struct intel_version ver;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001923
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001924 BT_DBG("%s", hdev->name);
1925
1926 /* The controller has a bug with the first HCI command sent to it
1927 * returning number of completed commands as zero. This would stall the
1928 * command processing in the Bluetooth core.
1929 *
1930 * As a workaround, send HCI Reset command first which will reset the
1931 * number of completed commands and allow normal command processing
1932 * from now on.
1933 */
1934 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
1935 if (IS_ERR(skb)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02001936 bt_dev_err(hdev, "sending initial HCI reset command failed (%ld)",
1937 PTR_ERR(skb));
Adam Leed9c78e92013-07-10 10:02:12 +08001938 return PTR_ERR(skb);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001939 }
1940 kfree_skb(skb);
1941
1942 /* Read Intel specific controller version first to allow selection of
1943 * which firmware file to load.
1944 *
1945 * The returned information are hardware variant and revision plus
1946 * firmware variant, revision and build number.
1947 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001948 err = btintel_read_version(hdev, &ver);
1949 if (err)
1950 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001951
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001952 bt_dev_info(hdev, "read Intel version: %02x%02x%02x%02x%02x%02x%02x%02x%02x",
1953 ver.hw_platform, ver.hw_variant, ver.hw_revision,
1954 ver.fw_variant, ver.fw_revision, ver.fw_build_num,
1955 ver.fw_build_ww, ver.fw_build_yy, ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001956
1957 /* fw_patch_num indicates the version of patch the device currently
1958 * have. If there is no patch data in the device, it is always 0x00.
Minjune Kim5075eda2015-08-27 13:21:52 +09001959 * So, if it is other than 0x00, no need to patch the device again.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001960 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001961 if (ver.fw_patch_num) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01001962 bt_dev_info(hdev, "Intel device is already patched. "
1963 "patch num: %02x", ver.fw_patch_num);
Marcel Holtmann213445b2015-10-21 02:45:19 +02001964 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001965 }
1966
1967 /* Opens the firmware patch file based on the firmware version read
1968 * from the controller. If it fails to open the matching firmware
1969 * patch file, it tries to open the default firmware patch file.
1970 * If no patch file is found, allow the device to operate without
1971 * a patch.
1972 */
Loic Poulain6c483de2015-12-06 16:18:34 +01001973 fw = btusb_setup_intel_get_fw(hdev, &ver);
1974 if (!fw)
Marcel Holtmann213445b2015-10-21 02:45:19 +02001975 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001976 fw_ptr = fw->data;
1977
Loic Poulain28dc4b92015-12-03 16:10:22 +01001978 /* Enable the manufacturer mode of the controller.
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001979 * Only while this mode is enabled, the driver can download the
1980 * firmware patch data and configuration parameters.
1981 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01001982 err = btintel_enter_mfg(hdev);
1983 if (err) {
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001984 release_firmware(fw);
Loic Poulain28dc4b92015-12-03 16:10:22 +01001985 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001986 }
1987
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07001988 disable_patch = 1;
1989
1990 /* The firmware data file consists of list of Intel specific HCI
1991 * commands and its expected events. The first byte indicates the
1992 * type of the message, either HCI command or HCI event.
1993 *
1994 * It reads the command and its expected event from the firmware file,
1995 * and send to the controller. Once __hci_cmd_sync_ev() returns,
1996 * the returned event is compared with the event read from the firmware
1997 * file and it will continue until all the messages are downloaded to
1998 * the controller.
1999 *
2000 * Once the firmware patching is completed successfully,
2001 * the manufacturer mode is disabled with reset and activating the
2002 * downloaded patch.
2003 *
2004 * If the firmware patching fails, the manufacturer mode is
2005 * disabled with reset and deactivating the patch.
2006 *
2007 * If the default patch file is used, no reset is done when disabling
2008 * the manufacturer.
2009 */
2010 while (fw->size > fw_ptr - fw->data) {
2011 int ret;
2012
2013 ret = btusb_setup_intel_patching(hdev, fw, &fw_ptr,
2014 &disable_patch);
2015 if (ret < 0)
2016 goto exit_mfg_deactivate;
2017 }
2018
2019 release_firmware(fw);
2020
2021 if (disable_patch)
2022 goto exit_mfg_disable;
2023
2024 /* Patching completed successfully and disable the manufacturer mode
2025 * with reset and activate the downloaded firmware patches.
2026 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01002027 err = btintel_exit_mfg(hdev, true, true);
2028 if (err)
2029 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002030
Sukumar Ghorai905d7b12020-03-16 11:37:18 +05302031 /* Need build number for downloaded fw patches in
2032 * every power-on boot
2033 */
2034 err = btintel_read_version(hdev, &ver);
2035 if (err)
2036 return err;
2037 bt_dev_info(hdev, "Intel BT fw patch 0x%02x completed & activated",
2038 ver.fw_patch_num);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002039
Marcel Holtmann213445b2015-10-21 02:45:19 +02002040 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002041
2042exit_mfg_disable:
2043 /* Disable the manufacturer mode without reset */
Loic Poulain28dc4b92015-12-03 16:10:22 +01002044 err = btintel_exit_mfg(hdev, false, false);
2045 if (err)
2046 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002047
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002048 bt_dev_info(hdev, "Intel firmware patch completed");
Marcel Holtmann40cb0982014-07-02 12:06:45 +02002049
Marcel Holtmann213445b2015-10-21 02:45:19 +02002050 goto complete;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002051
2052exit_mfg_deactivate:
2053 release_firmware(fw);
2054
2055 /* Patching failed. Disable the manufacturer mode with reset and
2056 * deactivate the downloaded firmware patches.
2057 */
Loic Poulain28dc4b92015-12-03 16:10:22 +01002058 err = btintel_exit_mfg(hdev, true, false);
2059 if (err)
2060 return err;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002061
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002062 bt_dev_info(hdev, "Intel firmware patch completed and deactivated");
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002063
Marcel Holtmann213445b2015-10-21 02:45:19 +02002064complete:
2065 /* Set the event mask for Intel specific vendor events. This enables
2066 * a few extra events that are useful during general operation.
2067 */
2068 btintel_set_event_mask_mfg(hdev, false);
2069
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002070 btintel_check_bdaddr(hdev);
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07002071 return 0;
2072}
2073
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002074static int inject_cmd_complete(struct hci_dev *hdev, __u16 opcode)
2075{
2076 struct sk_buff *skb;
2077 struct hci_event_hdr *hdr;
2078 struct hci_ev_cmd_complete *evt;
2079
Jia-Ju Baicf07e342018-07-23 11:38:51 +08002080 skb = bt_skb_alloc(sizeof(*hdr) + sizeof(*evt) + 1, GFP_KERNEL);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002081 if (!skb)
2082 return -ENOMEM;
2083
Johannes Berg4df864c2017-06-16 14:29:21 +02002084 hdr = skb_put(skb, sizeof(*hdr));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002085 hdr->evt = HCI_EV_CMD_COMPLETE;
2086 hdr->plen = sizeof(*evt) + 1;
2087
Johannes Berg4df864c2017-06-16 14:29:21 +02002088 evt = skb_put(skb, sizeof(*evt));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002089 evt->ncmd = 0x01;
2090 evt->opcode = cpu_to_le16(opcode);
2091
Johannes Berg634fef62017-06-16 14:29:24 +02002092 skb_put_u8(skb, 0x00);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002093
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01002094 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002095
2096 return hci_recv_frame(hdev, skb);
2097}
2098
2099static int btusb_recv_bulk_intel(struct btusb_data *data, void *buffer,
2100 int count)
2101{
2102 /* When the device is in bootloader mode, then it can send
2103 * events via the bulk endpoint. These events are treated the
2104 * same way as the ones received from the interrupt endpoint.
2105 */
2106 if (test_bit(BTUSB_BOOTLOADER, &data->flags))
2107 return btusb_recv_intr(data, buffer, count);
2108
2109 return btusb_recv_bulk(data, buffer, count);
2110}
2111
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002112static void btusb_intel_bootup(struct btusb_data *data, const void *ptr,
2113 unsigned int len)
2114{
2115 const struct intel_bootup *evt = ptr;
2116
2117 if (len != sizeof(*evt))
2118 return;
2119
Andrea Parridff6d592018-11-27 12:22:25 +01002120 if (test_and_clear_bit(BTUSB_BOOTING, &data->flags))
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002121 wake_up_bit(&data->flags, BTUSB_BOOTING);
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002122}
2123
2124static void btusb_intel_secure_send_result(struct btusb_data *data,
2125 const void *ptr, unsigned int len)
2126{
2127 const struct intel_secure_send_result *evt = ptr;
2128
2129 if (len != sizeof(*evt))
2130 return;
2131
2132 if (evt->result)
2133 set_bit(BTUSB_FIRMWARE_FAILED, &data->flags);
2134
2135 if (test_and_clear_bit(BTUSB_DOWNLOADING, &data->flags) &&
Andrea Parridff6d592018-11-27 12:22:25 +01002136 test_bit(BTUSB_FIRMWARE_LOADED, &data->flags))
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002137 wake_up_bit(&data->flags, BTUSB_DOWNLOADING);
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002138}
2139
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002140static int btusb_recv_event_intel(struct hci_dev *hdev, struct sk_buff *skb)
2141{
2142 struct btusb_data *data = hci_get_drvdata(hdev);
2143
2144 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2145 struct hci_event_hdr *hdr = (void *)skb->data;
2146
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002147 if (skb->len > HCI_EVENT_HDR_SIZE && hdr->evt == 0xff &&
2148 hdr->plen > 0) {
2149 const void *ptr = skb->data + HCI_EVENT_HDR_SIZE + 1;
2150 unsigned int len = skb->len - HCI_EVENT_HDR_SIZE - 1;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002151
Marcel Holtmannccd6da22015-04-09 00:35:19 -07002152 switch (skb->data[2]) {
2153 case 0x02:
2154 /* When switching to the operational firmware
2155 * the device sends a vendor specific event
2156 * indicating that the bootup completed.
2157 */
2158 btusb_intel_bootup(data, ptr, len);
2159 break;
2160 case 0x06:
2161 /* When the firmware loading completes the
2162 * device sends out a vendor specific event
2163 * indicating the result of the firmware
2164 * loading.
2165 */
2166 btusb_intel_secure_send_result(data, ptr, len);
2167 break;
Johan Hedbergfad70972015-01-30 10:58:55 +02002168 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002169 }
2170 }
2171
2172 return hci_recv_frame(hdev, skb);
2173}
2174
2175static int btusb_send_frame_intel(struct hci_dev *hdev, struct sk_buff *skb)
2176{
2177 struct btusb_data *data = hci_get_drvdata(hdev);
2178 struct urb *urb;
2179
2180 BT_DBG("%s", hdev->name);
2181
Marcel Holtmann618e8bc2015-11-05 07:33:56 +01002182 switch (hci_skb_pkt_type(skb)) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002183 case HCI_COMMAND_PKT:
2184 if (test_bit(BTUSB_BOOTLOADER, &data->flags)) {
2185 struct hci_command_hdr *cmd = (void *)skb->data;
2186 __u16 opcode = le16_to_cpu(cmd->opcode);
2187
2188 /* When in bootloader mode and the command 0xfc09
2189 * is received, it needs to be send down the
2190 * bulk endpoint. So allocate a bulk URB instead.
2191 */
2192 if (opcode == 0xfc09)
2193 urb = alloc_bulk_urb(hdev, skb);
2194 else
2195 urb = alloc_ctrl_urb(hdev, skb);
2196
2197 /* When the 0xfc01 command is issued to boot into
2198 * the operational firmware, it will actually not
2199 * send a command complete event. To keep the flow
2200 * control working inject that event here.
2201 */
2202 if (opcode == 0xfc01)
2203 inject_cmd_complete(hdev, opcode);
2204 } else {
2205 urb = alloc_ctrl_urb(hdev, skb);
2206 }
2207 if (IS_ERR(urb))
2208 return PTR_ERR(urb);
2209
2210 hdev->stat.cmd_tx++;
2211 return submit_or_queue_tx_urb(hdev, urb);
2212
2213 case HCI_ACLDATA_PKT:
2214 urb = alloc_bulk_urb(hdev, skb);
2215 if (IS_ERR(urb))
2216 return PTR_ERR(urb);
2217
2218 hdev->stat.acl_tx++;
2219 return submit_or_queue_tx_urb(hdev, urb);
2220
2221 case HCI_SCODATA_PKT:
2222 if (hci_conn_num(hdev, SCO_LINK) < 1)
2223 return -ENODEV;
2224
2225 urb = alloc_isoc_urb(hdev, skb);
2226 if (IS_ERR(urb))
2227 return PTR_ERR(urb);
2228
2229 hdev->stat.sco_tx++;
2230 return submit_tx_urb(hdev, urb);
2231 }
2232
2233 return -EILSEQ;
2234}
2235
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302236static bool btusb_setup_intel_new_get_fw_name(struct intel_version *ver,
2237 struct intel_boot_params *params,
2238 char *fw_name, size_t len,
2239 const char *suffix)
2240{
2241 switch (ver->hw_variant) {
2242 case 0x0b: /* SfP */
2243 case 0x0c: /* WsP */
2244 snprintf(fw_name, len, "intel/ibt-%u-%u.%s",
2245 le16_to_cpu(ver->hw_variant),
2246 le16_to_cpu(params->dev_revid),
2247 suffix);
2248 break;
2249 case 0x11: /* JfP */
2250 case 0x12: /* ThP */
2251 case 0x13: /* HrP */
2252 case 0x14: /* CcP */
2253 snprintf(fw_name, len, "intel/ibt-%u-%u-%u.%s",
2254 le16_to_cpu(ver->hw_variant),
2255 le16_to_cpu(ver->hw_revision),
2256 le16_to_cpu(ver->fw_revision),
2257 suffix);
2258 break;
2259 default:
2260 return false;
2261 }
2262 return true;
2263}
2264
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002265static int btusb_setup_intel_new(struct hci_dev *hdev)
2266{
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002267 struct btusb_data *data = hci_get_drvdata(hdev);
Loic Poulain6c483de2015-12-06 16:18:34 +01002268 struct intel_version ver;
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002269 struct intel_boot_params params;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002270 const struct firmware *fw;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002271 u32 boot_param;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002272 char fwname[64];
2273 ktime_t calltime, delta, rettime;
2274 unsigned long long duration;
2275 int err;
2276
2277 BT_DBG("%s", hdev->name);
2278
Tedd Ho-Jeong An04d729b2018-01-24 09:19:19 -08002279 /* Set the default boot parameter to 0x0 and it is updated to
2280 * SKU specific boot parameter after reading Intel_Write_Boot_Params
2281 * command while downloading the firmware.
2282 */
2283 boot_param = 0x00000000;
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002284
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002285 calltime = ktime_get();
2286
2287 /* Read the Intel version information to determine if the device
2288 * is in bootloader mode or if it already has operational firmware
2289 * loaded.
2290 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002291 err = btintel_read_version(hdev, &ver);
Amit K Bagb9a25622019-10-17 13:52:29 +05302292 if (err) {
2293 bt_dev_err(hdev, "Intel Read version failed (%d)", err);
2294 btintel_reset_to_bootloader(hdev);
Loic Poulain6c483de2015-12-06 16:18:34 +01002295 return err;
Amit K Bagb9a25622019-10-17 13:52:29 +05302296 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002297
2298 /* The hardware platform number has a fixed value of 0x37 and
2299 * for now only accept this single value.
2300 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002301 if (ver.hw_platform != 0x37) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002302 bt_dev_err(hdev, "Unsupported Intel hardware platform (%u)",
2303 ver.hw_platform);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002304 return -EINVAL;
2305 }
2306
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002307 /* Check for supported iBT hardware variants of this firmware
2308 * loading method.
Tedd Ho-Jeong Ana0af53b2016-05-06 11:53:46 -07002309 *
2310 * This check has been put in place to ensure correct forward
2311 * compatibility options when newer hardware variants come along.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002312 */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002313 switch (ver.hw_variant) {
2314 case 0x0b: /* SfP */
2315 case 0x0c: /* WsP */
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002316 case 0x11: /* JfP */
Marcel Holtmannde766142017-03-06 15:38:28 -08002317 case 0x12: /* ThP */
Tedd Ho-Jeong An1ce0cec2018-02-05 14:20:36 -08002318 case 0x13: /* HrP */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302319 case 0x14: /* CcP */
Tedd Ho-Jeong An92688342017-03-06 15:38:26 -08002320 break;
2321 default:
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002322 bt_dev_err(hdev, "Unsupported Intel hardware variant (%u)",
2323 ver.hw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002324 return -EINVAL;
2325 }
2326
Loic Poulain6c483de2015-12-06 16:18:34 +01002327 btintel_version_info(hdev, &ver);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002328
2329 /* The firmware variant determines if the device is in bootloader
2330 * mode or is running operational firmware. The value 0x06 identifies
2331 * the bootloader and the value 0x23 identifies the operational
2332 * firmware.
2333 *
2334 * When the operational firmware is already present, then only
2335 * the check for valid Bluetooth device address is needed. This
2336 * determines if the device will be added as configured or
2337 * unconfigured controller.
2338 *
2339 * It is not possible to use the Secure Boot Parameters in this
2340 * case since that command is only available in bootloader mode.
2341 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002342 if (ver.fw_variant == 0x23) {
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002343 clear_bit(BTUSB_BOOTLOADER, &data->flags);
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07002344 btintel_check_bdaddr(hdev);
Marcel Holtmann7fd673b2020-04-03 21:44:02 +02002345 goto finish;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002346 }
2347
2348 /* If the device is not in bootloader mode, then the only possible
2349 * choice is to return an error and abort the device initialization.
2350 */
Loic Poulain6c483de2015-12-06 16:18:34 +01002351 if (ver.fw_variant != 0x06) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002352 bt_dev_err(hdev, "Unsupported Intel firmware variant (%u)",
2353 ver.fw_variant);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002354 return -ENODEV;
2355 }
2356
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002357 /* Read the secure boot parameters to identify the operating
2358 * details of the bootloader.
2359 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002360 err = btintel_read_boot_params(hdev, &params);
2361 if (err)
2362 return err;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002363
2364 /* It is required that every single firmware fragment is acknowledged
2365 * with a command complete event. If the boot parameters indicate
2366 * that this bootloader does not send them, then abort the setup.
2367 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002368 if (params.limited_cce != 0x00) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002369 bt_dev_err(hdev, "Unsupported Intel firmware loading method (%u)",
2370 params.limited_cce);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002371 return -EINVAL;
2372 }
2373
2374 /* If the OTP has no valid Bluetooth device address, then there will
2375 * also be no valid address for the operational firmware.
2376 */
Tedd Ho-Jeong Anfaf174d2018-01-24 09:19:20 -08002377 if (!bacmp(&params.otp_bdaddr, BDADDR_ANY)) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002378 bt_dev_info(hdev, "No device address configured");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002379 set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
2380 }
2381
2382 /* With this Intel bootloader only the hardware variant and device
Jaya P Gaf3715e2017-10-30 11:01:22 +01002383 * revision information are used to select the right firmware for SfP
2384 * and WsP.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002385 *
Tedd Ho-Jeong An230b04a2016-06-28 08:56:39 -07002386 * The firmware filename is ibt-<hw_variant>-<dev_revid>.sfi.
2387 *
2388 * Currently the supported hardware variants are:
2389 * 11 (0x0b) for iBT3.0 (LnP/SfP)
2390 * 12 (0x0c) for iBT3.5 (WsP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002391 *
2392 * For ThP/JfP and for future SKU's, the FW name varies based on HW
2393 * variant, HW revision and FW revision, as these are dependent on CNVi
2394 * and RF Combination.
2395 *
Tedd Ho-Jeong An86a61292017-05-01 13:35:12 -07002396 * 17 (0x11) for iBT3.5 (JfP)
2397 * 18 (0x12) for iBT3.5 (ThP)
Jaya P Gaf3715e2017-10-30 11:01:22 +01002398 *
2399 * The firmware file name for these will be
2400 * ibt-<hw_variant>-<hw_revision>-<fw_revision>.sfi.
2401 *
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002402 */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302403 err = btusb_setup_intel_new_get_fw_name(&ver, &params, fwname,
2404 sizeof(fwname), "sfi");
2405 if (!err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002406 bt_dev_err(hdev, "Unsupported Intel firmware naming");
Jaya P Gaf3715e2017-10-30 11:01:22 +01002407 return -EINVAL;
2408 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002409
2410 err = request_firmware(&fw, fwname, &hdev->dev);
2411 if (err < 0) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002412 bt_dev_err(hdev, "Failed to load Intel firmware file (%d)", err);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002413 return err;
2414 }
2415
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002416 bt_dev_info(hdev, "Found device firmware: %s", fwname);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002417
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002418 /* Save the DDC file name for later use to apply once the firmware
2419 * downloading is done.
2420 */
Raghuram Hegde2da711bc2018-12-19 11:42:18 +05302421 err = btusb_setup_intel_new_get_fw_name(&ver, &params, fwname,
2422 sizeof(fwname), "ddc");
2423 if (!err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002424 bt_dev_err(hdev, "Unsupported Intel firmware naming");
Jaya P Gaf3715e2017-10-30 11:01:22 +01002425 return -EINVAL;
2426 }
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002427
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002428 if (fw->size < 644) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002429 bt_dev_err(hdev, "Invalid size of firmware file (%zu)",
2430 fw->size);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002431 err = -EBADF;
2432 goto done;
2433 }
2434
2435 set_bit(BTUSB_DOWNLOADING, &data->flags);
2436
Tedd Ho-Jeong Anfbbe83c2018-01-24 09:19:21 -08002437 /* Start firmware downloading and get boot parameter */
2438 err = btintel_download_firmware(hdev, fw, &boot_param);
Amit K Bagb9a25622019-10-17 13:52:29 +05302439 if (err < 0) {
2440 /* When FW download fails, send Intel Reset to retry
2441 * FW download.
2442 */
2443 btintel_reset_to_bootloader(hdev);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002444 goto done;
Amit K Bagb9a25622019-10-17 13:52:29 +05302445 }
Marcel Holtmannce6bb922015-01-28 01:58:40 -08002446 set_bit(BTUSB_FIRMWARE_LOADED, &data->flags);
2447
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002448 bt_dev_info(hdev, "Waiting for firmware download to complete");
Johan Hedberga087a982015-01-30 10:58:54 +02002449
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002450 /* Before switching the device into operational mode and with that
2451 * booting the loaded firmware, wait for the bootloader notification
2452 * that all fragments have been successfully received.
2453 *
Johan Hedberga087a982015-01-30 10:58:54 +02002454 * When the event processing receives the notification, then the
2455 * BTUSB_DOWNLOADING flag will be cleared.
2456 *
2457 * The firmware loading should not take longer than 5 seconds
2458 * and thus just timeout if that happens and fail the setup
2459 * of this device.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002460 */
Johan Hedberg129a7692015-02-14 09:33:35 +02002461 err = wait_on_bit_timeout(&data->flags, BTUSB_DOWNLOADING,
2462 TASK_INTERRUPTIBLE,
2463 msecs_to_jiffies(5000));
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002464 if (err == -EINTR) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002465 bt_dev_err(hdev, "Firmware loading interrupted");
Johan Hedberga087a982015-01-30 10:58:54 +02002466 goto done;
2467 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002468
Johan Hedberga087a982015-01-30 10:58:54 +02002469 if (err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002470 bt_dev_err(hdev, "Firmware loading timeout");
Johan Hedberga087a982015-01-30 10:58:54 +02002471 err = -ETIMEDOUT;
Amit K Bagb9a25622019-10-17 13:52:29 +05302472 btintel_reset_to_bootloader(hdev);
Johan Hedberga087a982015-01-30 10:58:54 +02002473 goto done;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002474 }
2475
2476 if (test_bit(BTUSB_FIRMWARE_FAILED, &data->flags)) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002477 bt_dev_err(hdev, "Firmware loading failed");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002478 err = -ENOEXEC;
2479 goto done;
2480 }
2481
2482 rettime = ktime_get();
2483 delta = ktime_sub(rettime, calltime);
2484 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2485
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002486 bt_dev_info(hdev, "Firmware loaded in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002487
2488done:
2489 release_firmware(fw);
2490
2491 if (err < 0)
2492 return err;
2493
2494 calltime = ktime_get();
2495
2496 set_bit(BTUSB_BOOTING, &data->flags);
2497
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002498 err = btintel_send_intel_reset(hdev, boot_param);
Amit K Bagb9a25622019-10-17 13:52:29 +05302499 if (err) {
2500 bt_dev_err(hdev, "Intel Soft Reset failed (%d)", err);
2501 btintel_reset_to_bootloader(hdev);
Tedd Ho-Jeong Ane5889af2018-01-24 09:19:18 -08002502 return err;
Amit K Bagb9a25622019-10-17 13:52:29 +05302503 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002504
2505 /* The bootloader will not indicate when the device is ready. This
2506 * is done by the operational firmware sending bootup notification.
Johan Hedbergfad70972015-01-30 10:58:55 +02002507 *
2508 * Booting into operational firmware should not take longer than
2509 * 1 second. However if that happens, then just fail the setup
2510 * since something went wrong.
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002511 */
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002512 bt_dev_info(hdev, "Waiting for device to boot");
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002513
Johan Hedberg129a7692015-02-14 09:33:35 +02002514 err = wait_on_bit_timeout(&data->flags, BTUSB_BOOTING,
2515 TASK_INTERRUPTIBLE,
2516 msecs_to_jiffies(1000));
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002517
Bart Van Asschef0a70a02016-08-11 16:02:44 -07002518 if (err == -EINTR) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002519 bt_dev_err(hdev, "Device boot interrupted");
Johan Hedbergfad70972015-01-30 10:58:55 +02002520 return -EINTR;
2521 }
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002522
Johan Hedbergfad70972015-01-30 10:58:55 +02002523 if (err) {
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002524 bt_dev_err(hdev, "Device boot timeout");
Amit K Bagb9a25622019-10-17 13:52:29 +05302525 btintel_reset_to_bootloader(hdev);
Johan Hedbergfad70972015-01-30 10:58:55 +02002526 return -ETIMEDOUT;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002527 }
2528
2529 rettime = ktime_get();
2530 delta = ktime_sub(rettime, calltime);
2531 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
2532
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002533 bt_dev_info(hdev, "Device booted in %llu usecs", duration);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002534
2535 clear_bit(BTUSB_BOOTLOADER, &data->flags);
2536
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002537 /* Once the device is running in operational mode, it needs to apply
2538 * the device configuration (DDC) parameters.
2539 *
2540 * The device can work without DDC parameters, so even if it fails
2541 * to load the file, no need to fail the setup.
2542 */
Loic Poulaine924d3d2015-09-04 17:54:36 +02002543 btintel_load_ddc_config(hdev, fwname);
Tedd Ho-Jeong An52cc9162015-06-12 16:20:05 -07002544
Marcel Holtmann7fd673b2020-04-03 21:44:02 +02002545 /* Read the Intel version information after loading the FW */
2546 err = btintel_read_version(hdev, &ver);
2547 if (err)
2548 return err;
2549
2550 btintel_version_info(hdev, &ver);
2551
2552finish:
Miao-chen Choufc045902020-04-03 21:44:03 +02002553 /* All Intel controllers that support the Microsoft vendor
2554 * extension are using 0xFC1E for VsMsftOpCode.
2555 */
2556 switch (ver.hw_variant) {
2557 case 0x12: /* ThP */
2558 hci_set_msft_opcode(hdev, 0xFC1E);
2559 break;
2560 }
2561
Marcel Holtmann213445b2015-10-21 02:45:19 +02002562 /* Set the event mask for Intel specific vendor events. This enables
2563 * a few extra events that are useful during general operation. It
2564 * does not enable any debugging related events.
2565 *
2566 * The device will function correctly without these events enabled
2567 * and thus no need to fail the setup.
2568 */
2569 btintel_set_event_mask(hdev, false);
2570
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08002571 return 0;
2572}
2573
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002574static int btusb_shutdown_intel(struct hci_dev *hdev)
2575{
2576 struct sk_buff *skb;
2577 long ret;
2578
Amit K Bag1313bcc2018-08-03 12:43:20 +05302579 /* In the shutdown sequence where Bluetooth is turned off followed
2580 * by WiFi being turned off, turning WiFi back on causes issue with
2581 * the RF calibration.
2582 *
2583 * To ensure that any RF activity has been stopped, issue HCI Reset
2584 * command to clear all ongoing activity including advertising,
2585 * scanning etc.
2586 */
2587 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2588 if (IS_ERR(skb)) {
2589 ret = PTR_ERR(skb);
2590 bt_dev_err(hdev, "HCI reset during shutdown failed");
2591 return ret;
2592 }
2593 kfree_skb(skb);
2594
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002595 /* Some platforms have an issue with BT LED when the interface is
2596 * down or BT radio is turned off, which takes 5 seconds to BT LED
2597 * goes off. This command turns off the BT LED immediately.
2598 */
2599 skb = __hci_cmd_sync(hdev, 0xfc3f, 0, NULL, HCI_INIT_TIMEOUT);
2600 if (IS_ERR(skb)) {
2601 ret = PTR_ERR(skb);
Marcel Holtmann85418fe2018-08-03 11:20:49 +02002602 bt_dev_err(hdev, "turning off Intel device LED failed");
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08002603 return ret;
2604 }
2605 kfree_skb(skb);
2606
2607 return 0;
2608}
2609
Raghuram Hegde017a01c2019-01-29 17:54:48 +05302610static int btusb_shutdown_intel_new(struct hci_dev *hdev)
2611{
2612 struct sk_buff *skb;
2613
2614 /* Send HCI Reset to the controller to stop any BT activity which
2615 * were triggered. This will help to save power and maintain the
2616 * sync b/w Host and controller
2617 */
2618 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL, HCI_INIT_TIMEOUT);
2619 if (IS_ERR(skb)) {
2620 bt_dev_err(hdev, "HCI reset during shutdown failed");
2621 return PTR_ERR(skb);
2622 }
2623 kfree_skb(skb);
2624
2625 return 0;
2626}
2627
Sean Wang9ce67c32019-06-02 08:02:49 +08002628#define FIRMWARE_MT7663 "mediatek/mt7663pr2h.bin"
Sean Wanga1c49c432019-06-02 08:02:48 +08002629#define FIRMWARE_MT7668 "mediatek/mt7668pr2h.bin"
2630
2631#define HCI_WMT_MAX_EVENT_SIZE 64
2632
2633enum {
2634 BTMTK_WMT_PATCH_DWNLD = 0x1,
2635 BTMTK_WMT_FUNC_CTRL = 0x6,
2636 BTMTK_WMT_RST = 0x7,
2637 BTMTK_WMT_SEMAPHORE = 0x17,
2638};
2639
2640enum {
2641 BTMTK_WMT_INVALID,
2642 BTMTK_WMT_PATCH_UNDONE,
2643 BTMTK_WMT_PATCH_DONE,
2644 BTMTK_WMT_ON_UNDONE,
2645 BTMTK_WMT_ON_DONE,
2646 BTMTK_WMT_ON_PROGRESS,
2647};
2648
2649struct btmtk_wmt_hdr {
2650 u8 dir;
2651 u8 op;
2652 __le16 dlen;
2653 u8 flag;
2654} __packed;
2655
2656struct btmtk_hci_wmt_cmd {
2657 struct btmtk_wmt_hdr hdr;
2658 u8 data[256];
2659} __packed;
2660
2661struct btmtk_hci_wmt_evt {
2662 struct hci_event_hdr hhdr;
2663 struct btmtk_wmt_hdr whdr;
2664} __packed;
2665
2666struct btmtk_hci_wmt_evt_funcc {
2667 struct btmtk_hci_wmt_evt hwhdr;
2668 __be16 status;
2669} __packed;
2670
2671struct btmtk_tci_sleep {
2672 u8 mode;
2673 __le16 duration;
2674 __le16 host_duration;
2675 u8 host_wakeup_pin;
2676 u8 time_compensation;
2677} __packed;
2678
2679struct btmtk_hci_wmt_params {
2680 u8 op;
2681 u8 flag;
2682 u16 dlen;
2683 const void *data;
2684 u32 *status;
2685};
2686
2687static void btusb_mtk_wmt_recv(struct urb *urb)
2688{
2689 struct hci_dev *hdev = urb->context;
2690 struct btusb_data *data = hci_get_drvdata(hdev);
2691 struct hci_event_hdr *hdr;
2692 struct sk_buff *skb;
2693 int err;
2694
2695 if (urb->status == 0 && urb->actual_length > 0) {
2696 hdev->stat.byte_rx += urb->actual_length;
2697
2698 /* WMT event shouldn't be fragmented and the size should be
2699 * less than HCI_WMT_MAX_EVENT_SIZE.
2700 */
2701 skb = bt_skb_alloc(HCI_WMT_MAX_EVENT_SIZE, GFP_ATOMIC);
2702 if (!skb) {
2703 hdev->stat.err_rx++;
2704 goto err_out;
2705 }
2706
2707 hci_skb_pkt_type(skb) = HCI_EVENT_PKT;
2708 skb_put_data(skb, urb->transfer_buffer, urb->actual_length);
2709
2710 hdr = (void *)skb->data;
2711 /* Fix up the vendor event id with 0xff for vendor specific
2712 * instead of 0xe4 so that event send via monitoring socket can
2713 * be parsed properly.
2714 */
2715 hdr->evt = 0xff;
2716
2717 /* When someone waits for the WMT event, the skb is being cloned
2718 * and being processed the events from there then.
2719 */
2720 if (test_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags)) {
Johan Hovold22cc6b72019-11-28 19:24:27 +01002721 data->evt_skb = skb_clone(skb, GFP_ATOMIC);
Sean Wanga1c49c432019-06-02 08:02:48 +08002722 if (!data->evt_skb)
2723 goto err_out;
2724 }
2725
2726 err = hci_recv_frame(hdev, skb);
2727 if (err < 0)
2728 goto err_free_skb;
2729
2730 if (test_and_clear_bit(BTUSB_TX_WAIT_VND_EVT,
2731 &data->flags)) {
2732 /* Barrier to sync with other CPUs */
2733 smp_mb__after_atomic();
2734 wake_up_bit(&data->flags,
2735 BTUSB_TX_WAIT_VND_EVT);
2736 }
2737err_out:
2738 return;
2739err_free_skb:
2740 kfree_skb(data->evt_skb);
2741 data->evt_skb = NULL;
2742 return;
2743 } else if (urb->status == -ENOENT) {
2744 /* Avoid suspend failed when usb_kill_urb */
2745 return;
2746 }
2747
2748 usb_mark_last_busy(data->udev);
2749
2750 /* The URB complete handler is still called with urb->actual_length = 0
2751 * when the event is not available, so we should keep re-submitting
2752 * URB until WMT event returns, Also, It's necessary to wait some time
2753 * between the two consecutive control URBs to relax the target device
2754 * to generate the event. Otherwise, the WMT event cannot return from
2755 * the device successfully.
2756 */
2757 udelay(100);
2758
2759 usb_anchor_urb(urb, &data->ctrl_anchor);
2760 err = usb_submit_urb(urb, GFP_ATOMIC);
2761 if (err < 0) {
2762 /* -EPERM: urb is being killed;
2763 * -ENODEV: device got disconnected
2764 */
2765 if (err != -EPERM && err != -ENODEV)
2766 bt_dev_err(hdev, "urb %p failed to resubmit (%d)",
2767 urb, -err);
2768 usb_unanchor_urb(urb);
2769 }
2770}
2771
2772static int btusb_mtk_submit_wmt_recv_urb(struct hci_dev *hdev)
2773{
2774 struct btusb_data *data = hci_get_drvdata(hdev);
2775 struct usb_ctrlrequest *dr;
2776 unsigned char *buf;
2777 int err, size = 64;
2778 unsigned int pipe;
2779 struct urb *urb;
2780
2781 urb = usb_alloc_urb(0, GFP_KERNEL);
2782 if (!urb)
2783 return -ENOMEM;
2784
2785 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
2786 if (!dr) {
2787 usb_free_urb(urb);
2788 return -ENOMEM;
2789 }
2790
2791 dr->bRequestType = USB_TYPE_VENDOR | USB_DIR_IN;
2792 dr->bRequest = 1;
2793 dr->wIndex = cpu_to_le16(0);
2794 dr->wValue = cpu_to_le16(48);
2795 dr->wLength = cpu_to_le16(size);
2796
2797 buf = kmalloc(size, GFP_KERNEL);
2798 if (!buf) {
2799 kfree(dr);
2800 return -ENOMEM;
2801 }
2802
2803 pipe = usb_rcvctrlpipe(data->udev, 0);
2804
2805 usb_fill_control_urb(urb, data->udev, pipe, (void *)dr,
2806 buf, size, btusb_mtk_wmt_recv, hdev);
2807
2808 urb->transfer_flags |= URB_FREE_BUFFER;
2809
2810 usb_anchor_urb(urb, &data->ctrl_anchor);
2811 err = usb_submit_urb(urb, GFP_KERNEL);
2812 if (err < 0) {
2813 if (err != -EPERM && err != -ENODEV)
2814 bt_dev_err(hdev, "urb %p submission failed (%d)",
2815 urb, -err);
2816 usb_unanchor_urb(urb);
2817 }
2818
2819 usb_free_urb(urb);
2820
2821 return err;
2822}
2823
2824static int btusb_mtk_hci_wmt_sync(struct hci_dev *hdev,
2825 struct btmtk_hci_wmt_params *wmt_params)
2826{
2827 struct btusb_data *data = hci_get_drvdata(hdev);
2828 struct btmtk_hci_wmt_evt_funcc *wmt_evt_funcc;
2829 u32 hlen, status = BTMTK_WMT_INVALID;
2830 struct btmtk_hci_wmt_evt *wmt_evt;
2831 struct btmtk_hci_wmt_cmd wc;
2832 struct btmtk_wmt_hdr *hdr;
2833 int err;
2834
2835 /* Submit control IN URB on demand to process the WMT event */
2836 err = btusb_mtk_submit_wmt_recv_urb(hdev);
2837 if (err < 0)
2838 return err;
2839
2840 /* Send the WMT command and wait until the WMT event returns */
2841 hlen = sizeof(*hdr) + wmt_params->dlen;
2842 if (hlen > 255)
2843 return -EINVAL;
2844
2845 hdr = (struct btmtk_wmt_hdr *)&wc;
2846 hdr->dir = 1;
2847 hdr->op = wmt_params->op;
2848 hdr->dlen = cpu_to_le16(wmt_params->dlen + 1);
2849 hdr->flag = wmt_params->flag;
2850 memcpy(wc.data, wmt_params->data, wmt_params->dlen);
2851
2852 set_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
2853
2854 err = __hci_cmd_send(hdev, 0xfc6f, hlen, &wc);
2855
2856 if (err < 0) {
2857 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
2858 return err;
2859 }
2860
2861 /* The vendor specific WMT commands are all answered by a vendor
2862 * specific event and will have the Command Status or Command
2863 * Complete as with usual HCI command flow control.
2864 *
2865 * After sending the command, wait for BTUSB_TX_WAIT_VND_EVT
2866 * state to be cleared. The driver specific event receive routine
2867 * will clear that state and with that indicate completion of the
2868 * WMT command.
2869 */
2870 err = wait_on_bit_timeout(&data->flags, BTUSB_TX_WAIT_VND_EVT,
2871 TASK_INTERRUPTIBLE, HCI_INIT_TIMEOUT);
2872 if (err == -EINTR) {
2873 bt_dev_err(hdev, "Execution of wmt command interrupted");
2874 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
2875 return err;
2876 }
2877
2878 if (err) {
2879 bt_dev_err(hdev, "Execution of wmt command timed out");
2880 clear_bit(BTUSB_TX_WAIT_VND_EVT, &data->flags);
2881 return -ETIMEDOUT;
2882 }
2883
2884 /* Parse and handle the return WMT event */
2885 wmt_evt = (struct btmtk_hci_wmt_evt *)data->evt_skb->data;
2886 if (wmt_evt->whdr.op != hdr->op) {
2887 bt_dev_err(hdev, "Wrong op received %d expected %d",
2888 wmt_evt->whdr.op, hdr->op);
2889 err = -EIO;
2890 goto err_free_skb;
2891 }
2892
2893 switch (wmt_evt->whdr.op) {
2894 case BTMTK_WMT_SEMAPHORE:
2895 if (wmt_evt->whdr.flag == 2)
2896 status = BTMTK_WMT_PATCH_UNDONE;
2897 else
2898 status = BTMTK_WMT_PATCH_DONE;
2899 break;
2900 case BTMTK_WMT_FUNC_CTRL:
2901 wmt_evt_funcc = (struct btmtk_hci_wmt_evt_funcc *)wmt_evt;
2902 if (be16_to_cpu(wmt_evt_funcc->status) == 0x404)
2903 status = BTMTK_WMT_ON_DONE;
2904 else if (be16_to_cpu(wmt_evt_funcc->status) == 0x420)
2905 status = BTMTK_WMT_ON_PROGRESS;
2906 else
2907 status = BTMTK_WMT_ON_UNDONE;
2908 break;
2909 }
2910
2911 if (wmt_params->status)
2912 *wmt_params->status = status;
2913
2914err_free_skb:
2915 kfree_skb(data->evt_skb);
2916 data->evt_skb = NULL;
2917
2918 return err;
2919}
2920
2921static int btusb_mtk_setup_firmware(struct hci_dev *hdev, const char *fwname)
2922{
2923 struct btmtk_hci_wmt_params wmt_params;
2924 const struct firmware *fw;
2925 const u8 *fw_ptr;
2926 size_t fw_size;
2927 int err, dlen;
2928 u8 flag;
2929
2930 err = request_firmware(&fw, fwname, &hdev->dev);
2931 if (err < 0) {
2932 bt_dev_err(hdev, "Failed to load firmware file (%d)", err);
2933 return err;
2934 }
2935
2936 fw_ptr = fw->data;
2937 fw_size = fw->size;
2938
2939 /* The size of patch header is 30 bytes, should be skip */
Wei Yongjun5ee63102019-07-10 06:12:22 +00002940 if (fw_size < 30) {
2941 err = -EINVAL;
Sean Wanga1c49c432019-06-02 08:02:48 +08002942 goto err_release_fw;
Wei Yongjun5ee63102019-07-10 06:12:22 +00002943 }
Sean Wanga1c49c432019-06-02 08:02:48 +08002944
2945 fw_size -= 30;
2946 fw_ptr += 30;
2947 flag = 1;
2948
2949 wmt_params.op = BTMTK_WMT_PATCH_DWNLD;
2950 wmt_params.status = NULL;
2951
2952 while (fw_size > 0) {
2953 dlen = min_t(int, 250, fw_size);
2954
2955 /* Tell deivice the position in sequence */
2956 if (fw_size - dlen <= 0)
2957 flag = 3;
2958 else if (fw_size < fw->size - 30)
2959 flag = 2;
2960
2961 wmt_params.flag = flag;
2962 wmt_params.dlen = dlen;
2963 wmt_params.data = fw_ptr;
2964
2965 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
2966 if (err < 0) {
2967 bt_dev_err(hdev, "Failed to send wmt patch dwnld (%d)",
2968 err);
2969 goto err_release_fw;
2970 }
2971
2972 fw_size -= dlen;
2973 fw_ptr += dlen;
2974 }
2975
2976 wmt_params.op = BTMTK_WMT_RST;
2977 wmt_params.flag = 4;
2978 wmt_params.dlen = 0;
2979 wmt_params.data = NULL;
2980 wmt_params.status = NULL;
2981
2982 /* Activate funciton the firmware providing to */
2983 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
2984 if (err < 0) {
2985 bt_dev_err(hdev, "Failed to send wmt rst (%d)", err);
Colin Ian King3168c192019-11-29 17:36:35 +00002986 goto err_release_fw;
Sean Wanga1c49c432019-06-02 08:02:48 +08002987 }
2988
2989 /* Wait a few moments for firmware activation done */
2990 usleep_range(10000, 12000);
2991
2992err_release_fw:
2993 release_firmware(fw);
2994
2995 return err;
2996}
2997
2998static int btusb_mtk_func_query(struct hci_dev *hdev)
2999{
3000 struct btmtk_hci_wmt_params wmt_params;
3001 int status, err;
3002 u8 param = 0;
3003
3004 /* Query whether the function is enabled */
3005 wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3006 wmt_params.flag = 4;
3007 wmt_params.dlen = sizeof(param);
3008 wmt_params.data = &param;
3009 wmt_params.status = &status;
3010
3011 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3012 if (err < 0) {
3013 bt_dev_err(hdev, "Failed to query function status (%d)", err);
3014 return err;
3015 }
3016
3017 return status;
3018}
3019
3020static int btusb_mtk_reg_read(struct btusb_data *data, u32 reg, u32 *val)
3021{
3022 int pipe, err, size = sizeof(u32);
3023 void *buf;
3024
3025 buf = kzalloc(size, GFP_KERNEL);
3026 if (!buf)
3027 return -ENOMEM;
3028
3029 pipe = usb_rcvctrlpipe(data->udev, 0);
3030 err = usb_control_msg(data->udev, pipe, 0x63,
3031 USB_TYPE_VENDOR | USB_DIR_IN,
3032 reg >> 16, reg & 0xffff,
3033 buf, size, USB_CTRL_SET_TIMEOUT);
3034 if (err < 0)
3035 goto err_free_buf;
3036
3037 *val = get_unaligned_le32(buf);
3038
3039err_free_buf:
3040 kfree(buf);
3041
3042 return err;
3043}
3044
3045static int btusb_mtk_id_get(struct btusb_data *data, u32 *id)
3046{
3047 return btusb_mtk_reg_read(data, 0x80000008, id);
3048}
3049
3050static int btusb_mtk_setup(struct hci_dev *hdev)
3051{
3052 struct btusb_data *data = hci_get_drvdata(hdev);
3053 struct btmtk_hci_wmt_params wmt_params;
3054 ktime_t calltime, delta, rettime;
3055 struct btmtk_tci_sleep tci_sleep;
3056 unsigned long long duration;
3057 struct sk_buff *skb;
3058 const char *fwname;
3059 int err, status;
3060 u32 dev_id;
3061 u8 param;
3062
3063 calltime = ktime_get();
3064
3065 err = btusb_mtk_id_get(data, &dev_id);
3066 if (err < 0) {
3067 bt_dev_err(hdev, "Failed to get device id (%d)", err);
3068 return err;
3069 }
3070
3071 switch (dev_id) {
Sean Wang9ce67c32019-06-02 08:02:49 +08003072 case 0x7663:
3073 fwname = FIRMWARE_MT7663;
3074 break;
Sean Wanga1c49c432019-06-02 08:02:48 +08003075 case 0x7668:
3076 fwname = FIRMWARE_MT7668;
3077 break;
3078 default:
3079 bt_dev_err(hdev, "Unsupported support hardware variant (%08x)",
3080 dev_id);
3081 return -ENODEV;
3082 }
3083
3084 /* Query whether the firmware is already download */
3085 wmt_params.op = BTMTK_WMT_SEMAPHORE;
3086 wmt_params.flag = 1;
3087 wmt_params.dlen = 0;
3088 wmt_params.data = NULL;
3089 wmt_params.status = &status;
3090
3091 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3092 if (err < 0) {
3093 bt_dev_err(hdev, "Failed to query firmware status (%d)", err);
3094 return err;
3095 }
3096
3097 if (status == BTMTK_WMT_PATCH_DONE) {
3098 bt_dev_info(hdev, "firmware already downloaded");
3099 goto ignore_setup_fw;
3100 }
3101
3102 /* Setup a firmware which the device definitely requires */
3103 err = btusb_mtk_setup_firmware(hdev, fwname);
3104 if (err < 0)
3105 return err;
3106
3107ignore_setup_fw:
3108 err = readx_poll_timeout(btusb_mtk_func_query, hdev, status,
3109 status < 0 || status != BTMTK_WMT_ON_PROGRESS,
3110 2000, 5000000);
3111 /* -ETIMEDOUT happens */
3112 if (err < 0)
3113 return err;
3114
3115 /* The other errors happen in btusb_mtk_func_query */
3116 if (status < 0)
3117 return status;
3118
3119 if (status == BTMTK_WMT_ON_DONE) {
3120 bt_dev_info(hdev, "function already on");
3121 goto ignore_func_on;
3122 }
3123
3124 /* Enable Bluetooth protocol */
3125 param = 1;
3126 wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3127 wmt_params.flag = 0;
3128 wmt_params.dlen = sizeof(param);
3129 wmt_params.data = &param;
3130 wmt_params.status = NULL;
3131
3132 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3133 if (err < 0) {
3134 bt_dev_err(hdev, "Failed to send wmt func ctrl (%d)", err);
3135 return err;
3136 }
3137
3138ignore_func_on:
3139 /* Apply the low power environment setup */
3140 tci_sleep.mode = 0x5;
3141 tci_sleep.duration = cpu_to_le16(0x640);
3142 tci_sleep.host_duration = cpu_to_le16(0x640);
3143 tci_sleep.host_wakeup_pin = 0;
3144 tci_sleep.time_compensation = 0;
3145
3146 skb = __hci_cmd_sync(hdev, 0xfc7a, sizeof(tci_sleep), &tci_sleep,
3147 HCI_INIT_TIMEOUT);
3148 if (IS_ERR(skb)) {
3149 err = PTR_ERR(skb);
3150 bt_dev_err(hdev, "Failed to apply low power setting (%d)", err);
3151 return err;
3152 }
3153 kfree_skb(skb);
3154
3155 rettime = ktime_get();
3156 delta = ktime_sub(rettime, calltime);
3157 duration = (unsigned long long)ktime_to_ns(delta) >> 10;
3158
3159 bt_dev_info(hdev, "Device setup in %llu usecs", duration);
3160
3161 return 0;
3162}
3163
3164static int btusb_mtk_shutdown(struct hci_dev *hdev)
3165{
3166 struct btmtk_hci_wmt_params wmt_params;
3167 u8 param = 0;
3168 int err;
3169
3170 /* Disable the device */
3171 wmt_params.op = BTMTK_WMT_FUNC_CTRL;
3172 wmt_params.flag = 0;
3173 wmt_params.dlen = sizeof(param);
3174 wmt_params.data = &param;
3175 wmt_params.status = NULL;
3176
3177 err = btusb_mtk_hci_wmt_sync(hdev, &wmt_params);
3178 if (err < 0) {
3179 bt_dev_err(hdev, "Failed to send wmt func ctrl (%d)", err);
3180 return err;
3181 }
3182
3183 return 0;
3184}
3185
Sean Wang9ce67c32019-06-02 08:02:49 +08003186MODULE_FIRMWARE(FIRMWARE_MT7663);
Sean Wanga1c49c432019-06-02 08:02:48 +08003187MODULE_FIRMWARE(FIRMWARE_MT7668);
Sean Wanga1c49c432019-06-02 08:02:48 +08003188
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08003189#ifdef CONFIG_PM
3190/* Configure an out-of-band gpio as wake-up pin, if specified in device tree */
3191static int marvell_config_oob_wake(struct hci_dev *hdev)
3192{
3193 struct sk_buff *skb;
3194 struct btusb_data *data = hci_get_drvdata(hdev);
3195 struct device *dev = &data->udev->dev;
3196 u16 pin, gap, opcode;
3197 int ret;
3198 u8 cmd[5];
3199
3200 /* Move on if no wakeup pin specified */
3201 if (of_property_read_u16(dev->of_node, "marvell,wakeup-pin", &pin) ||
3202 of_property_read_u16(dev->of_node, "marvell,wakeup-gap-ms", &gap))
3203 return 0;
3204
3205 /* Vendor specific command to configure a GPIO as wake-up pin */
3206 opcode = hci_opcode_pack(0x3F, 0x59);
3207 cmd[0] = opcode & 0xFF;
3208 cmd[1] = opcode >> 8;
3209 cmd[2] = 2; /* length of parameters that follow */
3210 cmd[3] = pin;
3211 cmd[4] = gap; /* time in ms, for which wakeup pin should be asserted */
3212
3213 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
3214 if (!skb) {
3215 bt_dev_err(hdev, "%s: No memory\n", __func__);
3216 return -ENOMEM;
3217 }
3218
Johannes Berg59ae1d12017-06-16 14:29:20 +02003219 skb_put_data(skb, cmd, sizeof(cmd));
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08003220 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
3221
3222 ret = btusb_send_frame(hdev, skb);
3223 if (ret) {
3224 bt_dev_err(hdev, "%s: configuration failed\n", __func__);
3225 kfree_skb(skb);
3226 return ret;
3227 }
3228
3229 return 0;
3230}
3231#endif
3232
Amitkumar Karwarae8df492014-07-18 14:47:06 -07003233static int btusb_set_bdaddr_marvell(struct hci_dev *hdev,
3234 const bdaddr_t *bdaddr)
3235{
3236 struct sk_buff *skb;
3237 u8 buf[8];
3238 long ret;
3239
3240 buf[0] = 0xfe;
3241 buf[1] = sizeof(bdaddr_t);
3242 memcpy(buf + 2, bdaddr, sizeof(bdaddr_t));
3243
3244 skb = __hci_cmd_sync(hdev, 0xfc22, sizeof(buf), buf, HCI_INIT_TIMEOUT);
3245 if (IS_ERR(skb)) {
3246 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003247 bt_dev_err(hdev, "changing Marvell device address failed (%ld)",
3248 ret);
Amitkumar Karwarae8df492014-07-18 14:47:06 -07003249 return ret;
3250 }
3251 kfree_skb(skb);
3252
3253 return 0;
3254}
3255
Toshi Kikuchi58592232014-12-12 10:58:05 -08003256static int btusb_set_bdaddr_ath3012(struct hci_dev *hdev,
3257 const bdaddr_t *bdaddr)
3258{
3259 struct sk_buff *skb;
3260 u8 buf[10];
3261 long ret;
3262
3263 buf[0] = 0x01;
3264 buf[1] = 0x01;
3265 buf[2] = 0x00;
3266 buf[3] = sizeof(bdaddr_t);
3267 memcpy(buf + 4, bdaddr, sizeof(bdaddr_t));
3268
3269 skb = __hci_cmd_sync(hdev, 0xfc0b, sizeof(buf), buf, HCI_INIT_TIMEOUT);
3270 if (IS_ERR(skb)) {
3271 ret = PTR_ERR(skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003272 bt_dev_err(hdev, "Change address command failed (%ld)", ret);
Toshi Kikuchi58592232014-12-12 10:58:05 -08003273 return ret;
3274 }
3275 kfree_skb(skb);
3276
3277 return 0;
3278}
3279
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003280#define QCA_DFU_PACKET_LEN 4096
3281
3282#define QCA_GET_TARGET_VERSION 0x09
3283#define QCA_CHECK_STATUS 0x05
3284#define QCA_DFU_DOWNLOAD 0x01
3285
3286#define QCA_SYSCFG_UPDATED 0x40
3287#define QCA_PATCH_UPDATED 0x80
3288#define QCA_DFU_TIMEOUT 3000
3289
3290struct qca_version {
3291 __le32 rom_version;
3292 __le32 patch_version;
3293 __le32 ram_version;
3294 __le32 ref_clock;
3295 __u8 reserved[4];
3296} __packed;
3297
3298struct qca_rampatch_version {
3299 __le16 rom_version;
3300 __le16 patch_version;
3301} __packed;
3302
3303struct qca_device_info {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003304 u32 rom_version;
3305 u8 rampatch_hdr; /* length of header in rampatch */
3306 u8 nvm_hdr; /* length of header in NVM */
3307 u8 ver_offset; /* offset of version structure in rampatch */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003308};
3309
3310static const struct qca_device_info qca_devices_table[] = {
3311 { 0x00000100, 20, 4, 10 }, /* Rome 1.0 */
3312 { 0x00000101, 20, 4, 10 }, /* Rome 1.1 */
Chan-yeol Park7f6e6362015-05-21 11:24:27 +09003313 { 0x00000200, 28, 4, 18 }, /* Rome 2.0 */
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003314 { 0x00000201, 28, 4, 18 }, /* Rome 2.1 */
3315 { 0x00000300, 28, 4, 18 }, /* Rome 3.0 */
3316 { 0x00000302, 28, 4, 18 }, /* Rome 3.2 */
3317};
3318
Takashi Iwai803cdb82018-05-21 22:34:52 +02003319static int btusb_qca_send_vendor_req(struct usb_device *udev, u8 request,
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003320 void *data, u16 size)
3321{
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003322 int pipe, err;
3323 u8 *buf;
3324
3325 buf = kmalloc(size, GFP_KERNEL);
3326 if (!buf)
3327 return -ENOMEM;
3328
3329 /* Found some of USB hosts have IOT issues with ours so that we should
3330 * not wait until HCI layer is ready.
3331 */
3332 pipe = usb_rcvctrlpipe(udev, 0);
3333 err = usb_control_msg(udev, pipe, request, USB_TYPE_VENDOR | USB_DIR_IN,
3334 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
3335 if (err < 0) {
Takashi Iwai803cdb82018-05-21 22:34:52 +02003336 dev_err(&udev->dev, "Failed to access otp area (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003337 goto done;
3338 }
3339
3340 memcpy(data, buf, size);
3341
3342done:
3343 kfree(buf);
3344
3345 return err;
3346}
3347
3348static int btusb_setup_qca_download_fw(struct hci_dev *hdev,
3349 const struct firmware *firmware,
3350 size_t hdr_size)
3351{
3352 struct btusb_data *btdata = hci_get_drvdata(hdev);
3353 struct usb_device *udev = btdata->udev;
3354 size_t count, size, sent = 0;
3355 int pipe, len, err;
3356 u8 *buf;
3357
3358 buf = kmalloc(QCA_DFU_PACKET_LEN, GFP_KERNEL);
3359 if (!buf)
3360 return -ENOMEM;
3361
3362 count = firmware->size;
3363
3364 size = min_t(size_t, count, hdr_size);
3365 memcpy(buf, firmware->data, size);
3366
3367 /* USB patches should go down to controller through USB path
3368 * because binary format fits to go down through USB channel.
3369 * USB control path is for patching headers and USB bulk is for
3370 * patch body.
3371 */
3372 pipe = usb_sndctrlpipe(udev, 0);
3373 err = usb_control_msg(udev, pipe, QCA_DFU_DOWNLOAD, USB_TYPE_VENDOR,
3374 0, 0, buf, size, USB_CTRL_SET_TIMEOUT);
3375 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003376 bt_dev_err(hdev, "Failed to send headers (%d)", err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003377 goto done;
3378 }
3379
3380 sent += size;
3381 count -= size;
3382
3383 while (count) {
3384 size = min_t(size_t, count, QCA_DFU_PACKET_LEN);
3385
3386 memcpy(buf, firmware->data + sent, size);
3387
3388 pipe = usb_sndbulkpipe(udev, 0x02);
3389 err = usb_bulk_msg(udev, pipe, buf, size, &len,
3390 QCA_DFU_TIMEOUT);
3391 if (err < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003392 bt_dev_err(hdev, "Failed to send body at %zd of %zd (%d)",
3393 sent, firmware->size, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003394 break;
3395 }
3396
3397 if (size != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003398 bt_dev_err(hdev, "Failed to get bulk buffer");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003399 err = -EILSEQ;
3400 break;
3401 }
3402
3403 sent += size;
3404 count -= size;
3405 }
3406
3407done:
3408 kfree(buf);
3409 return err;
3410}
3411
3412static int btusb_setup_qca_load_rampatch(struct hci_dev *hdev,
3413 struct qca_version *ver,
3414 const struct qca_device_info *info)
3415{
3416 struct qca_rampatch_version *rver;
3417 const struct firmware *fw;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003418 u32 ver_rom, ver_patch;
3419 u16 rver_rom, rver_patch;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003420 char fwname[64];
3421 int err;
3422
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003423 ver_rom = le32_to_cpu(ver->rom_version);
3424 ver_patch = le32_to_cpu(ver->patch_version);
3425
3426 snprintf(fwname, sizeof(fwname), "qca/rampatch_usb_%08x.bin", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003427
3428 err = request_firmware(&fw, fwname, &hdev->dev);
3429 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003430 bt_dev_err(hdev, "failed to request rampatch file: %s (%d)",
3431 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003432 return err;
3433 }
3434
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003435 bt_dev_info(hdev, "using rampatch file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003436
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003437 rver = (struct qca_rampatch_version *)(fw->data + info->ver_offset);
3438 rver_rom = le16_to_cpu(rver->rom_version);
3439 rver_patch = le16_to_cpu(rver->patch_version);
3440
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003441 bt_dev_info(hdev, "QCA: patch rome 0x%x build 0x%x, "
3442 "firmware rome 0x%x build 0x%x",
3443 rver_rom, rver_patch, ver_rom, ver_patch);
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003444
3445 if (rver_rom != ver_rom || rver_patch <= ver_patch) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003446 bt_dev_err(hdev, "rampatch file version did not match with firmware");
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003447 err = -EINVAL;
3448 goto done;
3449 }
3450
3451 err = btusb_setup_qca_download_fw(hdev, fw, info->rampatch_hdr);
3452
3453done:
3454 release_firmware(fw);
3455
3456 return err;
3457}
3458
3459static int btusb_setup_qca_load_nvm(struct hci_dev *hdev,
3460 struct qca_version *ver,
3461 const struct qca_device_info *info)
3462{
3463 const struct firmware *fw;
3464 char fwname[64];
3465 int err;
3466
3467 snprintf(fwname, sizeof(fwname), "qca/nvm_usb_%08x.bin",
3468 le32_to_cpu(ver->rom_version));
3469
3470 err = request_firmware(&fw, fwname, &hdev->dev);
3471 if (err) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003472 bt_dev_err(hdev, "failed to request NVM file: %s (%d)",
3473 fwname, err);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003474 return err;
3475 }
3476
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003477 bt_dev_info(hdev, "using NVM file: %s", fwname);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003478
3479 err = btusb_setup_qca_download_fw(hdev, fw, info->nvm_hdr);
3480
3481 release_firmware(fw);
3482
3483 return err;
3484}
3485
Takashi Iwai803cdb82018-05-21 22:34:52 +02003486/* identify the ROM version and check whether patches are needed */
3487static bool btusb_qca_need_patch(struct usb_device *udev)
3488{
3489 struct qca_version ver;
3490
3491 if (btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
3492 sizeof(ver)) < 0)
3493 return false;
3494 /* only low ROM versions need patches */
3495 return !(le32_to_cpu(ver.rom_version) & ~0xffffU);
3496}
3497
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003498static int btusb_setup_qca(struct hci_dev *hdev)
3499{
Takashi Iwai803cdb82018-05-21 22:34:52 +02003500 struct btusb_data *btdata = hci_get_drvdata(hdev);
3501 struct usb_device *udev = btdata->udev;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003502 const struct qca_device_info *info = NULL;
3503 struct qca_version ver;
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003504 u32 ver_rom;
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003505 u8 status;
3506 int i, err;
3507
Takashi Iwai803cdb82018-05-21 22:34:52 +02003508 err = btusb_qca_send_vendor_req(udev, QCA_GET_TARGET_VERSION, &ver,
Marcel Holtmanneb500422015-04-16 23:15:50 +02003509 sizeof(ver));
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003510 if (err < 0)
3511 return err;
3512
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003513 ver_rom = le32_to_cpu(ver.rom_version);
Takashi Iwai803cdb82018-05-21 22:34:52 +02003514 /* Don't care about high ROM versions */
3515 if (ver_rom & ~0xffffU)
3516 return 0;
3517
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003518 for (i = 0; i < ARRAY_SIZE(qca_devices_table); i++) {
Kim, Ben Young Taebf906b32015-03-10 23:34:58 +00003519 if (ver_rom == qca_devices_table[i].rom_version)
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003520 info = &qca_devices_table[i];
3521 }
3522 if (!info) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003523 bt_dev_err(hdev, "don't support firmware rome 0x%x", ver_rom);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003524 return -ENODEV;
3525 }
3526
Takashi Iwai803cdb82018-05-21 22:34:52 +02003527 err = btusb_qca_send_vendor_req(udev, QCA_CHECK_STATUS, &status,
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003528 sizeof(status));
3529 if (err < 0)
3530 return err;
3531
3532 if (!(status & QCA_PATCH_UPDATED)) {
3533 err = btusb_setup_qca_load_rampatch(hdev, &ver, info);
3534 if (err < 0)
3535 return err;
3536 }
3537
3538 if (!(status & QCA_SYSCFG_UPDATED)) {
3539 err = btusb_setup_qca_load_nvm(hdev, &ver, info);
3540 if (err < 0)
3541 return err;
3542 }
3543
3544 return 0;
3545}
3546
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003547static inline int __set_diag_interface(struct hci_dev *hdev)
3548{
3549 struct btusb_data *data = hci_get_drvdata(hdev);
3550 struct usb_interface *intf = data->diag;
3551 int i;
3552
3553 if (!data->diag)
3554 return -ENODEV;
3555
3556 data->diag_tx_ep = NULL;
3557 data->diag_rx_ep = NULL;
3558
3559 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
3560 struct usb_endpoint_descriptor *ep_desc;
3561
3562 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
3563
3564 if (!data->diag_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
3565 data->diag_tx_ep = ep_desc;
3566 continue;
3567 }
3568
3569 if (!data->diag_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
3570 data->diag_rx_ep = ep_desc;
3571 continue;
3572 }
3573 }
3574
3575 if (!data->diag_tx_ep || !data->diag_rx_ep) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01003576 bt_dev_err(hdev, "invalid diagnostic descriptors");
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003577 return -ENODEV;
3578 }
3579
3580 return 0;
3581}
3582
3583static struct urb *alloc_diag_urb(struct hci_dev *hdev, bool enable)
3584{
3585 struct btusb_data *data = hci_get_drvdata(hdev);
3586 struct sk_buff *skb;
3587 struct urb *urb;
3588 unsigned int pipe;
3589
3590 if (!data->diag_tx_ep)
3591 return ERR_PTR(-ENODEV);
3592
3593 urb = usb_alloc_urb(0, GFP_KERNEL);
3594 if (!urb)
3595 return ERR_PTR(-ENOMEM);
3596
3597 skb = bt_skb_alloc(2, GFP_KERNEL);
3598 if (!skb) {
3599 usb_free_urb(urb);
3600 return ERR_PTR(-ENOMEM);
3601 }
3602
Johannes Berg634fef62017-06-16 14:29:24 +02003603 skb_put_u8(skb, 0xf0);
3604 skb_put_u8(skb, enable);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003605
3606 pipe = usb_sndbulkpipe(data->udev, data->diag_tx_ep->bEndpointAddress);
3607
3608 usb_fill_bulk_urb(urb, data->udev, pipe,
3609 skb->data, skb->len, btusb_tx_complete, skb);
3610
3611 skb->dev = (void *)hdev;
3612
3613 return urb;
3614}
3615
3616static int btusb_bcm_set_diag(struct hci_dev *hdev, bool enable)
3617{
3618 struct btusb_data *data = hci_get_drvdata(hdev);
3619 struct urb *urb;
3620
3621 if (!data->diag)
3622 return -ENODEV;
3623
3624 if (!test_bit(HCI_RUNNING, &hdev->flags))
3625 return -ENETDOWN;
3626
3627 urb = alloc_diag_urb(hdev, enable);
3628 if (IS_ERR(urb))
3629 return PTR_ERR(urb);
3630
3631 return submit_or_queue_tx_urb(hdev, urb);
3632}
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003633
Rajat Jainfd913ef2017-02-01 14:24:09 -08003634#ifdef CONFIG_PM
3635static irqreturn_t btusb_oob_wake_handler(int irq, void *priv)
3636{
3637 struct btusb_data *data = priv;
3638
3639 pm_wakeup_event(&data->udev->dev, 0);
Jeffy Chen017789f2017-02-24 14:24:29 +08003640 pm_system_wakeup();
Rajat Jainfd913ef2017-02-01 14:24:09 -08003641
3642 /* Disable only if not already disabled (keep it balanced) */
3643 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
3644 disable_irq_nosync(irq);
3645 disable_irq_wake(irq);
3646 }
3647 return IRQ_HANDLED;
3648}
3649
3650static const struct of_device_id btusb_match_table[] = {
3651 { .compatible = "usb1286,204e" },
Brian Norris4c409af2019-02-22 14:53:43 -08003652 { .compatible = "usbcf3,e300" }, /* QCA6174A */
3653 { .compatible = "usb4ca,301a" }, /* QCA6174A (Lite-On) */
Rajat Jainfd913ef2017-02-01 14:24:09 -08003654 { }
3655};
3656MODULE_DEVICE_TABLE(of, btusb_match_table);
3657
3658/* Use an oob wakeup pin? */
3659static int btusb_config_oob_wake(struct hci_dev *hdev)
3660{
3661 struct btusb_data *data = hci_get_drvdata(hdev);
3662 struct device *dev = &data->udev->dev;
3663 int irq, ret;
3664
3665 clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
3666
3667 if (!of_match_device(btusb_match_table, dev))
3668 return 0;
3669
3670 /* Move on if no IRQ specified */
3671 irq = of_irq_get_byname(dev->of_node, "wakeup");
3672 if (irq <= 0) {
3673 bt_dev_dbg(hdev, "%s: no OOB Wakeup IRQ in DT", __func__);
3674 return 0;
3675 }
3676
Brian Norris771acc72019-04-09 11:49:17 -07003677 irq_set_status_flags(irq, IRQ_NOAUTOEN);
Rajat Jainfd913ef2017-02-01 14:24:09 -08003678 ret = devm_request_irq(&hdev->dev, irq, btusb_oob_wake_handler,
3679 0, "OOB Wake-on-BT", data);
3680 if (ret) {
3681 bt_dev_err(hdev, "%s: IRQ request failed", __func__);
3682 return ret;
3683 }
3684
3685 ret = device_init_wakeup(dev, true);
3686 if (ret) {
3687 bt_dev_err(hdev, "%s: failed to init_wakeup", __func__);
3688 return ret;
3689 }
3690
3691 data->oob_wake_irq = irq;
Rajat Jainfd913ef2017-02-01 14:24:09 -08003692 bt_dev_info(hdev, "OOB Wake-on-BT configured at IRQ %u", irq);
3693 return 0;
3694}
3695#endif
3696
Hans de Goedefc549102018-04-27 11:26:43 +02003697static void btusb_check_needs_reset_resume(struct usb_interface *intf)
3698{
3699 if (dmi_check_system(btusb_needs_reset_resume_table))
3700 interface_to_usbdev(intf)->quirks |= USB_QUIRK_RESET_RESUME;
3701}
3702
Abhishek Pandit-Subedib7d0bf12020-05-12 19:19:27 -07003703static bool btusb_prevent_wake(struct hci_dev *hdev)
3704{
3705 struct btusb_data *data = hci_get_drvdata(hdev);
3706
3707 return !device_may_wakeup(&data->udev->dev);
3708}
3709
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003710static int btusb_probe(struct usb_interface *intf,
Marcel Holtmann89e75332014-09-16 04:44:50 +02003711 const struct usb_device_id *id)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003712{
3713 struct usb_endpoint_descriptor *ep_desc;
Rajat Jaindc786b22019-01-24 15:28:14 -08003714 struct gpio_desc *reset_gpio;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003715 struct btusb_data *data;
3716 struct hci_dev *hdev;
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003717 unsigned ifnum_base;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003718 int i, err;
3719
3720 BT_DBG("intf %p id %p", intf, id);
3721
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003722 /* interface numbers are hardcoded in the spec */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003723 if (intf->cur_altsetting->desc.bInterfaceNumber != 0) {
3724 if (!(id->driver_info & BTUSB_IFNUM_2))
3725 return -ENODEV;
3726 if (intf->cur_altsetting->desc.bInterfaceNumber != 2)
3727 return -ENODEV;
3728 }
3729
3730 ifnum_base = intf->cur_altsetting->desc.bInterfaceNumber;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003731
3732 if (!id->driver_info) {
3733 const struct usb_device_id *match;
Marcel Holtmann89e75332014-09-16 04:44:50 +02003734
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003735 match = usb_match_id(intf, blacklist_table);
3736 if (match)
3737 id = match;
3738 }
3739
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003740 if (id->driver_info == BTUSB_IGNORE)
3741 return -ENODEV;
3742
Steven.Li2d25f8b2011-07-01 14:02:36 +08003743 if (id->driver_info & BTUSB_ATH3012) {
3744 struct usb_device *udev = interface_to_usbdev(intf);
3745
3746 /* Old firmware would otherwise let ath3k driver load
Derek Robsond98422c2017-07-22 13:47:07 +12003747 * patch and sysconfig files
3748 */
Takashi Iwai803cdb82018-05-21 22:34:52 +02003749 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001 &&
3750 !btusb_qca_need_patch(udev))
Steven.Li2d25f8b2011-07-01 14:02:36 +08003751 return -ENODEV;
3752 }
3753
Sachin Kamat98921db2012-07-27 12:38:39 +05303754 data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003755 if (!data)
3756 return -ENOMEM;
3757
3758 for (i = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
3759 ep_desc = &intf->cur_altsetting->endpoint[i].desc;
3760
3761 if (!data->intr_ep && usb_endpoint_is_int_in(ep_desc)) {
3762 data->intr_ep = ep_desc;
3763 continue;
3764 }
3765
3766 if (!data->bulk_tx_ep && usb_endpoint_is_bulk_out(ep_desc)) {
3767 data->bulk_tx_ep = ep_desc;
3768 continue;
3769 }
3770
3771 if (!data->bulk_rx_ep && usb_endpoint_is_bulk_in(ep_desc)) {
3772 data->bulk_rx_ep = ep_desc;
3773 continue;
3774 }
3775 }
3776
Sachin Kamat98921db2012-07-27 12:38:39 +05303777 if (!data->intr_ep || !data->bulk_tx_ep || !data->bulk_rx_ep)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003778 return -ENODEV;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003779
Marcel Holtmann893ba542015-01-28 20:27:34 -08003780 if (id->driver_info & BTUSB_AMP) {
3781 data->cmdreq_type = USB_TYPE_CLASS | 0x01;
3782 data->cmdreq = 0x2b;
3783 } else {
3784 data->cmdreq_type = USB_TYPE_CLASS;
3785 data->cmdreq = 0x00;
3786 }
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003787
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003788 data->udev = interface_to_usbdev(intf);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02003789 data->intf = intf;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003790
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003791 INIT_WORK(&data->work, btusb_work);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003792 INIT_WORK(&data->waker, btusb_waker);
Marcel Holtmann803b5832014-09-16 08:00:29 +02003793 init_usb_anchor(&data->deferred);
3794 init_usb_anchor(&data->tx_anchor);
Oliver Neukum7bee5492009-08-24 23:44:59 +02003795 spin_lock_init(&data->txlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003796
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003797 init_usb_anchor(&data->intr_anchor);
3798 init_usb_anchor(&data->bulk_anchor);
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003799 init_usb_anchor(&data->isoc_anchor);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003800 init_usb_anchor(&data->diag_anchor);
Sean Wanga1c49c432019-06-02 08:02:48 +08003801 init_usb_anchor(&data->ctrl_anchor);
Marcel Holtmann803b5832014-09-16 08:00:29 +02003802 spin_lock_init(&data->rxlock);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003803
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003804 if (id->driver_info & BTUSB_INTEL_NEW) {
3805 data->recv_event = btusb_recv_event_intel;
3806 data->recv_bulk = btusb_recv_bulk_intel;
3807 set_bit(BTUSB_BOOTLOADER, &data->flags);
3808 } else {
3809 data->recv_event = hci_recv_frame;
3810 data->recv_bulk = btusb_recv_bulk;
3811 }
Marcel Holtmann2cbd3f52014-11-03 05:16:07 +01003812
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003813 hdev = hci_alloc_dev();
Sachin Kamat98921db2012-07-27 12:38:39 +05303814 if (!hdev)
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003815 return -ENOMEM;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003816
Marcel Holtmannc13854c2010-02-08 15:27:07 +01003817 hdev->bus = HCI_USB;
David Herrmann155961e2012-02-09 21:58:32 +01003818 hci_set_drvdata(hdev, data);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003819
Marcel Holtmann893ba542015-01-28 20:27:34 -08003820 if (id->driver_info & BTUSB_AMP)
3821 hdev->dev_type = HCI_AMP;
3822 else
Marcel Holtmannca8bee52016-07-05 14:30:14 +02003823 hdev->dev_type = HCI_PRIMARY;
Marcel Holtmann893ba542015-01-28 20:27:34 -08003824
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003825 data->hdev = hdev;
3826
3827 SET_HCIDEV_DEV(hdev, &intf->dev);
3828
Rajat Jaindc786b22019-01-24 15:28:14 -08003829 reset_gpio = gpiod_get_optional(&data->udev->dev, "reset",
3830 GPIOD_OUT_LOW);
3831 if (IS_ERR(reset_gpio)) {
3832 err = PTR_ERR(reset_gpio);
3833 goto out_free_dev;
3834 } else if (reset_gpio) {
3835 data->reset_gpio = reset_gpio;
3836 }
3837
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07003838 hdev->open = btusb_open;
3839 hdev->close = btusb_close;
3840 hdev->flush = btusb_flush;
3841 hdev->send = btusb_send_frame;
3842 hdev->notify = btusb_notify;
Abhishek Pandit-Subedib7d0bf12020-05-12 19:19:27 -07003843 hdev->prevent_wake = btusb_prevent_wake;
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07003844
Rajat Jainfd913ef2017-02-01 14:24:09 -08003845#ifdef CONFIG_PM
3846 err = btusb_config_oob_wake(hdev);
3847 if (err)
3848 goto out_free_dev;
Rajat Jaina4ccc9e2017-02-01 14:24:10 -08003849
3850 /* Marvell devices may need a specific chip configuration */
3851 if (id->driver_info & BTUSB_MARVELL && data->oob_wake_irq) {
3852 err = marvell_config_oob_wake(hdev);
3853 if (err)
3854 goto out_free_dev;
3855 }
Rajat Jainfd913ef2017-02-01 14:24:09 -08003856#endif
Szymon Janc418678b2016-09-01 17:22:37 +02003857 if (id->driver_info & BTUSB_CW6622)
3858 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3859
Marcel Holtmann6c9d4352015-10-17 14:39:27 +02003860 if (id->driver_info & BTUSB_BCM2045)
3861 set_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks);
3862
Marcel Holtmann9f8f9622013-04-10 08:11:35 -07003863 if (id->driver_info & BTUSB_BCM92035)
3864 hdev->setup = btusb_setup_bcm92035;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02003865
Marcel Holtmannc0a21a52019-09-27 08:48:58 +02003866 if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
3867 (id->driver_info & BTUSB_BCM_PATCHRAM)) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003868 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003869 hdev->setup = btbcm_setup_patchram;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003870 hdev->set_diag = btusb_bcm_set_diag;
Marcel Holtmann1df1f592015-04-05 22:52:11 -07003871 hdev->set_bdaddr = btbcm_set_bdaddr;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003872
3873 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003874 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmannabbaf502014-07-02 00:53:48 +02003875 }
Petri Gynther10d4c672014-05-08 15:50:01 -07003876
Marcel Holtmannc0a21a52019-09-27 08:48:58 +02003877 if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) &&
3878 (id->driver_info & BTUSB_BCM_APPLE)) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003879 hdev->manufacturer = 15;
Marcel Holtmannc2bfb102015-04-05 22:52:14 -07003880 hdev->setup = btbcm_setup_apple;
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003881 hdev->set_diag = btusb_bcm_set_diag;
3882
3883 /* Broadcom LM_DIAG Interface numbers are hardcoded */
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003884 data->diag = usb_ifnum_to_if(data->udev, ifnum_base + 2);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02003885 }
Marcel Holtmann17b27722015-03-22 15:52:38 +01003886
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02003887 if (id->driver_info & BTUSB_INTEL) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003888 hdev->manufacturer = 2;
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07003889 hdev->setup = btusb_setup_intel;
Tedd Ho-Jeong Anbfbd45e2015-02-13 09:20:52 -08003890 hdev->shutdown = btusb_shutdown_intel;
Marcel Holtmann3e247672015-10-17 16:00:28 +02003891 hdev->set_diag = btintel_set_diag_mfg;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07003892 hdev->set_bdaddr = btintel_set_bdaddr;
Rajat Jaindc786b22019-01-24 15:28:14 -08003893 hdev->cmd_timeout = btusb_intel_cmd_timeout;
Jakub Pawlowskic33fb9b2015-01-30 18:55:58 -08003894 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Jakub Pawlowskic1154842015-03-17 09:04:16 -07003895 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann3e247672015-10-17 16:00:28 +02003896 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncb8d6592014-07-02 11:25:25 +02003897 }
Tedd Ho-Jeong Andffd30e2013-04-19 09:57:43 -07003898
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003899 if (id->driver_info & BTUSB_INTEL_NEW) {
Marcel Holtmann49a5f782015-10-20 02:30:48 +02003900 hdev->manufacturer = 2;
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003901 hdev->send = btusb_send_frame_intel;
3902 hdev->setup = btusb_setup_intel_new;
Raghuram Hegde017a01c2019-01-29 17:54:48 +05303903 hdev->shutdown = btusb_shutdown_intel_new;
Marcel Holtmanneeb6abe2015-07-05 14:37:39 +02003904 hdev->hw_error = btintel_hw_error;
Marcel Holtmann6d2e50d2015-10-09 14:42:08 +02003905 hdev->set_diag = btintel_set_diag;
Marcel Holtmann4185a0f2015-04-06 00:52:12 -07003906 hdev->set_bdaddr = btintel_set_bdaddr;
Rajat Jaindc786b22019-01-24 15:28:14 -08003907 hdev->cmd_timeout = btusb_intel_cmd_timeout;
Marcel Holtmannb970c5b2015-02-01 23:57:18 -08003908 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
Justin TerAvestf7785022018-09-25 11:04:57 -06003909 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmannd8270fb2015-10-17 16:00:27 +02003910 set_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks);
Marcel Holtmanncda0dd72015-01-26 21:33:48 -08003911 }
3912
Amitkumar Karwarae8df492014-07-18 14:47:06 -07003913 if (id->driver_info & BTUSB_MARVELL)
3914 hdev->set_bdaddr = btusb_set_bdaddr_marvell;
3915
Marcel Holtmannc0a21a52019-09-27 08:48:58 +02003916 if (IS_ENABLED(CONFIG_BT_HCIBTUSB_MTK) &&
3917 (id->driver_info & BTUSB_MEDIATEK)) {
Sean Wanga1c49c432019-06-02 08:02:48 +08003918 hdev->setup = btusb_mtk_setup;
3919 hdev->shutdown = btusb_mtk_shutdown;
3920 hdev->manufacturer = 70;
3921 set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
3922 }
Sean Wanga1c49c432019-06-02 08:02:48 +08003923
Marcel Holtmann661cf882015-01-02 23:35:20 -08003924 if (id->driver_info & BTUSB_SWAVE) {
3925 set_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks);
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003926 set_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks);
Marcel Holtmann661cf882015-01-02 23:35:20 -08003927 }
Marcel Holtmannd57dbe72014-12-26 04:42:33 +01003928
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003929 if (id->driver_info & BTUSB_INTEL_BOOT) {
3930 hdev->manufacturer = 2;
Marcel Holtmann40df7832014-07-06 13:29:58 +02003931 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
Marcel Holtmanne4c534b2015-10-21 01:31:45 +02003932 }
Marcel Holtmann40df7832014-07-06 13:29:58 +02003933
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003934 if (id->driver_info & BTUSB_ATH3012) {
Takashi Iwai803cdb82018-05-21 22:34:52 +02003935 data->setup_on_usb = btusb_setup_qca;
Toshi Kikuchi58592232014-12-12 10:58:05 -08003936 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Jakub Pawlowski3d50d512015-03-17 09:04:15 -07003937 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Jakub Pawlowski79f0c872015-01-29 10:38:34 -08003938 set_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks);
3939 }
Toshi Kikuchi58592232014-12-12 10:58:05 -08003940
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003941 if (id->driver_info & BTUSB_QCA_ROME) {
3942 data->setup_on_usb = btusb_setup_qca;
3943 hdev->set_bdaddr = btusb_set_bdaddr_ath3012;
Vic Wei96e58d32018-03-28 08:28:47 -07003944 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Hans de Goedefc549102018-04-27 11:26:43 +02003945 btusb_check_needs_reset_resume(intf);
Kim, Ben Young Tae3267c882015-02-15 23:07:33 +00003946 }
3947
Arnd Bergmann42d22092019-09-18 21:59:02 +02003948 if (IS_ENABLED(CONFIG_BT_HCIBTUSB_RTL) &&
3949 (id->driver_info & BTUSB_REALTEK)) {
Carlo Caionedb33c772015-05-14 10:49:09 +02003950 hdev->setup = btrtl_setup_realtek;
Jian-Hong Pan7af3f5582019-06-25 16:30:51 +08003951 hdev->shutdown = btrtl_shutdown_realtek;
Alex Lud7ef0d12019-09-05 10:36:31 +08003952 hdev->cmd_timeout = btusb_rtl_cmd_timeout;
Daniel Drake04b8c812015-05-21 08:23:50 -06003953
Alex Lu9e455242019-08-14 20:02:52 +08003954 /* Realtek devices lose their updated firmware over global
3955 * suspend that means host doesn't send SET_FEATURE
3956 * (DEVICE_REMOTE_WAKEUP)
Daniel Drake04b8c812015-05-21 08:23:50 -06003957 */
Alex Lu9e455242019-08-14 20:02:52 +08003958 set_bit(BTUSB_WAKEUP_DISABLE, &data->flags);
Kai-Heng Feng7ecacaf2019-12-05 17:07:01 +08003959
3960 err = usb_autopm_get_interface(intf);
3961 if (err < 0)
3962 goto out_free_dev;
Daniel Drake04b8c812015-05-21 08:23:50 -06003963 }
Daniel Drakea2698a92015-04-16 14:09:55 -06003964
Marcel Holtmann893ba542015-01-28 20:27:34 -08003965 if (id->driver_info & BTUSB_AMP) {
3966 /* AMP controllers do not support SCO packets */
3967 data->isoc = NULL;
3968 } else {
Marcel Holtmann22f8e9d2015-10-20 00:53:33 +02003969 /* Interface orders are hardcoded in the specification */
3970 data->isoc = usb_ifnum_to_if(data->udev, ifnum_base + 1);
Marcel Holtmann459232f2017-10-24 19:42:45 +02003971 data->isoc_ifnum = ifnum_base + 1;
Marcel Holtmann893ba542015-01-28 20:27:34 -08003972 }
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003973
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003974 if (!reset)
Szymon Janca6c511c2012-05-23 12:35:46 +02003975 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02003976
3977 if (force_scofix || id->driver_info & BTUSB_WRONG_SCO_MTU) {
3978 if (!disable_scofix)
3979 set_bit(HCI_QUIRK_FIXUP_BUFFER_SIZE, &hdev->quirks);
3980 }
3981
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02003982 if (id->driver_info & BTUSB_BROKEN_ISOC)
3983 data->isoc = NULL;
3984
Alain Michaud4b127bd2020-02-27 18:29:39 +00003985 if (id->driver_info & BTUSB_WIDEBAND_SPEECH)
Alain Michaud00bce3f2020-03-05 16:14:59 +00003986 set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks);
Alain Michaud4b127bd2020-02-27 18:29:39 +00003987
Alain Michaudaff8c482020-04-23 14:43:31 +00003988 if (id->driver_info & BTUSB_VALID_LE_STATES)
3989 set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks);
3990
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003991 if (id->driver_info & BTUSB_DIGIANSWER) {
3992 data->cmdreq_type = USB_TYPE_VENDOR;
Szymon Janca6c511c2012-05-23 12:35:46 +02003993 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003994 }
3995
3996 if (id->driver_info & BTUSB_CSR) {
3997 struct usb_device *udev = data->udev;
Marcel Holtmann81cac642014-01-03 03:02:36 -08003998 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01003999
4000 /* Old firmware would otherwise execute USB reset */
Marcel Holtmann81cac642014-01-03 03:02:36 -08004001 if (bcdDevice < 0x117)
Szymon Janca6c511c2012-05-23 12:35:46 +02004002 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmann81cac642014-01-03 03:02:36 -08004003
4004 /* Fake CSR devices with broken commands */
Johan Hedberg6cafcd92015-08-30 21:47:21 +03004005 if (bcdDevice <= 0x100 || bcdDevice == 0x134)
Marcel Holtmann81cac642014-01-03 03:02:36 -08004006 hdev->setup = btusb_setup_csr;
Jakub Pawlowski49c989a2015-03-17 09:04:17 -07004007
4008 set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks);
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01004009 }
4010
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02004011 if (id->driver_info & BTUSB_SNIFFER) {
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02004012 struct usb_device *udev = data->udev;
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02004013
Marcel Holtmann7a9d4022008-11-30 12:17:26 +01004014 /* New sniffer firmware has crippled HCI interface */
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02004015 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997)
4016 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
4017 }
4018
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02004019 if (id->driver_info & BTUSB_INTEL_BOOT) {
4020 /* A bug in the bootloader causes that interrupt interface is
4021 * only enabled after receiving SetInterface(0, AltSetting=0).
4022 */
4023 err = usb_set_interface(data->udev, 0, 0);
4024 if (err < 0) {
4025 BT_ERR("failed to set interface 0, alt 0 %d", err);
Rajat Jain10ab1332017-02-01 14:24:08 -08004026 goto out_free_dev;
Marcel Holtmann3a5ef202014-07-06 14:53:54 +02004027 }
4028 }
4029
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02004030 if (data->isoc) {
4031 err = usb_driver_claim_interface(&btusb_driver,
Marcel Holtmann89e75332014-09-16 04:44:50 +02004032 data->isoc, data);
Rajat Jain10ab1332017-02-01 14:24:08 -08004033 if (err < 0)
4034 goto out_free_dev;
Marcel Holtmann9bfa35f2008-08-18 13:23:52 +02004035 }
4036
Marcel Holtmannc0a21a52019-09-27 08:48:58 +02004037 if (IS_ENABLED(CONFIG_BT_HCIBTUSB_BCM) && data->diag) {
Marcel Holtmann9d08f502015-10-08 20:23:08 +02004038 if (!usb_driver_claim_interface(&btusb_driver,
4039 data->diag, data))
4040 __set_diag_interface(hdev);
4041 else
4042 data->diag = NULL;
4043 }
Marcel Holtmann9d08f502015-10-08 20:23:08 +02004044
Hans de Goedeeff2d682017-11-13 14:44:16 +01004045 if (enable_autosuspend)
4046 usb_enable_autosuspend(data->udev);
4047
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004048 err = hci_register_dev(hdev);
Rajat Jain10ab1332017-02-01 14:24:08 -08004049 if (err < 0)
4050 goto out_free_dev;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004051
4052 usb_set_intfdata(intf, data);
4053
4054 return 0;
Rajat Jain10ab1332017-02-01 14:24:08 -08004055
4056out_free_dev:
Rajat Jaindc786b22019-01-24 15:28:14 -08004057 if (data->reset_gpio)
4058 gpiod_put(data->reset_gpio);
Rajat Jain10ab1332017-02-01 14:24:08 -08004059 hci_free_dev(hdev);
4060 return err;
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004061}
4062
4063static void btusb_disconnect(struct usb_interface *intf)
4064{
4065 struct btusb_data *data = usb_get_intfdata(intf);
4066 struct hci_dev *hdev;
4067
4068 BT_DBG("intf %p", intf);
4069
4070 if (!data)
4071 return;
4072
4073 hdev = data->hdev;
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02004074 usb_set_intfdata(data->intf, NULL);
4075
4076 if (data->isoc)
4077 usb_set_intfdata(data->isoc, NULL);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004078
Marcel Holtmann9d08f502015-10-08 20:23:08 +02004079 if (data->diag)
4080 usb_set_intfdata(data->diag, NULL);
4081
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004082 hci_unregister_dev(hdev);
4083
Marcel Holtmann9d08f502015-10-08 20:23:08 +02004084 if (intf == data->intf) {
4085 if (data->isoc)
4086 usb_driver_release_interface(&btusb_driver, data->isoc);
4087 if (data->diag)
4088 usb_driver_release_interface(&btusb_driver, data->diag);
4089 } else if (intf == data->isoc) {
4090 if (data->diag)
4091 usb_driver_release_interface(&btusb_driver, data->diag);
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02004092 usb_driver_release_interface(&btusb_driver, data->intf);
Marcel Holtmann9d08f502015-10-08 20:23:08 +02004093 } else if (intf == data->diag) {
4094 usb_driver_release_interface(&btusb_driver, data->intf);
4095 if (data->isoc)
4096 usb_driver_release_interface(&btusb_driver, data->isoc);
4097 }
Marcel Holtmann5fbcd262008-09-23 00:16:36 +02004098
Rajat Jainfd913ef2017-02-01 14:24:09 -08004099 if (data->oob_wake_irq)
4100 device_init_wakeup(&data->udev->dev, false);
4101
Rajat Jaindc786b22019-01-24 15:28:14 -08004102 if (data->reset_gpio)
4103 gpiod_put(data->reset_gpio);
4104
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004105 hci_free_dev(hdev);
4106}
4107
Oliver Neukum7bee5492009-08-24 23:44:59 +02004108#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004109static int btusb_suspend(struct usb_interface *intf, pm_message_t message)
4110{
4111 struct btusb_data *data = usb_get_intfdata(intf);
4112
4113 BT_DBG("intf %p", intf);
4114
4115 if (data->suspend_count++)
4116 return 0;
4117
Oliver Neukum7bee5492009-08-24 23:44:59 +02004118 spin_lock_irq(&data->txlock);
Alan Stern5b1b0b82011-08-19 23:49:48 +02004119 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
Oliver Neukum7bee5492009-08-24 23:44:59 +02004120 set_bit(BTUSB_SUSPENDING, &data->flags);
4121 spin_unlock_irq(&data->txlock);
4122 } else {
4123 spin_unlock_irq(&data->txlock);
4124 data->suspend_count--;
4125 return -EBUSY;
4126 }
4127
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004128 cancel_work_sync(&data->work);
4129
Oliver Neukum7bee5492009-08-24 23:44:59 +02004130 btusb_stop_traffic(data);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004131 usb_kill_anchored_urbs(&data->tx_anchor);
4132
Rajat Jainfd913ef2017-02-01 14:24:09 -08004133 if (data->oob_wake_irq && device_may_wakeup(&data->udev->dev)) {
4134 set_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags);
4135 enable_irq_wake(data->oob_wake_irq);
4136 enable_irq(data->oob_wake_irq);
4137 }
4138
Alex Lu9e455242019-08-14 20:02:52 +08004139 /* For global suspend, Realtek devices lose the loaded fw
4140 * in them. But for autosuspend, firmware should remain.
4141 * Actually, it depends on whether the usb host sends
4142 * set feature (enable wakeup) or not.
4143 */
4144 if (test_bit(BTUSB_WAKEUP_DISABLE, &data->flags)) {
4145 if (PMSG_IS_AUTO(message) &&
4146 device_can_wakeup(&data->udev->dev))
4147 data->udev->do_remote_wakeup = 1;
4148 else if (!PMSG_IS_AUTO(message))
4149 data->udev->reset_resume = 1;
4150 }
4151
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004152 return 0;
4153}
4154
Oliver Neukum7bee5492009-08-24 23:44:59 +02004155static void play_deferred(struct btusb_data *data)
4156{
4157 struct urb *urb;
4158 int err;
4159
4160 while ((urb = usb_get_from_anchor(&data->deferred))) {
Jeffy Chen19cfe912017-07-20 18:53:50 +08004161 usb_anchor_urb(urb, &data->tx_anchor);
4162
Oliver Neukum7bee5492009-08-24 23:44:59 +02004163 err = usb_submit_urb(urb, GFP_ATOMIC);
Jeffy Chen19cfe912017-07-20 18:53:50 +08004164 if (err < 0) {
4165 if (err != -EPERM && err != -ENODEV)
4166 BT_ERR("%s urb %p submission failed (%d)",
4167 data->hdev->name, urb, -err);
4168 kfree(urb->setup_packet);
4169 usb_unanchor_urb(urb);
4170 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02004171 break;
Jeffy Chen19cfe912017-07-20 18:53:50 +08004172 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02004173
4174 data->tx_in_flight++;
Jeffy Chen19cfe912017-07-20 18:53:50 +08004175 usb_free_urb(urb);
Oliver Neukum7bee5492009-08-24 23:44:59 +02004176 }
Jeffy Chen19cfe912017-07-20 18:53:50 +08004177
4178 /* Cleanup the rest deferred urbs. */
4179 while ((urb = usb_get_from_anchor(&data->deferred))) {
4180 kfree(urb->setup_packet);
4181 usb_free_urb(urb);
4182 }
Oliver Neukum7bee5492009-08-24 23:44:59 +02004183}
4184
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004185static int btusb_resume(struct usb_interface *intf)
4186{
4187 struct btusb_data *data = usb_get_intfdata(intf);
4188 struct hci_dev *hdev = data->hdev;
Oliver Neukum7bee5492009-08-24 23:44:59 +02004189 int err = 0;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004190
4191 BT_DBG("intf %p", intf);
4192
4193 if (--data->suspend_count)
4194 return 0;
4195
Rajat Jainfd913ef2017-02-01 14:24:09 -08004196 /* Disable only if not already disabled (keep it balanced) */
4197 if (test_and_clear_bit(BTUSB_OOB_WAKE_ENABLED, &data->flags)) {
4198 disable_irq(data->oob_wake_irq);
4199 disable_irq_wake(data->oob_wake_irq);
4200 }
4201
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004202 if (!test_bit(HCI_RUNNING, &hdev->flags))
Oliver Neukum7bee5492009-08-24 23:44:59 +02004203 goto done;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004204
4205 if (test_bit(BTUSB_INTR_RUNNING, &data->flags)) {
4206 err = btusb_submit_intr_urb(hdev, GFP_NOIO);
4207 if (err < 0) {
4208 clear_bit(BTUSB_INTR_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02004209 goto failed;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004210 }
4211 }
4212
4213 if (test_bit(BTUSB_BULK_RUNNING, &data->flags)) {
Marcel Holtmann43c2e572009-02-04 17:41:38 +01004214 err = btusb_submit_bulk_urb(hdev, GFP_NOIO);
4215 if (err < 0) {
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004216 clear_bit(BTUSB_BULK_RUNNING, &data->flags);
Oliver Neukum7bee5492009-08-24 23:44:59 +02004217 goto failed;
4218 }
4219
4220 btusb_submit_bulk_urb(hdev, GFP_NOIO);
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004221 }
4222
4223 if (test_bit(BTUSB_ISOC_RUNNING, &data->flags)) {
4224 if (btusb_submit_isoc_urb(hdev, GFP_NOIO) < 0)
4225 clear_bit(BTUSB_ISOC_RUNNING, &data->flags);
4226 else
4227 btusb_submit_isoc_urb(hdev, GFP_NOIO);
4228 }
4229
Oliver Neukum7bee5492009-08-24 23:44:59 +02004230 spin_lock_irq(&data->txlock);
4231 play_deferred(data);
4232 clear_bit(BTUSB_SUSPENDING, &data->flags);
4233 spin_unlock_irq(&data->txlock);
4234 schedule_work(&data->work);
4235
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004236 return 0;
Oliver Neukum7bee5492009-08-24 23:44:59 +02004237
4238failed:
4239 usb_scuttle_anchored_urbs(&data->deferred);
4240done:
4241 spin_lock_irq(&data->txlock);
4242 clear_bit(BTUSB_SUSPENDING, &data->flags);
4243 spin_unlock_irq(&data->txlock);
4244
4245 return err;
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004246}
Oliver Neukum7bee5492009-08-24 23:44:59 +02004247#endif
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004248
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004249static struct usb_driver btusb_driver = {
4250 .name = "btusb",
4251 .probe = btusb_probe,
4252 .disconnect = btusb_disconnect,
Oliver Neukum7bee5492009-08-24 23:44:59 +02004253#ifdef CONFIG_PM
Marcel Holtmann6a88adf2008-11-30 12:17:14 +01004254 .suspend = btusb_suspend,
4255 .resume = btusb_resume,
Oliver Neukum7bee5492009-08-24 23:44:59 +02004256#endif
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004257 .id_table = btusb_table,
Oliver Neukum7bee5492009-08-24 23:44:59 +02004258 .supports_autosuspend = 1,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07004259 .disable_hub_initiated_lpm = 1,
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004260};
4261
Greg Kroah-Hartman93f15082011-11-18 09:47:34 -08004262module_usb_driver(btusb_driver);
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004263
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02004264module_param(disable_scofix, bool, 0644);
4265MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
4266
4267module_param(force_scofix, bool, 0644);
4268MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
4269
Hans de Goedeeff2d682017-11-13 14:44:16 +01004270module_param(enable_autosuspend, bool, 0644);
4271MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
4272
Marcel Holtmanncfeb4142008-08-07 22:26:56 +02004273module_param(reset, bool, 0644);
4274MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
4275
Marcel Holtmann5e23b922007-10-20 14:12:34 +02004276MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
4277MODULE_DESCRIPTION("Generic Bluetooth USB driver ver " VERSION);
4278MODULE_VERSION(VERSION);
4279MODULE_LICENSE("GPL");