blob: a2b426d6a4ec4a4f7c223cc78b92fc25a266490a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Anssi Hannulabf8cb312008-04-03 16:19:10 -04002 * X-Box gamepad driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
Dominic Cerquettid518b2b2006-10-20 14:51:45 -07005 * 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>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07009 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040011 * 2007 Jan Kratochvil <honza@jikos.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 *
28 * This driver is based on:
29 * - information from http://euc.jp/periphs/xbox-controller.ja.html
30 * - the iForce driver drivers/char/joystick/iforce.c
31 * - the skeleton-driver drivers/usb/usb-skeleton.c
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040032 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Thanks to:
35 * - ITO Takayuki for providing essential xpad information on his website
36 * - Vojtech Pavlik - iforce driver / input subsystem
37 * - Greg Kroah-Hartman - usb-skeleton driver
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070038 * - XBOX Linux project - extra USB id's
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 *
40 * TODO:
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070041 * - fine tune axes (especially trigger axes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * - fix "analog" buttons (reported as digital now)
43 * - get rumble working
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070044 * - need USB IDs for other dance pads
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 *
46 * History:
47 *
48 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
49 *
50 * 2002-07-02 - 0.0.2 : basic working version
51 * - all axes and 9 of the 10 buttons work (german InterAct device)
52 * - the black button does not work
53 *
54 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
55 * - indentation fixes
56 * - usb + input init sequence fixes
57 *
58 * 2002-07-16 - 0.0.4 : minor changes, merge with Vojtech's v0.0.3
59 * - verified the lack of HID and report descriptors
60 * - verified that ALL buttons WORK
61 * - fixed d-pad to axes mapping
62 *
63 * 2002-07-17 - 0.0.5 : simplified d-pad handling
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070064 *
65 * 2004-10-02 - 0.0.6 : DDR pad support
66 * - borrowed from the XBOX linux kernel
67 * - USB id's for commonly used dance pads are present
68 * - dance pads will map D-PAD to buttons, not axes
69 * - pass the module paramater 'dpad_to_buttons' to force
70 * the D-PAD to map to buttons if your pad is not detected
Anssi Hannulabf8cb312008-04-03 16:19:10 -040071 *
72 * Later changes can be tracked in SCM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/init.h>
77#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070078#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070080#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
83#define DRIVER_DESC "X-Box pad driver"
84
85#define XPAD_PKT_LEN 32
86
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070087/* xbox d-pads should map to buttons, as is required for DDR pads
88 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080089#define MAP_DPAD_TO_BUTTONS (1 << 0)
90#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070091
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040092#define XTYPE_XBOX 0
93#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -040094#define XTYPE_XBOX360W 2
95#define XTYPE_UNKNOWN 3
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040096
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070097static int dpad_to_buttons;
98module_param(dpad_to_buttons, bool, S_IRUGO);
99MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
100
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800101static int triggers_to_buttons;
102module_param(triggers_to_buttons, bool, S_IRUGO);
103MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
104
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100105static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 u16 idVendor;
107 u16 idProduct;
108 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800109 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400110 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800112 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
113 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
114 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
115 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Brian Magnuson99de0912008-04-03 16:19:23 -0400116 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400117 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800118 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
119 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
120 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
121 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
122 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
123 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
124 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
125 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
126 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
127 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400128 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800129 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
130 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
131 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400132 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800133 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
134 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
135 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
136 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
137 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
138 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
139 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
140 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
141 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
142 { 0x0e6f, 0x0006, "Pelican 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
143 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
144 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
145 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
146 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400147 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800148 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400149 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800150 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
151 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700152 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800153 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Chris Merrettb326b852010-07-26 01:14:59 -0700154 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800155 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
156 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
Anssi Hannulafc55e952008-04-03 16:18:44 -0400159/* buttons shared with xbox and xbox360 */
160static const signed short xpad_common_btn[] = {
161 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 BTN_START, BTN_BACK, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
163 -1 /* terminating entry */
164};
165
Anssi Hannulafc55e952008-04-03 16:18:44 -0400166/* original xbox controllers only */
167static const signed short xpad_btn[] = {
168 BTN_C, BTN_Z, /* "analog" buttons */
169 -1 /* terminating entry */
170};
171
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800172/* used when dpad is mapped to nuttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700173static const signed short xpad_btn_pad[] = {
174 BTN_LEFT, BTN_RIGHT, /* d-pad left, right */
175 BTN_0, BTN_1, /* d-pad up, down (XXX names??) */
176 -1 /* terminating entry */
177};
178
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800179/* used when triggers are mapped to buttons */
180static const signed short xpad_btn_triggers[] = {
181 BTN_TL2, BTN_TR2, /* triggers left/right */
182 -1
183};
184
185
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400186static const signed short xpad360_btn[] = { /* buttons for x360 controller */
187 BTN_TL, BTN_TR, /* Button LB/RB */
188 BTN_MODE, /* The big X button */
189 -1
190};
191
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100192static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 ABS_X, ABS_Y, /* left stick */
194 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700195 -1 /* terminating entry */
196};
197
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800198/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700199static const signed short xpad_abs_pad[] = {
200 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 -1 /* terminating entry */
202};
203
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800204/* used when triggers are mapped to axes */
205static const signed short xpad_abs_triggers[] = {
206 ABS_Z, ABS_RZ, /* triggers left/right */
207 -1
208};
209
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400210/* Xbox 360 has a vendor-specific class, so we cannot match it with only
211 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400212 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
213 * wireless controllers have protocol 129. */
214#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400215 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
216 .idVendor = (vend), \
217 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
218 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400219 .bInterfaceProtocol = (pr)
220#define XPAD_XBOX360_VENDOR(vend) \
221 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
222 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static struct usb_device_id xpad_table [] = {
225 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Brian Magnuson99de0912008-04-03 16:19:23 -0400226 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
227 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
228 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
229 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
230 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700231 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Corbin Simpson805423e2009-08-20 21:41:04 -0700232 XPAD_XBOX360_VENDOR(0x1bad), /* Rock Band Drums */
Nicolas Léveillédadaae32009-11-29 23:20:44 -0800233 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 { }
235};
236
237MODULE_DEVICE_TABLE (usb, xpad_table);
238
239struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700240 struct input_dev *dev; /* input device interface */
241 struct usb_device *udev; /* usb device */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500242
Brian Magnuson99de0912008-04-03 16:19:23 -0400243 int pad_present;
244
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700245 struct urb *irq_in; /* urb for interrupt in report */
246 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500248
Brian Magnuson99de0912008-04-03 16:19:23 -0400249 struct urb *bulk_out;
250 unsigned char *bdata;
251
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400252#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400253 struct urb *irq_out; /* urb for interrupt out report */
254 unsigned char *odata; /* output data */
255 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400256 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400257#endif
258
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400259#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
260 struct xpad_led *led;
261#endif
262
263 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700264
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800265 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400266 int xtype; /* type of xbox device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269/*
270 * xpad_process_packet
271 *
272 * Completes a request by converting the data into events for the
273 * input subsystem.
274 *
275 * The used report descriptor was taken from ITO Takayukis website:
276 * http://euc.jp/periphs/xbox-controller.ja.html
277 */
278
David Howells7d12e782006-10-05 14:55:46 +0100279static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500281 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* left stick */
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400284 input_report_abs(dev, ABS_X,
285 (__s16) le16_to_cpup((__le16 *)(data + 12)));
286 input_report_abs(dev, ABS_Y,
Anssi Hannula97f09cb2008-04-03 16:18:23 -0400287 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* right stick */
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400290 input_report_abs(dev, ABS_RX,
291 (__s16) le16_to_cpup((__le16 *)(data + 16)));
292 input_report_abs(dev, ABS_RY,
Anssi Hannula97f09cb2008-04-03 16:18:23 -0400293 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800296 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
297 input_report_key(dev, BTN_TL2, data[10]);
298 input_report_key(dev, BTN_TR2, data[11]);
299 } else {
300 input_report_abs(dev, ABS_Z, data[10]);
301 input_report_abs(dev, ABS_RZ, data[11]);
302 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800305 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700306 input_report_key(dev, BTN_LEFT, data[2] & 0x04);
307 input_report_key(dev, BTN_RIGHT, data[2] & 0x08);
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400308 input_report_key(dev, BTN_0, data[2] & 0x01); /* up */
309 input_report_key(dev, BTN_1, data[2] & 0x02); /* down */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800310 } else {
311 input_report_abs(dev, ABS_HAT0X,
312 !!(data[2] & 0x08) - !!(data[2] & 0x04));
313 input_report_abs(dev, ABS_HAT0Y,
314 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700315 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700318 input_report_key(dev, BTN_START, data[2] & 0x10);
319 input_report_key(dev, BTN_BACK, data[2] & 0x20);
320 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
321 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* "analog" buttons A, B, X, Y */
324 input_report_key(dev, BTN_A, data[4]);
325 input_report_key(dev, BTN_B, data[5]);
326 input_report_key(dev, BTN_X, data[6]);
327 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /* "analog" buttons black, white */
330 input_report_key(dev, BTN_C, data[8]);
331 input_report_key(dev, BTN_Z, data[9]);
332
333 input_sync(dev);
334}
335
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400336/*
337 * xpad360_process_packet
338 *
339 * Completes a request by converting the data into events for the
340 * input subsystem. It is version for xbox 360 controller
341 *
342 * The used report descriptor was taken from:
343 * http://www.free60.org/wiki/Gamepad
344 */
345
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400346static void xpad360_process_packet(struct usb_xpad *xpad,
347 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400348{
349 struct input_dev *dev = xpad->dev;
350
351 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800352 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400353 /* dpad as buttons (right, left, down, up) */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400354 input_report_key(dev, BTN_LEFT, data[2] & 0x04);
355 input_report_key(dev, BTN_RIGHT, data[2] & 0x08);
356 input_report_key(dev, BTN_0, data[2] & 0x01); /* up */
357 input_report_key(dev, BTN_1, data[2] & 0x02); /* down */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800358 } else {
359 input_report_abs(dev, ABS_HAT0X,
360 !!(data[2] & 0x08) - !!(data[2] & 0x04));
361 input_report_abs(dev, ABS_HAT0Y,
362 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400363 }
364
365 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400366 input_report_key(dev, BTN_START, data[2] & 0x10);
367 input_report_key(dev, BTN_BACK, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400368
369 /* stick press left/right */
370 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
371 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
372
373 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400374 input_report_key(dev, BTN_A, data[3] & 0x10);
375 input_report_key(dev, BTN_B, data[3] & 0x20);
376 input_report_key(dev, BTN_X, data[3] & 0x40);
377 input_report_key(dev, BTN_Y, data[3] & 0x80);
378 input_report_key(dev, BTN_TL, data[3] & 0x01);
379 input_report_key(dev, BTN_TR, data[3] & 0x02);
380 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400381
382 /* left stick */
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400383 input_report_abs(dev, ABS_X,
384 (__s16) le16_to_cpup((__le16 *)(data + 6)));
385 input_report_abs(dev, ABS_Y,
Anssi Hannula97f09cb2008-04-03 16:18:23 -0400386 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400387
388 /* right stick */
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400389 input_report_abs(dev, ABS_RX,
390 (__s16) le16_to_cpup((__le16 *)(data + 10)));
391 input_report_abs(dev, ABS_RY,
Anssi Hannula97f09cb2008-04-03 16:18:23 -0400392 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400393
394 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800395 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
396 input_report_key(dev, BTN_TL2, data[4]);
397 input_report_key(dev, BTN_TR2, data[5]);
398 } else {
399 input_report_abs(dev, ABS_Z, data[4]);
400 input_report_abs(dev, ABS_RZ, data[5]);
401 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400402
403 input_sync(dev);
404}
405
Brian Magnuson99de0912008-04-03 16:19:23 -0400406/*
407 * xpad360w_process_packet
408 *
409 * Completes a request by converting the data into events for the
410 * input subsystem. It is version for xbox 360 wireless controller.
411 *
412 * Byte.Bit
413 * 00.1 - Status change: The controller or headset has connected/disconnected
414 * Bits 01.7 and 01.6 are valid
415 * 01.7 - Controller present
416 * 01.6 - Headset present
417 * 01.1 - Pad state (Bytes 4+) valid
418 *
419 */
420
421static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
422{
423 /* Presence change */
424 if (data[0] & 0x08) {
425 if (data[1] & 0x80) {
426 xpad->pad_present = 1;
427 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
428 } else
429 xpad->pad_present = 0;
430 }
431
432 /* Valid pad data */
433 if (!(data[1] & 0x1))
434 return;
435
436 xpad360_process_packet(xpad, cmd, &data[4]);
437}
438
David Howells7d12e782006-10-05 14:55:46 +0100439static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct usb_xpad *xpad = urb->context;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200442 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500443
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200444 status = urb->status;
445
446 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 case 0:
448 /* success */
449 break;
450 case -ECONNRESET:
451 case -ENOENT:
452 case -ESHUTDOWN:
453 /* this urb is terminated, clean up */
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400454 dbg("%s - urb shutting down with status: %d",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400455 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return;
457 default:
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400458 dbg("%s - nonzero urb status received: %d",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400459 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 goto exit;
461 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500462
Brian Magnuson99de0912008-04-03 16:19:23 -0400463 switch (xpad->xtype) {
464 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400465 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400466 break;
467 case XTYPE_XBOX360W:
468 xpad360w_process_packet(xpad, 0, xpad->idata);
469 break;
470 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400471 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800475 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (retval)
477 err ("%s - usb_submit_urb failed with result %d",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400478 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Dmitry Torokhov20430212008-04-27 00:10:11 -0400481static void xpad_bulk_out(struct urb *urb)
482{
483 switch (urb->status) {
484 case 0:
485 /* success */
486 break;
487 case -ECONNRESET:
488 case -ENOENT:
489 case -ESHUTDOWN:
490 /* this urb is terminated, clean up */
Harvey Harrison80a914d2008-10-15 22:01:25 -0700491 dbg("%s - urb shutting down with status: %d", __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400492 break;
493 default:
Harvey Harrison80a914d2008-10-15 22:01:25 -0700494 dbg("%s - nonzero urb status received: %d", __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400495 }
496}
497
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400498#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400499static void xpad_irq_out(struct urb *urb)
500{
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200501 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400502
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200503 status = urb->status;
504
505 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700506 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400507 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700508 return;
509
510 case -ECONNRESET:
511 case -ENOENT:
512 case -ESHUTDOWN:
513 /* this urb is terminated, clean up */
514 dbg("%s - urb shutting down with status: %d", __func__, status);
515 return;
516
517 default:
518 dbg("%s - nonzero urb status received: %d", __func__, status);
519 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400520 }
521
522exit:
523 retval = usb_submit_urb(urb, GFP_ATOMIC);
524 if (retval)
525 err("%s - usb_submit_urb failed with result %d",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400526 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400527}
528
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400529static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
530{
531 struct usb_endpoint_descriptor *ep_irq_out;
532 int error = -ENOMEM;
533
Benjamin Valentin12187302010-01-21 20:19:06 -0800534 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400535 return 0;
536
Daniel Mack997ea582010-04-12 13:17:25 +0200537 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
538 GFP_KERNEL, &xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400539 if (!xpad->odata)
540 goto fail1;
541
542 mutex_init(&xpad->odata_mutex);
543
544 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
545 if (!xpad->irq_out)
546 goto fail2;
547
548 ep_irq_out = &intf->cur_altsetting->endpoint[1].desc;
549 usb_fill_int_urb(xpad->irq_out, xpad->udev,
550 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
551 xpad->odata, XPAD_PKT_LEN,
552 xpad_irq_out, xpad, ep_irq_out->bInterval);
553 xpad->irq_out->transfer_dma = xpad->odata_dma;
554 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
555
556 return 0;
557
Daniel Mack997ea582010-04-12 13:17:25 +0200558 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400559 fail1: return error;
560}
561
562static void xpad_stop_output(struct usb_xpad *xpad)
563{
Benjamin Valentin12187302010-01-21 20:19:06 -0800564 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400565 usb_kill_urb(xpad->irq_out);
566}
567
568static void xpad_deinit_output(struct usb_xpad *xpad)
569{
Benjamin Valentin12187302010-01-21 20:19:06 -0800570 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400571 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200572 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400573 xpad->odata, xpad->odata_dma);
574 }
575}
576#else
577static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad) { return 0; }
578static void xpad_deinit_output(struct usb_xpad *xpad) {}
579static void xpad_stop_output(struct usb_xpad *xpad) {}
580#endif
581
582#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800583static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400584{
585 struct usb_xpad *xpad = input_get_drvdata(dev);
586
587 if (effect->type == FF_RUMBLE) {
588 __u16 strong = effect->u.rumble.strong_magnitude;
589 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800590
591 switch (xpad->xtype) {
592
593 case XTYPE_XBOX:
594 xpad->odata[0] = 0x00;
595 xpad->odata[1] = 0x06;
596 xpad->odata[2] = 0x00;
597 xpad->odata[3] = strong / 256; /* left actuator */
598 xpad->odata[4] = 0x00;
599 xpad->odata[5] = weak / 256; /* right actuator */
600 xpad->irq_out->transfer_buffer_length = 6;
601
602 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
603
604 case XTYPE_XBOX360:
605 xpad->odata[0] = 0x00;
606 xpad->odata[1] = 0x08;
607 xpad->odata[2] = 0x00;
608 xpad->odata[3] = strong / 256; /* left actuator? */
609 xpad->odata[4] = weak / 256; /* right actuator? */
610 xpad->odata[5] = 0x00;
611 xpad->odata[6] = 0x00;
612 xpad->odata[7] = 0x00;
613 xpad->irq_out->transfer_buffer_length = 8;
614
615 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
616
617 default:
618 dbg("%s - rumble command sent to unsupported xpad type: %d",
619 __func__, xpad->xtype);
620 return -1;
621 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400622 }
623
624 return 0;
625}
626
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400627static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400628{
Benjamin Valentin12187302010-01-21 20:19:06 -0800629 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400630 return 0;
631
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400632 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
633
634 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
635}
636
637#else
638static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
639#endif
640
641#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
642#include <linux/leds.h>
643
644struct xpad_led {
645 char name[16];
646 struct led_classdev led_cdev;
647 struct usb_xpad *xpad;
648};
649
650static void xpad_send_led_command(struct usb_xpad *xpad, int command)
651{
652 if (command >= 0 && command < 14) {
653 mutex_lock(&xpad->odata_mutex);
654 xpad->odata[0] = 0x01;
655 xpad->odata[1] = 0x03;
656 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400657 xpad->irq_out->transfer_buffer_length = 3;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400658 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
659 mutex_unlock(&xpad->odata_mutex);
660 }
661}
662
663static void xpad_led_set(struct led_classdev *led_cdev,
664 enum led_brightness value)
665{
666 struct xpad_led *xpad_led = container_of(led_cdev,
667 struct xpad_led, led_cdev);
668
669 xpad_send_led_command(xpad_led->xpad, value);
670}
671
672static int xpad_led_probe(struct usb_xpad *xpad)
673{
674 static atomic_t led_seq = ATOMIC_INIT(0);
675 long led_no;
676 struct xpad_led *led;
677 struct led_classdev *led_cdev;
678 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400679
680 if (xpad->xtype != XTYPE_XBOX360)
681 return 0;
682
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400683 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
684 if (!led)
685 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400686
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400687 led_no = (long)atomic_inc_return(&led_seq) - 1;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400688
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400689 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
690 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400691
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400692 led_cdev = &led->led_cdev;
693 led_cdev->name = led->name;
694 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400695
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400696 error = led_classdev_register(&xpad->udev->dev, led_cdev);
697 if (error) {
698 kfree(led);
699 xpad->led = NULL;
700 return error;
701 }
702
703 /*
704 * Light up the segment corresponding to controller number
705 */
706 xpad_send_led_command(xpad, (led_no % 4) + 2);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400707
708 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400709}
710
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400711static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400712{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400713 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400714
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400715 if (xpad_led) {
716 led_classdev_unregister(&xpad_led->led_cdev);
717 kfree(xpad_led->name);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400718 }
719}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400720#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400721static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
722static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400723#endif
724
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400725
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400726static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400728 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500729
Brian Magnuson99de0912008-04-03 16:19:23 -0400730 /* URB was submitted in probe */
731 if(xpad->xtype == XTYPE_XBOX360W)
732 return 0;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500735 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
739}
740
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400741static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400743 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500744
Brian Magnuson99de0912008-04-03 16:19:23 -0400745 if(xpad->xtype != XTYPE_XBOX360W)
746 usb_kill_urb(xpad->irq_in);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400747 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700750static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
751{
752 set_bit(abs, input_dev->absbit);
753
754 switch (abs) {
755 case ABS_X:
756 case ABS_Y:
757 case ABS_RX:
758 case ABS_RY: /* the two sticks */
759 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
760 break;
761 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800762 case ABS_RZ: /* the triggers (if mapped to axes) */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700763 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
764 break;
765 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800766 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700767 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
768 break;
769 }
770}
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
773{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400774 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500775 struct usb_xpad *xpad;
776 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct usb_endpoint_descriptor *ep_irq_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 int i;
Dmitry Torokhov50141862007-04-12 01:33:39 -0400779 int error = -ENOMEM;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 for (i = 0; xpad_device[i].idVendor; i++) {
782 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
783 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
784 break;
785 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500786
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500787 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
788 input_dev = input_allocate_device();
789 if (!xpad || !input_dev)
790 goto fail1;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500791
Daniel Mack997ea582010-04-12 13:17:25 +0200792 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
793 GFP_KERNEL, &xpad->idata_dma);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500794 if (!xpad->idata)
795 goto fail1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500798 if (!xpad->irq_in)
799 goto fail2;
800
801 xpad->udev = udev;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800802 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400803 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800804
Brian Magnuson99de0912008-04-03 16:19:23 -0400805 if (xpad->xtype == XTYPE_UNKNOWN) {
806 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
807 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
808 xpad->xtype = XTYPE_XBOX360W;
809 else
810 xpad->xtype = XTYPE_XBOX360;
811 } else
812 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800813
814 if (dpad_to_buttons)
815 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
816 if (triggers_to_buttons)
817 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Brian Magnuson99de0912008-04-03 16:19:23 -0400818 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800819
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500820 xpad->dev = input_dev;
821 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
822 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
823
824 input_dev->name = xpad_device[i].name;
825 input_dev->phys = xpad->phys;
826 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400827 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400828
829 input_set_drvdata(input_dev, xpad);
830
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500831 input_dev->open = xpad_open;
832 input_dev->close = xpad_close;
833
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700834 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500835
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800836 /* set up standard buttons and axes */
Anssi Hannulafc55e952008-04-03 16:18:44 -0400837 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800838 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500839
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700840 for (i = 0; xpad_abs[i] >= 0; i++)
841 xpad_set_up_abs(input_dev, xpad_abs[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800842
843 /* Now set up model-specific ones */
844 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W) {
845 for (i = 0; xpad360_btn[i] >= 0; i++)
846 __set_bit(xpad360_btn[i], input_dev->keybit);
847 } else {
848 for (i = 0; xpad_btn[i] >= 0; i++)
849 __set_bit(xpad_btn[i], input_dev->keybit);
850 }
851
852 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
853 for (i = 0; xpad_btn_pad[i] >= 0; i++)
854 __set_bit(xpad_btn_pad[i], input_dev->keybit);
855 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700856 for (i = 0; xpad_abs_pad[i] >= 0; i++)
857 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800858 }
859
860 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
861 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
862 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
863 } else {
864 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
865 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
866 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500867
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400868 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400869 if (error)
870 goto fail2;
871
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400872 error = xpad_init_ff(xpad);
873 if (error)
874 goto fail3;
875
876 error = xpad_led_probe(xpad);
877 if (error)
878 goto fail3;
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 ep_irq_in = &intf->cur_altsetting->endpoint[0].desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 usb_fill_int_urb(xpad->irq_in, udev,
882 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
883 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
884 xpad, ep_irq_in->bInterval);
885 xpad->irq_in->transfer_dma = xpad->idata_dma;
886 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500887
Dmitry Torokhov50141862007-04-12 01:33:39 -0400888 error = input_register_device(xpad->dev);
889 if (error)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400890 goto fail4;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400893
894 /*
895 * Submit the int URB immediatly rather than waiting for open
896 * because we get status messages from the device whether
897 * or not any controllers are attached. In fact, it's
898 * exactly the message that a controller has arrived that
899 * we're waiting for.
900 */
901 if (xpad->xtype == XTYPE_XBOX360W) {
902 xpad->irq_in->dev = xpad->udev;
903 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
904 if (error)
905 goto fail4;
906
907 /*
908 * Setup the message to set the LEDs on the
909 * controller when it shows up
910 */
911 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
912 if(!xpad->bulk_out)
913 goto fail5;
914
915 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
916 if(!xpad->bdata)
917 goto fail6;
918
919 xpad->bdata[2] = 0x08;
920 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
921 case 0:
922 xpad->bdata[3] = 0x42;
923 break;
924 case 2:
925 xpad->bdata[3] = 0x43;
926 break;
927 case 4:
928 xpad->bdata[3] = 0x44;
929 break;
930 case 6:
931 xpad->bdata[3] = 0x45;
932 }
933
934 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
935 usb_fill_bulk_urb(xpad->bulk_out, udev,
936 usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
937 xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
938 }
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500941
Brian Magnuson99de0912008-04-03 16:19:23 -0400942 fail6: usb_free_urb(xpad->bulk_out);
943 fail5: usb_kill_urb(xpad->irq_in);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400944 fail4: usb_free_urb(xpad->irq_in);
945 fail3: xpad_deinit_output(xpad);
Daniel Mack997ea582010-04-12 13:17:25 +0200946 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400947 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500948 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -0400949 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953static void xpad_disconnect(struct usb_interface *intf)
954{
955 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 usb_set_intfdata(intf, NULL);
958 if (xpad) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400959 xpad_led_disconnect(xpad);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500960 input_unregister_device(xpad->dev);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400961 xpad_deinit_output(xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400962 if (xpad->xtype == XTYPE_XBOX360W) {
963 usb_kill_urb(xpad->bulk_out);
964 usb_free_urb(xpad->bulk_out);
965 usb_kill_urb(xpad->irq_in);
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +0200968 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700969 xpad->idata, xpad->idata_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 kfree(xpad);
971 }
972}
973
974static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 .name = "xpad",
976 .probe = xpad_probe,
977 .disconnect = xpad_disconnect,
978 .id_table = xpad_table,
979};
980
981static int __init usb_xpad_init(void)
982{
983 int result = usb_register(&xpad_driver);
984 if (result == 0)
Greg Kroah-Hartman899ef6e2008-08-18 13:21:04 -0700985 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return result;
987}
988
989static void __exit usb_xpad_exit(void)
990{
991 usb_deregister(&xpad_driver);
992}
993
994module_init(usb_xpad_init);
995module_exit(usb_xpad_exit);
996
997MODULE_AUTHOR(DRIVER_AUTHOR);
998MODULE_DESCRIPTION(DRIVER_DESC);
999MODULE_LICENSE("GPL");