]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/input/joystick/xpad.c
Input: xpad - fix Razer Atrox Arcade Stick button mapping
[mirror_ubuntu-bionic-kernel.git] / drivers / input / joystick / xpad.c
CommitLineData
1da177e4 1/*
bf8cb314 2 * X-Box gamepad driver
1da177e4
LT
3 *
4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
d518b2b4
DC
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>
deb8ee43
DC
9 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
c7d9f7eb 11 * 2007 Jan Kratochvil <honza@jikos.cz>
7beae702 12 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
1da177e4
LT
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
c7d9f7eb 33 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
0604949c 34 * - Xbox One information https://github.com/quantus/xbox-one-controller-protocol
1da177e4
LT
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
d518b2b4 40 * - XBOX Linux project - extra USB id's
0604949c 41 * - Pekka Pöyry (quantus) - Xbox One controller reverse engineering
1da177e4
LT
42 *
43 * TODO:
deb8ee43 44 * - fine tune axes (especially trigger axes)
1da177e4
LT
45 * - fix "analog" buttons (reported as digital now)
46 * - get rumble working
deb8ee43 47 * - need USB IDs for other dance pads
1da177e4
LT
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
d518b2b4
DC
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
bf8cb314
AH
74 *
75 * Later changes can be tracked in SCM.
1da177e4
LT
76 */
77
1da177e4 78#include <linux/kernel.h>
1da177e4 79#include <linux/slab.h>
deb8ee43 80#include <linux/stat.h>
1da177e4 81#include <linux/module.h>
ae0dadcf 82#include <linux/usb/input.h>
1da177e4 83
1da177e4
LT
84#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
85#define DRIVER_DESC "X-Box pad driver"
86
87#define XPAD_PKT_LEN 32
88
deb8ee43
DC
89/* xbox d-pads should map to buttons, as is required for DDR pads
90 but we map them to axes when possible to simplify things */
b45d44e7
NL
91#define MAP_DPAD_TO_BUTTONS (1 << 0)
92#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
7beae702
CF
93#define MAP_STICKS_TO_NULL (1 << 2)
94#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
95 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
deb8ee43 96
c7d9f7eb
JK
97#define XTYPE_XBOX 0
98#define XTYPE_XBOX360 1
99de0912 99#define XTYPE_XBOX360W 2
1a48ff81
TM
100#define XTYPE_XBOXONE 3
101#define XTYPE_UNKNOWN 4
c7d9f7eb 102
90ab5ee9 103static bool dpad_to_buttons;
deb8ee43
DC
104module_param(dpad_to_buttons, bool, S_IRUGO);
105MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
106
90ab5ee9 107static bool triggers_to_buttons;
b45d44e7
NL
108module_param(triggers_to_buttons, bool, S_IRUGO);
109MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
110
90ab5ee9 111static bool sticks_to_null;
7beae702
CF
112module_param(sticks_to_null, bool, S_IRUGO);
113MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
114
4c4c9432 115static const struct xpad_device {
1da177e4
LT
116 u16 idVendor;
117 u16 idProduct;
118 char *name;
b45d44e7 119 u8 mapping;
c7d9f7eb 120 u8 xtype;
1da177e4 121} xpad_device[] = {
b45d44e7 122 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
b45d44e7
NL
123 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
124 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
540602a4
GA
125 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
126 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
1a48ff81 127 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
39a7a888 128 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Covert Forces)", 0, XTYPE_XBOXONE },
540602a4 129 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
99de0912 130 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
b45d44e7 131 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
f554f619 132 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
8e2f2325 133 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
f554f619 134 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
8e2f2325 135 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
b45d44e7
NL
136 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
137 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
138 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
139 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
140 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
141 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
142 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
143 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
144 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
c7d9f7eb 145 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7
NL
146 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
147 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
f554f619
BV
148 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
149 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
be662271 150 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
b45d44e7 151 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
f554f619 152 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
c7d9f7eb 153 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
f554f619 154 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
540602a4 155 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
f554f619
BV
156 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
157 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
158 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
b45d44e7 159 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
540602a4 160 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
b45d44e7
NL
161 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
162 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
163 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
e76b8ee2 164 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7
NL
165 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
166 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
167 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
168 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
169 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
540602a4 170 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
f554f619 171 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
6ac8a99b 172 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
540602a4 173 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
f554f619
BV
174 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
175 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
176 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
b45d44e7 177 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
f554f619
BV
178 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
179 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
540602a4
GA
180 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
181 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
b45d44e7
NL
182 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
183 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
184 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
fabadbc7 185 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
f554f619 186 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
540602a4 187 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7 188 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
c7d9f7eb 189 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7 190 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
f554f619
BV
191 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
192 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
193 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
194 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
195 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
dbb48007
TOR
196 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
197 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
a7b44738 198 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
fabadbc7 199 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
805423e8 200 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
540602a4 201 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
f554f619 202 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
540602a4 203 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
f554f619
BV
204 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
205 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
540602a4
GA
206 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
207 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
470446ec 208 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
540602a4 209 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
f554f619
BV
210 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
211 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
212 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
213 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
214 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
4b546258 215 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
b45d44e7
NL
216 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
217 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
1da177e4
LT
218};
219
fc55e952
AH
220/* buttons shared with xbox and xbox360 */
221static const signed short xpad_common_btn[] = {
222 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
7beae702 223 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
1da177e4
LT
224 -1 /* terminating entry */
225};
226
fc55e952
AH
227/* original xbox controllers only */
228static const signed short xpad_btn[] = {
229 BTN_C, BTN_Z, /* "analog" buttons */
230 -1 /* terminating entry */
231};
232
7beae702 233/* used when dpad is mapped to buttons */
deb8ee43 234static const signed short xpad_btn_pad[] = {
7beae702
CF
235 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
236 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
deb8ee43
DC
237 -1 /* terminating entry */
238};
239
b45d44e7
NL
240/* used when triggers are mapped to buttons */
241static const signed short xpad_btn_triggers[] = {
242 BTN_TL2, BTN_TR2, /* triggers left/right */
243 -1
244};
245
246
c7d9f7eb
JK
247static const signed short xpad360_btn[] = { /* buttons for x360 controller */
248 BTN_TL, BTN_TR, /* Button LB/RB */
249 BTN_MODE, /* The big X button */
250 -1
251};
252
4c4c9432 253static const signed short xpad_abs[] = {
1da177e4
LT
254 ABS_X, ABS_Y, /* left stick */
255 ABS_RX, ABS_RY, /* right stick */
deb8ee43
DC
256 -1 /* terminating entry */
257};
258
b45d44e7 259/* used when dpad is mapped to axes */
deb8ee43
DC
260static const signed short xpad_abs_pad[] = {
261 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
1da177e4
LT
262 -1 /* terminating entry */
263};
264
b45d44e7
NL
265/* used when triggers are mapped to axes */
266static const signed short xpad_abs_triggers[] = {
267 ABS_Z, ABS_RZ, /* triggers left/right */
268 -1
269};
270
1a48ff81
TM
271/*
272 * Xbox 360 has a vendor-specific class, so we cannot match it with only
8a0f83ea 273 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
99de0912 274 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
1a48ff81
TM
275 * wireless controllers have protocol 129.
276 */
99de0912 277#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
8a0f83ea
AH
278 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
279 .idVendor = (vend), \
280 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
281 .bInterfaceSubClass = 93, \
99de0912
BM
282 .bInterfaceProtocol = (pr)
283#define XPAD_XBOX360_VENDOR(vend) \
284 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
285 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
8a0f83ea 286
1a48ff81
TM
287/* The Xbox One controller uses subclass 71 and protocol 208. */
288#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
289 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
290 .idVendor = (vend), \
291 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
292 .bInterfaceSubClass = 71, \
293 .bInterfaceProtocol = (pr)
294#define XPAD_XBOXONE_VENDOR(vend) \
295 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
296
0d027966 297static struct usb_device_id xpad_table[] = {
1da177e4 298 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
4dfb15cd 299 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
99de0912 300 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
1a48ff81 301 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
99de0912
BM
302 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
303 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
3ffb62cb 304 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
99de0912 305 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
fabadbc7 306 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
99de0912 307 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
3ac91d36 308 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
fabadbc7 309 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
cc71a7e8
IK
310 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
311 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
540602a4 312 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
f554f619
BV
313 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
314 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
315 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
1da177e4
LT
316 { }
317};
318
0d027966 319MODULE_DEVICE_TABLE(usb, xpad_table);
1da177e4
LT
320
321struct usb_xpad {
deb8ee43
DC
322 struct input_dev *dev; /* input device interface */
323 struct usb_device *udev; /* usb device */
8818e419 324 struct usb_interface *intf; /* usb interface */
05f091ab 325
99de0912
BM
326 int pad_present;
327
deb8ee43
DC
328 struct urb *irq_in; /* urb for interrupt in report */
329 unsigned char *idata; /* input data */
1da177e4 330 dma_addr_t idata_dma;
05f091ab 331
99de0912
BM
332 struct urb *bulk_out;
333 unsigned char *bdata;
334
e01a06e8
JK
335 struct urb *irq_out; /* urb for interrupt out report */
336 unsigned char *odata; /* output data */
337 dma_addr_t odata_dma;
4994cd8d 338 struct mutex odata_mutex;
4994cd8d
JK
339
340#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
341 struct xpad_led *led;
e01a06e8
JK
342#endif
343
4994cd8d 344 char phys[64]; /* physical device path */
deb8ee43 345
b45d44e7 346 int mapping; /* map d-pad to buttons or to axes */
c7d9f7eb 347 int xtype; /* type of xbox device */
cae705ba 348 unsigned long led_no; /* led to lit on xbox360 controllers */
1da177e4
LT
349};
350
351/*
352 * xpad_process_packet
353 *
354 * Completes a request by converting the data into events for the
355 * input subsystem.
356 *
357 * The used report descriptor was taken from ITO Takayukis website:
358 * http://euc.jp/periphs/xbox-controller.ja.html
359 */
360
7d12e780 361static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
1da177e4 362{
c5b7c7c3 363 struct input_dev *dev = xpad->dev;
1da177e4 364
7beae702
CF
365 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
366 /* left stick */
367 input_report_abs(dev, ABS_X,
368 (__s16) le16_to_cpup((__le16 *)(data + 12)));
369 input_report_abs(dev, ABS_Y,
370 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
371
372 /* right stick */
373 input_report_abs(dev, ABS_RX,
374 (__s16) le16_to_cpup((__le16 *)(data + 16)));
375 input_report_abs(dev, ABS_RY,
376 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
377 }
05f091ab 378
1da177e4 379 /* triggers left/right */
b45d44e7
NL
380 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
381 input_report_key(dev, BTN_TL2, data[10]);
382 input_report_key(dev, BTN_TR2, data[11]);
383 } else {
384 input_report_abs(dev, ABS_Z, data[10]);
385 input_report_abs(dev, ABS_RZ, data[11]);
386 }
05f091ab 387
1da177e4 388 /* digital pad */
b45d44e7 389 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
7beae702
CF
390 /* dpad as buttons (left, right, up, down) */
391 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
392 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
393 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
394 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
b45d44e7
NL
395 } else {
396 input_report_abs(dev, ABS_HAT0X,
397 !!(data[2] & 0x08) - !!(data[2] & 0x04));
398 input_report_abs(dev, ABS_HAT0Y,
399 !!(data[2] & 0x02) - !!(data[2] & 0x01));
deb8ee43 400 }
05f091ab 401
1da177e4 402 /* start/back buttons and stick press left/right */
deb8ee43 403 input_report_key(dev, BTN_START, data[2] & 0x10);
7beae702 404 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
deb8ee43
DC
405 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
406 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
05f091ab 407
1da177e4
LT
408 /* "analog" buttons A, B, X, Y */
409 input_report_key(dev, BTN_A, data[4]);
410 input_report_key(dev, BTN_B, data[5]);
411 input_report_key(dev, BTN_X, data[6]);
412 input_report_key(dev, BTN_Y, data[7]);
05f091ab 413
1da177e4
LT
414 /* "analog" buttons black, white */
415 input_report_key(dev, BTN_C, data[8]);
416 input_report_key(dev, BTN_Z, data[9]);
417
418 input_sync(dev);
419}
420
c7d9f7eb
JK
421/*
422 * xpad360_process_packet
423 *
424 * Completes a request by converting the data into events for the
425 * input subsystem. It is version for xbox 360 controller
426 *
427 * The used report descriptor was taken from:
428 * http://www.free60.org/wiki/Gamepad
429 */
430
20b3cdd6
DT
431static void xpad360_process_packet(struct usb_xpad *xpad,
432 u16 cmd, unsigned char *data)
c7d9f7eb
JK
433{
434 struct input_dev *dev = xpad->dev;
435
436 /* digital pad */
b45d44e7 437 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
7beae702
CF
438 /* dpad as buttons (left, right, up, down) */
439 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
440 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
441 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
442 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
b45d44e7
NL
443 } else {
444 input_report_abs(dev, ABS_HAT0X,
445 !!(data[2] & 0x08) - !!(data[2] & 0x04));
446 input_report_abs(dev, ABS_HAT0Y,
447 !!(data[2] & 0x02) - !!(data[2] & 0x01));
c7d9f7eb
JK
448 }
449
450 /* start/back buttons */
ae91d10a 451 input_report_key(dev, BTN_START, data[2] & 0x10);
7beae702 452 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
c7d9f7eb
JK
453
454 /* stick press left/right */
455 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
456 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
457
458 /* buttons A,B,X,Y,TL,TR and MODE */
ae91d10a
DT
459 input_report_key(dev, BTN_A, data[3] & 0x10);
460 input_report_key(dev, BTN_B, data[3] & 0x20);
461 input_report_key(dev, BTN_X, data[3] & 0x40);
462 input_report_key(dev, BTN_Y, data[3] & 0x80);
463 input_report_key(dev, BTN_TL, data[3] & 0x01);
464 input_report_key(dev, BTN_TR, data[3] & 0x02);
465 input_report_key(dev, BTN_MODE, data[3] & 0x04);
c7d9f7eb 466
7beae702
CF
467 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
468 /* left stick */
469 input_report_abs(dev, ABS_X,
470 (__s16) le16_to_cpup((__le16 *)(data + 6)));
471 input_report_abs(dev, ABS_Y,
472 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
473
474 /* right stick */
475 input_report_abs(dev, ABS_RX,
476 (__s16) le16_to_cpup((__le16 *)(data + 10)));
477 input_report_abs(dev, ABS_RY,
478 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
479 }
c7d9f7eb
JK
480
481 /* triggers left/right */
b45d44e7
NL
482 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
483 input_report_key(dev, BTN_TL2, data[4]);
484 input_report_key(dev, BTN_TR2, data[5]);
485 } else {
486 input_report_abs(dev, ABS_Z, data[4]);
487 input_report_abs(dev, ABS_RZ, data[5]);
488 }
c7d9f7eb
JK
489
490 input_sync(dev);
491}
492
cae705ba
PR
493static void xpad_identify_controller(struct usb_xpad *xpad);
494
99de0912
BM
495/*
496 * xpad360w_process_packet
497 *
498 * Completes a request by converting the data into events for the
499 * input subsystem. It is version for xbox 360 wireless controller.
500 *
501 * Byte.Bit
502 * 00.1 - Status change: The controller or headset has connected/disconnected
503 * Bits 01.7 and 01.6 are valid
504 * 01.7 - Controller present
505 * 01.6 - Headset present
506 * 01.1 - Pad state (Bytes 4+) valid
507 *
508 */
509
510static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
511{
512 /* Presence change */
513 if (data[0] & 0x08) {
514 if (data[1] & 0x80) {
515 xpad->pad_present = 1;
516 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
cae705ba
PR
517 /*
518 * Light up the segment corresponding to
519 * controller number.
520 */
521 xpad_identify_controller(xpad);
99de0912
BM
522 } else
523 xpad->pad_present = 0;
524 }
525
526 /* Valid pad data */
527 if (!(data[1] & 0x1))
528 return;
529
530 xpad360_process_packet(xpad, cmd, &data[4]);
531}
532
1a48ff81
TM
533/*
534 * xpadone_process_buttons
535 *
536 * Process a button update packet from an Xbox one controller.
537 */
538static void xpadone_process_buttons(struct usb_xpad *xpad,
539 struct input_dev *dev,
540 unsigned char *data)
541{
542 /* menu/view buttons */
543 input_report_key(dev, BTN_START, data[4] & 0x04);
544 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
545
546 /* buttons A,B,X,Y */
547 input_report_key(dev, BTN_A, data[4] & 0x10);
548 input_report_key(dev, BTN_B, data[4] & 0x20);
549 input_report_key(dev, BTN_X, data[4] & 0x40);
550 input_report_key(dev, BTN_Y, data[4] & 0x80);
551
552 /* digital pad */
553 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
554 /* dpad as buttons (left, right, up, down) */
555 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
556 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
557 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
558 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
559 } else {
560 input_report_abs(dev, ABS_HAT0X,
561 !!(data[5] & 0x08) - !!(data[5] & 0x04));
562 input_report_abs(dev, ABS_HAT0Y,
563 !!(data[5] & 0x02) - !!(data[5] & 0x01));
564 }
565
566 /* TL/TR */
567 input_report_key(dev, BTN_TL, data[5] & 0x10);
568 input_report_key(dev, BTN_TR, data[5] & 0x20);
569
570 /* stick press left/right */
571 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
572 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
573
574 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
575 /* left stick */
576 input_report_abs(dev, ABS_X,
577 (__s16) le16_to_cpup((__le16 *)(data + 10)));
578 input_report_abs(dev, ABS_Y,
579 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
580
581 /* right stick */
582 input_report_abs(dev, ABS_RX,
583 (__s16) le16_to_cpup((__le16 *)(data + 14)));
584 input_report_abs(dev, ABS_RY,
585 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
586 }
587
588 /* triggers left/right */
589 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
590 input_report_key(dev, BTN_TL2,
591 (__u16) le16_to_cpup((__le16 *)(data + 6)));
592 input_report_key(dev, BTN_TR2,
593 (__u16) le16_to_cpup((__le16 *)(data + 8)));
594 } else {
595 input_report_abs(dev, ABS_Z,
596 (__u16) le16_to_cpup((__le16 *)(data + 6)));
597 input_report_abs(dev, ABS_RZ,
598 (__u16) le16_to_cpup((__le16 *)(data + 8)));
599 }
600
601 input_sync(dev);
602}
603
604/*
605 * xpadone_process_packet
606 *
607 * Completes a request by converting the data into events for the
608 * input subsystem. This version is for the Xbox One controller.
609 *
610 * The report format was gleaned from
611 * https://github.com/kylelemons/xbox/blob/master/xbox.go
612 */
613
614static void xpadone_process_packet(struct usb_xpad *xpad,
615 u16 cmd, unsigned char *data)
616{
617 struct input_dev *dev = xpad->dev;
618
619 switch (data[0]) {
620 case 0x20:
621 xpadone_process_buttons(xpad, dev, data);
622 break;
623
624 case 0x07:
625 /* the xbox button has its own special report */
626 input_report_key(dev, BTN_MODE, data[4] & 0x01);
627 input_sync(dev);
628 break;
629 }
630}
631
7d12e780 632static void xpad_irq_in(struct urb *urb)
1da177e4
LT
633{
634 struct usb_xpad *xpad = urb->context;
8818e419 635 struct device *dev = &xpad->intf->dev;
6fc88f53 636 int retval, status;
05f091ab 637
6fc88f53
ON
638 status = urb->status;
639
640 switch (status) {
1da177e4
LT
641 case 0:
642 /* success */
643 break;
644 case -ECONNRESET:
645 case -ENOENT:
646 case -ESHUTDOWN:
647 /* this urb is terminated, clean up */
c4f0bbcd 648 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
ea3e6c59 649 __func__, status);
1da177e4
LT
650 return;
651 default:
c4f0bbcd 652 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
ea3e6c59 653 __func__, status);
1da177e4
LT
654 goto exit;
655 }
05f091ab 656
99de0912
BM
657 switch (xpad->xtype) {
658 case XTYPE_XBOX360:
c7d9f7eb 659 xpad360_process_packet(xpad, 0, xpad->idata);
99de0912
BM
660 break;
661 case XTYPE_XBOX360W:
662 xpad360w_process_packet(xpad, 0, xpad->idata);
663 break;
1a48ff81
TM
664 case XTYPE_XBOXONE:
665 xpadone_process_packet(xpad, 0, xpad->idata);
666 break;
99de0912 667 default:
c7d9f7eb 668 xpad_process_packet(xpad, 0, xpad->idata);
99de0912 669 }
1da177e4
LT
670
671exit:
dd38d688 672 retval = usb_submit_urb(urb, GFP_ATOMIC);
1da177e4 673 if (retval)
c4f0bbcd 674 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
9cb757bf 675 __func__, retval);
1da177e4
LT
676}
677
20430214
DT
678static void xpad_bulk_out(struct urb *urb)
679{
c4f0bbcd 680 struct usb_xpad *xpad = urb->context;
8818e419 681 struct device *dev = &xpad->intf->dev;
c4f0bbcd 682
20430214
DT
683 switch (urb->status) {
684 case 0:
685 /* success */
686 break;
687 case -ECONNRESET:
688 case -ENOENT:
689 case -ESHUTDOWN:
690 /* this urb is terminated, clean up */
c4f0bbcd
GKH
691 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
692 __func__, urb->status);
20430214
DT
693 break;
694 default:
c4f0bbcd
GKH
695 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
696 __func__, urb->status);
20430214
DT
697 }
698}
699
e01a06e8
JK
700static void xpad_irq_out(struct urb *urb)
701{
9cb757bf 702 struct usb_xpad *xpad = urb->context;
8818e419 703 struct device *dev = &xpad->intf->dev;
6fc88f53
ON
704 int retval, status;
705
706 status = urb->status;
e01a06e8 707
6fc88f53 708 switch (status) {
70a6f2e6 709 case 0:
e01a06e8 710 /* success */
70a6f2e6
MG
711 return;
712
713 case -ECONNRESET:
714 case -ENOENT:
715 case -ESHUTDOWN:
716 /* this urb is terminated, clean up */
c4f0bbcd
GKH
717 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
718 __func__, status);
70a6f2e6
MG
719 return;
720
721 default:
c4f0bbcd
GKH
722 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
723 __func__, status);
70a6f2e6 724 goto exit;
e01a06e8
JK
725 }
726
727exit:
728 retval = usb_submit_urb(urb, GFP_ATOMIC);
729 if (retval)
c4f0bbcd 730 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
9cb757bf 731 __func__, retval);
e01a06e8
JK
732}
733
4994cd8d 734static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
e01a06e8
JK
735{
736 struct usb_endpoint_descriptor *ep_irq_out;
1a48ff81 737 int ep_irq_out_idx;
49cc69b6 738 int error;
e01a06e8 739
b514d4f7 740 if (xpad->xtype == XTYPE_UNKNOWN)
e01a06e8
JK
741 return 0;
742
997ea58e
DM
743 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
744 GFP_KERNEL, &xpad->odata_dma);
49cc69b6
AL
745 if (!xpad->odata) {
746 error = -ENOMEM;
e01a06e8 747 goto fail1;
49cc69b6 748 }
e01a06e8 749
4994cd8d
JK
750 mutex_init(&xpad->odata_mutex);
751
e01a06e8 752 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
49cc69b6
AL
753 if (!xpad->irq_out) {
754 error = -ENOMEM;
e01a06e8 755 goto fail2;
49cc69b6 756 }
e01a06e8 757
1a48ff81
TM
758 /* Xbox One controller has in/out endpoints swapped. */
759 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
760 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
761
e01a06e8
JK
762 usb_fill_int_urb(xpad->irq_out, xpad->udev,
763 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
764 xpad->odata, XPAD_PKT_LEN,
765 xpad_irq_out, xpad, ep_irq_out->bInterval);
766 xpad->irq_out->transfer_dma = xpad->odata_dma;
767 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
768
e01a06e8
JK
769 return 0;
770
997ea58e 771 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
e01a06e8
JK
772 fail1: return error;
773}
774
4994cd8d 775static void xpad_stop_output(struct usb_xpad *xpad)
e01a06e8 776{
b514d4f7 777 if (xpad->xtype != XTYPE_UNKNOWN)
e01a06e8
JK
778 usb_kill_urb(xpad->irq_out);
779}
780
4994cd8d 781static void xpad_deinit_output(struct usb_xpad *xpad)
e01a06e8 782{
b514d4f7 783 if (xpad->xtype != XTYPE_UNKNOWN) {
e01a06e8 784 usb_free_urb(xpad->irq_out);
997ea58e 785 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
e01a06e8
JK
786 xpad->odata, xpad->odata_dma);
787 }
788}
4994cd8d
JK
789
790#ifdef CONFIG_JOYSTICK_XPAD_FF
12187305 791static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
4994cd8d
JK
792{
793 struct usb_xpad *xpad = input_get_drvdata(dev);
e01a06e8 794
4994cd8d
JK
795 if (effect->type == FF_RUMBLE) {
796 __u16 strong = effect->u.rumble.strong_magnitude;
797 __u16 weak = effect->u.rumble.weak_magnitude;
12187305
BV
798
799 switch (xpad->xtype) {
800
801 case XTYPE_XBOX:
802 xpad->odata[0] = 0x00;
803 xpad->odata[1] = 0x06;
804 xpad->odata[2] = 0x00;
805 xpad->odata[3] = strong / 256; /* left actuator */
806 xpad->odata[4] = 0x00;
807 xpad->odata[5] = weak / 256; /* right actuator */
808 xpad->irq_out->transfer_buffer_length = 6;
809
810 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
811
812 case XTYPE_XBOX360:
813 xpad->odata[0] = 0x00;
814 xpad->odata[1] = 0x08;
815 xpad->odata[2] = 0x00;
816 xpad->odata[3] = strong / 256; /* left actuator? */
817 xpad->odata[4] = weak / 256; /* right actuator? */
818 xpad->odata[5] = 0x00;
819 xpad->odata[6] = 0x00;
820 xpad->odata[7] = 0x00;
821 xpad->irq_out->transfer_buffer_length = 8;
822
823 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
824
b514d4f7
CM
825 case XTYPE_XBOX360W:
826 xpad->odata[0] = 0x00;
827 xpad->odata[1] = 0x01;
828 xpad->odata[2] = 0x0F;
829 xpad->odata[3] = 0xC0;
830 xpad->odata[4] = 0x00;
831 xpad->odata[5] = strong / 256;
832 xpad->odata[6] = weak / 256;
833 xpad->odata[7] = 0x00;
834 xpad->odata[8] = 0x00;
835 xpad->odata[9] = 0x00;
836 xpad->odata[10] = 0x00;
837 xpad->odata[11] = 0x00;
838 xpad->irq_out->transfer_buffer_length = 12;
839
840 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
841
0604949c
MYW
842 case XTYPE_XBOXONE:
843 xpad->odata[0] = 0x09; /* activate rumble */
844 xpad->odata[1] = 0x08;
845 xpad->odata[2] = 0x00;
846 xpad->odata[3] = 0x08; /* continuous effect */
847 xpad->odata[4] = 0x00; /* simple rumble mode */
848 xpad->odata[5] = 0x03; /* L and R actuator only */
849 xpad->odata[6] = 0x00; /* TODO: LT actuator */
850 xpad->odata[7] = 0x00; /* TODO: RT actuator */
851 xpad->odata[8] = strong / 256; /* left actuator */
852 xpad->odata[9] = weak / 256; /* right actuator */
853 xpad->odata[10] = 0x80; /* length of pulse */
854 xpad->odata[11] = 0x00; /* stop period of pulse */
855 xpad->irq_out->transfer_buffer_length = 12;
856
857 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
858
12187305 859 default:
c4f0bbcd
GKH
860 dev_dbg(&xpad->dev->dev,
861 "%s - rumble command sent to unsupported xpad type: %d\n",
12187305
BV
862 __func__, xpad->xtype);
863 return -1;
864 }
4994cd8d
JK
865 }
866
867 return 0;
868}
869
870static int xpad_init_ff(struct usb_xpad *xpad)
871{
0604949c 872 if (xpad->xtype == XTYPE_UNKNOWN)
cfbe2010
AH
873 return 0;
874
4994cd8d
JK
875 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
876
877 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
878}
879
880#else
881static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
882#endif
883
884#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
885#include <linux/leds.h>
886
887struct xpad_led {
888 char name[16];
889 struct led_classdev led_cdev;
890 struct usb_xpad *xpad;
891};
892
75b7f05d
PLG
893/**
894 * @param command
895 * 0: off
896 * 1: all blink, then previous setting
897 * 2: 1/top-left blink, then on
898 * 3: 2/top-right blink, then on
899 * 4: 3/bottom-left blink, then on
900 * 5: 4/bottom-right blink, then on
901 * 6: 1/top-left on
902 * 7: 2/top-right on
903 * 8: 3/bottom-left on
904 * 9: 4/bottom-right on
905 * 10: rotate
906 * 11: blink, based on previous setting
907 * 12: slow blink, based on previous setting
908 * 13: rotate with two lights
909 * 14: persistent slow all blink
910 * 15: blink once, then previous setting
911 */
4994cd8d
JK
912static void xpad_send_led_command(struct usb_xpad *xpad, int command)
913{
75b7f05d
PLG
914 command %= 16;
915
916 mutex_lock(&xpad->odata_mutex);
917
918 switch (xpad->xtype) {
919 case XTYPE_XBOX360:
4994cd8d
JK
920 xpad->odata[0] = 0x01;
921 xpad->odata[1] = 0x03;
922 xpad->odata[2] = command;
04021e4e 923 xpad->irq_out->transfer_buffer_length = 3;
75b7f05d
PLG
924 break;
925 case XTYPE_XBOX360W:
926 xpad->odata[0] = 0x00;
927 xpad->odata[1] = 0x00;
928 xpad->odata[2] = 0x08;
929 xpad->odata[3] = 0x40 + command;
930 xpad->odata[4] = 0x00;
931 xpad->odata[5] = 0x00;
932 xpad->odata[6] = 0x00;
933 xpad->odata[7] = 0x00;
934 xpad->odata[8] = 0x00;
935 xpad->odata[9] = 0x00;
936 xpad->odata[10] = 0x00;
937 xpad->odata[11] = 0x00;
938 xpad->irq_out->transfer_buffer_length = 12;
939 break;
4994cd8d 940 }
75b7f05d
PLG
941
942 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
943 mutex_unlock(&xpad->odata_mutex);
4994cd8d
JK
944}
945
cae705ba
PR
946static void xpad_identify_controller(struct usb_xpad *xpad)
947{
948 /* Light up the segment corresponding to controller number */
949 xpad_send_led_command(xpad, (xpad->led_no % 4) + 2);
950}
951
4994cd8d
JK
952static void xpad_led_set(struct led_classdev *led_cdev,
953 enum led_brightness value)
954{
955 struct xpad_led *xpad_led = container_of(led_cdev,
956 struct xpad_led, led_cdev);
957
958 xpad_send_led_command(xpad_led->xpad, value);
959}
960
961static int xpad_led_probe(struct usb_xpad *xpad)
962{
cae705ba 963 static atomic_t led_seq = ATOMIC_INIT(-1);
4994cd8d
JK
964 struct xpad_led *led;
965 struct led_classdev *led_cdev;
966 int error;
967
75b7f05d 968 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
4994cd8d
JK
969 return 0;
970
971 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
972 if (!led)
973 return -ENOMEM;
974
cae705ba 975 xpad->led_no = atomic_inc_return(&led_seq);
4994cd8d 976
cae705ba 977 snprintf(led->name, sizeof(led->name), "xpad%lu", xpad->led_no);
4994cd8d
JK
978 led->xpad = xpad;
979
980 led_cdev = &led->led_cdev;
981 led_cdev->name = led->name;
982 led_cdev->brightness_set = xpad_led_set;
983
984 error = led_classdev_register(&xpad->udev->dev, led_cdev);
985 if (error) {
986 kfree(led);
987 xpad->led = NULL;
988 return error;
989 }
990
cae705ba
PR
991 /* Light up the segment corresponding to controller number */
992 xpad_identify_controller(xpad);
4994cd8d
JK
993
994 return 0;
995}
996
997static void xpad_led_disconnect(struct usb_xpad *xpad)
998{
999 struct xpad_led *xpad_led = xpad->led;
1000
1001 if (xpad_led) {
1002 led_classdev_unregister(&xpad_led->led_cdev);
6ff92a6d 1003 kfree(xpad_led);
4994cd8d
JK
1004 }
1005}
e01a06e8 1006#else
4994cd8d
JK
1007static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1008static void xpad_led_disconnect(struct usb_xpad *xpad) { }
cae705ba 1009static void xpad_identify_controller(struct usb_xpad *xpad) { }
e01a06e8
JK
1010#endif
1011
4994cd8d 1012
e01a06e8 1013static int xpad_open(struct input_dev *dev)
1da177e4 1014{
7791bdae 1015 struct usb_xpad *xpad = input_get_drvdata(dev);
05f091ab 1016
99de0912 1017 /* URB was submitted in probe */
0d027966 1018 if (xpad->xtype == XTYPE_XBOX360W)
99de0912
BM
1019 return 0;
1020
1da177e4 1021 xpad->irq_in->dev = xpad->udev;
65cde54b 1022 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1da177e4 1023 return -EIO;
05f091ab 1024
1a48ff81
TM
1025 if (xpad->xtype == XTYPE_XBOXONE) {
1026 /* Xbox one controller needs to be initialized. */
1027 xpad->odata[0] = 0x05;
1028 xpad->odata[1] = 0x20;
1029 xpad->irq_out->transfer_buffer_length = 2;
1030 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
1031 }
1032
1da177e4
LT
1033 return 0;
1034}
1035
e01a06e8 1036static void xpad_close(struct input_dev *dev)
1da177e4 1037{
7791bdae 1038 struct usb_xpad *xpad = input_get_drvdata(dev);
05f091ab 1039
161feb24 1040 if (xpad->xtype != XTYPE_XBOX360W)
99de0912 1041 usb_kill_urb(xpad->irq_in);
161feb24 1042
4994cd8d 1043 xpad_stop_output(xpad);
1da177e4
LT
1044}
1045
deb8ee43
DC
1046static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1047{
1a48ff81 1048 struct usb_xpad *xpad = input_get_drvdata(input_dev);
deb8ee43
DC
1049 set_bit(abs, input_dev->absbit);
1050
1051 switch (abs) {
1052 case ABS_X:
1053 case ABS_Y:
1054 case ABS_RX:
1055 case ABS_RY: /* the two sticks */
1056 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1057 break;
1058 case ABS_Z:
b45d44e7 1059 case ABS_RZ: /* the triggers (if mapped to axes) */
1a48ff81
TM
1060 if (xpad->xtype == XTYPE_XBOXONE)
1061 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1062 else
1063 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
deb8ee43
DC
1064 break;
1065 case ABS_HAT0X:
b45d44e7 1066 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
deb8ee43
DC
1067 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1068 break;
1069 }
1070}
1071
1da177e4
LT
1072static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1073{
20b3cdd6 1074 struct usb_device *udev = interface_to_usbdev(intf);
c5b7c7c3
DT
1075 struct usb_xpad *xpad;
1076 struct input_dev *input_dev;
1da177e4 1077 struct usb_endpoint_descriptor *ep_irq_in;
1a48ff81 1078 int ep_irq_in_idx;
49cc69b6 1079 int i, error;
05f091ab 1080
1da177e4
LT
1081 for (i = 0; xpad_device[i].idVendor; i++) {
1082 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1083 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1084 break;
1085 }
05f091ab 1086
1a48ff81
TM
1087 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1088 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1089 /*
1090 * The Xbox One controller lists three interfaces all with the
1091 * same interface class, subclass and protocol. Differentiate by
1092 * interface number.
1093 */
1094 return -ENODEV;
1095 }
1096
c5b7c7c3
DT
1097 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1098 input_dev = input_allocate_device();
49cc69b6
AL
1099 if (!xpad || !input_dev) {
1100 error = -ENOMEM;
c5b7c7c3 1101 goto fail1;
49cc69b6 1102 }
05f091ab 1103
997ea58e
DM
1104 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1105 GFP_KERNEL, &xpad->idata_dma);
49cc69b6
AL
1106 if (!xpad->idata) {
1107 error = -ENOMEM;
c5b7c7c3 1108 goto fail1;
49cc69b6 1109 }
1da177e4
LT
1110
1111 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
49cc69b6
AL
1112 if (!xpad->irq_in) {
1113 error = -ENOMEM;
c5b7c7c3 1114 goto fail2;
49cc69b6 1115 }
05f091ab 1116
1da177e4 1117 xpad->udev = udev;
8818e419 1118 xpad->intf = intf;
b45d44e7 1119 xpad->mapping = xpad_device[i].mapping;
c7d9f7eb 1120 xpad->xtype = xpad_device[i].xtype;
b45d44e7 1121
99de0912
BM
1122 if (xpad->xtype == XTYPE_UNKNOWN) {
1123 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1124 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1125 xpad->xtype = XTYPE_XBOX360W;
1126 else
1127 xpad->xtype = XTYPE_XBOX360;
1128 } else
1129 xpad->xtype = XTYPE_XBOX;
b45d44e7
NL
1130
1131 if (dpad_to_buttons)
1132 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1133 if (triggers_to_buttons)
1134 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
7beae702
CF
1135 if (sticks_to_null)
1136 xpad->mapping |= MAP_STICKS_TO_NULL;
99de0912 1137 }
b45d44e7 1138
c5b7c7c3
DT
1139 xpad->dev = input_dev;
1140 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1141 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
05f091ab 1142
c5b7c7c3
DT
1143 input_dev->name = xpad_device[i].name;
1144 input_dev->phys = xpad->phys;
1145 usb_to_input_id(udev, &input_dev->id);
c0f82d57 1146 input_dev->dev.parent = &intf->dev;
7791bdae
DT
1147
1148 input_set_drvdata(input_dev, xpad);
1149
c5b7c7c3
DT
1150 input_dev->open = xpad_open;
1151 input_dev->close = xpad_close;
05f091ab 1152
7beae702
CF
1153 input_dev->evbit[0] = BIT_MASK(EV_KEY);
1154
1155 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1156 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
1157 /* set up axes */
1158 for (i = 0; xpad_abs[i] >= 0; i++)
1159 xpad_set_up_abs(input_dev, xpad_abs[i]);
1160 }
05f091ab 1161
7beae702 1162 /* set up standard buttons */
fc55e952 1163 for (i = 0; xpad_common_btn[i] >= 0; i++)
b45d44e7 1164 __set_bit(xpad_common_btn[i], input_dev->keybit);
05f091ab 1165
7beae702 1166 /* set up model-specific ones */
1a48ff81
TM
1167 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1168 xpad->xtype == XTYPE_XBOXONE) {
b45d44e7
NL
1169 for (i = 0; xpad360_btn[i] >= 0; i++)
1170 __set_bit(xpad360_btn[i], input_dev->keybit);
1171 } else {
1172 for (i = 0; xpad_btn[i] >= 0; i++)
1173 __set_bit(xpad_btn[i], input_dev->keybit);
1174 }
1175
1176 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1177 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1178 __set_bit(xpad_btn_pad[i], input_dev->keybit);
1179 } else {
deb8ee43 1180 for (i = 0; xpad_abs_pad[i] >= 0; i++)
1a48ff81 1181 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
b45d44e7
NL
1182 }
1183
1184 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1185 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1186 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1187 } else {
1188 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1189 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1190 }
05f091ab 1191
4994cd8d 1192 error = xpad_init_output(intf, xpad);
e01a06e8 1193 if (error)
161feb24 1194 goto fail3;
e01a06e8 1195
4994cd8d
JK
1196 error = xpad_init_ff(xpad);
1197 if (error)
161feb24 1198 goto fail4;
4994cd8d
JK
1199
1200 error = xpad_led_probe(xpad);
1201 if (error)
161feb24 1202 goto fail5;
4994cd8d 1203
1a48ff81
TM
1204 /* Xbox One controller has in/out endpoints swapped. */
1205 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1206 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1207
c5b7c7c3
DT
1208 usb_fill_int_urb(xpad->irq_in, udev,
1209 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1210 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1211 xpad, ep_irq_in->bInterval);
1212 xpad->irq_in->transfer_dma = xpad->idata_dma;
1213 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
05f091ab 1214
5014186d
DT
1215 error = input_register_device(xpad->dev);
1216 if (error)
161feb24 1217 goto fail6;
05f091ab 1218
1da177e4 1219 usb_set_intfdata(intf, xpad);
99de0912 1220
99de0912 1221 if (xpad->xtype == XTYPE_XBOX360W) {
99de0912
BM
1222 /*
1223 * Setup the message to set the LEDs on the
1224 * controller when it shows up
1225 */
1226 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
49cc69b6
AL
1227 if (!xpad->bulk_out) {
1228 error = -ENOMEM;
e3f0f0a6 1229 goto fail7;
49cc69b6 1230 }
99de0912
BM
1231
1232 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
49cc69b6
AL
1233 if (!xpad->bdata) {
1234 error = -ENOMEM;
e3f0f0a6 1235 goto fail8;
49cc69b6 1236 }
99de0912
BM
1237
1238 xpad->bdata[2] = 0x08;
1239 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
1240 case 0:
1241 xpad->bdata[3] = 0x42;
1242 break;
1243 case 2:
1244 xpad->bdata[3] = 0x43;
1245 break;
1246 case 4:
1247 xpad->bdata[3] = 0x44;
1248 break;
1249 case 6:
1250 xpad->bdata[3] = 0x45;
1251 }
1252
1253 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
a1f9a407
GKH
1254 if (usb_endpoint_is_bulk_out(ep_irq_in)) {
1255 usb_fill_bulk_urb(xpad->bulk_out, udev,
1256 usb_sndbulkpipe(udev,
1257 ep_irq_in->bEndpointAddress),
1258 xpad->bdata, XPAD_PKT_LEN,
1259 xpad_bulk_out, xpad);
1260 } else {
1261 usb_fill_int_urb(xpad->bulk_out, udev,
1262 usb_sndintpipe(udev,
1263 ep_irq_in->bEndpointAddress),
1264 xpad->bdata, XPAD_PKT_LEN,
1265 xpad_bulk_out, xpad, 0);
1266 }
e3f0f0a6
AL
1267
1268 /*
1269 * Submit the int URB immediately rather than waiting for open
1270 * because we get status messages from the device whether
1271 * or not any controllers are attached. In fact, it's
1272 * exactly the message that a controller has arrived that
1273 * we're waiting for.
1274 */
1275 xpad->irq_in->dev = xpad->udev;
1276 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1277 if (error)
1278 goto fail9;
99de0912
BM
1279 }
1280
1da177e4 1281 return 0;
c5b7c7c3 1282
e3f0f0a6
AL
1283 fail9: kfree(xpad->bdata);
1284 fail8: usb_free_urb(xpad->bulk_out);
161feb24
AL
1285 fail7: input_unregister_device(input_dev);
1286 input_dev = NULL;
1287 fail6: xpad_led_disconnect(xpad);
1288 fail5: if (input_dev)
1289 input_ff_destroy(input_dev);
1290 fail4: xpad_deinit_output(xpad);
1291 fail3: usb_free_urb(xpad->irq_in);
997ea58e 1292 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
5014186d 1293 fail1: input_free_device(input_dev);
c5b7c7c3 1294 kfree(xpad);
5014186d 1295 return error;
c5b7c7c3 1296
1da177e4
LT
1297}
1298
1299static void xpad_disconnect(struct usb_interface *intf)
1300{
1301 struct usb_xpad *xpad = usb_get_intfdata (intf);
05f091ab 1302
2a059159
DT
1303 xpad_led_disconnect(xpad);
1304 input_unregister_device(xpad->dev);
1305 xpad_deinit_output(xpad);
1306
1307 if (xpad->xtype == XTYPE_XBOX360W) {
1308 usb_kill_urb(xpad->bulk_out);
1309 usb_free_urb(xpad->bulk_out);
1310 usb_kill_urb(xpad->irq_in);
1da177e4 1311 }
2a059159
DT
1312
1313 usb_free_urb(xpad->irq_in);
1314 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1315 xpad->idata, xpad->idata_dma);
1316
1317 kfree(xpad->bdata);
1318 kfree(xpad);
1319
1320 usb_set_intfdata(intf, NULL);
1da177e4
LT
1321}
1322
1323static struct usb_driver xpad_driver = {
1da177e4
LT
1324 .name = "xpad",
1325 .probe = xpad_probe,
1326 .disconnect = xpad_disconnect,
1327 .id_table = xpad_table,
1328};
1329
08642e7c 1330module_usb_driver(xpad_driver);
1da177e4
LT
1331
1332MODULE_AUTHOR(DRIVER_AUTHOR);
1333MODULE_DESCRIPTION(DRIVER_DESC);
1334MODULE_LICENSE("GPL");