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