blob: 177602cf7079a41edf22553d348400d8035e649a [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/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070078#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070080#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
83#define DRIVER_DESC "X-Box pad driver"
84
85#define XPAD_PKT_LEN 32
86
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070087/* xbox d-pads should map to buttons, as is required for DDR pads
88 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080089#define MAP_DPAD_TO_BUTTONS (1 << 0)
90#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070091#define MAP_STICKS_TO_NULL (1 << 2)
92#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
93 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070094
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040095#define XTYPE_XBOX 0
96#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -040097#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -070098#define XTYPE_XBOXONE 3
99#define XTYPE_UNKNOWN 4
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 },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700125 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800126 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400127 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800128 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800129 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
130 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800131 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
132 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
133 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
134 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
135 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
136 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
137 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
138 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
139 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400140 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800141 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
142 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700143 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800144 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400145 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800146 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800147 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800148 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800149 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
150 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
151 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700152 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800153 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
154 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
155 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
156 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
157 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800158 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700159 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800160 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800161 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800162 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
163 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800164 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
165 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
166 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700167 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800168 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800169 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400170 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800171 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800172 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
173 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700174 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700175 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800176 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
177 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
178 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
179 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
180 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800181 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
182 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
Anssi Hannulafc55e952008-04-03 16:18:44 -0400185/* buttons shared with xbox and xbox360 */
186static const signed short xpad_common_btn[] = {
187 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700188 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 -1 /* terminating entry */
190};
191
Anssi Hannulafc55e952008-04-03 16:18:44 -0400192/* original xbox controllers only */
193static const signed short xpad_btn[] = {
194 BTN_C, BTN_Z, /* "analog" buttons */
195 -1 /* terminating entry */
196};
197
Christoph Fritz7beae702010-07-13 09:42:33 -0700198/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700199static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700200 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
201 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700202 -1 /* terminating entry */
203};
204
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800205/* used when triggers are mapped to buttons */
206static const signed short xpad_btn_triggers[] = {
207 BTN_TL2, BTN_TR2, /* triggers left/right */
208 -1
209};
210
211
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400212static const signed short xpad360_btn[] = { /* buttons for x360 controller */
213 BTN_TL, BTN_TR, /* Button LB/RB */
214 BTN_MODE, /* The big X button */
215 -1
216};
217
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100218static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 ABS_X, ABS_Y, /* left stick */
220 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700221 -1 /* terminating entry */
222};
223
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800224/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700225static const signed short xpad_abs_pad[] = {
226 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 -1 /* terminating entry */
228};
229
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800230/* used when triggers are mapped to axes */
231static const signed short xpad_abs_triggers[] = {
232 ABS_Z, ABS_RZ, /* triggers left/right */
233 -1
234};
235
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700236/*
237 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400238 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400239 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700240 * wireless controllers have protocol 129.
241 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400242#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400243 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
244 .idVendor = (vend), \
245 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
246 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400247 .bInterfaceProtocol = (pr)
248#define XPAD_XBOX360_VENDOR(vend) \
249 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
250 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400251
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700252/* The Xbox One controller uses subclass 71 and protocol 208. */
253#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
254 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
255 .idVendor = (vend), \
256 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
257 .bInterfaceSubClass = 71, \
258 .bInterfaceProtocol = (pr)
259#define XPAD_XBOXONE_VENDOR(vend) \
260 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
261
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800262static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Brian Magnuson99de0912008-04-03 16:19:23 -0400264 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700265 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400266 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
267 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700268 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400269 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700270 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400271 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700272 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700273 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700274 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
275 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800276 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 { }
278};
279
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800280MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700283 struct input_dev *dev; /* input device interface */
284 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700285 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500286
Brian Magnuson99de0912008-04-03 16:19:23 -0400287 int pad_present;
288
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700289 struct urb *irq_in; /* urb for interrupt in report */
290 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500292
Brian Magnuson99de0912008-04-03 16:19:23 -0400293 struct urb *bulk_out;
294 unsigned char *bdata;
295
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400296 struct urb *irq_out; /* urb for interrupt out report */
297 unsigned char *odata; /* output data */
298 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400299 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400300
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400301#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
302 struct xpad_led *led;
303#endif
304
305 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700306
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800307 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400308 int xtype; /* type of xbox device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309};
310
311/*
312 * xpad_process_packet
313 *
314 * Completes a request by converting the data into events for the
315 * input subsystem.
316 *
317 * The used report descriptor was taken from ITO Takayukis website:
318 * http://euc.jp/periphs/xbox-controller.ja.html
319 */
320
David Howells7d12e782006-10-05 14:55:46 +0100321static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500323 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Christoph Fritz7beae702010-07-13 09:42:33 -0700325 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
326 /* left stick */
327 input_report_abs(dev, ABS_X,
328 (__s16) le16_to_cpup((__le16 *)(data + 12)));
329 input_report_abs(dev, ABS_Y,
330 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500331
Christoph Fritz7beae702010-07-13 09:42:33 -0700332 /* right stick */
333 input_report_abs(dev, ABS_RX,
334 (__s16) le16_to_cpup((__le16 *)(data + 16)));
335 input_report_abs(dev, ABS_RY,
336 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
337 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800340 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
341 input_report_key(dev, BTN_TL2, data[10]);
342 input_report_key(dev, BTN_TR2, data[11]);
343 } else {
344 input_report_abs(dev, ABS_Z, data[10]);
345 input_report_abs(dev, ABS_RZ, data[11]);
346 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800349 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700350 /* dpad as buttons (left, right, up, down) */
351 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
352 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
353 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
354 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800355 } else {
356 input_report_abs(dev, ABS_HAT0X,
357 !!(data[2] & 0x08) - !!(data[2] & 0x04));
358 input_report_abs(dev, ABS_HAT0Y,
359 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700360 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700363 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700364 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700365 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
366 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /* "analog" buttons A, B, X, Y */
369 input_report_key(dev, BTN_A, data[4]);
370 input_report_key(dev, BTN_B, data[5]);
371 input_report_key(dev, BTN_X, data[6]);
372 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* "analog" buttons black, white */
375 input_report_key(dev, BTN_C, data[8]);
376 input_report_key(dev, BTN_Z, data[9]);
377
378 input_sync(dev);
379}
380
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400381/*
382 * xpad360_process_packet
383 *
384 * Completes a request by converting the data into events for the
385 * input subsystem. It is version for xbox 360 controller
386 *
387 * The used report descriptor was taken from:
388 * http://www.free60.org/wiki/Gamepad
389 */
390
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400391static void xpad360_process_packet(struct usb_xpad *xpad,
392 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400393{
394 struct input_dev *dev = xpad->dev;
395
396 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800397 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700398 /* dpad as buttons (left, right, up, down) */
399 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
400 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
401 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
402 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800403 } else {
404 input_report_abs(dev, ABS_HAT0X,
405 !!(data[2] & 0x08) - !!(data[2] & 0x04));
406 input_report_abs(dev, ABS_HAT0Y,
407 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400408 }
409
410 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400411 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700412 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400413
414 /* stick press left/right */
415 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
416 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
417
418 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400419 input_report_key(dev, BTN_A, data[3] & 0x10);
420 input_report_key(dev, BTN_B, data[3] & 0x20);
421 input_report_key(dev, BTN_X, data[3] & 0x40);
422 input_report_key(dev, BTN_Y, data[3] & 0x80);
423 input_report_key(dev, BTN_TL, data[3] & 0x01);
424 input_report_key(dev, BTN_TR, data[3] & 0x02);
425 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400426
Christoph Fritz7beae702010-07-13 09:42:33 -0700427 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
428 /* left stick */
429 input_report_abs(dev, ABS_X,
430 (__s16) le16_to_cpup((__le16 *)(data + 6)));
431 input_report_abs(dev, ABS_Y,
432 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400433
Christoph Fritz7beae702010-07-13 09:42:33 -0700434 /* right stick */
435 input_report_abs(dev, ABS_RX,
436 (__s16) le16_to_cpup((__le16 *)(data + 10)));
437 input_report_abs(dev, ABS_RY,
438 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
439 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400440
441 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800442 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
443 input_report_key(dev, BTN_TL2, data[4]);
444 input_report_key(dev, BTN_TR2, data[5]);
445 } else {
446 input_report_abs(dev, ABS_Z, data[4]);
447 input_report_abs(dev, ABS_RZ, data[5]);
448 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400449
450 input_sync(dev);
451}
452
Brian Magnuson99de0912008-04-03 16:19:23 -0400453/*
454 * xpad360w_process_packet
455 *
456 * Completes a request by converting the data into events for the
457 * input subsystem. It is version for xbox 360 wireless controller.
458 *
459 * Byte.Bit
460 * 00.1 - Status change: The controller or headset has connected/disconnected
461 * Bits 01.7 and 01.6 are valid
462 * 01.7 - Controller present
463 * 01.6 - Headset present
464 * 01.1 - Pad state (Bytes 4+) valid
465 *
466 */
467
468static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
469{
470 /* Presence change */
471 if (data[0] & 0x08) {
472 if (data[1] & 0x80) {
473 xpad->pad_present = 1;
474 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
475 } else
476 xpad->pad_present = 0;
477 }
478
479 /* Valid pad data */
480 if (!(data[1] & 0x1))
481 return;
482
483 xpad360_process_packet(xpad, cmd, &data[4]);
484}
485
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700486/*
487 * xpadone_process_buttons
488 *
489 * Process a button update packet from an Xbox one controller.
490 */
491static void xpadone_process_buttons(struct usb_xpad *xpad,
492 struct input_dev *dev,
493 unsigned char *data)
494{
495 /* menu/view buttons */
496 input_report_key(dev, BTN_START, data[4] & 0x04);
497 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
498
499 /* buttons A,B,X,Y */
500 input_report_key(dev, BTN_A, data[4] & 0x10);
501 input_report_key(dev, BTN_B, data[4] & 0x20);
502 input_report_key(dev, BTN_X, data[4] & 0x40);
503 input_report_key(dev, BTN_Y, data[4] & 0x80);
504
505 /* digital pad */
506 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
507 /* dpad as buttons (left, right, up, down) */
508 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
509 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
510 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
511 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
512 } else {
513 input_report_abs(dev, ABS_HAT0X,
514 !!(data[5] & 0x08) - !!(data[5] & 0x04));
515 input_report_abs(dev, ABS_HAT0Y,
516 !!(data[5] & 0x02) - !!(data[5] & 0x01));
517 }
518
519 /* TL/TR */
520 input_report_key(dev, BTN_TL, data[5] & 0x10);
521 input_report_key(dev, BTN_TR, data[5] & 0x20);
522
523 /* stick press left/right */
524 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
525 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
526
527 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
528 /* left stick */
529 input_report_abs(dev, ABS_X,
530 (__s16) le16_to_cpup((__le16 *)(data + 10)));
531 input_report_abs(dev, ABS_Y,
532 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
533
534 /* right stick */
535 input_report_abs(dev, ABS_RX,
536 (__s16) le16_to_cpup((__le16 *)(data + 14)));
537 input_report_abs(dev, ABS_RY,
538 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
539 }
540
541 /* triggers left/right */
542 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
543 input_report_key(dev, BTN_TL2,
544 (__u16) le16_to_cpup((__le16 *)(data + 6)));
545 input_report_key(dev, BTN_TR2,
546 (__u16) le16_to_cpup((__le16 *)(data + 8)));
547 } else {
548 input_report_abs(dev, ABS_Z,
549 (__u16) le16_to_cpup((__le16 *)(data + 6)));
550 input_report_abs(dev, ABS_RZ,
551 (__u16) le16_to_cpup((__le16 *)(data + 8)));
552 }
553
554 input_sync(dev);
555}
556
557/*
558 * xpadone_process_packet
559 *
560 * Completes a request by converting the data into events for the
561 * input subsystem. This version is for the Xbox One controller.
562 *
563 * The report format was gleaned from
564 * https://github.com/kylelemons/xbox/blob/master/xbox.go
565 */
566
567static void xpadone_process_packet(struct usb_xpad *xpad,
568 u16 cmd, unsigned char *data)
569{
570 struct input_dev *dev = xpad->dev;
571
572 switch (data[0]) {
573 case 0x20:
574 xpadone_process_buttons(xpad, dev, data);
575 break;
576
577 case 0x07:
578 /* the xbox button has its own special report */
579 input_report_key(dev, BTN_MODE, data[4] & 0x01);
580 input_sync(dev);
581 break;
582 }
583}
584
David Howells7d12e782006-10-05 14:55:46 +0100585static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700588 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200589 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500590
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200591 status = urb->status;
592
593 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 case 0:
595 /* success */
596 break;
597 case -ECONNRESET:
598 case -ENOENT:
599 case -ESHUTDOWN:
600 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700601 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400602 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return;
604 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700605 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400606 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto exit;
608 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500609
Brian Magnuson99de0912008-04-03 16:19:23 -0400610 switch (xpad->xtype) {
611 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400612 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400613 break;
614 case XTYPE_XBOX360W:
615 xpad360w_process_packet(xpad, 0, xpad->idata);
616 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700617 case XTYPE_XBOXONE:
618 xpadone_process_packet(xpad, 0, xpad->idata);
619 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400620 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400621 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800625 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700627 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700628 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Dmitry Torokhov20430212008-04-27 00:10:11 -0400631static void xpad_bulk_out(struct urb *urb)
632{
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700633 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700634 struct device *dev = &xpad->intf->dev;
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700635
Dmitry Torokhov20430212008-04-27 00:10:11 -0400636 switch (urb->status) {
637 case 0:
638 /* success */
639 break;
640 case -ECONNRESET:
641 case -ENOENT:
642 case -ESHUTDOWN:
643 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700644 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
645 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400646 break;
647 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700648 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
649 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400650 }
651}
652
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400653static void xpad_irq_out(struct urb *urb)
654{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700655 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700656 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200657 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400658
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200659 status = urb->status;
660
661 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700662 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400663 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700664 return;
665
666 case -ECONNRESET:
667 case -ENOENT:
668 case -ESHUTDOWN:
669 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700670 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
671 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700672 return;
673
674 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700675 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
676 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700677 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400678 }
679
680exit:
681 retval = usb_submit_urb(urb, GFP_ATOMIC);
682 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700683 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700684 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400685}
686
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400687static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
688{
689 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700690 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800691 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400692
Chris Moellerb514d4f2011-07-04 19:21:59 -0700693 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400694 return 0;
695
Daniel Mack997ea582010-04-12 13:17:25 +0200696 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
697 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800698 if (!xpad->odata) {
699 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400700 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800701 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400702
703 mutex_init(&xpad->odata_mutex);
704
705 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800706 if (!xpad->irq_out) {
707 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400708 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800709 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400710
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700711 /* Xbox One controller has in/out endpoints swapped. */
712 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
713 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
714
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400715 usb_fill_int_urb(xpad->irq_out, xpad->udev,
716 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
717 xpad->odata, XPAD_PKT_LEN,
718 xpad_irq_out, xpad, ep_irq_out->bInterval);
719 xpad->irq_out->transfer_dma = xpad->odata_dma;
720 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
721
722 return 0;
723
Daniel Mack997ea582010-04-12 13:17:25 +0200724 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400725 fail1: return error;
726}
727
728static void xpad_stop_output(struct usb_xpad *xpad)
729{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700730 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400731 usb_kill_urb(xpad->irq_out);
732}
733
734static void xpad_deinit_output(struct usb_xpad *xpad)
735{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700736 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400737 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200738 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400739 xpad->odata, xpad->odata_dma);
740 }
741}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400742
743#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800744static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400745{
746 struct usb_xpad *xpad = input_get_drvdata(dev);
747
748 if (effect->type == FF_RUMBLE) {
749 __u16 strong = effect->u.rumble.strong_magnitude;
750 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800751
752 switch (xpad->xtype) {
753
754 case XTYPE_XBOX:
755 xpad->odata[0] = 0x00;
756 xpad->odata[1] = 0x06;
757 xpad->odata[2] = 0x00;
758 xpad->odata[3] = strong / 256; /* left actuator */
759 xpad->odata[4] = 0x00;
760 xpad->odata[5] = weak / 256; /* right actuator */
761 xpad->irq_out->transfer_buffer_length = 6;
762
763 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
764
765 case XTYPE_XBOX360:
766 xpad->odata[0] = 0x00;
767 xpad->odata[1] = 0x08;
768 xpad->odata[2] = 0x00;
769 xpad->odata[3] = strong / 256; /* left actuator? */
770 xpad->odata[4] = weak / 256; /* right actuator? */
771 xpad->odata[5] = 0x00;
772 xpad->odata[6] = 0x00;
773 xpad->odata[7] = 0x00;
774 xpad->irq_out->transfer_buffer_length = 8;
775
776 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
777
Chris Moellerb514d4f2011-07-04 19:21:59 -0700778 case XTYPE_XBOX360W:
779 xpad->odata[0] = 0x00;
780 xpad->odata[1] = 0x01;
781 xpad->odata[2] = 0x0F;
782 xpad->odata[3] = 0xC0;
783 xpad->odata[4] = 0x00;
784 xpad->odata[5] = strong / 256;
785 xpad->odata[6] = weak / 256;
786 xpad->odata[7] = 0x00;
787 xpad->odata[8] = 0x00;
788 xpad->odata[9] = 0x00;
789 xpad->odata[10] = 0x00;
790 xpad->odata[11] = 0x00;
791 xpad->irq_out->transfer_buffer_length = 12;
792
793 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
794
Benjamin Valentin12187302010-01-21 20:19:06 -0800795 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700796 dev_dbg(&xpad->dev->dev,
797 "%s - rumble command sent to unsupported xpad type: %d\n",
Benjamin Valentin12187302010-01-21 20:19:06 -0800798 __func__, xpad->xtype);
799 return -1;
800 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400801 }
802
803 return 0;
804}
805
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400806static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400807{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700808 if (xpad->xtype == XTYPE_UNKNOWN || xpad->xtype == XTYPE_XBOXONE)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400809 return 0;
810
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400811 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
812
813 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
814}
815
816#else
817static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
818#endif
819
820#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
821#include <linux/leds.h>
822
823struct xpad_led {
824 char name[16];
825 struct led_classdev led_cdev;
826 struct usb_xpad *xpad;
827};
828
829static void xpad_send_led_command(struct usb_xpad *xpad, int command)
830{
831 if (command >= 0 && command < 14) {
832 mutex_lock(&xpad->odata_mutex);
833 xpad->odata[0] = 0x01;
834 xpad->odata[1] = 0x03;
835 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400836 xpad->irq_out->transfer_buffer_length = 3;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400837 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
838 mutex_unlock(&xpad->odata_mutex);
839 }
840}
841
842static void xpad_led_set(struct led_classdev *led_cdev,
843 enum led_brightness value)
844{
845 struct xpad_led *xpad_led = container_of(led_cdev,
846 struct xpad_led, led_cdev);
847
848 xpad_send_led_command(xpad_led->xpad, value);
849}
850
851static int xpad_led_probe(struct usb_xpad *xpad)
852{
853 static atomic_t led_seq = ATOMIC_INIT(0);
854 long led_no;
855 struct xpad_led *led;
856 struct led_classdev *led_cdev;
857 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400858
859 if (xpad->xtype != XTYPE_XBOX360)
860 return 0;
861
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400862 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
863 if (!led)
864 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400865
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400866 led_no = (long)atomic_inc_return(&led_seq) - 1;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400867
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400868 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
869 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400870
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400871 led_cdev = &led->led_cdev;
872 led_cdev->name = led->name;
873 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400874
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400875 error = led_classdev_register(&xpad->udev->dev, led_cdev);
876 if (error) {
877 kfree(led);
878 xpad->led = NULL;
879 return error;
880 }
881
882 /*
883 * Light up the segment corresponding to controller number
884 */
885 xpad_send_led_command(xpad, (led_no % 4) + 2);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400886
887 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400888}
889
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400890static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400891{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400892 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400893
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400894 if (xpad_led) {
895 led_classdev_unregister(&xpad_led->led_cdev);
Axel Lin6ff92a62010-11-11 21:43:17 -0800896 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400897 }
898}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400899#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400900static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
901static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400902#endif
903
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400904
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400905static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400907 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500908
Brian Magnuson99de0912008-04-03 16:19:23 -0400909 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800910 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400911 return 0;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500914 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500916
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700917 if (xpad->xtype == XTYPE_XBOXONE) {
918 /* Xbox one controller needs to be initialized. */
919 xpad->odata[0] = 0x05;
920 xpad->odata[1] = 0x20;
921 xpad->irq_out->transfer_buffer_length = 2;
922 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
923 }
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return 0;
926}
927
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400928static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400930 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500931
Axel Lin161feb22010-11-11 21:47:42 -0800932 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400933 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -0800934
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400935 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700938static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
939{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700940 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700941 set_bit(abs, input_dev->absbit);
942
943 switch (abs) {
944 case ABS_X:
945 case ABS_Y:
946 case ABS_RX:
947 case ABS_RY: /* the two sticks */
948 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
949 break;
950 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800951 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700952 if (xpad->xtype == XTYPE_XBOXONE)
953 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
954 else
955 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700956 break;
957 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800958 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700959 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
960 break;
961 }
962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
965{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400966 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500967 struct usb_xpad *xpad;
968 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 struct usb_endpoint_descriptor *ep_irq_in;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700970 int ep_irq_in_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800971 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 for (i = 0; xpad_device[i].idVendor; i++) {
974 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
975 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
976 break;
977 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500978
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700979 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
980 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
981 /*
982 * The Xbox One controller lists three interfaces all with the
983 * same interface class, subclass and protocol. Differentiate by
984 * interface number.
985 */
986 return -ENODEV;
987 }
988
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500989 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
990 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -0800991 if (!xpad || !input_dev) {
992 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500993 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800994 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500995
Daniel Mack997ea582010-04-12 13:17:25 +0200996 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
997 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800998 if (!xpad->idata) {
999 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001000 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001004 if (!xpad->irq_in) {
1005 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001006 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -08001007 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001008
1009 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -07001010 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001011 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -04001012 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001013
Brian Magnuson99de0912008-04-03 16:19:23 -04001014 if (xpad->xtype == XTYPE_UNKNOWN) {
1015 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1016 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1017 xpad->xtype = XTYPE_XBOX360W;
1018 else
1019 xpad->xtype = XTYPE_XBOX360;
1020 } else
1021 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001022
1023 if (dpad_to_buttons)
1024 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1025 if (triggers_to_buttons)
1026 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -07001027 if (sticks_to_null)
1028 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -04001029 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001030
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001031 xpad->dev = input_dev;
1032 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1033 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1034
1035 input_dev->name = xpad_device[i].name;
1036 input_dev->phys = xpad->phys;
1037 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001038 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001039
1040 input_set_drvdata(input_dev, xpad);
1041
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001042 input_dev->open = xpad_open;
1043 input_dev->close = xpad_close;
1044
Christoph Fritz7beae702010-07-13 09:42:33 -07001045 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001046
Christoph Fritz7beae702010-07-13 09:42:33 -07001047 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1048 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
1049 /* set up axes */
1050 for (i = 0; xpad_abs[i] >= 0; i++)
1051 xpad_set_up_abs(input_dev, xpad_abs[i]);
1052 }
1053
1054 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001055 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001056 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001057
Christoph Fritz7beae702010-07-13 09:42:33 -07001058 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001059 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1060 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001061 for (i = 0; xpad360_btn[i] >= 0; i++)
1062 __set_bit(xpad360_btn[i], input_dev->keybit);
1063 } else {
1064 for (i = 0; xpad_btn[i] >= 0; i++)
1065 __set_bit(xpad_btn[i], input_dev->keybit);
1066 }
1067
1068 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1069 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1070 __set_bit(xpad_btn_pad[i], input_dev->keybit);
1071 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001072 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001073 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001074 }
1075
1076 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1077 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1078 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1079 } else {
1080 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1081 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1082 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001083
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001084 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001085 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001086 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001087
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001088 error = xpad_init_ff(xpad);
1089 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001090 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001091
1092 error = xpad_led_probe(xpad);
1093 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001094 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001095
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001096 /* Xbox One controller has in/out endpoints swapped. */
1097 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1098 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 usb_fill_int_urb(xpad->irq_in, udev,
1101 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1102 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1103 xpad, ep_irq_in->bInterval);
1104 xpad->irq_in->transfer_dma = xpad->idata_dma;
1105 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001106
Dmitry Torokhov50141862007-04-12 01:33:39 -04001107 error = input_register_device(xpad->dev);
1108 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001109 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001112
Brian Magnuson99de0912008-04-03 16:19:23 -04001113 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001114 /*
1115 * Setup the message to set the LEDs on the
1116 * controller when it shows up
1117 */
1118 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001119 if (!xpad->bulk_out) {
1120 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001121 goto fail7;
Axel Lin49cc69b2010-11-11 21:39:11 -08001122 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001123
1124 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001125 if (!xpad->bdata) {
1126 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001127 goto fail8;
Axel Lin49cc69b2010-11-11 21:39:11 -08001128 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001129
1130 xpad->bdata[2] = 0x08;
1131 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
1132 case 0:
1133 xpad->bdata[3] = 0x42;
1134 break;
1135 case 2:
1136 xpad->bdata[3] = 0x43;
1137 break;
1138 case 4:
1139 xpad->bdata[3] = 0x44;
1140 break;
1141 case 6:
1142 xpad->bdata[3] = 0x45;
1143 }
1144
1145 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
1146 usb_fill_bulk_urb(xpad->bulk_out, udev,
1147 usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
1148 xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001149
1150 /*
1151 * Submit the int URB immediately rather than waiting for open
1152 * because we get status messages from the device whether
1153 * or not any controllers are attached. In fact, it's
1154 * exactly the message that a controller has arrived that
1155 * we're waiting for.
1156 */
1157 xpad->irq_in->dev = xpad->udev;
1158 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1159 if (error)
1160 goto fail9;
Brian Magnuson99de0912008-04-03 16:19:23 -04001161 }
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001164
Axel Line3f0f0a2010-11-17 23:59:34 -08001165 fail9: kfree(xpad->bdata);
1166 fail8: usb_free_urb(xpad->bulk_out);
Axel Lin161feb22010-11-11 21:47:42 -08001167 fail7: input_unregister_device(input_dev);
1168 input_dev = NULL;
1169 fail6: xpad_led_disconnect(xpad);
1170 fail5: if (input_dev)
1171 input_ff_destroy(input_dev);
1172 fail4: xpad_deinit_output(xpad);
1173 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001174 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001175 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001176 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001177 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181static void xpad_disconnect(struct usb_interface *intf)
1182{
1183 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001184
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001185 xpad_led_disconnect(xpad);
1186 input_unregister_device(xpad->dev);
1187 xpad_deinit_output(xpad);
1188
1189 if (xpad->xtype == XTYPE_XBOX360W) {
1190 usb_kill_urb(xpad->bulk_out);
1191 usb_free_urb(xpad->bulk_out);
1192 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001194
1195 usb_free_urb(xpad->irq_in);
1196 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1197 xpad->idata, xpad->idata_dma);
1198
1199 kfree(xpad->bdata);
1200 kfree(xpad);
1201
1202 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 .name = "xpad",
1207 .probe = xpad_probe,
1208 .disconnect = xpad_disconnect,
1209 .id_table = xpad_table,
1210};
1211
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001212module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214MODULE_AUTHOR(DRIVER_AUTHOR);
1215MODULE_DESCRIPTION(DRIVER_DESC);
1216MODULE_LICENSE("GPL");