blob: 995e79fa7dadb67e576820619bf88c91befbc346 [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 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800128 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
129 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800130 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
131 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
132 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
133 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
134 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
135 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
136 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
137 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
138 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400139 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800140 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
141 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700142 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800143 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400144 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800145 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800146 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800147 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800148 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
149 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
150 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700151 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800152 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
153 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
154 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
155 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
156 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800157 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700158 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800159 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800160 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800161 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
162 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800163 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
164 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
165 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700166 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800167 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800168 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400169 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800170 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800171 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
172 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700173 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700174 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800175 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
176 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
177 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
178 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
179 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800180 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
181 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
Anssi Hannulafc55e952008-04-03 16:18:44 -0400184/* buttons shared with xbox and xbox360 */
185static const signed short xpad_common_btn[] = {
186 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700187 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 -1 /* terminating entry */
189};
190
Anssi Hannulafc55e952008-04-03 16:18:44 -0400191/* original xbox controllers only */
192static const signed short xpad_btn[] = {
193 BTN_C, BTN_Z, /* "analog" buttons */
194 -1 /* terminating entry */
195};
196
Christoph Fritz7beae702010-07-13 09:42:33 -0700197/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700198static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700199 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
200 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700201 -1 /* terminating entry */
202};
203
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800204/* used when triggers are mapped to buttons */
205static const signed short xpad_btn_triggers[] = {
206 BTN_TL2, BTN_TR2, /* triggers left/right */
207 -1
208};
209
210
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400211static const signed short xpad360_btn[] = { /* buttons for x360 controller */
212 BTN_TL, BTN_TR, /* Button LB/RB */
213 BTN_MODE, /* The big X button */
214 -1
215};
216
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100217static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 ABS_X, ABS_Y, /* left stick */
219 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700220 -1 /* terminating entry */
221};
222
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800223/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700224static const signed short xpad_abs_pad[] = {
225 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 -1 /* terminating entry */
227};
228
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800229/* used when triggers are mapped to axes */
230static const signed short xpad_abs_triggers[] = {
231 ABS_Z, ABS_RZ, /* triggers left/right */
232 -1
233};
234
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400235/* Xbox 360 has a vendor-specific class, so we cannot match it with only
236 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400237 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
238 * wireless controllers have protocol 129. */
239#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400240 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
241 .idVendor = (vend), \
242 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
243 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400244 .bInterfaceProtocol = (pr)
245#define XPAD_XBOX360_VENDOR(vend) \
246 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
247 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400248
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800249static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Brian Magnuson99de0912008-04-03 16:19:23 -0400251 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
252 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
253 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700254 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400255 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700256 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400257 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700258 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700259 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700260 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
261 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800262 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 { }
264};
265
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800266MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700269 struct input_dev *dev; /* input device interface */
270 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700271 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500272
Brian Magnuson99de0912008-04-03 16:19:23 -0400273 int pad_present;
274
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700275 struct urb *irq_in; /* urb for interrupt in report */
276 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500278
Brian Magnuson99de0912008-04-03 16:19:23 -0400279 struct urb *bulk_out;
280 unsigned char *bdata;
281
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400282#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400283 struct urb *irq_out; /* urb for interrupt out report */
284 unsigned char *odata; /* output data */
285 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400286 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400287#endif
288
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400289#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
290 struct xpad_led *led;
291#endif
292
293 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700294
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800295 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400296 int xtype; /* type of xbox device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297};
298
299/*
300 * xpad_process_packet
301 *
302 * Completes a request by converting the data into events for the
303 * input subsystem.
304 *
305 * The used report descriptor was taken from ITO Takayukis website:
306 * http://euc.jp/periphs/xbox-controller.ja.html
307 */
308
David Howells7d12e782006-10-05 14:55:46 +0100309static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500311 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Christoph Fritz7beae702010-07-13 09:42:33 -0700313 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
314 /* left stick */
315 input_report_abs(dev, ABS_X,
316 (__s16) le16_to_cpup((__le16 *)(data + 12)));
317 input_report_abs(dev, ABS_Y,
318 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500319
Christoph Fritz7beae702010-07-13 09:42:33 -0700320 /* right stick */
321 input_report_abs(dev, ABS_RX,
322 (__s16) le16_to_cpup((__le16 *)(data + 16)));
323 input_report_abs(dev, ABS_RY,
324 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
325 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800328 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
329 input_report_key(dev, BTN_TL2, data[10]);
330 input_report_key(dev, BTN_TR2, data[11]);
331 } else {
332 input_report_abs(dev, ABS_Z, data[10]);
333 input_report_abs(dev, ABS_RZ, data[11]);
334 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800337 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700338 /* dpad as buttons (left, right, up, down) */
339 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
340 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
341 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
342 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800343 } else {
344 input_report_abs(dev, ABS_HAT0X,
345 !!(data[2] & 0x08) - !!(data[2] & 0x04));
346 input_report_abs(dev, ABS_HAT0Y,
347 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700348 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700351 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700352 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700353 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
354 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* "analog" buttons A, B, X, Y */
357 input_report_key(dev, BTN_A, data[4]);
358 input_report_key(dev, BTN_B, data[5]);
359 input_report_key(dev, BTN_X, data[6]);
360 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* "analog" buttons black, white */
363 input_report_key(dev, BTN_C, data[8]);
364 input_report_key(dev, BTN_Z, data[9]);
365
366 input_sync(dev);
367}
368
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400369/*
370 * xpad360_process_packet
371 *
372 * Completes a request by converting the data into events for the
373 * input subsystem. It is version for xbox 360 controller
374 *
375 * The used report descriptor was taken from:
376 * http://www.free60.org/wiki/Gamepad
377 */
378
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400379static void xpad360_process_packet(struct usb_xpad *xpad,
380 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400381{
382 struct input_dev *dev = xpad->dev;
383
384 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800385 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700386 /* dpad as buttons (left, right, up, down) */
387 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
388 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
389 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
390 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800391 } else {
392 input_report_abs(dev, ABS_HAT0X,
393 !!(data[2] & 0x08) - !!(data[2] & 0x04));
394 input_report_abs(dev, ABS_HAT0Y,
395 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400396 }
397
398 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400399 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700400 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400401
402 /* stick press left/right */
403 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
404 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
405
406 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400407 input_report_key(dev, BTN_A, data[3] & 0x10);
408 input_report_key(dev, BTN_B, data[3] & 0x20);
409 input_report_key(dev, BTN_X, data[3] & 0x40);
410 input_report_key(dev, BTN_Y, data[3] & 0x80);
411 input_report_key(dev, BTN_TL, data[3] & 0x01);
412 input_report_key(dev, BTN_TR, data[3] & 0x02);
413 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400414
Christoph Fritz7beae702010-07-13 09:42:33 -0700415 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
416 /* left stick */
417 input_report_abs(dev, ABS_X,
418 (__s16) le16_to_cpup((__le16 *)(data + 6)));
419 input_report_abs(dev, ABS_Y,
420 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400421
Christoph Fritz7beae702010-07-13 09:42:33 -0700422 /* right stick */
423 input_report_abs(dev, ABS_RX,
424 (__s16) le16_to_cpup((__le16 *)(data + 10)));
425 input_report_abs(dev, ABS_RY,
426 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
427 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400428
429 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800430 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
431 input_report_key(dev, BTN_TL2, data[4]);
432 input_report_key(dev, BTN_TR2, data[5]);
433 } else {
434 input_report_abs(dev, ABS_Z, data[4]);
435 input_report_abs(dev, ABS_RZ, data[5]);
436 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400437
438 input_sync(dev);
439}
440
Brian Magnuson99de0912008-04-03 16:19:23 -0400441/*
442 * xpad360w_process_packet
443 *
444 * Completes a request by converting the data into events for the
445 * input subsystem. It is version for xbox 360 wireless controller.
446 *
447 * Byte.Bit
448 * 00.1 - Status change: The controller or headset has connected/disconnected
449 * Bits 01.7 and 01.6 are valid
450 * 01.7 - Controller present
451 * 01.6 - Headset present
452 * 01.1 - Pad state (Bytes 4+) valid
453 *
454 */
455
456static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
457{
458 /* Presence change */
459 if (data[0] & 0x08) {
460 if (data[1] & 0x80) {
461 xpad->pad_present = 1;
462 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
463 } else
464 xpad->pad_present = 0;
465 }
466
467 /* Valid pad data */
468 if (!(data[1] & 0x1))
469 return;
470
471 xpad360_process_packet(xpad, cmd, &data[4]);
472}
473
David Howells7d12e782006-10-05 14:55:46 +0100474static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700477 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200478 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500479
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200480 status = urb->status;
481
482 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 case 0:
484 /* success */
485 break;
486 case -ECONNRESET:
487 case -ENOENT:
488 case -ESHUTDOWN:
489 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700490 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400491 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return;
493 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700494 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400495 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto exit;
497 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500498
Brian Magnuson99de0912008-04-03 16:19:23 -0400499 switch (xpad->xtype) {
500 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400501 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400502 break;
503 case XTYPE_XBOX360W:
504 xpad360w_process_packet(xpad, 0, xpad->idata);
505 break;
506 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400507 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800511 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700513 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700514 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Dmitry Torokhov20430212008-04-27 00:10:11 -0400517static void xpad_bulk_out(struct urb *urb)
518{
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700519 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700520 struct device *dev = &xpad->intf->dev;
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700521
Dmitry Torokhov20430212008-04-27 00:10:11 -0400522 switch (urb->status) {
523 case 0:
524 /* success */
525 break;
526 case -ECONNRESET:
527 case -ENOENT:
528 case -ESHUTDOWN:
529 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700530 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
531 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400532 break;
533 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700534 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
535 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400536 }
537}
538
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400539#if defined(CONFIG_JOYSTICK_XPAD_FF) || defined(CONFIG_JOYSTICK_XPAD_LEDS)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400540static void xpad_irq_out(struct urb *urb)
541{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700542 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700543 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200544 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400545
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200546 status = urb->status;
547
548 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700549 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400550 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700551 return;
552
553 case -ECONNRESET:
554 case -ENOENT:
555 case -ESHUTDOWN:
556 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700557 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
558 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700559 return;
560
561 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700562 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
563 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700564 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400565 }
566
567exit:
568 retval = usb_submit_urb(urb, GFP_ATOMIC);
569 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700570 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700571 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400572}
573
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400574static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
575{
576 struct usb_endpoint_descriptor *ep_irq_out;
Axel Lin49cc69b2010-11-11 21:39:11 -0800577 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400578
Chris Moellerb514d4f2011-07-04 19:21:59 -0700579 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400580 return 0;
581
Daniel Mack997ea582010-04-12 13:17:25 +0200582 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
583 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800584 if (!xpad->odata) {
585 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400586 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800587 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400588
589 mutex_init(&xpad->odata_mutex);
590
591 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800592 if (!xpad->irq_out) {
593 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400594 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800595 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400596
597 ep_irq_out = &intf->cur_altsetting->endpoint[1].desc;
598 usb_fill_int_urb(xpad->irq_out, xpad->udev,
599 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
600 xpad->odata, XPAD_PKT_LEN,
601 xpad_irq_out, xpad, ep_irq_out->bInterval);
602 xpad->irq_out->transfer_dma = xpad->odata_dma;
603 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
604
605 return 0;
606
Daniel Mack997ea582010-04-12 13:17:25 +0200607 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400608 fail1: return error;
609}
610
611static void xpad_stop_output(struct usb_xpad *xpad)
612{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700613 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400614 usb_kill_urb(xpad->irq_out);
615}
616
617static void xpad_deinit_output(struct usb_xpad *xpad)
618{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700619 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400620 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200621 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400622 xpad->odata, xpad->odata_dma);
623 }
624}
625#else
626static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad) { return 0; }
627static void xpad_deinit_output(struct usb_xpad *xpad) {}
628static void xpad_stop_output(struct usb_xpad *xpad) {}
629#endif
630
631#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800632static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400633{
634 struct usb_xpad *xpad = input_get_drvdata(dev);
635
636 if (effect->type == FF_RUMBLE) {
637 __u16 strong = effect->u.rumble.strong_magnitude;
638 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800639
640 switch (xpad->xtype) {
641
642 case XTYPE_XBOX:
643 xpad->odata[0] = 0x00;
644 xpad->odata[1] = 0x06;
645 xpad->odata[2] = 0x00;
646 xpad->odata[3] = strong / 256; /* left actuator */
647 xpad->odata[4] = 0x00;
648 xpad->odata[5] = weak / 256; /* right actuator */
649 xpad->irq_out->transfer_buffer_length = 6;
650
651 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
652
653 case XTYPE_XBOX360:
654 xpad->odata[0] = 0x00;
655 xpad->odata[1] = 0x08;
656 xpad->odata[2] = 0x00;
657 xpad->odata[3] = strong / 256; /* left actuator? */
658 xpad->odata[4] = weak / 256; /* right actuator? */
659 xpad->odata[5] = 0x00;
660 xpad->odata[6] = 0x00;
661 xpad->odata[7] = 0x00;
662 xpad->irq_out->transfer_buffer_length = 8;
663
664 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
665
Chris Moellerb514d4f2011-07-04 19:21:59 -0700666 case XTYPE_XBOX360W:
667 xpad->odata[0] = 0x00;
668 xpad->odata[1] = 0x01;
669 xpad->odata[2] = 0x0F;
670 xpad->odata[3] = 0xC0;
671 xpad->odata[4] = 0x00;
672 xpad->odata[5] = strong / 256;
673 xpad->odata[6] = weak / 256;
674 xpad->odata[7] = 0x00;
675 xpad->odata[8] = 0x00;
676 xpad->odata[9] = 0x00;
677 xpad->odata[10] = 0x00;
678 xpad->odata[11] = 0x00;
679 xpad->irq_out->transfer_buffer_length = 12;
680
681 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
682
Benjamin Valentin12187302010-01-21 20:19:06 -0800683 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700684 dev_dbg(&xpad->dev->dev,
685 "%s - rumble command sent to unsupported xpad type: %d\n",
Benjamin Valentin12187302010-01-21 20:19:06 -0800686 __func__, xpad->xtype);
687 return -1;
688 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400689 }
690
691 return 0;
692}
693
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400694static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400695{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700696 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400697 return 0;
698
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400699 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
700
701 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
702}
703
704#else
705static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
706#endif
707
708#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
709#include <linux/leds.h>
710
711struct xpad_led {
712 char name[16];
713 struct led_classdev led_cdev;
714 struct usb_xpad *xpad;
715};
716
717static void xpad_send_led_command(struct usb_xpad *xpad, int command)
718{
719 if (command >= 0 && command < 14) {
720 mutex_lock(&xpad->odata_mutex);
721 xpad->odata[0] = 0x01;
722 xpad->odata[1] = 0x03;
723 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400724 xpad->irq_out->transfer_buffer_length = 3;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400725 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
726 mutex_unlock(&xpad->odata_mutex);
727 }
728}
729
730static void xpad_led_set(struct led_classdev *led_cdev,
731 enum led_brightness value)
732{
733 struct xpad_led *xpad_led = container_of(led_cdev,
734 struct xpad_led, led_cdev);
735
736 xpad_send_led_command(xpad_led->xpad, value);
737}
738
739static int xpad_led_probe(struct usb_xpad *xpad)
740{
741 static atomic_t led_seq = ATOMIC_INIT(0);
742 long led_no;
743 struct xpad_led *led;
744 struct led_classdev *led_cdev;
745 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400746
747 if (xpad->xtype != XTYPE_XBOX360)
748 return 0;
749
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400750 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
751 if (!led)
752 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400753
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400754 led_no = (long)atomic_inc_return(&led_seq) - 1;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400755
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400756 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
757 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400758
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400759 led_cdev = &led->led_cdev;
760 led_cdev->name = led->name;
761 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400762
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400763 error = led_classdev_register(&xpad->udev->dev, led_cdev);
764 if (error) {
765 kfree(led);
766 xpad->led = NULL;
767 return error;
768 }
769
770 /*
771 * Light up the segment corresponding to controller number
772 */
773 xpad_send_led_command(xpad, (led_no % 4) + 2);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400774
775 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400776}
777
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400778static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400779{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400780 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400781
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400782 if (xpad_led) {
783 led_classdev_unregister(&xpad_led->led_cdev);
Axel Lin6ff92a62010-11-11 21:43:17 -0800784 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400785 }
786}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400787#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400788static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
789static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400790#endif
791
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400792
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400793static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400795 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500796
Brian Magnuson99de0912008-04-03 16:19:23 -0400797 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800798 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400799 return 0;
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500802 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return 0;
806}
807
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400808static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400810 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500811
Axel Lin161feb22010-11-11 21:47:42 -0800812 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400813 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -0800814
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400815 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700818static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
819{
820 set_bit(abs, input_dev->absbit);
821
822 switch (abs) {
823 case ABS_X:
824 case ABS_Y:
825 case ABS_RX:
826 case ABS_RY: /* the two sticks */
827 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
828 break;
829 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800830 case ABS_RZ: /* the triggers (if mapped to axes) */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700831 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
832 break;
833 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800834 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700835 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
836 break;
837 }
838}
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
841{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400842 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500843 struct usb_xpad *xpad;
844 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct usb_endpoint_descriptor *ep_irq_in;
Axel Lin49cc69b2010-11-11 21:39:11 -0800846 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 for (i = 0; xpad_device[i].idVendor; i++) {
849 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
850 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
851 break;
852 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500853
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500854 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
855 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -0800856 if (!xpad || !input_dev) {
857 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500858 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800859 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500860
Daniel Mack997ea582010-04-12 13:17:25 +0200861 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
862 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800863 if (!xpad->idata) {
864 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500865 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800869 if (!xpad->irq_in) {
870 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500871 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800872 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500873
874 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700875 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800876 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400877 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800878
Brian Magnuson99de0912008-04-03 16:19:23 -0400879 if (xpad->xtype == XTYPE_UNKNOWN) {
880 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
881 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
882 xpad->xtype = XTYPE_XBOX360W;
883 else
884 xpad->xtype = XTYPE_XBOX360;
885 } else
886 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800887
888 if (dpad_to_buttons)
889 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
890 if (triggers_to_buttons)
891 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -0700892 if (sticks_to_null)
893 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -0400894 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800895
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500896 xpad->dev = input_dev;
897 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
898 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
899
900 input_dev->name = xpad_device[i].name;
901 input_dev->phys = xpad->phys;
902 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -0400903 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400904
905 input_set_drvdata(input_dev, xpad);
906
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500907 input_dev->open = xpad_open;
908 input_dev->close = xpad_close;
909
Christoph Fritz7beae702010-07-13 09:42:33 -0700910 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500911
Christoph Fritz7beae702010-07-13 09:42:33 -0700912 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
913 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
914 /* set up axes */
915 for (i = 0; xpad_abs[i] >= 0; i++)
916 xpad_set_up_abs(input_dev, xpad_abs[i]);
917 }
918
919 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -0400920 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800921 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500922
Christoph Fritz7beae702010-07-13 09:42:33 -0700923 /* set up model-specific ones */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800924 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W) {
925 for (i = 0; xpad360_btn[i] >= 0; i++)
926 __set_bit(xpad360_btn[i], input_dev->keybit);
927 } else {
928 for (i = 0; xpad_btn[i] >= 0; i++)
929 __set_bit(xpad_btn[i], input_dev->keybit);
930 }
931
932 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
933 for (i = 0; xpad_btn_pad[i] >= 0; i++)
934 __set_bit(xpad_btn_pad[i], input_dev->keybit);
935 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700936 for (i = 0; xpad_abs_pad[i] >= 0; i++)
937 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800938 }
939
940 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
941 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
942 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
943 } else {
944 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
945 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
946 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500947
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400948 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400949 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800950 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400951
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400952 error = xpad_init_ff(xpad);
953 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800954 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400955
956 error = xpad_led_probe(xpad);
957 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800958 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 ep_irq_in = &intf->cur_altsetting->endpoint[0].desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 usb_fill_int_urb(xpad->irq_in, udev,
962 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
963 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
964 xpad, ep_irq_in->bInterval);
965 xpad->irq_in->transfer_dma = xpad->idata_dma;
966 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500967
Dmitry Torokhov50141862007-04-12 01:33:39 -0400968 error = input_register_device(xpad->dev);
969 if (error)
Axel Lin161feb22010-11-11 21:47:42 -0800970 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400973
Brian Magnuson99de0912008-04-03 16:19:23 -0400974 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -0400975 /*
976 * Setup the message to set the LEDs on the
977 * controller when it shows up
978 */
979 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800980 if (!xpad->bulk_out) {
981 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -0800982 goto fail7;
Axel Lin49cc69b2010-11-11 21:39:11 -0800983 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400984
985 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800986 if (!xpad->bdata) {
987 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -0800988 goto fail8;
Axel Lin49cc69b2010-11-11 21:39:11 -0800989 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400990
991 xpad->bdata[2] = 0x08;
992 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
993 case 0:
994 xpad->bdata[3] = 0x42;
995 break;
996 case 2:
997 xpad->bdata[3] = 0x43;
998 break;
999 case 4:
1000 xpad->bdata[3] = 0x44;
1001 break;
1002 case 6:
1003 xpad->bdata[3] = 0x45;
1004 }
1005
1006 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
1007 usb_fill_bulk_urb(xpad->bulk_out, udev,
1008 usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
1009 xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001010
1011 /*
1012 * Submit the int URB immediately rather than waiting for open
1013 * because we get status messages from the device whether
1014 * or not any controllers are attached. In fact, it's
1015 * exactly the message that a controller has arrived that
1016 * we're waiting for.
1017 */
1018 xpad->irq_in->dev = xpad->udev;
1019 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1020 if (error)
1021 goto fail9;
Brian Magnuson99de0912008-04-03 16:19:23 -04001022 }
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001025
Axel Line3f0f0a2010-11-17 23:59:34 -08001026 fail9: kfree(xpad->bdata);
1027 fail8: usb_free_urb(xpad->bulk_out);
Axel Lin161feb22010-11-11 21:47:42 -08001028 fail7: input_unregister_device(input_dev);
1029 input_dev = NULL;
1030 fail6: xpad_led_disconnect(xpad);
1031 fail5: if (input_dev)
1032 input_ff_destroy(input_dev);
1033 fail4: xpad_deinit_output(xpad);
1034 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001035 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001036 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001037 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001038 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042static void xpad_disconnect(struct usb_interface *intf)
1043{
1044 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001045
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001046 xpad_led_disconnect(xpad);
1047 input_unregister_device(xpad->dev);
1048 xpad_deinit_output(xpad);
1049
1050 if (xpad->xtype == XTYPE_XBOX360W) {
1051 usb_kill_urb(xpad->bulk_out);
1052 usb_free_urb(xpad->bulk_out);
1053 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001055
1056 usb_free_urb(xpad->irq_in);
1057 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1058 xpad->idata, xpad->idata_dma);
1059
1060 kfree(xpad->bdata);
1061 kfree(xpad);
1062
1063 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
1066static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .name = "xpad",
1068 .probe = xpad_probe,
1069 .disconnect = xpad_disconnect,
1070 .id_table = xpad_table,
1071};
1072
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001073module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075MODULE_AUTHOR(DRIVER_AUTHOR);
1076MODULE_DESCRIPTION(DRIVER_DESC);
1077MODULE_LICENSE("GPL");