• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * X-Box gamepad driver
3  *
4  * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
5  *               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>
9  *               2005 Dominic Cerquetti <binary1230@yahoo.com>
10  *               2006 Adam Buchbinder <adam.buchbinder@gmail.com>
11  *               2007 Jan Kratochvil <honza@jikos.cz>
12  *               2010 Christoph Fritz <chf.fritz@googlemail.com>
13  *
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
33  *  - Xbox 360 information http://www.free60.org/wiki/Gamepad
34  *  - Xbox One information https://github.com/quantus/xbox-one-controller-protocol
35  *
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
40  *  - XBOX Linux project - extra USB id's
41  *  - Pekka Pöyry (quantus) - Xbox One controller reverse engineering
42  *
43  * TODO:
44  *  - fine tune axes (especially trigger axes)
45  *  - fix "analog" buttons (reported as digital now)
46  *  - get rumble working
47  *  - need USB IDs for other dance pads
48  *
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
67  *
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
74  *
75  * Later changes can be tracked in SCM.
76  */
77 
78 #include <linux/kernel.h>
79 #include <linux/input.h>
80 #include <linux/rcupdate.h>
81 #include <linux/slab.h>
82 #include <linux/stat.h>
83 #include <linux/module.h>
84 #include <linux/usb/input.h>
85 #include <linux/usb/quirks.h>
86 
87 #define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
88 #define DRIVER_DESC "X-Box pad driver"
89 
90 #define XPAD_PKT_LEN 64
91 
92 /* 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 */
94 #define MAP_DPAD_TO_BUTTONS		(1 << 0)
95 #define MAP_TRIGGERS_TO_BUTTONS		(1 << 1)
96 #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)
99 
100 #define XTYPE_XBOX        0
101 #define XTYPE_XBOX360     1
102 #define XTYPE_XBOX360W    2
103 #define XTYPE_XBOXONE     3
104 #define XTYPE_UNKNOWN     4
105 
106 static bool dpad_to_buttons;
107 module_param(dpad_to_buttons, bool, S_IRUGO);
108 MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
109 
110 static bool triggers_to_buttons;
111 module_param(triggers_to_buttons, bool, S_IRUGO);
112 MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
113 
114 static bool sticks_to_null;
115 module_param(sticks_to_null, bool, S_IRUGO);
116 MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
117 
118 static bool auto_poweroff = true;
119 module_param(auto_poweroff, bool, S_IWUSR | S_IRUGO);
120 MODULE_PARM_DESC(auto_poweroff, "Power off wireless controllers on suspend");
121 
122 static const struct xpad_device {
123 	u16 idVendor;
124 	u16 idProduct;
125 	char *name;
126 	u8 mapping;
127 	u8 xtype;
128 } xpad_device[] = {
129 	{ 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
130 	{ 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
131 	{ 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
132 	{ 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
133 	{ 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
134 	{ 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
135 	{ 0x045e, 0x02dd, "Microsoft X-Box One pad (Firmware 2015)", 0, XTYPE_XBOXONE },
136 	{ 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
137 	{ 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
138 	{ 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
139 	{ 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
140 	{ 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
141 	{ 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
142 	{ 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
143 	{ 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
144 	{ 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
145 	{ 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
146 	{ 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
147 	{ 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
148 	{ 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
149 	{ 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
150 	{ 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
151 	{ 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
152 	{ 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
153 	{ 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
154 	{ 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
155 	{ 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
156 	{ 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
157 	{ 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
158 	{ 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
159 	{ 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
160 	{ 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
161 	{ 0x0738, 0x4a01, "Mad Catz FightStick TE 2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
162 	{ 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
163 	{ 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
164 	{ 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
165 	{ 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
166 	{ 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
167 	{ 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
168 	{ 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
169 	{ 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
170 	{ 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
171 	{ 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
172 	{ 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
173 	{ 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
174 	{ 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
175 	{ 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
176 	{ 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
177 	{ 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
178 	{ 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
179 	{ 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
180 	{ 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
181 	{ 0x0e6f, 0x0139, "Afterglow Prismatic Wired Controller", 0, XTYPE_XBOXONE },
182 	{ 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
183 	{ 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
184 	{ 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
185 	{ 0x0e6f, 0x0146, "Rock Candy Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
186 	{ 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
187 	{ 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
188 	{ 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
189 	{ 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
190 	{ 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
191 	{ 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
192 	{ 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
193 	{ 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE },
194 	{ 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
195 	{ 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
196 	{ 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
197 	{ 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
198 	{ 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
199 	{ 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
200 	{ 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
201 	{ 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
202 	{ 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
203 	{ 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
204 	{ 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE },
205 	{ 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
206 	{ 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
207 	{ 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
208 	{ 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
209 	{ 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
210 	{ 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
211 	{ 0x24c6, 0x542a, "Xbox ONE spectra", 0, XTYPE_XBOXONE },
212 	{ 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
213 	{ 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
214 	{ 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
215 	{ 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
216 	{ 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
217 	{ 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
218 	{ 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
219 	{ 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
220 	{ 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
221 	{ 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
222 	{ 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
223 	{ 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
224 	{ 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
225 	{ 0x24c6, 0x541a, "PowerA Xbox One Mini Wired Controller", 0, XTYPE_XBOXONE },
226 	{ 0x24c6, 0x543a, "PowerA Xbox One wired controller", 0, XTYPE_XBOXONE },
227 	{ 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
228 	{ 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
229 	{ 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
230 	{ 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
231 	{ 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
232 	{ 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
233 	{ 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
234 };
235 
236 /* buttons shared with xbox and xbox360 */
237 static const signed short xpad_common_btn[] = {
238 	BTN_A, BTN_B, BTN_X, BTN_Y,			/* "analog" buttons */
239 	BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR,	/* start/back/sticks */
240 	-1						/* terminating entry */
241 };
242 
243 /* original xbox controllers only */
244 static const signed short xpad_btn[] = {
245 	BTN_C, BTN_Z,		/* "analog" buttons */
246 	-1			/* terminating entry */
247 };
248 
249 /* used when dpad is mapped to buttons */
250 static const signed short xpad_btn_pad[] = {
251 	BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2,		/* d-pad left, right */
252 	BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4,		/* d-pad up, down */
253 	-1				/* terminating entry */
254 };
255 
256 /* used when triggers are mapped to buttons */
257 static const signed short xpad_btn_triggers[] = {
258 	BTN_TL2, BTN_TR2,		/* triggers left/right */
259 	-1
260 };
261 
262 static const signed short xpad360_btn[] = {  /* buttons for x360 controller */
263 	BTN_TL, BTN_TR,		/* Button LB/RB */
264 	BTN_MODE,		/* The big X button */
265 	-1
266 };
267 
268 static const signed short xpad_abs[] = {
269 	ABS_X, ABS_Y,		/* left stick */
270 	ABS_RX, ABS_RY,		/* right stick */
271 	-1			/* terminating entry */
272 };
273 
274 /* used when dpad is mapped to axes */
275 static const signed short xpad_abs_pad[] = {
276 	ABS_HAT0X, ABS_HAT0Y,	/* d-pad axes */
277 	-1			/* terminating entry */
278 };
279 
280 /* used when triggers are mapped to axes */
281 static const signed short xpad_abs_triggers[] = {
282 	ABS_Z, ABS_RZ,		/* triggers left/right */
283 	-1
284 };
285 
286 /*
287  * Xbox 360 has a vendor-specific class, so we cannot match it with only
288  * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
289  * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
290  * wireless controllers have protocol 129.
291  */
292 #define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
293 	.match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
294 	.idVendor = (vend), \
295 	.bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
296 	.bInterfaceSubClass = 93, \
297 	.bInterfaceProtocol = (pr)
298 #define XPAD_XBOX360_VENDOR(vend) \
299 	{ XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
300 	{ XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
301 
302 /* The Xbox One controller uses subclass 71 and protocol 208. */
303 #define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
304 	.match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
305 	.idVendor = (vend), \
306 	.bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
307 	.bInterfaceSubClass = 71, \
308 	.bInterfaceProtocol = (pr)
309 #define XPAD_XBOXONE_VENDOR(vend) \
310 	{ XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
311 
312 static struct usb_device_id xpad_table[] = {
313 	{ USB_INTERFACE_INFO('X', 'B', 0) },	/* X-Box USB-IF not approved class */
314 	XPAD_XBOX360_VENDOR(0x044f),		/* Thrustmaster X-Box 360 controllers */
315 	XPAD_XBOX360_VENDOR(0x045e),		/* Microsoft X-Box 360 controllers */
316 	XPAD_XBOXONE_VENDOR(0x045e),		/* Microsoft X-Box One controllers */
317 	XPAD_XBOX360_VENDOR(0x046d),		/* Logitech X-Box 360 style controllers */
318 	XPAD_XBOX360_VENDOR(0x0738),		/* Mad Catz X-Box 360 controllers */
319 	{ USB_DEVICE(0x0738, 0x4540) },		/* Mad Catz Beat Pad */
320 	XPAD_XBOXONE_VENDOR(0x0738),		/* Mad Catz FightStick TE 2 */
321 	XPAD_XBOX360_VENDOR(0x0e6f),		/* 0x0e6f X-Box 360 controllers */
322 	XPAD_XBOXONE_VENDOR(0x0e6f),		/* 0x0e6f X-Box One controllers */
323 	XPAD_XBOX360_VENDOR(0x12ab),		/* X-Box 360 dance pads */
324 	XPAD_XBOX360_VENDOR(0x1430),		/* RedOctane X-Box 360 controllers */
325 	XPAD_XBOX360_VENDOR(0x146b),		/* BigBen Interactive Controllers */
326 	XPAD_XBOX360_VENDOR(0x1bad),		/* Harminix Rock Band Guitar and Drums */
327 	XPAD_XBOX360_VENDOR(0x0f0d),		/* Hori Controllers */
328 	XPAD_XBOXONE_VENDOR(0x0f0d),		/* Hori Controllers */
329 	XPAD_XBOX360_VENDOR(0x1689),		/* Razer Onza */
330 	XPAD_XBOX360_VENDOR(0x24c6),		/* PowerA Controllers */
331 	XPAD_XBOXONE_VENDOR(0x24c6),		/* PowerA Controllers */
332 	XPAD_XBOX360_VENDOR(0x1532),		/* Razer Sabertooth */
333 	XPAD_XBOXONE_VENDOR(0x1532),		/* Razer Wildcat */
334 	XPAD_XBOX360_VENDOR(0x15e4),		/* Numark X-Box 360 controllers */
335 	XPAD_XBOX360_VENDOR(0x162e),		/* Joytech X-Box 360 controllers */
336 	{ }
337 };
338 
339 MODULE_DEVICE_TABLE(usb, xpad_table);
340 
341 struct xpad_output_packet {
342 	u8 data[XPAD_PKT_LEN];
343 	u8 len;
344 	bool pending;
345 };
346 
347 #define XPAD_OUT_CMD_IDX	0
348 #define XPAD_OUT_FF_IDX		1
349 #define XPAD_OUT_LED_IDX	(1 + IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF))
350 #define XPAD_NUM_OUT_PACKETS	(1 + \
351 				 IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF) + \
352 				 IS_ENABLED(CONFIG_JOYSTICK_XPAD_LEDS))
353 
354 struct usb_xpad {
355 	struct input_dev *dev;		/* input device interface */
356 	struct input_dev __rcu *x360w_dev;
357 	struct usb_device *udev;	/* usb device */
358 	struct usb_interface *intf;	/* usb interface */
359 
360 	bool pad_present;
361 	bool input_created;
362 
363 	struct urb *irq_in;		/* urb for interrupt in report */
364 	unsigned char *idata;		/* input data */
365 	dma_addr_t idata_dma;
366 
367 	struct urb *irq_out;		/* urb for interrupt out report */
368 	struct usb_anchor irq_out_anchor;
369 	bool irq_out_active;		/* we must not use an active URB */
370 	u8 odata_serial;		/* serial number for xbox one protocol */
371 	unsigned char *odata;		/* output data */
372 	dma_addr_t odata_dma;
373 	spinlock_t odata_lock;
374 
375 	struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS];
376 	int last_out_packet;
377 
378 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
379 	struct xpad_led *led;
380 #endif
381 
382 	char phys[64];			/* physical device path */
383 
384 	int mapping;			/* map d-pad to buttons or to axes */
385 	int xtype;			/* type of xbox device */
386 	int pad_nr;			/* the order x360 pads were attached */
387 	const char *name;		/* name of the device */
388 	struct work_struct work;	/* init/remove device from callback */
389 };
390 
391 static int xpad_init_input(struct usb_xpad *xpad);
392 static void xpad_deinit_input(struct usb_xpad *xpad);
393 
394 /*
395  *	xpad_process_packet
396  *
397  *	Completes a request by converting the data into events for the
398  *	input subsystem.
399  *
400  *	The used report descriptor was taken from ITO Takayukis website:
401  *	 http://euc.jp/periphs/xbox-controller.ja.html
402  */
xpad_process_packet(struct usb_xpad * xpad,u16 cmd,unsigned char * data)403 static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
404 {
405 	struct input_dev *dev = xpad->dev;
406 
407 	if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
408 		/* left stick */
409 		input_report_abs(dev, ABS_X,
410 				 (__s16) le16_to_cpup((__le16 *)(data + 12)));
411 		input_report_abs(dev, ABS_Y,
412 				 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
413 
414 		/* right stick */
415 		input_report_abs(dev, ABS_RX,
416 				 (__s16) le16_to_cpup((__le16 *)(data + 16)));
417 		input_report_abs(dev, ABS_RY,
418 				 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
419 	}
420 
421 	/* triggers left/right */
422 	if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
423 		input_report_key(dev, BTN_TL2, data[10]);
424 		input_report_key(dev, BTN_TR2, data[11]);
425 	} else {
426 		input_report_abs(dev, ABS_Z, data[10]);
427 		input_report_abs(dev, ABS_RZ, data[11]);
428 	}
429 
430 	/* digital pad */
431 	if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
432 		/* dpad as buttons (left, right, up, down) */
433 		input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
434 		input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
435 		input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
436 		input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
437 	} else {
438 		input_report_abs(dev, ABS_HAT0X,
439 				 !!(data[2] & 0x08) - !!(data[2] & 0x04));
440 		input_report_abs(dev, ABS_HAT0Y,
441 				 !!(data[2] & 0x02) - !!(data[2] & 0x01));
442 	}
443 
444 	/* start/back buttons and stick press left/right */
445 	input_report_key(dev, BTN_START,  data[2] & 0x10);
446 	input_report_key(dev, BTN_SELECT, data[2] & 0x20);
447 	input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
448 	input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
449 
450 	/* "analog" buttons A, B, X, Y */
451 	input_report_key(dev, BTN_A, data[4]);
452 	input_report_key(dev, BTN_B, data[5]);
453 	input_report_key(dev, BTN_X, data[6]);
454 	input_report_key(dev, BTN_Y, data[7]);
455 
456 	/* "analog" buttons black, white */
457 	input_report_key(dev, BTN_C, data[8]);
458 	input_report_key(dev, BTN_Z, data[9]);
459 
460 	input_sync(dev);
461 }
462 
463 /*
464  *	xpad360_process_packet
465  *
466  *	Completes a request by converting the data into events for the
467  *	input subsystem. It is version for xbox 360 controller
468  *
469  *	The used report descriptor was taken from:
470  *		http://www.free60.org/wiki/Gamepad
471  */
472 
xpad360_process_packet(struct usb_xpad * xpad,struct input_dev * dev,u16 cmd,unsigned char * data)473 static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
474 				   u16 cmd, unsigned char *data)
475 {
476 	/* valid pad data */
477 	if (data[0] != 0x00)
478 		return;
479 
480 	/* digital pad */
481 	if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
482 		/* dpad as buttons (left, right, up, down) */
483 		input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
484 		input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
485 		input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
486 		input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
487 	}
488 
489 	/*
490 	 * This should be a simple else block. However historically
491 	 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
492 	 * made no sense, but now we can not just switch back and have to
493 	 * support both behaviors.
494 	 */
495 	if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
496 	    xpad->xtype == XTYPE_XBOX360W) {
497 		input_report_abs(dev, ABS_HAT0X,
498 				 !!(data[2] & 0x08) - !!(data[2] & 0x04));
499 		input_report_abs(dev, ABS_HAT0Y,
500 				 !!(data[2] & 0x02) - !!(data[2] & 0x01));
501 	}
502 
503 	/* start/back buttons */
504 	input_report_key(dev, BTN_START,  data[2] & 0x10);
505 	input_report_key(dev, BTN_SELECT, data[2] & 0x20);
506 
507 	/* stick press left/right */
508 	input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
509 	input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
510 
511 	/* buttons A,B,X,Y,TL,TR and MODE */
512 	input_report_key(dev, BTN_A,	data[3] & 0x10);
513 	input_report_key(dev, BTN_B,	data[3] & 0x20);
514 	input_report_key(dev, BTN_X,	data[3] & 0x40);
515 	input_report_key(dev, BTN_Y,	data[3] & 0x80);
516 	input_report_key(dev, BTN_TL,	data[3] & 0x01);
517 	input_report_key(dev, BTN_TR,	data[3] & 0x02);
518 	input_report_key(dev, BTN_MODE,	data[3] & 0x04);
519 
520 	if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
521 		/* left stick */
522 		input_report_abs(dev, ABS_X,
523 				 (__s16) le16_to_cpup((__le16 *)(data + 6)));
524 		input_report_abs(dev, ABS_Y,
525 				 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
526 
527 		/* right stick */
528 		input_report_abs(dev, ABS_RX,
529 				 (__s16) le16_to_cpup((__le16 *)(data + 10)));
530 		input_report_abs(dev, ABS_RY,
531 				 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
532 	}
533 
534 	/* triggers left/right */
535 	if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
536 		input_report_key(dev, BTN_TL2, data[4]);
537 		input_report_key(dev, BTN_TR2, data[5]);
538 	} else {
539 		input_report_abs(dev, ABS_Z, data[4]);
540 		input_report_abs(dev, ABS_RZ, data[5]);
541 	}
542 
543 	input_sync(dev);
544 }
545 
xpad_presence_work(struct work_struct * work)546 static void xpad_presence_work(struct work_struct *work)
547 {
548 	struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
549 	int error;
550 
551 	if (xpad->pad_present) {
552 		error = xpad_init_input(xpad);
553 		if (error) {
554 			/* complain only, not much else we can do here */
555 			dev_err(&xpad->dev->dev,
556 				"unable to init device: %d\n", error);
557 		} else {
558 			rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
559 		}
560 	} else {
561 		RCU_INIT_POINTER(xpad->x360w_dev, NULL);
562 		synchronize_rcu();
563 		/*
564 		 * Now that we are sure xpad360w_process_packet is not
565 		 * using input device we can get rid of it.
566 		 */
567 		xpad_deinit_input(xpad);
568 	}
569 }
570 
571 /*
572  * xpad360w_process_packet
573  *
574  * Completes a request by converting the data into events for the
575  * input subsystem. It is version for xbox 360 wireless controller.
576  *
577  * Byte.Bit
578  * 00.1 - Status change: The controller or headset has connected/disconnected
579  *                       Bits 01.7 and 01.6 are valid
580  * 01.7 - Controller present
581  * 01.6 - Headset present
582  * 01.1 - Pad state (Bytes 4+) valid
583  *
584  */
xpad360w_process_packet(struct usb_xpad * xpad,u16 cmd,unsigned char * data)585 static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
586 {
587 	struct input_dev *dev;
588 	bool present;
589 
590 	/* Presence change */
591 	if (data[0] & 0x08) {
592 		present = (data[1] & 0x80) != 0;
593 
594 		if (xpad->pad_present != present) {
595 			xpad->pad_present = present;
596 			schedule_work(&xpad->work);
597 		}
598 	}
599 
600 	/* Valid pad data */
601 	if (data[1] != 0x1)
602 		return;
603 
604 	rcu_read_lock();
605 	dev = rcu_dereference(xpad->x360w_dev);
606 	if (dev)
607 		xpad360_process_packet(xpad, dev, cmd, &data[4]);
608 	rcu_read_unlock();
609 }
610 
611 /*
612  *	xpadone_process_buttons
613  *
614  *	Process a button update packet from an Xbox one controller.
615  */
xpadone_process_buttons(struct usb_xpad * xpad,struct input_dev * dev,unsigned char * data)616 static void xpadone_process_buttons(struct usb_xpad *xpad,
617 				struct input_dev *dev,
618 				unsigned char *data)
619 {
620 	/* menu/view buttons */
621 	input_report_key(dev, BTN_START,  data[4] & 0x04);
622 	input_report_key(dev, BTN_SELECT, data[4] & 0x08);
623 
624 	/* buttons A,B,X,Y */
625 	input_report_key(dev, BTN_A,	data[4] & 0x10);
626 	input_report_key(dev, BTN_B,	data[4] & 0x20);
627 	input_report_key(dev, BTN_X,	data[4] & 0x40);
628 	input_report_key(dev, BTN_Y,	data[4] & 0x80);
629 
630 	/* digital pad */
631 	if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
632 		/* dpad as buttons (left, right, up, down) */
633 		input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
634 		input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
635 		input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
636 		input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
637 	} else {
638 		input_report_abs(dev, ABS_HAT0X,
639 				 !!(data[5] & 0x08) - !!(data[5] & 0x04));
640 		input_report_abs(dev, ABS_HAT0Y,
641 				 !!(data[5] & 0x02) - !!(data[5] & 0x01));
642 	}
643 
644 	/* TL/TR */
645 	input_report_key(dev, BTN_TL,	data[5] & 0x10);
646 	input_report_key(dev, BTN_TR,	data[5] & 0x20);
647 
648 	/* stick press left/right */
649 	input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
650 	input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
651 
652 	if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
653 		/* left stick */
654 		input_report_abs(dev, ABS_X,
655 				 (__s16) le16_to_cpup((__le16 *)(data + 10)));
656 		input_report_abs(dev, ABS_Y,
657 				 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
658 
659 		/* right stick */
660 		input_report_abs(dev, ABS_RX,
661 				 (__s16) le16_to_cpup((__le16 *)(data + 14)));
662 		input_report_abs(dev, ABS_RY,
663 				 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
664 	}
665 
666 	/* triggers left/right */
667 	if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
668 		input_report_key(dev, BTN_TL2,
669 				 (__u16) le16_to_cpup((__le16 *)(data + 6)));
670 		input_report_key(dev, BTN_TR2,
671 				 (__u16) le16_to_cpup((__le16 *)(data + 8)));
672 	} else {
673 		input_report_abs(dev, ABS_Z,
674 				 (__u16) le16_to_cpup((__le16 *)(data + 6)));
675 		input_report_abs(dev, ABS_RZ,
676 				 (__u16) le16_to_cpup((__le16 *)(data + 8)));
677 	}
678 
679 	input_sync(dev);
680 }
681 
682 /*
683  *	xpadone_process_packet
684  *
685  *	Completes a request by converting the data into events for the
686  *	input subsystem. This version is for the Xbox One controller.
687  *
688  *	The report format was gleaned from
689  *	https://github.com/kylelemons/xbox/blob/master/xbox.go
690  */
691 
xpadone_process_packet(struct usb_xpad * xpad,u16 cmd,unsigned char * data)692 static void xpadone_process_packet(struct usb_xpad *xpad,
693 				u16 cmd, unsigned char *data)
694 {
695 	struct input_dev *dev = xpad->dev;
696 
697 	switch (data[0]) {
698 	case 0x20:
699 		xpadone_process_buttons(xpad, dev, data);
700 		break;
701 
702 	case 0x07:
703 		/* the xbox button has its own special report */
704 		input_report_key(dev, BTN_MODE, data[4] & 0x01);
705 		input_sync(dev);
706 		break;
707 	}
708 }
709 
xpad_irq_in(struct urb * urb)710 static void xpad_irq_in(struct urb *urb)
711 {
712 	struct usb_xpad *xpad = urb->context;
713 	struct device *dev = &xpad->intf->dev;
714 	int retval, status;
715 
716 	status = urb->status;
717 
718 	switch (status) {
719 	case 0:
720 		/* success */
721 		break;
722 	case -ECONNRESET:
723 	case -ENOENT:
724 	case -ESHUTDOWN:
725 		/* this urb is terminated, clean up */
726 		dev_dbg(dev, "%s - urb shutting down with status: %d\n",
727 			__func__, status);
728 		return;
729 	default:
730 		dev_dbg(dev, "%s - nonzero urb status received: %d\n",
731 			__func__, status);
732 		goto exit;
733 	}
734 
735 	switch (xpad->xtype) {
736 	case XTYPE_XBOX360:
737 		xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
738 		break;
739 	case XTYPE_XBOX360W:
740 		xpad360w_process_packet(xpad, 0, xpad->idata);
741 		break;
742 	case XTYPE_XBOXONE:
743 		xpadone_process_packet(xpad, 0, xpad->idata);
744 		break;
745 	default:
746 		xpad_process_packet(xpad, 0, xpad->idata);
747 	}
748 
749 exit:
750 	retval = usb_submit_urb(urb, GFP_ATOMIC);
751 	if (retval)
752 		dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
753 			__func__, retval);
754 }
755 
756 /* Callers must hold xpad->odata_lock spinlock */
xpad_prepare_next_out_packet(struct usb_xpad * xpad)757 static bool xpad_prepare_next_out_packet(struct usb_xpad *xpad)
758 {
759 	struct xpad_output_packet *pkt, *packet = NULL;
760 	int i;
761 
762 	for (i = 0; i < XPAD_NUM_OUT_PACKETS; i++) {
763 		if (++xpad->last_out_packet >= XPAD_NUM_OUT_PACKETS)
764 			xpad->last_out_packet = 0;
765 
766 		pkt = &xpad->out_packets[xpad->last_out_packet];
767 		if (pkt->pending) {
768 			dev_dbg(&xpad->intf->dev,
769 				"%s - found pending output packet %d\n",
770 				__func__, xpad->last_out_packet);
771 			packet = pkt;
772 			break;
773 		}
774 	}
775 
776 	if (packet) {
777 		memcpy(xpad->odata, packet->data, packet->len);
778 		xpad->irq_out->transfer_buffer_length = packet->len;
779 		packet->pending = false;
780 		return true;
781 	}
782 
783 	return false;
784 }
785 
786 /* Callers must hold xpad->odata_lock spinlock */
xpad_try_sending_next_out_packet(struct usb_xpad * xpad)787 static int xpad_try_sending_next_out_packet(struct usb_xpad *xpad)
788 {
789 	int error;
790 
791 	if (!xpad->irq_out_active && xpad_prepare_next_out_packet(xpad)) {
792 		usb_anchor_urb(xpad->irq_out, &xpad->irq_out_anchor);
793 		error = usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
794 		if (error) {
795 			dev_err(&xpad->intf->dev,
796 				"%s - usb_submit_urb failed with result %d\n",
797 				__func__, error);
798 			usb_unanchor_urb(xpad->irq_out);
799 			return -EIO;
800 		}
801 
802 		xpad->irq_out_active = true;
803 	}
804 
805 	return 0;
806 }
807 
xpad_irq_out(struct urb * urb)808 static void xpad_irq_out(struct urb *urb)
809 {
810 	struct usb_xpad *xpad = urb->context;
811 	struct device *dev = &xpad->intf->dev;
812 	int status = urb->status;
813 	int error;
814 	unsigned long flags;
815 
816 	spin_lock_irqsave(&xpad->odata_lock, flags);
817 
818 	switch (status) {
819 	case 0:
820 		/* success */
821 		xpad->irq_out_active = xpad_prepare_next_out_packet(xpad);
822 		break;
823 
824 	case -ECONNRESET:
825 	case -ENOENT:
826 	case -ESHUTDOWN:
827 		/* this urb is terminated, clean up */
828 		dev_dbg(dev, "%s - urb shutting down with status: %d\n",
829 			__func__, status);
830 		xpad->irq_out_active = false;
831 		break;
832 
833 	default:
834 		dev_dbg(dev, "%s - nonzero urb status received: %d\n",
835 			__func__, status);
836 		break;
837 	}
838 
839 	if (xpad->irq_out_active) {
840 		usb_anchor_urb(urb, &xpad->irq_out_anchor);
841 		error = usb_submit_urb(urb, GFP_ATOMIC);
842 		if (error) {
843 			dev_err(dev,
844 				"%s - usb_submit_urb failed with result %d\n",
845 				__func__, error);
846 			usb_unanchor_urb(urb);
847 			xpad->irq_out_active = false;
848 		}
849 	}
850 
851 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
852 }
853 
xpad_init_output(struct usb_interface * intf,struct usb_xpad * xpad)854 static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
855 {
856 	struct usb_endpoint_descriptor *ep_irq_out;
857 	int ep_irq_out_idx;
858 	int error;
859 
860 	if (xpad->xtype == XTYPE_UNKNOWN)
861 		return 0;
862 
863 	init_usb_anchor(&xpad->irq_out_anchor);
864 
865 	xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
866 					 GFP_KERNEL, &xpad->odata_dma);
867 	if (!xpad->odata) {
868 		error = -ENOMEM;
869 		goto fail1;
870 	}
871 
872 	spin_lock_init(&xpad->odata_lock);
873 
874 	xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
875 	if (!xpad->irq_out) {
876 		error = -ENOMEM;
877 		goto fail2;
878 	}
879 
880 	/* Xbox One controller has in/out endpoints swapped. */
881 	ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
882 	ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
883 
884 	usb_fill_int_urb(xpad->irq_out, xpad->udev,
885 			 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
886 			 xpad->odata, XPAD_PKT_LEN,
887 			 xpad_irq_out, xpad, ep_irq_out->bInterval);
888 	xpad->irq_out->transfer_dma = xpad->odata_dma;
889 	xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
890 
891 	return 0;
892 
893  fail2:	usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
894  fail1:	return error;
895 }
896 
xpad_stop_output(struct usb_xpad * xpad)897 static void xpad_stop_output(struct usb_xpad *xpad)
898 {
899 	if (xpad->xtype != XTYPE_UNKNOWN) {
900 		if (!usb_wait_anchor_empty_timeout(&xpad->irq_out_anchor,
901 						   5000)) {
902 			dev_warn(&xpad->intf->dev,
903 				 "timed out waiting for output URB to complete, killing\n");
904 			usb_kill_anchored_urbs(&xpad->irq_out_anchor);
905 		}
906 	}
907 }
908 
xpad_deinit_output(struct usb_xpad * xpad)909 static void xpad_deinit_output(struct usb_xpad *xpad)
910 {
911 	if (xpad->xtype != XTYPE_UNKNOWN) {
912 		usb_free_urb(xpad->irq_out);
913 		usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
914 				xpad->odata, xpad->odata_dma);
915 	}
916 }
917 
xpad_inquiry_pad_presence(struct usb_xpad * xpad)918 static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
919 {
920 	struct xpad_output_packet *packet =
921 			&xpad->out_packets[XPAD_OUT_CMD_IDX];
922 	unsigned long flags;
923 	int retval;
924 
925 	spin_lock_irqsave(&xpad->odata_lock, flags);
926 
927 	packet->data[0] = 0x08;
928 	packet->data[1] = 0x00;
929 	packet->data[2] = 0x0F;
930 	packet->data[3] = 0xC0;
931 	packet->data[4] = 0x00;
932 	packet->data[5] = 0x00;
933 	packet->data[6] = 0x00;
934 	packet->data[7] = 0x00;
935 	packet->data[8] = 0x00;
936 	packet->data[9] = 0x00;
937 	packet->data[10] = 0x00;
938 	packet->data[11] = 0x00;
939 	packet->len = 12;
940 	packet->pending = true;
941 
942 	/* Reset the sequence so we send out presence first */
943 	xpad->last_out_packet = -1;
944 	retval = xpad_try_sending_next_out_packet(xpad);
945 
946 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
947 
948 	return retval;
949 }
950 
xpad_start_xbox_one(struct usb_xpad * xpad)951 static int xpad_start_xbox_one(struct usb_xpad *xpad)
952 {
953 	struct xpad_output_packet *packet =
954 			&xpad->out_packets[XPAD_OUT_CMD_IDX];
955 	unsigned long flags;
956 	int retval;
957 
958 	spin_lock_irqsave(&xpad->odata_lock, flags);
959 
960 	/* Xbox one controller needs to be initialized. */
961 	packet->data[0] = 0x05;
962 	packet->data[1] = 0x20;
963 	packet->data[2] = xpad->odata_serial++; /* packet serial */
964 	packet->data[3] = 0x01; /* rumble bit enable?  */
965 	packet->data[4] = 0x00;
966 	packet->len = 5;
967 	packet->pending = true;
968 
969 	/* Reset the sequence so we send out start packet first */
970 	xpad->last_out_packet = -1;
971 	retval = xpad_try_sending_next_out_packet(xpad);
972 
973 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
974 
975 	return retval;
976 }
977 
978 #ifdef CONFIG_JOYSTICK_XPAD_FF
xpad_play_effect(struct input_dev * dev,void * data,struct ff_effect * effect)979 static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
980 {
981 	struct usb_xpad *xpad = input_get_drvdata(dev);
982 	struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX];
983 	__u16 strong;
984 	__u16 weak;
985 	int retval;
986 	unsigned long flags;
987 
988 	if (effect->type != FF_RUMBLE)
989 		return 0;
990 
991 	strong = effect->u.rumble.strong_magnitude;
992 	weak = effect->u.rumble.weak_magnitude;
993 
994 	spin_lock_irqsave(&xpad->odata_lock, flags);
995 
996 	switch (xpad->xtype) {
997 	case XTYPE_XBOX:
998 		packet->data[0] = 0x00;
999 		packet->data[1] = 0x06;
1000 		packet->data[2] = 0x00;
1001 		packet->data[3] = strong / 256;	/* left actuator */
1002 		packet->data[4] = 0x00;
1003 		packet->data[5] = weak / 256;	/* right actuator */
1004 		packet->len = 6;
1005 		packet->pending = true;
1006 		break;
1007 
1008 	case XTYPE_XBOX360:
1009 		packet->data[0] = 0x00;
1010 		packet->data[1] = 0x08;
1011 		packet->data[2] = 0x00;
1012 		packet->data[3] = strong / 256;  /* left actuator? */
1013 		packet->data[4] = weak / 256;	/* right actuator? */
1014 		packet->data[5] = 0x00;
1015 		packet->data[6] = 0x00;
1016 		packet->data[7] = 0x00;
1017 		packet->len = 8;
1018 		packet->pending = true;
1019 		break;
1020 
1021 	case XTYPE_XBOX360W:
1022 		packet->data[0] = 0x00;
1023 		packet->data[1] = 0x01;
1024 		packet->data[2] = 0x0F;
1025 		packet->data[3] = 0xC0;
1026 		packet->data[4] = 0x00;
1027 		packet->data[5] = strong / 256;
1028 		packet->data[6] = weak / 256;
1029 		packet->data[7] = 0x00;
1030 		packet->data[8] = 0x00;
1031 		packet->data[9] = 0x00;
1032 		packet->data[10] = 0x00;
1033 		packet->data[11] = 0x00;
1034 		packet->len = 12;
1035 		packet->pending = true;
1036 		break;
1037 
1038 	case XTYPE_XBOXONE:
1039 		packet->data[0] = 0x09; /* activate rumble */
1040 		packet->data[1] = 0x00;
1041 		packet->data[2] = xpad->odata_serial++;
1042 		packet->data[3] = 0x09;
1043 		packet->data[4] = 0x00;
1044 		packet->data[5] = 0x0F;
1045 		packet->data[6] = 0x00;
1046 		packet->data[7] = 0x00;
1047 		packet->data[8] = strong / 512;	/* left actuator */
1048 		packet->data[9] = weak / 512;	/* right actuator */
1049 		packet->data[10] = 0xFF;
1050 		packet->data[11] = 0x00;
1051 		packet->data[12] = 0x00;
1052 		packet->len = 13;
1053 		packet->pending = true;
1054 		break;
1055 
1056 	default:
1057 		dev_dbg(&xpad->dev->dev,
1058 			"%s - rumble command sent to unsupported xpad type: %d\n",
1059 			__func__, xpad->xtype);
1060 		retval = -EINVAL;
1061 		goto out;
1062 	}
1063 
1064 	retval = xpad_try_sending_next_out_packet(xpad);
1065 
1066 out:
1067 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
1068 	return retval;
1069 }
1070 
xpad_init_ff(struct usb_xpad * xpad)1071 static int xpad_init_ff(struct usb_xpad *xpad)
1072 {
1073 	if (xpad->xtype == XTYPE_UNKNOWN)
1074 		return 0;
1075 
1076 	input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
1077 
1078 	return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
1079 }
1080 
1081 #else
xpad_init_ff(struct usb_xpad * xpad)1082 static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
1083 #endif
1084 
1085 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
1086 #include <linux/leds.h>
1087 #include <linux/idr.h>
1088 
1089 static DEFINE_IDA(xpad_pad_seq);
1090 
1091 struct xpad_led {
1092 	char name[16];
1093 	struct led_classdev led_cdev;
1094 	struct usb_xpad *xpad;
1095 };
1096 
1097 /**
1098  * set the LEDs on Xbox360 / Wireless Controllers
1099  * @param command
1100  *  0: off
1101  *  1: all blink, then previous setting
1102  *  2: 1/top-left blink, then on
1103  *  3: 2/top-right blink, then on
1104  *  4: 3/bottom-left blink, then on
1105  *  5: 4/bottom-right blink, then on
1106  *  6: 1/top-left on
1107  *  7: 2/top-right on
1108  *  8: 3/bottom-left on
1109  *  9: 4/bottom-right on
1110  * 10: rotate
1111  * 11: blink, based on previous setting
1112  * 12: slow blink, based on previous setting
1113  * 13: rotate with two lights
1114  * 14: persistent slow all blink
1115  * 15: blink once, then previous setting
1116  */
xpad_send_led_command(struct usb_xpad * xpad,int command)1117 static void xpad_send_led_command(struct usb_xpad *xpad, int command)
1118 {
1119 	struct xpad_output_packet *packet =
1120 			&xpad->out_packets[XPAD_OUT_LED_IDX];
1121 	unsigned long flags;
1122 
1123 	command %= 16;
1124 
1125 	spin_lock_irqsave(&xpad->odata_lock, flags);
1126 
1127 	switch (xpad->xtype) {
1128 	case XTYPE_XBOX360:
1129 		packet->data[0] = 0x01;
1130 		packet->data[1] = 0x03;
1131 		packet->data[2] = command;
1132 		packet->len = 3;
1133 		packet->pending = true;
1134 		break;
1135 
1136 	case XTYPE_XBOX360W:
1137 		packet->data[0] = 0x00;
1138 		packet->data[1] = 0x00;
1139 		packet->data[2] = 0x08;
1140 		packet->data[3] = 0x40 + command;
1141 		packet->data[4] = 0x00;
1142 		packet->data[5] = 0x00;
1143 		packet->data[6] = 0x00;
1144 		packet->data[7] = 0x00;
1145 		packet->data[8] = 0x00;
1146 		packet->data[9] = 0x00;
1147 		packet->data[10] = 0x00;
1148 		packet->data[11] = 0x00;
1149 		packet->len = 12;
1150 		packet->pending = true;
1151 		break;
1152 	}
1153 
1154 	xpad_try_sending_next_out_packet(xpad);
1155 
1156 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
1157 }
1158 
1159 /*
1160  * Light up the segment corresponding to the pad number on
1161  * Xbox 360 Controllers.
1162  */
xpad_identify_controller(struct usb_xpad * xpad)1163 static void xpad_identify_controller(struct usb_xpad *xpad)
1164 {
1165 	led_set_brightness(&xpad->led->led_cdev, (xpad->pad_nr % 4) + 2);
1166 }
1167 
xpad_led_set(struct led_classdev * led_cdev,enum led_brightness value)1168 static void xpad_led_set(struct led_classdev *led_cdev,
1169 			 enum led_brightness value)
1170 {
1171 	struct xpad_led *xpad_led = container_of(led_cdev,
1172 						 struct xpad_led, led_cdev);
1173 
1174 	xpad_send_led_command(xpad_led->xpad, value);
1175 }
1176 
xpad_led_probe(struct usb_xpad * xpad)1177 static int xpad_led_probe(struct usb_xpad *xpad)
1178 {
1179 	struct xpad_led *led;
1180 	struct led_classdev *led_cdev;
1181 	int error;
1182 
1183 	if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
1184 		return 0;
1185 
1186 	xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1187 	if (!led)
1188 		return -ENOMEM;
1189 
1190 	xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1191 	if (xpad->pad_nr < 0) {
1192 		error = xpad->pad_nr;
1193 		goto err_free_mem;
1194 	}
1195 
1196 	snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
1197 	led->xpad = xpad;
1198 
1199 	led_cdev = &led->led_cdev;
1200 	led_cdev->name = led->name;
1201 	led_cdev->brightness_set = xpad_led_set;
1202 
1203 	error = led_classdev_register(&xpad->udev->dev, led_cdev);
1204 	if (error)
1205 		goto err_free_id;
1206 
1207 	xpad_identify_controller(xpad);
1208 
1209 	return 0;
1210 
1211 err_free_id:
1212 	ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1213 err_free_mem:
1214 	kfree(led);
1215 	xpad->led = NULL;
1216 	return error;
1217 }
1218 
xpad_led_disconnect(struct usb_xpad * xpad)1219 static void xpad_led_disconnect(struct usb_xpad *xpad)
1220 {
1221 	struct xpad_led *xpad_led = xpad->led;
1222 
1223 	if (xpad_led) {
1224 		led_classdev_unregister(&xpad_led->led_cdev);
1225 		ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1226 		kfree(xpad_led);
1227 	}
1228 }
1229 #else
xpad_led_probe(struct usb_xpad * xpad)1230 static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
xpad_led_disconnect(struct usb_xpad * xpad)1231 static void xpad_led_disconnect(struct usb_xpad *xpad) { }
1232 #endif
1233 
xpad_start_input(struct usb_xpad * xpad)1234 static int xpad_start_input(struct usb_xpad *xpad)
1235 {
1236 	int error;
1237 
1238 	if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1239 		return -EIO;
1240 
1241 	if (xpad->xtype == XTYPE_XBOXONE) {
1242 		error = xpad_start_xbox_one(xpad);
1243 		if (error) {
1244 			usb_kill_urb(xpad->irq_in);
1245 			return error;
1246 		}
1247 	}
1248 
1249 	return 0;
1250 }
1251 
xpad_stop_input(struct usb_xpad * xpad)1252 static void xpad_stop_input(struct usb_xpad *xpad)
1253 {
1254 	usb_kill_urb(xpad->irq_in);
1255 }
1256 
xpad360w_poweroff_controller(struct usb_xpad * xpad)1257 static void xpad360w_poweroff_controller(struct usb_xpad *xpad)
1258 {
1259 	unsigned long flags;
1260 	struct xpad_output_packet *packet =
1261 			&xpad->out_packets[XPAD_OUT_CMD_IDX];
1262 
1263 	spin_lock_irqsave(&xpad->odata_lock, flags);
1264 
1265 	packet->data[0] = 0x00;
1266 	packet->data[1] = 0x00;
1267 	packet->data[2] = 0x08;
1268 	packet->data[3] = 0xC0;
1269 	packet->data[4] = 0x00;
1270 	packet->data[5] = 0x00;
1271 	packet->data[6] = 0x00;
1272 	packet->data[7] = 0x00;
1273 	packet->data[8] = 0x00;
1274 	packet->data[9] = 0x00;
1275 	packet->data[10] = 0x00;
1276 	packet->data[11] = 0x00;
1277 	packet->len = 12;
1278 	packet->pending = true;
1279 
1280 	/* Reset the sequence so we send out poweroff now */
1281 	xpad->last_out_packet = -1;
1282 	xpad_try_sending_next_out_packet(xpad);
1283 
1284 	spin_unlock_irqrestore(&xpad->odata_lock, flags);
1285 }
1286 
xpad360w_start_input(struct usb_xpad * xpad)1287 static int xpad360w_start_input(struct usb_xpad *xpad)
1288 {
1289 	int error;
1290 
1291 	error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1292 	if (error)
1293 		return -EIO;
1294 
1295 	/*
1296 	 * Send presence packet.
1297 	 * This will force the controller to resend connection packets.
1298 	 * This is useful in the case we activate the module after the
1299 	 * adapter has been plugged in, as it won't automatically
1300 	 * send us info about the controllers.
1301 	 */
1302 	error = xpad_inquiry_pad_presence(xpad);
1303 	if (error) {
1304 		usb_kill_urb(xpad->irq_in);
1305 		return error;
1306 	}
1307 
1308 	return 0;
1309 }
1310 
xpad360w_stop_input(struct usb_xpad * xpad)1311 static void xpad360w_stop_input(struct usb_xpad *xpad)
1312 {
1313 	usb_kill_urb(xpad->irq_in);
1314 
1315 	/* Make sure we are done with presence work if it was scheduled */
1316 	flush_work(&xpad->work);
1317 }
1318 
xpad_open(struct input_dev * dev)1319 static int xpad_open(struct input_dev *dev)
1320 {
1321 	struct usb_xpad *xpad = input_get_drvdata(dev);
1322 
1323 	return xpad_start_input(xpad);
1324 }
1325 
xpad_close(struct input_dev * dev)1326 static void xpad_close(struct input_dev *dev)
1327 {
1328 	struct usb_xpad *xpad = input_get_drvdata(dev);
1329 
1330 	xpad_stop_input(xpad);
1331 }
1332 
xpad_set_up_abs(struct input_dev * input_dev,signed short abs)1333 static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1334 {
1335 	struct usb_xpad *xpad = input_get_drvdata(input_dev);
1336 	set_bit(abs, input_dev->absbit);
1337 
1338 	switch (abs) {
1339 	case ABS_X:
1340 	case ABS_Y:
1341 	case ABS_RX:
1342 	case ABS_RY:	/* the two sticks */
1343 		input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1344 		break;
1345 	case ABS_Z:
1346 	case ABS_RZ:	/* the triggers (if mapped to axes) */
1347 		if (xpad->xtype == XTYPE_XBOXONE)
1348 			input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1349 		else
1350 			input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
1351 		break;
1352 	case ABS_HAT0X:
1353 	case ABS_HAT0Y:	/* the d-pad (only if dpad is mapped to axes */
1354 		input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1355 		break;
1356 	}
1357 }
1358 
xpad_deinit_input(struct usb_xpad * xpad)1359 static void xpad_deinit_input(struct usb_xpad *xpad)
1360 {
1361 	if (xpad->input_created) {
1362 		xpad->input_created = false;
1363 		xpad_led_disconnect(xpad);
1364 		input_unregister_device(xpad->dev);
1365 	}
1366 }
1367 
xpad_init_input(struct usb_xpad * xpad)1368 static int xpad_init_input(struct usb_xpad *xpad)
1369 {
1370 	struct input_dev *input_dev;
1371 	int i, error;
1372 
1373 	input_dev = input_allocate_device();
1374 	if (!input_dev)
1375 		return -ENOMEM;
1376 
1377 	xpad->dev = input_dev;
1378 	input_dev->name = xpad->name;
1379 	input_dev->phys = xpad->phys;
1380 	usb_to_input_id(xpad->udev, &input_dev->id);
1381 
1382 	if (xpad->xtype == XTYPE_XBOX360W) {
1383 		/* x360w controllers and the receiver have different ids */
1384 		input_dev->id.product = 0x02a1;
1385 	}
1386 
1387 	input_dev->dev.parent = &xpad->intf->dev;
1388 
1389 	input_set_drvdata(input_dev, xpad);
1390 
1391 	if (xpad->xtype != XTYPE_XBOX360W) {
1392 		input_dev->open = xpad_open;
1393 		input_dev->close = xpad_close;
1394 	}
1395 
1396 	__set_bit(EV_KEY, input_dev->evbit);
1397 
1398 	if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1399 		__set_bit(EV_ABS, input_dev->evbit);
1400 		/* set up axes */
1401 		for (i = 0; xpad_abs[i] >= 0; i++)
1402 			xpad_set_up_abs(input_dev, xpad_abs[i]);
1403 	}
1404 
1405 	/* set up standard buttons */
1406 	for (i = 0; xpad_common_btn[i] >= 0; i++)
1407 		__set_bit(xpad_common_btn[i], input_dev->keybit);
1408 
1409 	/* set up model-specific ones */
1410 	if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1411 	    xpad->xtype == XTYPE_XBOXONE) {
1412 		for (i = 0; xpad360_btn[i] >= 0; i++)
1413 			__set_bit(xpad360_btn[i], input_dev->keybit);
1414 	} else {
1415 		for (i = 0; xpad_btn[i] >= 0; i++)
1416 			__set_bit(xpad_btn[i], input_dev->keybit);
1417 	}
1418 
1419 	if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1420 		for (i = 0; xpad_btn_pad[i] >= 0; i++)
1421 			__set_bit(xpad_btn_pad[i], input_dev->keybit);
1422 	}
1423 
1424 	/*
1425 	 * This should be a simple else block. However historically
1426 	 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1427 	 * made no sense, but now we can not just switch back and have to
1428 	 * support both behaviors.
1429 	 */
1430 	if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1431 	    xpad->xtype == XTYPE_XBOX360W) {
1432 		for (i = 0; xpad_abs_pad[i] >= 0; i++)
1433 			xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
1434 	}
1435 
1436 	if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1437 		for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1438 			__set_bit(xpad_btn_triggers[i], input_dev->keybit);
1439 	} else {
1440 		for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1441 			xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1442 	}
1443 
1444 	error = xpad_init_ff(xpad);
1445 	if (error)
1446 		goto err_free_input;
1447 
1448 	error = xpad_led_probe(xpad);
1449 	if (error)
1450 		goto err_destroy_ff;
1451 
1452 	error = input_register_device(xpad->dev);
1453 	if (error)
1454 		goto err_disconnect_led;
1455 
1456 	xpad->input_created = true;
1457 	return 0;
1458 
1459 err_disconnect_led:
1460 	xpad_led_disconnect(xpad);
1461 err_destroy_ff:
1462 	input_ff_destroy(input_dev);
1463 err_free_input:
1464 	input_free_device(input_dev);
1465 	return error;
1466 }
1467 
xpad_probe(struct usb_interface * intf,const struct usb_device_id * id)1468 static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1469 {
1470 	struct usb_device *udev = interface_to_usbdev(intf);
1471 	struct usb_xpad *xpad;
1472 	struct usb_endpoint_descriptor *ep_irq_in;
1473 	int ep_irq_in_idx;
1474 	int i, error;
1475 
1476 	if (intf->cur_altsetting->desc.bNumEndpoints != 2)
1477 		return -ENODEV;
1478 
1479 	for (i = 0; xpad_device[i].idVendor; i++) {
1480 		if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1481 		    (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1482 			break;
1483 	}
1484 
1485 	xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1486 	if (!xpad)
1487 		return -ENOMEM;
1488 
1489 	usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1490 	strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1491 
1492 	xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1493 					 GFP_KERNEL, &xpad->idata_dma);
1494 	if (!xpad->idata) {
1495 		error = -ENOMEM;
1496 		goto err_free_mem;
1497 	}
1498 
1499 	xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1500 	if (!xpad->irq_in) {
1501 		error = -ENOMEM;
1502 		goto err_free_idata;
1503 	}
1504 
1505 	xpad->udev = udev;
1506 	xpad->intf = intf;
1507 	xpad->mapping = xpad_device[i].mapping;
1508 	xpad->xtype = xpad_device[i].xtype;
1509 	xpad->name = xpad_device[i].name;
1510 	INIT_WORK(&xpad->work, xpad_presence_work);
1511 
1512 	if (xpad->xtype == XTYPE_UNKNOWN) {
1513 		if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1514 			if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1515 				xpad->xtype = XTYPE_XBOX360W;
1516 			else if (intf->cur_altsetting->desc.bInterfaceProtocol == 208)
1517 				xpad->xtype = XTYPE_XBOXONE;
1518 			else
1519 				xpad->xtype = XTYPE_XBOX360;
1520 		} else {
1521 			xpad->xtype = XTYPE_XBOX;
1522 		}
1523 
1524 		if (dpad_to_buttons)
1525 			xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1526 		if (triggers_to_buttons)
1527 			xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1528 		if (sticks_to_null)
1529 			xpad->mapping |= MAP_STICKS_TO_NULL;
1530 	}
1531 
1532 	if (xpad->xtype == XTYPE_XBOXONE &&
1533 	    intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1534 		/*
1535 		 * The Xbox One controller lists three interfaces all with the
1536 		 * same interface class, subclass and protocol. Differentiate by
1537 		 * interface number.
1538 		 */
1539 		error = -ENODEV;
1540 		goto err_free_in_urb;
1541 	}
1542 
1543 	error = xpad_init_output(intf, xpad);
1544 	if (error)
1545 		goto err_free_in_urb;
1546 
1547 	/* Xbox One controller has in/out endpoints swapped. */
1548 	ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1549 	ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1550 
1551 	usb_fill_int_urb(xpad->irq_in, udev,
1552 			 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1553 			 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1554 			 xpad, ep_irq_in->bInterval);
1555 	xpad->irq_in->transfer_dma = xpad->idata_dma;
1556 	xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
1557 
1558 	usb_set_intfdata(intf, xpad);
1559 
1560 	if (xpad->xtype == XTYPE_XBOX360W) {
1561 		/*
1562 		 * Submit the int URB immediately rather than waiting for open
1563 		 * because we get status messages from the device whether
1564 		 * or not any controllers are attached.  In fact, it's
1565 		 * exactly the message that a controller has arrived that
1566 		 * we're waiting for.
1567 		 */
1568 		error = xpad360w_start_input(xpad);
1569 		if (error)
1570 			goto err_deinit_output;
1571 		/*
1572 		 * Wireless controllers require RESET_RESUME to work properly
1573 		 * after suspend. Ideally this quirk should be in usb core
1574 		 * quirk list, but we have too many vendors producing these
1575 		 * controllers and we'd need to maintain 2 identical lists
1576 		 * here in this driver and in usb core.
1577 		 */
1578 		udev->quirks |= USB_QUIRK_RESET_RESUME;
1579 	} else {
1580 		error = xpad_init_input(xpad);
1581 		if (error)
1582 			goto err_deinit_output;
1583 	}
1584 	return 0;
1585 
1586 err_deinit_output:
1587 	xpad_deinit_output(xpad);
1588 err_free_in_urb:
1589 	usb_free_urb(xpad->irq_in);
1590 err_free_idata:
1591 	usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1592 err_free_mem:
1593 	kfree(xpad);
1594 	return error;
1595 }
1596 
xpad_disconnect(struct usb_interface * intf)1597 static void xpad_disconnect(struct usb_interface *intf)
1598 {
1599 	struct usb_xpad *xpad = usb_get_intfdata(intf);
1600 
1601 	if (xpad->xtype == XTYPE_XBOX360W)
1602 		xpad360w_stop_input(xpad);
1603 
1604 	xpad_deinit_input(xpad);
1605 
1606 	/*
1607 	 * Now that both input device and LED device are gone we can
1608 	 * stop output URB.
1609 	 */
1610 	xpad_stop_output(xpad);
1611 
1612 	xpad_deinit_output(xpad);
1613 
1614 	usb_free_urb(xpad->irq_in);
1615 	usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1616 			xpad->idata, xpad->idata_dma);
1617 
1618 	kfree(xpad);
1619 
1620 	usb_set_intfdata(intf, NULL);
1621 }
1622 
xpad_suspend(struct usb_interface * intf,pm_message_t message)1623 static int xpad_suspend(struct usb_interface *intf, pm_message_t message)
1624 {
1625 	struct usb_xpad *xpad = usb_get_intfdata(intf);
1626 	struct input_dev *input = xpad->dev;
1627 
1628 	if (xpad->xtype == XTYPE_XBOX360W) {
1629 		/*
1630 		 * Wireless controllers always listen to input so
1631 		 * they are notified when controller shows up
1632 		 * or goes away.
1633 		 */
1634 		xpad360w_stop_input(xpad);
1635 
1636 		/*
1637 		 * The wireless adapter is going off now, so the
1638 		 * gamepads are going to become disconnected.
1639 		 * Unless explicitly disabled, power them down
1640 		 * so they don't just sit there flashing.
1641 		 */
1642 		if (auto_poweroff && xpad->pad_present)
1643 			xpad360w_poweroff_controller(xpad);
1644 	} else {
1645 		mutex_lock(&input->mutex);
1646 		if (input->users)
1647 			xpad_stop_input(xpad);
1648 		mutex_unlock(&input->mutex);
1649 	}
1650 
1651 	xpad_stop_output(xpad);
1652 
1653 	return 0;
1654 }
1655 
xpad_resume(struct usb_interface * intf)1656 static int xpad_resume(struct usb_interface *intf)
1657 {
1658 	struct usb_xpad *xpad = usb_get_intfdata(intf);
1659 	struct input_dev *input = xpad->dev;
1660 	int retval = 0;
1661 
1662 	if (xpad->xtype == XTYPE_XBOX360W) {
1663 		retval = xpad360w_start_input(xpad);
1664 	} else {
1665 		mutex_lock(&input->mutex);
1666 		if (input->users)
1667 			retval = xpad_start_input(xpad);
1668 		mutex_unlock(&input->mutex);
1669 	}
1670 
1671 	return retval;
1672 }
1673 
1674 static struct usb_driver xpad_driver = {
1675 	.name		= "xpad",
1676 	.probe		= xpad_probe,
1677 	.disconnect	= xpad_disconnect,
1678 	.suspend	= xpad_suspend,
1679 	.resume		= xpad_resume,
1680 	.reset_resume	= xpad_resume,
1681 	.id_table	= xpad_table,
1682 };
1683 
1684 module_usb_driver(xpad_driver);
1685 
1686 MODULE_AUTHOR(DRIVER_AUTHOR);
1687 MODULE_DESCRIPTION(DRIVER_DESC);
1688 MODULE_LICENSE("GPL");
1689