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