blob: def96cd2479bafa04da2e15557d2bd83ebd123d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Anssi Hannulabf8cb312008-04-03 16:19:10 -04002 * X-Box gamepad driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
Dominic Cerquettid518b2b2006-10-20 14:51:45 -07005 * 2004 Oliver Schwartz <Oliver.Schwartz@gmx.de>,
6 * Steven Toth <steve@toth.demon.co.uk>,
7 * Franz Lehner <franz@caos.at>,
8 * Ivan Hawkes <blackhawk@ivanhawkes.com>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07009 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040011 * 2007 Jan Kratochvil <honza@jikos.cz>
Christoph Fritz7beae702010-07-13 09:42:33 -070012 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 *
29 * This driver is based on:
30 * - information from http://euc.jp/periphs/xbox-controller.ja.html
31 * - the iForce driver drivers/char/joystick/iforce.c
32 * - the skeleton-driver drivers/usb/usb-skeleton.c
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040033 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
Ming-ting Yao Wei06049492015-04-14 16:59:11 -070034 * - Xbox One information https://github.com/quantus/xbox-one-controller-protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 *
36 * Thanks to:
37 * - ITO Takayuki for providing essential xpad information on his website
38 * - Vojtech Pavlik - iforce driver / input subsystem
39 * - Greg Kroah-Hartman - usb-skeleton driver
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070040 * - XBOX Linux project - extra USB id's
Ming-ting Yao Wei06049492015-04-14 16:59:11 -070041 * - Pekka Pöyry (quantus) - Xbox One controller reverse engineering
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
43 * TODO:
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070044 * - fine tune axes (especially trigger axes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * - fix "analog" buttons (reported as digital now)
46 * - get rumble working
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070047 * - need USB IDs for other dance pads
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
49 * History:
50 *
51 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
52 *
53 * 2002-07-02 - 0.0.2 : basic working version
54 * - all axes and 9 of the 10 buttons work (german InterAct device)
55 * - the black button does not work
56 *
57 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
58 * - indentation fixes
59 * - usb + input init sequence fixes
60 *
61 * 2002-07-16 - 0.0.4 : minor changes, merge with Vojtech's v0.0.3
62 * - verified the lack of HID and report descriptors
63 * - verified that ALL buttons WORK
64 * - fixed d-pad to axes mapping
65 *
66 * 2002-07-17 - 0.0.5 : simplified d-pad handling
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070067 *
68 * 2004-10-02 - 0.0.6 : DDR pad support
69 * - borrowed from the XBOX linux kernel
70 * - USB id's for commonly used dance pads are present
71 * - dance pads will map D-PAD to buttons, not axes
72 * - pass the module paramater 'dpad_to_buttons' to force
73 * the D-PAD to map to buttons if your pad is not detected
Anssi Hannulabf8cb312008-04-03 16:19:10 -040074 *
75 * Later changes can be tracked in SCM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/kernel.h>
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -080079#include <linux/input.h>
80#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070082#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070084#include <linux/usb/input.h>
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -080085#include <linux/usb/quirks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
88#define DRIVER_DESC "X-Box pad driver"
89
Pavel Rojtberg6f49a392016-05-27 16:24:40 -070090#define XPAD_PKT_LEN 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070092/* xbox d-pads should map to buttons, as is required for DDR pads
93 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080094#define MAP_DPAD_TO_BUTTONS (1 << 0)
95#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070096#define MAP_STICKS_TO_NULL (1 << 2)
97#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
98 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070099
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400100#define XTYPE_XBOX 0
101#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -0400102#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700103#define XTYPE_XBOXONE 3
104#define XTYPE_UNKNOWN 4
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400105
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030106static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700107module_param(dpad_to_buttons, bool, S_IRUGO);
108MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
109
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030110static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800111module_param(triggers_to_buttons, bool, S_IRUGO);
112MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
113
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030114static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700115module_param(sticks_to_null, bool, S_IRUGO);
116MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
117
Cameron Gutmanf712a5a2016-07-27 14:24:55 -0700118static bool auto_poweroff = true;
119module_param(auto_poweroff, bool, S_IWUSR | S_IRUGO);
120MODULE_PARM_DESC(auto_poweroff, "Power off wireless controllers on suspend");
121
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100122static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 u16 idVendor;
124 u16 idProduct;
125 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800126 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400127 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128} xpad_device[] = {
Benjamin Valentin873cb582017-05-07 14:45:08 -0700129 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
130 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800131 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800132 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
133 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800134 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
135 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Benjamin Valentin873cb582017-05-07 14:45:08 -0700136 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700137 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Pavel Rojtberg95162dc2016-01-12 14:35:51 -0800138 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Firmware 2015)", 0, XTYPE_XBOXONE },
Pavel Rojtberg6f49a392016-05-27 16:24:40 -0700139 { 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
Cameron Gutman599b8c02016-11-27 20:37:31 -0800140 { 0x045e, 0x02ea, "Microsoft X-Box One S pad", 0, XTYPE_XBOXONE },
Brian Magnuson99de0912008-04-03 16:19:23 -0400141 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800142 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700143 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800144 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800145 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
146 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
147 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700148 { 0x056e, 0x2004, "Elecom JC-U3613M", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800149 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
150 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
151 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
152 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
153 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
154 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400155 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800156 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
157 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700158 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
159 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700160 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800161 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700162 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Silvan Jegend63b0f02016-03-17 17:15:01 -0700163 { 0x0738, 0x4a01, "Mad Catz FightStick TE 2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400164 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700165 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800166 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700167 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
168 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
169 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800170 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800171 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800172 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
173 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
174 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700175 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800176 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
177 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
178 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
179 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
180 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800181 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700182 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700183 { 0x0e6f, 0x011f, "Rock Candy Gamepad Wired Controller", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700184 { 0x0e6f, 0x0139, "Afterglow Prismatic Wired Controller", 0, XTYPE_XBOXONE },
Benjamin Valentin873cb582017-05-07 14:45:08 -0700185 { 0x0e6f, 0x0146, "Rock Candy Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700186 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800187 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700188 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
189 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
190 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700191 { 0x0e6f, 0x0413, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800192 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700193 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
194 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800195 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
196 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700197 { 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800198 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
199 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
200 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700201 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700202 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800203 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800204 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400205 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800206 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700207 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Cameron Gutman53763662017-04-10 20:44:25 -0700208 { 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700209 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
210 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
211 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
212 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800213 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
214 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Benjamin Valentin4706aa02017-05-07 14:49:09 -0700215 { 0x1689, 0xfe00, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700216 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700217 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800218 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700219 { 0x1bad, 0xf018, "Mad Catz Street Fighter IV SE Fighting Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentin4706aa02017-05-07 14:49:09 -0700220 { 0x1bad, 0xf019, "Mad Catz Brawlstick for Xbox 360", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700221 { 0x1bad, 0xf021, "Mad Cats Ghost Recon FS GamePad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700222 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800223 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700224 { 0x1bad, 0xf02e, "Mad Catz Fightpad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700225 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700226 { 0x1bad, 0xf03a, "Mad Catz SFxT Fightstick Pro", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700227 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800228 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
229 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700230 { 0x1bad, 0xfa01, "MadCatz GamePad", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700231 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800232 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700233 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700234 { 0x24c6, 0x531a, "PowerA Pro Ex", 0, XTYPE_XBOX360 },
235 { 0x24c6, 0x5397, "FUS1ON Tournament Controller", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700236 { 0x24c6, 0x541a, "PowerA Xbox One Mini Wired Controller", 0, XTYPE_XBOXONE },
Benjamin Valentin873cb582017-05-07 14:45:08 -0700237 { 0x24c6, 0x542a, "Xbox ONE spectra", 0, XTYPE_XBOXONE },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700238 { 0x24c6, 0x543a, "PowerA Xbox One wired controller", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700239 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
240 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700241 { 0x24c6, 0x5503, "Hori Fighting Edge", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700242 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700243 { 0x24c6, 0x550d, "Hori GEM Xbox controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700244 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700245 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Benjamin Valentin873cb582017-05-07 14:45:08 -0700246 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800247 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
248 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
Anssi Hannulafc55e952008-04-03 16:18:44 -0400251/* buttons shared with xbox and xbox360 */
252static const signed short xpad_common_btn[] = {
253 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700254 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 -1 /* terminating entry */
256};
257
Anssi Hannulafc55e952008-04-03 16:18:44 -0400258/* original xbox controllers only */
259static const signed short xpad_btn[] = {
260 BTN_C, BTN_Z, /* "analog" buttons */
261 -1 /* terminating entry */
262};
263
Christoph Fritz7beae702010-07-13 09:42:33 -0700264/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700265static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700266 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
267 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700268 -1 /* terminating entry */
269};
270
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800271/* used when triggers are mapped to buttons */
272static const signed short xpad_btn_triggers[] = {
273 BTN_TL2, BTN_TR2, /* triggers left/right */
274 -1
275};
276
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400277static const signed short xpad360_btn[] = { /* buttons for x360 controller */
278 BTN_TL, BTN_TR, /* Button LB/RB */
279 BTN_MODE, /* The big X button */
280 -1
281};
282
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100283static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ABS_X, ABS_Y, /* left stick */
285 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700286 -1 /* terminating entry */
287};
288
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800289/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700290static const signed short xpad_abs_pad[] = {
291 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 -1 /* terminating entry */
293};
294
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800295/* used when triggers are mapped to axes */
296static const signed short xpad_abs_triggers[] = {
297 ABS_Z, ABS_RZ, /* triggers left/right */
298 -1
299};
300
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700301/*
302 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400303 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400304 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700305 * wireless controllers have protocol 129.
306 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400307#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400308 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
309 .idVendor = (vend), \
310 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
311 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400312 .bInterfaceProtocol = (pr)
313#define XPAD_XBOX360_VENDOR(vend) \
314 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
315 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400316
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700317/* The Xbox One controller uses subclass 71 and protocol 208. */
318#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
319 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
320 .idVendor = (vend), \
321 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
322 .bInterfaceSubClass = 71, \
323 .bInterfaceProtocol = (pr)
324#define XPAD_XBOXONE_VENDOR(vend) \
325 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
326
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800327static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700329 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400330 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700331 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400332 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
Benjamin Valentin44bc7222017-05-07 14:48:14 -0700333 XPAD_XBOX360_VENDOR(0x056e), /* Elecom JC-U3613M */
Brian Magnuson99de0912008-04-03 16:19:23 -0400334 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700335 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Silvan Jegend63b0f02016-03-17 17:15:01 -0700336 XPAD_XBOXONE_VENDOR(0x0738), /* Mad Catz FightStick TE 2 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400337 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700338 XPAD_XBOXONE_VENDOR(0x0e6f), /* 0x0e6f X-Box One controllers */
Daniel Tobiasc02fc1d2016-05-27 16:25:10 -0700339 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
340 XPAD_XBOXONE_VENDOR(0x0f0d), /* Hori Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700341 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400342 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700343 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700344 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
Cameron Gutman53763662017-04-10 20:44:25 -0700345 XPAD_XBOXONE_VENDOR(0x1532), /* Razer Wildcat */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700346 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
347 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Daniel Tobiasc02fc1d2016-05-27 16:25:10 -0700348 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
349 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
350 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
351 XPAD_XBOXONE_VENDOR(0x24c6), /* PowerA Controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 { }
353};
354
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800355MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Cameron Gutman81093c92017-04-10 20:43:04 -0700357struct xboxone_init_packet {
358 u16 idVendor;
359 u16 idProduct;
360 const u8 *data;
361 u8 len;
362};
363
364#define XBOXONE_INIT_PKT(_vid, _pid, _data) \
365 { \
366 .idVendor = (_vid), \
367 .idProduct = (_pid), \
368 .data = (_data), \
369 .len = ARRAY_SIZE(_data), \
370 }
371
372
373/*
374 * This packet is required for all Xbox One pads with 2015
375 * or later firmware installed (or present from the factory).
376 */
377static const u8 xboxone_fw2015_init[] = {
378 0x05, 0x20, 0x00, 0x01, 0x00
379};
380
381/*
382 * This packet is required for the Titanfall 2 Xbox One pads
383 * (0x0e6f:0x0165) to finish initialization and for Hori pads
384 * (0x0f0d:0x0067) to make the analog sticks work.
385 */
386static const u8 xboxone_hori_init[] = {
387 0x01, 0x20, 0x00, 0x09, 0x00, 0x04, 0x20, 0x3a,
388 0x00, 0x00, 0x00, 0x80, 0x00
389};
390
391/*
392 * A rumble packet is required for some PowerA pads to start
393 * sending input reports. One of those pads is (0x24c6:0x543a).
394 */
395static const u8 xboxone_zerorumble_init[] = {
396 0x09, 0x00, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00,
397 0x00, 0x00, 0x00, 0x00, 0x00
398};
399
400/*
401 * This specifies the selection of init packets that a gamepad
402 * will be sent on init *and* the order in which they will be
403 * sent. The correct sequence number will be added when the
404 * packet is going to be sent.
405 */
406static const struct xboxone_init_packet xboxone_init_packets[] = {
407 XBOXONE_INIT_PKT(0x0e6f, 0x0165, xboxone_hori_init),
408 XBOXONE_INIT_PKT(0x0f0d, 0x0067, xboxone_hori_init),
409 XBOXONE_INIT_PKT(0x0000, 0x0000, xboxone_fw2015_init),
410 XBOXONE_INIT_PKT(0x24c6, 0x541a, xboxone_zerorumble_init),
411 XBOXONE_INIT_PKT(0x24c6, 0x542a, xboxone_zerorumble_init),
412 XBOXONE_INIT_PKT(0x24c6, 0x543a, xboxone_zerorumble_init),
413};
414
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800415struct xpad_output_packet {
416 u8 data[XPAD_PKT_LEN];
417 u8 len;
418 bool pending;
419};
420
421#define XPAD_OUT_CMD_IDX 0
422#define XPAD_OUT_FF_IDX 1
423#define XPAD_OUT_LED_IDX (1 + IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF))
424#define XPAD_NUM_OUT_PACKETS (1 + \
425 IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF) + \
426 IS_ENABLED(CONFIG_JOYSTICK_XPAD_LEDS))
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700429 struct input_dev *dev; /* input device interface */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800430 struct input_dev __rcu *x360w_dev;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700431 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700432 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500433
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800434 bool pad_present;
435 bool input_created;
Brian Magnuson99de0912008-04-03 16:19:23 -0400436
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700437 struct urb *irq_in; /* urb for interrupt in report */
438 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500440
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400441 struct urb *irq_out; /* urb for interrupt out report */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800442 struct usb_anchor irq_out_anchor;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800443 bool irq_out_active; /* we must not use an active URB */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800444 u8 odata_serial; /* serial number for xbox one protocol */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800445 unsigned char *odata; /* output data */
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400446 dma_addr_t odata_dma;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800447 spinlock_t odata_lock;
448
449 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS];
450 int last_out_packet;
Cameron Gutman81093c92017-04-10 20:43:04 -0700451 int init_seq;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400452
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400453#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
454 struct xpad_led *led;
455#endif
456
457 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700458
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800459 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400460 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700461 int pad_nr; /* the order x360 pads were attached */
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -0700462 const char *name; /* name of the device */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800463 struct work_struct work; /* init/remove device from callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464};
465
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800466static int xpad_init_input(struct usb_xpad *xpad);
467static void xpad_deinit_input(struct usb_xpad *xpad);
Cameron Gutman57b84432017-02-06 13:56:10 -0800468static void xpadone_ack_mode_report(struct usb_xpad *xpad, u8 seq_num);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
471 * xpad_process_packet
472 *
473 * Completes a request by converting the data into events for the
474 * input subsystem.
475 *
476 * The used report descriptor was taken from ITO Takayukis website:
477 * http://euc.jp/periphs/xbox-controller.ja.html
478 */
David Howells7d12e782006-10-05 14:55:46 +0100479static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500481 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Christoph Fritz7beae702010-07-13 09:42:33 -0700483 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
484 /* left stick */
485 input_report_abs(dev, ABS_X,
486 (__s16) le16_to_cpup((__le16 *)(data + 12)));
487 input_report_abs(dev, ABS_Y,
488 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500489
Christoph Fritz7beae702010-07-13 09:42:33 -0700490 /* right stick */
491 input_report_abs(dev, ABS_RX,
492 (__s16) le16_to_cpup((__le16 *)(data + 16)));
493 input_report_abs(dev, ABS_RY,
494 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
495 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800498 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
499 input_report_key(dev, BTN_TL2, data[10]);
500 input_report_key(dev, BTN_TR2, data[11]);
501 } else {
502 input_report_abs(dev, ABS_Z, data[10]);
503 input_report_abs(dev, ABS_RZ, data[11]);
504 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800507 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700508 /* dpad as buttons (left, right, up, down) */
509 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
510 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
511 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
512 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800513 } else {
514 input_report_abs(dev, ABS_HAT0X,
515 !!(data[2] & 0x08) - !!(data[2] & 0x04));
516 input_report_abs(dev, ABS_HAT0Y,
517 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700518 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700521 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700522 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700523 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
524 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* "analog" buttons A, B, X, Y */
527 input_report_key(dev, BTN_A, data[4]);
528 input_report_key(dev, BTN_B, data[5]);
529 input_report_key(dev, BTN_X, data[6]);
530 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* "analog" buttons black, white */
533 input_report_key(dev, BTN_C, data[8]);
534 input_report_key(dev, BTN_Z, data[9]);
535
536 input_sync(dev);
537}
538
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400539/*
540 * xpad360_process_packet
541 *
542 * Completes a request by converting the data into events for the
543 * input subsystem. It is version for xbox 360 controller
544 *
545 * The used report descriptor was taken from:
546 * http://www.free60.org/wiki/Gamepad
547 */
548
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800549static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400550 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400551{
Cameron Gutman1ff5fa32016-05-27 16:23:50 -0700552 /* valid pad data */
553 if (data[0] != 0x00)
554 return;
555
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400556 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800557 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700558 /* dpad as buttons (left, right, up, down) */
559 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
560 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
561 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
562 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -0700563 }
564
565 /*
566 * This should be a simple else block. However historically
567 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
568 * made no sense, but now we can not just switch back and have to
569 * support both behaviors.
570 */
571 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
572 xpad->xtype == XTYPE_XBOX360W) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800573 input_report_abs(dev, ABS_HAT0X,
574 !!(data[2] & 0x08) - !!(data[2] & 0x04));
575 input_report_abs(dev, ABS_HAT0Y,
576 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400577 }
578
579 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400580 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700581 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400582
583 /* stick press left/right */
584 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
585 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
586
587 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400588 input_report_key(dev, BTN_A, data[3] & 0x10);
589 input_report_key(dev, BTN_B, data[3] & 0x20);
590 input_report_key(dev, BTN_X, data[3] & 0x40);
591 input_report_key(dev, BTN_Y, data[3] & 0x80);
592 input_report_key(dev, BTN_TL, data[3] & 0x01);
593 input_report_key(dev, BTN_TR, data[3] & 0x02);
594 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400595
Christoph Fritz7beae702010-07-13 09:42:33 -0700596 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
597 /* left stick */
598 input_report_abs(dev, ABS_X,
599 (__s16) le16_to_cpup((__le16 *)(data + 6)));
600 input_report_abs(dev, ABS_Y,
601 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400602
Christoph Fritz7beae702010-07-13 09:42:33 -0700603 /* right stick */
604 input_report_abs(dev, ABS_RX,
605 (__s16) le16_to_cpup((__le16 *)(data + 10)));
606 input_report_abs(dev, ABS_RY,
607 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
608 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400609
610 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800611 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
612 input_report_key(dev, BTN_TL2, data[4]);
613 input_report_key(dev, BTN_TR2, data[5]);
614 } else {
615 input_report_abs(dev, ABS_Z, data[4]);
616 input_report_abs(dev, ABS_RZ, data[5]);
617 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400618
619 input_sync(dev);
620}
621
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800622static void xpad_presence_work(struct work_struct *work)
623{
624 struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
625 int error;
626
627 if (xpad->pad_present) {
628 error = xpad_init_input(xpad);
629 if (error) {
630 /* complain only, not much else we can do here */
631 dev_err(&xpad->dev->dev,
632 "unable to init device: %d\n", error);
633 } else {
634 rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
635 }
636 } else {
637 RCU_INIT_POINTER(xpad->x360w_dev, NULL);
638 synchronize_rcu();
639 /*
640 * Now that we are sure xpad360w_process_packet is not
641 * using input device we can get rid of it.
642 */
643 xpad_deinit_input(xpad);
644 }
645}
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700646
Brian Magnuson99de0912008-04-03 16:19:23 -0400647/*
648 * xpad360w_process_packet
649 *
650 * Completes a request by converting the data into events for the
651 * input subsystem. It is version for xbox 360 wireless controller.
652 *
653 * Byte.Bit
654 * 00.1 - Status change: The controller or headset has connected/disconnected
655 * Bits 01.7 and 01.6 are valid
656 * 01.7 - Controller present
657 * 01.6 - Headset present
658 * 01.1 - Pad state (Bytes 4+) valid
659 *
660 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400661static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
662{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800663 struct input_dev *dev;
664 bool present;
665
Brian Magnuson99de0912008-04-03 16:19:23 -0400666 /* Presence change */
667 if (data[0] & 0x08) {
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800668 present = (data[1] & 0x80) != 0;
669
670 if (xpad->pad_present != present) {
671 xpad->pad_present = present;
672 schedule_work(&xpad->work);
673 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400674 }
675
676 /* Valid pad data */
Clement Calmels93a017a2015-12-12 21:20:11 -0800677 if (data[1] != 0x1)
Brian Magnuson99de0912008-04-03 16:19:23 -0400678 return;
679
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800680 rcu_read_lock();
681 dev = rcu_dereference(xpad->x360w_dev);
682 if (dev)
683 xpad360_process_packet(xpad, dev, cmd, &data[4]);
684 rcu_read_unlock();
Brian Magnuson99de0912008-04-03 16:19:23 -0400685}
686
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700687/*
Daniel Tobias4f884762016-05-27 16:25:32 -0700688 * xpadone_process_packet
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700689 *
Daniel Tobias4f884762016-05-27 16:25:32 -0700690 * Completes a request by converting the data into events for the
691 * input subsystem. This version is for the Xbox One controller.
692 *
693 * The report format was gleaned from
694 * https://github.com/kylelemons/xbox/blob/master/xbox.go
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700695 */
Daniel Tobias4f884762016-05-27 16:25:32 -0700696static void xpadone_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700697{
Daniel Tobias4f884762016-05-27 16:25:32 -0700698 struct input_dev *dev = xpad->dev;
699
700 /* the xbox button has its own special report */
701 if (data[0] == 0X07) {
Cameron Gutman57b84432017-02-06 13:56:10 -0800702 /*
703 * The Xbox One S controller requires these reports to be
704 * acked otherwise it continues sending them forever and
705 * won't report further mode button events.
706 */
707 if (data[1] == 0x30)
708 xpadone_ack_mode_report(xpad, data[2]);
709
Daniel Tobias4f884762016-05-27 16:25:32 -0700710 input_report_key(dev, BTN_MODE, data[4] & 0x01);
711 input_sync(dev);
712 return;
713 }
714 /* check invalid packet */
715 else if (data[0] != 0X20)
716 return;
717
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700718 /* menu/view buttons */
719 input_report_key(dev, BTN_START, data[4] & 0x04);
720 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
721
722 /* buttons A,B,X,Y */
723 input_report_key(dev, BTN_A, data[4] & 0x10);
724 input_report_key(dev, BTN_B, data[4] & 0x20);
725 input_report_key(dev, BTN_X, data[4] & 0x40);
726 input_report_key(dev, BTN_Y, data[4] & 0x80);
727
728 /* digital pad */
729 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
730 /* dpad as buttons (left, right, up, down) */
731 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
732 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
733 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
734 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
735 } else {
736 input_report_abs(dev, ABS_HAT0X,
737 !!(data[5] & 0x08) - !!(data[5] & 0x04));
738 input_report_abs(dev, ABS_HAT0Y,
739 !!(data[5] & 0x02) - !!(data[5] & 0x01));
740 }
741
742 /* TL/TR */
743 input_report_key(dev, BTN_TL, data[5] & 0x10);
744 input_report_key(dev, BTN_TR, data[5] & 0x20);
745
746 /* stick press left/right */
747 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
748 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
749
750 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
751 /* left stick */
752 input_report_abs(dev, ABS_X,
753 (__s16) le16_to_cpup((__le16 *)(data + 10)));
754 input_report_abs(dev, ABS_Y,
755 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
756
757 /* right stick */
758 input_report_abs(dev, ABS_RX,
759 (__s16) le16_to_cpup((__le16 *)(data + 14)));
760 input_report_abs(dev, ABS_RY,
761 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
762 }
763
764 /* triggers left/right */
765 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
766 input_report_key(dev, BTN_TL2,
767 (__u16) le16_to_cpup((__le16 *)(data + 6)));
768 input_report_key(dev, BTN_TR2,
769 (__u16) le16_to_cpup((__le16 *)(data + 8)));
770 } else {
771 input_report_abs(dev, ABS_Z,
772 (__u16) le16_to_cpup((__le16 *)(data + 6)));
773 input_report_abs(dev, ABS_RZ,
774 (__u16) le16_to_cpup((__le16 *)(data + 8)));
775 }
776
777 input_sync(dev);
778}
779
David Howells7d12e782006-10-05 14:55:46 +0100780static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700783 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200784 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500785
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200786 status = urb->status;
787
788 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 case 0:
790 /* success */
791 break;
792 case -ECONNRESET:
793 case -ENOENT:
794 case -ESHUTDOWN:
795 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700796 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400797 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return;
799 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700800 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400801 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 goto exit;
803 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500804
Brian Magnuson99de0912008-04-03 16:19:23 -0400805 switch (xpad->xtype) {
806 case XTYPE_XBOX360:
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800807 xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400808 break;
809 case XTYPE_XBOX360W:
810 xpad360w_process_packet(xpad, 0, xpad->idata);
811 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700812 case XTYPE_XBOXONE:
813 xpadone_process_packet(xpad, 0, xpad->idata);
814 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400815 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400816 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800820 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700822 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700823 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800826/* Callers must hold xpad->odata_lock spinlock */
Cameron Gutman81093c92017-04-10 20:43:04 -0700827static bool xpad_prepare_next_init_packet(struct usb_xpad *xpad)
828{
829 const struct xboxone_init_packet *init_packet;
830
831 if (xpad->xtype != XTYPE_XBOXONE)
832 return false;
833
834 /* Perform initialization sequence for Xbox One pads that require it */
835 while (xpad->init_seq < ARRAY_SIZE(xboxone_init_packets)) {
836 init_packet = &xboxone_init_packets[xpad->init_seq++];
837
838 if (init_packet->idVendor != 0 &&
839 init_packet->idVendor != xpad->dev->id.vendor)
840 continue;
841
842 if (init_packet->idProduct != 0 &&
843 init_packet->idProduct != xpad->dev->id.product)
844 continue;
845
846 /* This packet applies to our device, so prepare to send it */
847 memcpy(xpad->odata, init_packet->data, init_packet->len);
848 xpad->irq_out->transfer_buffer_length = init_packet->len;
849
850 /* Update packet with current sequence number */
851 xpad->odata[2] = xpad->odata_serial++;
852 return true;
853 }
854
855 return false;
856}
857
858/* Callers must hold xpad->odata_lock spinlock */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800859static bool xpad_prepare_next_out_packet(struct usb_xpad *xpad)
860{
861 struct xpad_output_packet *pkt, *packet = NULL;
862 int i;
863
Cameron Gutman81093c92017-04-10 20:43:04 -0700864 /* We may have init packets to send before we can send user commands */
865 if (xpad_prepare_next_init_packet(xpad))
866 return true;
867
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800868 for (i = 0; i < XPAD_NUM_OUT_PACKETS; i++) {
869 if (++xpad->last_out_packet >= XPAD_NUM_OUT_PACKETS)
870 xpad->last_out_packet = 0;
871
872 pkt = &xpad->out_packets[xpad->last_out_packet];
873 if (pkt->pending) {
874 dev_dbg(&xpad->intf->dev,
875 "%s - found pending output packet %d\n",
876 __func__, xpad->last_out_packet);
877 packet = pkt;
878 break;
879 }
880 }
881
882 if (packet) {
883 memcpy(xpad->odata, packet->data, packet->len);
884 xpad->irq_out->transfer_buffer_length = packet->len;
Pavel Rojtberg4efc6932016-05-27 16:22:25 -0700885 packet->pending = false;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800886 return true;
887 }
888
889 return false;
890}
891
892/* Callers must hold xpad->odata_lock spinlock */
893static int xpad_try_sending_next_out_packet(struct usb_xpad *xpad)
894{
895 int error;
896
897 if (!xpad->irq_out_active && xpad_prepare_next_out_packet(xpad)) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800898 usb_anchor_urb(xpad->irq_out, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800899 error = usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
900 if (error) {
901 dev_err(&xpad->intf->dev,
902 "%s - usb_submit_urb failed with result %d\n",
903 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800904 usb_unanchor_urb(xpad->irq_out);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800905 return -EIO;
906 }
907
908 xpad->irq_out_active = true;
909 }
910
911 return 0;
912}
913
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400914static void xpad_irq_out(struct urb *urb)
915{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700916 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700917 struct device *dev = &xpad->intf->dev;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800918 int status = urb->status;
919 int error;
920 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400921
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800922 spin_lock_irqsave(&xpad->odata_lock, flags);
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200923
924 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700925 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400926 /* success */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800927 xpad->irq_out_active = xpad_prepare_next_out_packet(xpad);
928 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700929
930 case -ECONNRESET:
931 case -ENOENT:
932 case -ESHUTDOWN:
933 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700934 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
935 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800936 xpad->irq_out_active = false;
937 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700938
939 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700940 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
941 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800942 break;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400943 }
944
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800945 if (xpad->irq_out_active) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800946 usb_anchor_urb(urb, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800947 error = usb_submit_urb(urb, GFP_ATOMIC);
948 if (error) {
949 dev_err(dev,
950 "%s - usb_submit_urb failed with result %d\n",
951 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800952 usb_unanchor_urb(urb);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800953 xpad->irq_out_active = false;
954 }
955 }
956
957 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400958}
959
Cameron Gutmanc01b5e72017-01-03 22:40:38 -0800960static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad,
961 struct usb_endpoint_descriptor *ep_irq_out)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400962{
Axel Lin49cc69b2010-11-11 21:39:11 -0800963 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400964
Chris Moellerb514d4f2011-07-04 19:21:59 -0700965 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400966 return 0;
967
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800968 init_usb_anchor(&xpad->irq_out_anchor);
969
Daniel Mack997ea582010-04-12 13:17:25 +0200970 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
971 GFP_KERNEL, &xpad->odata_dma);
Pavel Rojtberga8c34e22016-05-27 16:26:33 -0700972 if (!xpad->odata)
973 return -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400974
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800975 spin_lock_init(&xpad->odata_lock);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400976
977 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800978 if (!xpad->irq_out) {
979 error = -ENOMEM;
Pavel Rojtberga8c34e22016-05-27 16:26:33 -0700980 goto err_free_coherent;
Axel Lin49cc69b2010-11-11 21:39:11 -0800981 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400982
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400983 usb_fill_int_urb(xpad->irq_out, xpad->udev,
984 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
985 xpad->odata, XPAD_PKT_LEN,
986 xpad_irq_out, xpad, ep_irq_out->bInterval);
987 xpad->irq_out->transfer_dma = xpad->odata_dma;
988 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
989
990 return 0;
991
Pavel Rojtberga8c34e22016-05-27 16:26:33 -0700992err_free_coherent:
993 usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
994 return error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400995}
996
997static void xpad_stop_output(struct usb_xpad *xpad)
998{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800999 if (xpad->xtype != XTYPE_UNKNOWN) {
1000 if (!usb_wait_anchor_empty_timeout(&xpad->irq_out_anchor,
1001 5000)) {
1002 dev_warn(&xpad->intf->dev,
1003 "timed out waiting for output URB to complete, killing\n");
1004 usb_kill_anchored_urbs(&xpad->irq_out_anchor);
1005 }
1006 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001007}
1008
1009static void xpad_deinit_output(struct usb_xpad *xpad)
1010{
Chris Moellerb514d4f2011-07-04 19:21:59 -07001011 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001012 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +02001013 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001014 xpad->odata, xpad->odata_dma);
1015 }
1016}
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001017
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001018static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
1019{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001020 struct xpad_output_packet *packet =
1021 &xpad->out_packets[XPAD_OUT_CMD_IDX];
1022 unsigned long flags;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001023 int retval;
1024
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001025 spin_lock_irqsave(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001026
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001027 packet->data[0] = 0x08;
1028 packet->data[1] = 0x00;
1029 packet->data[2] = 0x0F;
1030 packet->data[3] = 0xC0;
1031 packet->data[4] = 0x00;
1032 packet->data[5] = 0x00;
1033 packet->data[6] = 0x00;
1034 packet->data[7] = 0x00;
1035 packet->data[8] = 0x00;
1036 packet->data[9] = 0x00;
1037 packet->data[10] = 0x00;
1038 packet->data[11] = 0x00;
1039 packet->len = 12;
1040 packet->pending = true;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001041
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001042 /* Reset the sequence so we send out presence first */
1043 xpad->last_out_packet = -1;
1044 retval = xpad_try_sending_next_out_packet(xpad);
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001045
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001046 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1047
1048 return retval;
1049}
1050
1051static int xpad_start_xbox_one(struct usb_xpad *xpad)
1052{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001053 unsigned long flags;
1054 int retval;
1055
1056 spin_lock_irqsave(&xpad->odata_lock, flags);
1057
Cameron Gutman81093c92017-04-10 20:43:04 -07001058 /*
1059 * Begin the init sequence by attempting to send a packet.
1060 * We will cycle through the init packet sequence before
1061 * sending any packets from the output ring.
1062 */
1063 xpad->init_seq = 0;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001064 retval = xpad_try_sending_next_out_packet(xpad);
1065
1066 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001067
1068 return retval;
1069}
1070
Cameron Gutman57b84432017-02-06 13:56:10 -08001071static void xpadone_ack_mode_report(struct usb_xpad *xpad, u8 seq_num)
1072{
1073 unsigned long flags;
1074 struct xpad_output_packet *packet =
1075 &xpad->out_packets[XPAD_OUT_CMD_IDX];
1076 static const u8 mode_report_ack[] = {
1077 0x01, 0x20, 0x00, 0x09, 0x00, 0x07, 0x20, 0x02,
1078 0x00, 0x00, 0x00, 0x00, 0x00
1079 };
1080
1081 spin_lock_irqsave(&xpad->odata_lock, flags);
1082
1083 packet->len = sizeof(mode_report_ack);
1084 memcpy(packet->data, mode_report_ack, packet->len);
1085 packet->data[2] = seq_num;
1086 packet->pending = true;
1087
1088 /* Reset the sequence so we send out the ack now */
1089 xpad->last_out_packet = -1;
1090 xpad_try_sending_next_out_packet(xpad);
1091
1092 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1093}
1094
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001095#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -08001096static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001097{
1098 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001099 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX];
Pavel Rojtberg06008152015-10-10 09:32:55 -07001100 __u16 strong;
1101 __u16 weak;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001102 int retval;
1103 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001104
Pavel Rojtberg06008152015-10-10 09:32:55 -07001105 if (effect->type != FF_RUMBLE)
1106 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -08001107
Pavel Rojtberg06008152015-10-10 09:32:55 -07001108 strong = effect->u.rumble.strong_magnitude;
1109 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -08001110
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001111 spin_lock_irqsave(&xpad->odata_lock, flags);
1112
Pavel Rojtberg06008152015-10-10 09:32:55 -07001113 switch (xpad->xtype) {
1114 case XTYPE_XBOX:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001115 packet->data[0] = 0x00;
1116 packet->data[1] = 0x06;
1117 packet->data[2] = 0x00;
1118 packet->data[3] = strong / 256; /* left actuator */
1119 packet->data[4] = 0x00;
1120 packet->data[5] = weak / 256; /* right actuator */
1121 packet->len = 6;
1122 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001123 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001124
Pavel Rojtberg06008152015-10-10 09:32:55 -07001125 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001126 packet->data[0] = 0x00;
1127 packet->data[1] = 0x08;
1128 packet->data[2] = 0x00;
1129 packet->data[3] = strong / 256; /* left actuator? */
1130 packet->data[4] = weak / 256; /* right actuator? */
1131 packet->data[5] = 0x00;
1132 packet->data[6] = 0x00;
1133 packet->data[7] = 0x00;
1134 packet->len = 8;
1135 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001136 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001137
Pavel Rojtberg06008152015-10-10 09:32:55 -07001138 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001139 packet->data[0] = 0x00;
1140 packet->data[1] = 0x01;
1141 packet->data[2] = 0x0F;
1142 packet->data[3] = 0xC0;
1143 packet->data[4] = 0x00;
1144 packet->data[5] = strong / 256;
1145 packet->data[6] = weak / 256;
1146 packet->data[7] = 0x00;
1147 packet->data[8] = 0x00;
1148 packet->data[9] = 0x00;
1149 packet->data[10] = 0x00;
1150 packet->data[11] = 0x00;
1151 packet->len = 12;
1152 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001153 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001154
Pavel Rojtberg06008152015-10-10 09:32:55 -07001155 case XTYPE_XBOXONE:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001156 packet->data[0] = 0x09; /* activate rumble */
Cameron Gutman540c2602016-06-01 11:32:51 -07001157 packet->data[1] = 0x00;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001158 packet->data[2] = xpad->odata_serial++;
Cameron Gutman540c2602016-06-01 11:32:51 -07001159 packet->data[3] = 0x09;
1160 packet->data[4] = 0x00;
1161 packet->data[5] = 0x0F;
1162 packet->data[6] = 0x00;
1163 packet->data[7] = 0x00;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001164 packet->data[8] = strong / 512; /* left actuator */
1165 packet->data[9] = weak / 512; /* right actuator */
Cameron Gutmanae3b4462016-11-27 20:37:56 -08001166 packet->data[10] = 0xFF; /* on period */
1167 packet->data[11] = 0x00; /* off period */
1168 packet->data[12] = 0xFF; /* repeat count */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001169 packet->len = 13;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001170 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001171 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001172
Pavel Rojtberg06008152015-10-10 09:32:55 -07001173 default:
1174 dev_dbg(&xpad->dev->dev,
1175 "%s - rumble command sent to unsupported xpad type: %d\n",
1176 __func__, xpad->xtype);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001177 retval = -EINVAL;
1178 goto out;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001179 }
1180
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001181 retval = xpad_try_sending_next_out_packet(xpad);
1182
1183out:
1184 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1185 return retval;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001186}
1187
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001188static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001189{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -07001190 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -04001191 return 0;
1192
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001193 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
1194
1195 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
1196}
1197
1198#else
1199static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
1200#endif
1201
1202#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
1203#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001204#include <linux/idr.h>
1205
1206static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001207
1208struct xpad_led {
1209 char name[16];
1210 struct led_classdev led_cdev;
1211 struct usb_xpad *xpad;
1212};
1213
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001214/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001215 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001216 * @param command
1217 * 0: off
1218 * 1: all blink, then previous setting
1219 * 2: 1/top-left blink, then on
1220 * 3: 2/top-right blink, then on
1221 * 4: 3/bottom-left blink, then on
1222 * 5: 4/bottom-right blink, then on
1223 * 6: 1/top-left on
1224 * 7: 2/top-right on
1225 * 8: 3/bottom-left on
1226 * 9: 4/bottom-right on
1227 * 10: rotate
1228 * 11: blink, based on previous setting
1229 * 12: slow blink, based on previous setting
1230 * 13: rotate with two lights
1231 * 14: persistent slow all blink
1232 * 15: blink once, then previous setting
1233 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001234static void xpad_send_led_command(struct usb_xpad *xpad, int command)
1235{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001236 struct xpad_output_packet *packet =
1237 &xpad->out_packets[XPAD_OUT_LED_IDX];
1238 unsigned long flags;
1239
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001240 command %= 16;
1241
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001242 spin_lock_irqsave(&xpad->odata_lock, flags);
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001243
1244 switch (xpad->xtype) {
1245 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001246 packet->data[0] = 0x01;
1247 packet->data[1] = 0x03;
1248 packet->data[2] = command;
1249 packet->len = 3;
1250 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001251 break;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001252
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001253 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001254 packet->data[0] = 0x00;
1255 packet->data[1] = 0x00;
1256 packet->data[2] = 0x08;
1257 packet->data[3] = 0x40 + command;
1258 packet->data[4] = 0x00;
1259 packet->data[5] = 0x00;
1260 packet->data[6] = 0x00;
1261 packet->data[7] = 0x00;
1262 packet->data[8] = 0x00;
1263 packet->data[9] = 0x00;
1264 packet->data[10] = 0x00;
1265 packet->data[11] = 0x00;
1266 packet->len = 12;
1267 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001268 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001269 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001270
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001271 xpad_try_sending_next_out_packet(xpad);
1272
1273 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001274}
1275
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001276/*
1277 * Light up the segment corresponding to the pad number on
1278 * Xbox 360 Controllers.
1279 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001280static void xpad_identify_controller(struct usb_xpad *xpad)
1281{
Dmitry Torokhovd9be3982015-12-16 14:24:58 -08001282 led_set_brightness(&xpad->led->led_cdev, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001283}
1284
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001285static void xpad_led_set(struct led_classdev *led_cdev,
1286 enum led_brightness value)
1287{
1288 struct xpad_led *xpad_led = container_of(led_cdev,
1289 struct xpad_led, led_cdev);
1290
1291 xpad_send_led_command(xpad_led->xpad, value);
1292}
1293
1294static int xpad_led_probe(struct usb_xpad *xpad)
1295{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001296 struct xpad_led *led;
1297 struct led_classdev *led_cdev;
1298 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001299
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001300 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001301 return 0;
1302
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001303 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1304 if (!led)
1305 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001306
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001307 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1308 if (xpad->pad_nr < 0) {
1309 error = xpad->pad_nr;
1310 goto err_free_mem;
1311 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001312
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001313 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001314 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001315
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001316 led_cdev = &led->led_cdev;
1317 led_cdev->name = led->name;
1318 led_cdev->brightness_set = xpad_led_set;
Cameron Gutmana1fbf5b2017-02-06 17:03:03 -08001319 led_cdev->flags = LED_CORE_SUSPENDRESUME;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001320
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001321 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001322 if (error)
1323 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001324
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001325 xpad_identify_controller(xpad);
Pavel Rojtbergfbe6a312015-10-19 00:06:58 -07001326
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001327 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001328
1329err_free_id:
1330 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1331err_free_mem:
1332 kfree(led);
1333 xpad->led = NULL;
1334 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001335}
1336
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001337static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001338{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001339 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001340
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001341 if (xpad_led) {
1342 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001343 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -08001344 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001345 }
1346}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001347#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001348static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1349static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001350#endif
1351
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001352static int xpad_start_input(struct usb_xpad *xpad)
1353{
1354 int error;
1355
1356 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1357 return -EIO;
1358
1359 if (xpad->xtype == XTYPE_XBOXONE) {
1360 error = xpad_start_xbox_one(xpad);
1361 if (error) {
1362 usb_kill_urb(xpad->irq_in);
1363 return error;
1364 }
1365 }
1366
1367 return 0;
1368}
1369
1370static void xpad_stop_input(struct usb_xpad *xpad)
1371{
1372 usb_kill_urb(xpad->irq_in);
1373}
1374
Cameron Gutmanf712a5a2016-07-27 14:24:55 -07001375static void xpad360w_poweroff_controller(struct usb_xpad *xpad)
1376{
1377 unsigned long flags;
1378 struct xpad_output_packet *packet =
1379 &xpad->out_packets[XPAD_OUT_CMD_IDX];
1380
1381 spin_lock_irqsave(&xpad->odata_lock, flags);
1382
1383 packet->data[0] = 0x00;
1384 packet->data[1] = 0x00;
1385 packet->data[2] = 0x08;
1386 packet->data[3] = 0xC0;
1387 packet->data[4] = 0x00;
1388 packet->data[5] = 0x00;
1389 packet->data[6] = 0x00;
1390 packet->data[7] = 0x00;
1391 packet->data[8] = 0x00;
1392 packet->data[9] = 0x00;
1393 packet->data[10] = 0x00;
1394 packet->data[11] = 0x00;
1395 packet->len = 12;
1396 packet->pending = true;
1397
1398 /* Reset the sequence so we send out poweroff now */
1399 xpad->last_out_packet = -1;
1400 xpad_try_sending_next_out_packet(xpad);
1401
1402 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1403}
1404
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001405static int xpad360w_start_input(struct usb_xpad *xpad)
1406{
1407 int error;
1408
1409 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1410 if (error)
1411 return -EIO;
1412
1413 /*
1414 * Send presence packet.
1415 * This will force the controller to resend connection packets.
1416 * This is useful in the case we activate the module after the
1417 * adapter has been plugged in, as it won't automatically
1418 * send us info about the controllers.
1419 */
1420 error = xpad_inquiry_pad_presence(xpad);
1421 if (error) {
1422 usb_kill_urb(xpad->irq_in);
1423 return error;
1424 }
1425
1426 return 0;
1427}
1428
1429static void xpad360w_stop_input(struct usb_xpad *xpad)
1430{
1431 usb_kill_urb(xpad->irq_in);
1432
1433 /* Make sure we are done with presence work if it was scheduled */
1434 flush_work(&xpad->work);
1435}
1436
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001437static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001439 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001440
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001441 return xpad_start_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001444static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001446 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001447
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001448 xpad_stop_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449}
1450
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001451static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1452{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001453 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001454 set_bit(abs, input_dev->absbit);
1455
1456 switch (abs) {
1457 case ABS_X:
1458 case ABS_Y:
1459 case ABS_RX:
1460 case ABS_RY: /* the two sticks */
1461 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1462 break;
1463 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001464 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001465 if (xpad->xtype == XTYPE_XBOXONE)
1466 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1467 else
1468 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001469 break;
1470 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001471 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001472 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1473 break;
1474 }
1475}
1476
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001477static void xpad_deinit_input(struct usb_xpad *xpad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001479 if (xpad->input_created) {
1480 xpad->input_created = false;
1481 xpad_led_disconnect(xpad);
1482 input_unregister_device(xpad->dev);
1483 }
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001484}
1485
1486static int xpad_init_input(struct usb_xpad *xpad)
1487{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001488 struct input_dev *input_dev;
Axel Lin49cc69b2010-11-11 21:39:11 -08001489 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001490
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001491 input_dev = input_allocate_device();
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001492 if (!input_dev)
1493 return -ENOMEM;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001494
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001495 xpad->dev = input_dev;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001496 input_dev->name = xpad->name;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001497 input_dev->phys = xpad->phys;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001498 usb_to_input_id(xpad->udev, &input_dev->id);
Pavel Rojtbergb6fc5132016-12-27 11:44:51 -08001499
1500 if (xpad->xtype == XTYPE_XBOX360W) {
1501 /* x360w controllers and the receiver have different ids */
1502 input_dev->id.product = 0x02a1;
1503 }
1504
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001505 input_dev->dev.parent = &xpad->intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001506
1507 input_set_drvdata(input_dev, xpad);
1508
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001509 if (xpad->xtype != XTYPE_XBOX360W) {
1510 input_dev->open = xpad_open;
1511 input_dev->close = xpad_close;
1512 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001513
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001514 __set_bit(EV_KEY, input_dev->evbit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001515
Christoph Fritz7beae702010-07-13 09:42:33 -07001516 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001517 __set_bit(EV_ABS, input_dev->evbit);
Christoph Fritz7beae702010-07-13 09:42:33 -07001518 /* set up axes */
1519 for (i = 0; xpad_abs[i] >= 0; i++)
1520 xpad_set_up_abs(input_dev, xpad_abs[i]);
1521 }
1522
1523 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001524 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001525 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001526
Christoph Fritz7beae702010-07-13 09:42:33 -07001527 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001528 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1529 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001530 for (i = 0; xpad360_btn[i] >= 0; i++)
1531 __set_bit(xpad360_btn[i], input_dev->keybit);
1532 } else {
1533 for (i = 0; xpad_btn[i] >= 0; i++)
1534 __set_bit(xpad_btn[i], input_dev->keybit);
1535 }
1536
1537 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1538 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1539 __set_bit(xpad_btn_pad[i], input_dev->keybit);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -07001540 }
1541
1542 /*
1543 * This should be a simple else block. However historically
1544 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1545 * made no sense, but now we can not just switch back and have to
1546 * support both behaviors.
1547 */
1548 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1549 xpad->xtype == XTYPE_XBOX360W) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001550 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001551 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001552 }
1553
1554 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1555 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1556 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1557 } else {
1558 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1559 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1560 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001561
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001562 error = xpad_init_ff(xpad);
1563 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001564 goto err_free_input;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001565
1566 error = xpad_led_probe(xpad);
1567 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001568 goto err_destroy_ff;
1569
1570 error = input_register_device(xpad->dev);
1571 if (error)
1572 goto err_disconnect_led;
1573
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001574 xpad->input_created = true;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001575 return 0;
1576
1577err_disconnect_led:
1578 xpad_led_disconnect(xpad);
1579err_destroy_ff:
1580 input_ff_destroy(input_dev);
1581err_free_input:
1582 input_free_device(input_dev);
1583 return error;
1584}
1585
1586static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1587{
1588 struct usb_device *udev = interface_to_usbdev(intf);
1589 struct usb_xpad *xpad;
Cameron Gutmanc01b5e72017-01-03 22:40:38 -08001590 struct usb_endpoint_descriptor *ep_irq_in, *ep_irq_out;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001591 int i, error;
1592
Cameron Gutmancaca9252016-06-29 09:51:35 -07001593 if (intf->cur_altsetting->desc.bNumEndpoints != 2)
1594 return -ENODEV;
1595
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001596 for (i = 0; xpad_device[i].idVendor; i++) {
1597 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1598 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1599 break;
1600 }
1601
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001602 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1603 if (!xpad)
1604 return -ENOMEM;
1605
1606 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1607 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1608
1609 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1610 GFP_KERNEL, &xpad->idata_dma);
1611 if (!xpad->idata) {
1612 error = -ENOMEM;
1613 goto err_free_mem;
1614 }
1615
1616 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1617 if (!xpad->irq_in) {
1618 error = -ENOMEM;
1619 goto err_free_idata;
1620 }
1621
1622 xpad->udev = udev;
1623 xpad->intf = intf;
1624 xpad->mapping = xpad_device[i].mapping;
1625 xpad->xtype = xpad_device[i].xtype;
1626 xpad->name = xpad_device[i].name;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001627 INIT_WORK(&xpad->work, xpad_presence_work);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001628
1629 if (xpad->xtype == XTYPE_UNKNOWN) {
1630 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1631 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1632 xpad->xtype = XTYPE_XBOX360W;
Cameron Gutmanc7f14292016-06-23 10:24:42 -07001633 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 208)
1634 xpad->xtype = XTYPE_XBOXONE;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001635 else
1636 xpad->xtype = XTYPE_XBOX360;
1637 } else {
1638 xpad->xtype = XTYPE_XBOX;
1639 }
1640
1641 if (dpad_to_buttons)
1642 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1643 if (triggers_to_buttons)
1644 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1645 if (sticks_to_null)
1646 xpad->mapping |= MAP_STICKS_TO_NULL;
1647 }
1648
Cameron Gutmanc7f14292016-06-23 10:24:42 -07001649 if (xpad->xtype == XTYPE_XBOXONE &&
1650 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1651 /*
1652 * The Xbox One controller lists three interfaces all with the
1653 * same interface class, subclass and protocol. Differentiate by
1654 * interface number.
1655 */
1656 error = -ENODEV;
1657 goto err_free_in_urb;
1658 }
1659
Cameron Gutmanc01b5e72017-01-03 22:40:38 -08001660 ep_irq_in = ep_irq_out = NULL;
1661
1662 for (i = 0; i < 2; i++) {
1663 struct usb_endpoint_descriptor *ep =
1664 &intf->cur_altsetting->endpoint[i].desc;
1665
1666 if (usb_endpoint_dir_in(ep))
1667 ep_irq_in = ep;
1668 else
1669 ep_irq_out = ep;
1670 }
1671
1672 if (!ep_irq_in || !ep_irq_out) {
1673 error = -ENODEV;
1674 goto err_free_in_urb;
1675 }
1676
1677 error = xpad_init_output(intf, xpad, ep_irq_out);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001678 if (error)
1679 goto err_free_in_urb;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 usb_fill_int_urb(xpad->irq_in, udev,
1682 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1683 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1684 xpad, ep_irq_in->bInterval);
1685 xpad->irq_in->transfer_dma = xpad->idata_dma;
1686 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001689
Brian Magnuson99de0912008-04-03 16:19:23 -04001690 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001691 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001692 * Submit the int URB immediately rather than waiting for open
1693 * because we get status messages from the device whether
1694 * or not any controllers are attached. In fact, it's
1695 * exactly the message that a controller has arrived that
1696 * we're waiting for.
1697 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001698 error = xpad360w_start_input(xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001699 if (error)
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001700 goto err_deinit_output;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001701 /*
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001702 * Wireless controllers require RESET_RESUME to work properly
1703 * after suspend. Ideally this quirk should be in usb core
1704 * quirk list, but we have too many vendors producing these
1705 * controllers and we'd need to maintain 2 identical lists
1706 * here in this driver and in usb core.
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001707 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001708 udev->quirks |= USB_QUIRK_RESET_RESUME;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001709 } else {
1710 error = xpad_init_input(xpad);
1711 if (error)
1712 goto err_deinit_output;
Brian Magnuson99de0912008-04-03 16:19:23 -04001713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001715
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001716err_deinit_output:
1717 xpad_deinit_output(xpad);
1718err_free_in_urb:
1719 usb_free_urb(xpad->irq_in);
1720err_free_idata:
1721 usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1722err_free_mem:
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001723 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001724 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
1727static void xpad_disconnect(struct usb_interface *intf)
1728{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001729 struct usb_xpad *xpad = usb_get_intfdata(intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001730
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001731 if (xpad->xtype == XTYPE_XBOX360W)
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001732 xpad360w_stop_input(xpad);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001733
1734 xpad_deinit_input(xpad);
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001735
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001736 /*
1737 * Now that both input device and LED device are gone we can
1738 * stop output URB.
1739 */
1740 xpad_stop_output(xpad);
1741
1742 xpad_deinit_output(xpad);
1743
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001744 usb_free_urb(xpad->irq_in);
1745 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1746 xpad->idata, xpad->idata_dma);
1747
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001748 kfree(xpad);
1749
1750 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001753static int xpad_suspend(struct usb_interface *intf, pm_message_t message)
1754{
1755 struct usb_xpad *xpad = usb_get_intfdata(intf);
1756 struct input_dev *input = xpad->dev;
1757
1758 if (xpad->xtype == XTYPE_XBOX360W) {
1759 /*
1760 * Wireless controllers always listen to input so
1761 * they are notified when controller shows up
1762 * or goes away.
1763 */
1764 xpad360w_stop_input(xpad);
Cameron Gutmanf712a5a2016-07-27 14:24:55 -07001765
1766 /*
1767 * The wireless adapter is going off now, so the
1768 * gamepads are going to become disconnected.
1769 * Unless explicitly disabled, power them down
1770 * so they don't just sit there flashing.
1771 */
1772 if (auto_poweroff && xpad->pad_present)
1773 xpad360w_poweroff_controller(xpad);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001774 } else {
1775 mutex_lock(&input->mutex);
1776 if (input->users)
1777 xpad_stop_input(xpad);
1778 mutex_unlock(&input->mutex);
1779 }
1780
1781 xpad_stop_output(xpad);
1782
1783 return 0;
1784}
1785
1786static int xpad_resume(struct usb_interface *intf)
1787{
1788 struct usb_xpad *xpad = usb_get_intfdata(intf);
1789 struct input_dev *input = xpad->dev;
1790 int retval = 0;
1791
1792 if (xpad->xtype == XTYPE_XBOX360W) {
1793 retval = xpad360w_start_input(xpad);
1794 } else {
1795 mutex_lock(&input->mutex);
Cameron Gutmana1fbf5b2017-02-06 17:03:03 -08001796 if (input->users) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001797 retval = xpad_start_input(xpad);
Cameron Gutmana1fbf5b2017-02-06 17:03:03 -08001798 } else if (xpad->xtype == XTYPE_XBOXONE) {
1799 /*
1800 * Even if there are no users, we'll send Xbox One pads
1801 * the startup sequence so they don't sit there and
1802 * blink until somebody opens the input device again.
1803 */
1804 retval = xpad_start_xbox_one(xpad);
1805 }
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001806 mutex_unlock(&input->mutex);
1807 }
1808
1809 return retval;
1810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 .name = "xpad",
1814 .probe = xpad_probe,
1815 .disconnect = xpad_disconnect,
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001816 .suspend = xpad_suspend,
1817 .resume = xpad_resume,
1818 .reset_resume = xpad_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 .id_table = xpad_table,
1820};
1821
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001822module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824MODULE_AUTHOR(DRIVER_AUTHOR);
1825MODULE_DESCRIPTION(DRIVER_DESC);
1826MODULE_LICENSE("GPL");