blob: 75e3b102ce450878bfc83c37572498efba4c92fd [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>
Christoph Fritz7beae702010-07-13 09:42:33 -070012 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
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
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040033 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
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
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070039 * - XBOX Linux project - extra USB id's
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 * TODO:
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070042 * - fine tune axes (especially trigger axes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * - fix "analog" buttons (reported as digital now)
44 * - get rumble working
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070045 * - need USB IDs for other dance pads
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
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
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070065 *
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
Anssi Hannulabf8cb312008-04-03 16:19:10 -040072 *
73 * Later changes can be tracked in SCM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/init.h>
78#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070079#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070081#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#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
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070088/* 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 */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080090#define MAP_DPAD_TO_BUTTONS (1 << 0)
91#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070092#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)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070095
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040096#define XTYPE_XBOX 0
97#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -040098#define XTYPE_XBOX360W 2
99#define XTYPE_UNKNOWN 3
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400100
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030101static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700102module_param(dpad_to_buttons, bool, S_IRUGO);
103MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
104
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030105static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800106module_param(triggers_to_buttons, bool, S_IRUGO);
107MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
108
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030109static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700110module_param(sticks_to_null, bool, S_IRUGO);
111MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
112
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100113static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 u16 idVendor;
115 u16 idProduct;
116 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800117 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400118 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800120 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800121 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
122 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800123 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
124 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
125 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400126 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800127 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
128 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
129 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
130 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
131 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
132 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
133 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
134 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
135 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
136 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400137 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800138 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
139 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700140 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800141 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400142 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800143 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800144 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800145 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800146 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
147 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
148 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700149 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800150 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
151 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
152 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
153 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
154 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800155 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700156 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800157 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800158 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800159 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
160 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800161 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
162 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
163 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700164 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800165 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800166 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400167 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800168 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800169 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Maged063492013-08-26 00:22:01 -0700170 { 0x1689, 0xfd01, "Razer Onza Classic Edition", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700171 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700172 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800173 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
174 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
175 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
176 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
177 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800178 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
179 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
Anssi Hannulafc55e952008-04-03 16:18:44 -0400182/* buttons shared with xbox and xbox360 */
183static const signed short xpad_common_btn[] = {
184 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700185 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 -1 /* terminating entry */
187};
188
Anssi Hannulafc55e952008-04-03 16:18:44 -0400189/* original xbox controllers only */
190static const signed short xpad_btn[] = {
191 BTN_C, BTN_Z, /* "analog" buttons */
192 -1 /* terminating entry */
193};
194
Christoph Fritz7beae702010-07-13 09:42:33 -0700195/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700196static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700197 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
198 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700199 -1 /* terminating entry */
200};
201
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800202/* used when triggers are mapped to buttons */
203static const signed short xpad_btn_triggers[] = {
204 BTN_TL2, BTN_TR2, /* triggers left/right */
205 -1
206};
207
208
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400209static const signed short xpad360_btn[] = { /* buttons for x360 controller */
210 BTN_TL, BTN_TR, /* Button LB/RB */
211 BTN_MODE, /* The big X button */
212 -1
213};
214
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100215static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 ABS_X, ABS_Y, /* left stick */
217 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700218 -1 /* terminating entry */
219};
220
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800221/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700222static const signed short xpad_abs_pad[] = {
223 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 -1 /* terminating entry */
225};
226
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800227/* used when triggers are mapped to axes */
228static const signed short xpad_abs_triggers[] = {
229 ABS_Z, ABS_RZ, /* triggers left/right */
230 -1
231};
232
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400233/* Xbox 360 has a vendor-specific class, so we cannot match it with only
234 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400235 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
236 * wireless controllers have protocol 129. */
237#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400238 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
239 .idVendor = (vend), \
240 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
241 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400242 .bInterfaceProtocol = (pr)
243#define XPAD_XBOX360_VENDOR(vend) \
244 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
245 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400246
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800247static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Brian Magnuson99de0912008-04-03 16:19:23 -0400249 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
250 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
251 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700252 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400253 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700254 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400255 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700256 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700257 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700258 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
259 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800260 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 { }
262};
263
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800264MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700267 struct input_dev *dev; /* input device interface */
268 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700269 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500270
Brian Magnuson99de0912008-04-03 16:19:23 -0400271 int pad_present;
272
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700273 struct urb *irq_in; /* urb for interrupt in report */
274 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500276
Brian Magnuson99de0912008-04-03 16:19:23 -0400277 struct urb *bulk_out;
278 unsigned char *bdata;
279
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400280#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400281 struct urb *irq_out; /* urb for interrupt out report */
282 unsigned char *odata; /* output data */
283 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400284 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400285#endif
286
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400287#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
288 struct xpad_led *led;
289#endif
290
291 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700292
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800293 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400294 int xtype; /* type of xbox device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
297/*
298 * xpad_process_packet
299 *
300 * Completes a request by converting the data into events for the
301 * input subsystem.
302 *
303 * The used report descriptor was taken from ITO Takayukis website:
304 * http://euc.jp/periphs/xbox-controller.ja.html
305 */
306
David Howells7d12e782006-10-05 14:55:46 +0100307static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500309 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Christoph Fritz7beae702010-07-13 09:42:33 -0700311 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
312 /* left stick */
313 input_report_abs(dev, ABS_X,
314 (__s16) le16_to_cpup((__le16 *)(data + 12)));
315 input_report_abs(dev, ABS_Y,
316 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500317
Christoph Fritz7beae702010-07-13 09:42:33 -0700318 /* right stick */
319 input_report_abs(dev, ABS_RX,
320 (__s16) le16_to_cpup((__le16 *)(data + 16)));
321 input_report_abs(dev, ABS_RY,
322 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
323 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800326 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
327 input_report_key(dev, BTN_TL2, data[10]);
328 input_report_key(dev, BTN_TR2, data[11]);
329 } else {
330 input_report_abs(dev, ABS_Z, data[10]);
331 input_report_abs(dev, ABS_RZ, data[11]);
332 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800335 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700336 /* dpad as buttons (left, right, up, down) */
337 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
338 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
339 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
340 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800341 } else {
342 input_report_abs(dev, ABS_HAT0X,
343 !!(data[2] & 0x08) - !!(data[2] & 0x04));
344 input_report_abs(dev, ABS_HAT0Y,
345 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700346 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700349 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700350 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700351 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
352 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* "analog" buttons A, B, X, Y */
355 input_report_key(dev, BTN_A, data[4]);
356 input_report_key(dev, BTN_B, data[5]);
357 input_report_key(dev, BTN_X, data[6]);
358 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* "analog" buttons black, white */
361 input_report_key(dev, BTN_C, data[8]);
362 input_report_key(dev, BTN_Z, data[9]);
363
364 input_sync(dev);
365}
366
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400367/*
368 * xpad360_process_packet
369 *
370 * Completes a request by converting the data into events for the
371 * input subsystem. It is version for xbox 360 controller
372 *
373 * The used report descriptor was taken from:
374 * http://www.free60.org/wiki/Gamepad
375 */
376
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400377static void xpad360_process_packet(struct usb_xpad *xpad,
378 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400379{
380 struct input_dev *dev = xpad->dev;
381
382 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800383 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700384 /* dpad as buttons (left, right, up, down) */
385 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
386 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
387 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
388 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800389 } else {
390 input_report_abs(dev, ABS_HAT0X,
391 !!(data[2] & 0x08) - !!(data[2] & 0x04));
392 input_report_abs(dev, ABS_HAT0Y,
393 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400394 }
395
396 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400397 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700398 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400399
400 /* stick press left/right */
401 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
402 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
403
404 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400405 input_report_key(dev, BTN_A, data[3] & 0x10);
406 input_report_key(dev, BTN_B, data[3] & 0x20);
407 input_report_key(dev, BTN_X, data[3] & 0x40);
408 input_report_key(dev, BTN_Y, data[3] & 0x80);
409 input_report_key(dev, BTN_TL, data[3] & 0x01);
410 input_report_key(dev, BTN_TR, data[3] & 0x02);
411 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400412
Christoph Fritz7beae702010-07-13 09:42:33 -0700413 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
414 /* left stick */
415 input_report_abs(dev, ABS_X,
416 (__s16) le16_to_cpup((__le16 *)(data + 6)));
417 input_report_abs(dev, ABS_Y,
418 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400419
Christoph Fritz7beae702010-07-13 09:42:33 -0700420 /* right stick */
421 input_report_abs(dev, ABS_RX,
422 (__s16) le16_to_cpup((__le16 *)(data + 10)));
423 input_report_abs(dev, ABS_RY,
424 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
425 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400426
427 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800428 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
429 input_report_key(dev, BTN_TL2, data[4]);
430 input_report_key(dev, BTN_TR2, data[5]);
431 } else {
432 input_report_abs(dev, ABS_Z, data[4]);
433 input_report_abs(dev, ABS_RZ, data[5]);
434 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400435
436 input_sync(dev);
437}
438
Brian Magnuson99de0912008-04-03 16:19:23 -0400439/*
440 * xpad360w_process_packet
441 *
442 * Completes a request by converting the data into events for the
443 * input subsystem. It is version for xbox 360 wireless controller.
444 *
445 * Byte.Bit
446 * 00.1 - Status change: The controller or headset has connected/disconnected
447 * Bits 01.7 and 01.6 are valid
448 * 01.7 - Controller present
449 * 01.6 - Headset present
450 * 01.1 - Pad state (Bytes 4+) valid
451 *
452 */
453
454static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
455{
456 /* Presence change */
457 if (data[0] & 0x08) {
458 if (data[1] & 0x80) {
459 xpad->pad_present = 1;
460 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
461 } else
462 xpad->pad_present = 0;
463 }
464
465 /* Valid pad data */
466 if (!(data[1] & 0x1))
467 return;
468
469 xpad360_process_packet(xpad, cmd, &data[4]);
470}
471
David Howells7d12e782006-10-05 14:55:46 +0100472static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700475 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200476 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500477
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200478 status = urb->status;
479
480 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 case 0:
482 /* success */
483 break;
484 case -ECONNRESET:
485 case -ENOENT:
486 case -ESHUTDOWN:
487 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700488 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400489 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return;
491 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700492 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400493 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto exit;
495 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500496
Brian Magnuson99de0912008-04-03 16:19:23 -0400497 switch (xpad->xtype) {
498 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400499 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400500 break;
501 case XTYPE_XBOX360W:
502 xpad360w_process_packet(xpad, 0, xpad->idata);
503 break;
504 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400505 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800509 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700511 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700512 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Dmitry Torokhov20430212008-04-27 00:10:11 -0400515static void xpad_bulk_out(struct urb *urb)
516{
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700517 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700518 struct device *dev = &xpad->intf->dev;
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700519
Dmitry Torokhov20430212008-04-27 00:10:11 -0400520 switch (urb->status) {
521 case 0:
522 /* success */
523 break;
524 case -ECONNRESET:
525 case -ENOENT:
526 case -ESHUTDOWN:
527 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700528 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
529 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400530 break;
531 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700532 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
533 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400534 }
535}
536
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400537#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400538static void xpad_irq_out(struct urb *urb)
539{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700540 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700541 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200542 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400543
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200544 status = urb->status;
545
546 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700547 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400548 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700549 return;
550
551 case -ECONNRESET:
552 case -ENOENT:
553 case -ESHUTDOWN:
554 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700555 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
556 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700557 return;
558
559 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700560 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
561 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700562 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400563 }
564
565exit:
566 retval = usb_submit_urb(urb, GFP_ATOMIC);
567 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700568 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700569 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400570}
571
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400572static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
573{
574 struct usb_endpoint_descriptor *ep_irq_out;
Axel Lin49cc69b2010-11-11 21:39:11 -0800575 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400576
Chris Moellerb514d4f2011-07-04 19:21:59 -0700577 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400578 return 0;
579
Daniel Mack997ea582010-04-12 13:17:25 +0200580 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
581 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800582 if (!xpad->odata) {
583 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400584 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800585 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400586
587 mutex_init(&xpad->odata_mutex);
588
589 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800590 if (!xpad->irq_out) {
591 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400592 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800593 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400594
595 ep_irq_out = &intf->cur_altsetting->endpoint[1].desc;
596 usb_fill_int_urb(xpad->irq_out, xpad->udev,
597 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
598 xpad->odata, XPAD_PKT_LEN,
599 xpad_irq_out, xpad, ep_irq_out->bInterval);
600 xpad->irq_out->transfer_dma = xpad->odata_dma;
601 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
602
603 return 0;
604
Daniel Mack997ea582010-04-12 13:17:25 +0200605 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400606 fail1: return error;
607}
608
609static void xpad_stop_output(struct usb_xpad *xpad)
610{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700611 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400612 usb_kill_urb(xpad->irq_out);
613}
614
615static void xpad_deinit_output(struct usb_xpad *xpad)
616{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700617 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400618 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200619 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400620 xpad->odata, xpad->odata_dma);
621 }
622}
623#else
624static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad) { return 0; }
625static void xpad_deinit_output(struct usb_xpad *xpad) {}
626static void xpad_stop_output(struct usb_xpad *xpad) {}
627#endif
628
629#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800630static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400631{
632 struct usb_xpad *xpad = input_get_drvdata(dev);
633
634 if (effect->type == FF_RUMBLE) {
635 __u16 strong = effect->u.rumble.strong_magnitude;
636 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800637
638 switch (xpad->xtype) {
639
640 case XTYPE_XBOX:
641 xpad->odata[0] = 0x00;
642 xpad->odata[1] = 0x06;
643 xpad->odata[2] = 0x00;
644 xpad->odata[3] = strong / 256; /* left actuator */
645 xpad->odata[4] = 0x00;
646 xpad->odata[5] = weak / 256; /* right actuator */
647 xpad->irq_out->transfer_buffer_length = 6;
648
649 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
650
651 case XTYPE_XBOX360:
652 xpad->odata[0] = 0x00;
653 xpad->odata[1] = 0x08;
654 xpad->odata[2] = 0x00;
655 xpad->odata[3] = strong / 256; /* left actuator? */
656 xpad->odata[4] = weak / 256; /* right actuator? */
657 xpad->odata[5] = 0x00;
658 xpad->odata[6] = 0x00;
659 xpad->odata[7] = 0x00;
660 xpad->irq_out->transfer_buffer_length = 8;
661
662 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
663
Chris Moellerb514d4f2011-07-04 19:21:59 -0700664 case XTYPE_XBOX360W:
665 xpad->odata[0] = 0x00;
666 xpad->odata[1] = 0x01;
667 xpad->odata[2] = 0x0F;
668 xpad->odata[3] = 0xC0;
669 xpad->odata[4] = 0x00;
670 xpad->odata[5] = strong / 256;
671 xpad->odata[6] = weak / 256;
672 xpad->odata[7] = 0x00;
673 xpad->odata[8] = 0x00;
674 xpad->odata[9] = 0x00;
675 xpad->odata[10] = 0x00;
676 xpad->odata[11] = 0x00;
677 xpad->irq_out->transfer_buffer_length = 12;
678
679 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
680
Benjamin Valentin12187302010-01-21 20:19:06 -0800681 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700682 dev_dbg(&xpad->dev->dev,
683 "%s - rumble command sent to unsupported xpad type: %d\n",
Benjamin Valentin12187302010-01-21 20:19:06 -0800684 __func__, xpad->xtype);
685 return -1;
686 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400687 }
688
689 return 0;
690}
691
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400692static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400693{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700694 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400695 return 0;
696
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400697 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
698
699 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
700}
701
702#else
703static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
704#endif
705
706#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
707#include <linux/leds.h>
708
709struct xpad_led {
710 char name[16];
711 struct led_classdev led_cdev;
712 struct usb_xpad *xpad;
713};
714
715static void xpad_send_led_command(struct usb_xpad *xpad, int command)
716{
717 if (command >= 0 && command < 14) {
718 mutex_lock(&xpad->odata_mutex);
719 xpad->odata[0] = 0x01;
720 xpad->odata[1] = 0x03;
721 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400722 xpad->irq_out->transfer_buffer_length = 3;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400723 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
724 mutex_unlock(&xpad->odata_mutex);
725 }
726}
727
728static void xpad_led_set(struct led_classdev *led_cdev,
729 enum led_brightness value)
730{
731 struct xpad_led *xpad_led = container_of(led_cdev,
732 struct xpad_led, led_cdev);
733
734 xpad_send_led_command(xpad_led->xpad, value);
735}
736
737static int xpad_led_probe(struct usb_xpad *xpad)
738{
739 static atomic_t led_seq = ATOMIC_INIT(0);
740 long led_no;
741 struct xpad_led *led;
742 struct led_classdev *led_cdev;
743 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400744
745 if (xpad->xtype != XTYPE_XBOX360)
746 return 0;
747
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400748 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
749 if (!led)
750 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400751
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400752 led_no = (long)atomic_inc_return(&led_seq) - 1;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400753
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400754 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
755 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400756
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400757 led_cdev = &led->led_cdev;
758 led_cdev->name = led->name;
759 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400760
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400761 error = led_classdev_register(&xpad->udev->dev, led_cdev);
762 if (error) {
763 kfree(led);
764 xpad->led = NULL;
765 return error;
766 }
767
768 /*
769 * Light up the segment corresponding to controller number
770 */
771 xpad_send_led_command(xpad, (led_no % 4) + 2);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400772
773 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400774}
775
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400776static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400777{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400778 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400779
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400780 if (xpad_led) {
781 led_classdev_unregister(&xpad_led->led_cdev);
Axel Lin6ff92a62010-11-11 21:43:17 -0800782 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400783 }
784}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400785#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400786static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
787static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400788#endif
789
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400790
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400791static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400793 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500794
Brian Magnuson99de0912008-04-03 16:19:23 -0400795 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800796 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400797 return 0;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500800 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return 0;
804}
805
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400806static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400808 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500809
Axel Lin161feb22010-11-11 21:47:42 -0800810 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400811 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -0800812
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400813 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700816static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
817{
818 set_bit(abs, input_dev->absbit);
819
820 switch (abs) {
821 case ABS_X:
822 case ABS_Y:
823 case ABS_RX:
824 case ABS_RY: /* the two sticks */
825 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
826 break;
827 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800828 case ABS_RZ: /* the triggers (if mapped to axes) */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700829 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
830 break;
831 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800832 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700833 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
834 break;
835 }
836}
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
839{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400840 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500841 struct usb_xpad *xpad;
842 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct usb_endpoint_descriptor *ep_irq_in;
Axel Lin49cc69b2010-11-11 21:39:11 -0800844 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 for (i = 0; xpad_device[i].idVendor; i++) {
847 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
848 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
849 break;
850 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500851
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500852 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
853 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -0800854 if (!xpad || !input_dev) {
855 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500856 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800857 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500858
Daniel Mack997ea582010-04-12 13:17:25 +0200859 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
860 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800861 if (!xpad->idata) {
862 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500863 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800867 if (!xpad->irq_in) {
868 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500869 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800870 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500871
872 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700873 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800874 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400875 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800876
Brian Magnuson99de0912008-04-03 16:19:23 -0400877 if (xpad->xtype == XTYPE_UNKNOWN) {
878 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
879 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
880 xpad->xtype = XTYPE_XBOX360W;
881 else
882 xpad->xtype = XTYPE_XBOX360;
883 } else
884 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800885
886 if (dpad_to_buttons)
887 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
888 if (triggers_to_buttons)
889 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -0700890 if (sticks_to_null)
891 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -0400892 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800893
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500894 xpad->dev = input_dev;
895 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
896 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
897
898 input_dev->name = xpad_device[i].name;
899 input_dev->phys = xpad->phys;
900 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400901 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400902
903 input_set_drvdata(input_dev, xpad);
904
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500905 input_dev->open = xpad_open;
906 input_dev->close = xpad_close;
907
Christoph Fritz7beae702010-07-13 09:42:33 -0700908 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500909
Christoph Fritz7beae702010-07-13 09:42:33 -0700910 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
911 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
912 /* set up axes */
913 for (i = 0; xpad_abs[i] >= 0; i++)
914 xpad_set_up_abs(input_dev, xpad_abs[i]);
915 }
916
917 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -0400918 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800919 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500920
Christoph Fritz7beae702010-07-13 09:42:33 -0700921 /* set up model-specific ones */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800922 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W) {
923 for (i = 0; xpad360_btn[i] >= 0; i++)
924 __set_bit(xpad360_btn[i], input_dev->keybit);
925 } else {
926 for (i = 0; xpad_btn[i] >= 0; i++)
927 __set_bit(xpad_btn[i], input_dev->keybit);
928 }
929
930 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
931 for (i = 0; xpad_btn_pad[i] >= 0; i++)
932 __set_bit(xpad_btn_pad[i], input_dev->keybit);
933 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700934 for (i = 0; xpad_abs_pad[i] >= 0; i++)
935 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800936 }
937
938 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
939 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
940 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
941 } else {
942 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
943 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
944 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500945
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400946 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400947 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800948 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400949
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400950 error = xpad_init_ff(xpad);
951 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800952 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400953
954 error = xpad_led_probe(xpad);
955 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800956 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 ep_irq_in = &intf->cur_altsetting->endpoint[0].desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 usb_fill_int_urb(xpad->irq_in, udev,
960 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
961 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
962 xpad, ep_irq_in->bInterval);
963 xpad->irq_in->transfer_dma = xpad->idata_dma;
964 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500965
Dmitry Torokhov50141862007-04-12 01:33:39 -0400966 error = input_register_device(xpad->dev);
967 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800968 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400971
Brian Magnuson99de0912008-04-03 16:19:23 -0400972 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -0400973 /*
974 * Setup the message to set the LEDs on the
975 * controller when it shows up
976 */
977 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800978 if (!xpad->bulk_out) {
979 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -0800980 goto fail7;
Axel Lin49cc69b2010-11-11 21:39:11 -0800981 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400982
983 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800984 if (!xpad->bdata) {
985 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -0800986 goto fail8;
Axel Lin49cc69b2010-11-11 21:39:11 -0800987 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400988
989 xpad->bdata[2] = 0x08;
990 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
991 case 0:
992 xpad->bdata[3] = 0x42;
993 break;
994 case 2:
995 xpad->bdata[3] = 0x43;
996 break;
997 case 4:
998 xpad->bdata[3] = 0x44;
999 break;
1000 case 6:
1001 xpad->bdata[3] = 0x45;
1002 }
1003
1004 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
1005 usb_fill_bulk_urb(xpad->bulk_out, udev,
1006 usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
1007 xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001008
1009 /*
1010 * Submit the int URB immediately rather than waiting for open
1011 * because we get status messages from the device whether
1012 * or not any controllers are attached. In fact, it's
1013 * exactly the message that a controller has arrived that
1014 * we're waiting for.
1015 */
1016 xpad->irq_in->dev = xpad->udev;
1017 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1018 if (error)
1019 goto fail9;
Brian Magnuson99de0912008-04-03 16:19:23 -04001020 }
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001023
Axel Line3f0f0a2010-11-17 23:59:34 -08001024 fail9: kfree(xpad->bdata);
1025 fail8: usb_free_urb(xpad->bulk_out);
Axel Lin161feb22010-11-11 21:47:42 -08001026 fail7: input_unregister_device(input_dev);
1027 input_dev = NULL;
1028 fail6: xpad_led_disconnect(xpad);
1029 fail5: if (input_dev)
1030 input_ff_destroy(input_dev);
1031 fail4: xpad_deinit_output(xpad);
1032 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001033 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001034 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001035 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001036 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040static void xpad_disconnect(struct usb_interface *intf)
1041{
1042 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001043
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001044 xpad_led_disconnect(xpad);
1045 input_unregister_device(xpad->dev);
1046 xpad_deinit_output(xpad);
1047
1048 if (xpad->xtype == XTYPE_XBOX360W) {
1049 usb_kill_urb(xpad->bulk_out);
1050 usb_free_urb(xpad->bulk_out);
1051 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001053
1054 usb_free_urb(xpad->irq_in);
1055 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1056 xpad->idata, xpad->idata_dma);
1057
1058 kfree(xpad->bdata);
1059 kfree(xpad);
1060
1061 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 .name = "xpad",
1066 .probe = xpad_probe,
1067 .disconnect = xpad_disconnect,
1068 .id_table = xpad_table,
1069};
1070
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001071module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073MODULE_AUTHOR(DRIVER_AUTHOR);
1074MODULE_DESCRIPTION(DRIVER_DESC);
1075MODULE_LICENSE("GPL");