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