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