]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/joystick/xpad.c
Input: xpad - add support for Xbox One controllers
[mirror_ubuntu-artful-kernel.git] / drivers / input / joystick / xpad.c
CommitLineData
1da177e4 1/*
bf8cb314 2 * X-Box gamepad driver
1da177e4
LT
3 *
4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
d518b2b4
DC
5 * 2004 Oliver Schwartz <Oliver.Schwartz@gmx.de>,
6 * Steven Toth <steve@toth.demon.co.uk>,
7 * Franz Lehner <franz@caos.at>,
8 * Ivan Hawkes <blackhawk@ivanhawkes.com>
deb8ee43
DC
9 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
c7d9f7eb 11 * 2007 Jan Kratochvil <honza@jikos.cz>
7beae702 12 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
1da177e4
LT
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 *
29 * This driver is based on:
30 * - information from http://euc.jp/periphs/xbox-controller.ja.html
31 * - the iForce driver drivers/char/joystick/iforce.c
32 * - the skeleton-driver drivers/usb/usb-skeleton.c
c7d9f7eb 33 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
1da177e4
LT
34 *
35 * Thanks to:
36 * - ITO Takayuki for providing essential xpad information on his website
37 * - Vojtech Pavlik - iforce driver / input subsystem
38 * - Greg Kroah-Hartman - usb-skeleton driver
d518b2b4 39 * - XBOX Linux project - extra USB id's
1da177e4
LT
40 *
41 * TODO:
deb8ee43 42 * - fine tune axes (especially trigger axes)
1da177e4
LT
43 * - fix "analog" buttons (reported as digital now)
44 * - get rumble working
deb8ee43 45 * - need USB IDs for other dance pads
1da177e4
LT
46 *
47 * History:
48 *
49 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
50 *
51 * 2002-07-02 - 0.0.2 : basic working version
52 * - all axes and 9 of the 10 buttons work (german InterAct device)
53 * - the black button does not work
54 *
55 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
56 * - indentation fixes
57 * - usb + input init sequence fixes
58 *
59 * 2002-07-16 - 0.0.4 : minor changes, merge with Vojtech's v0.0.3
60 * - verified the lack of HID and report descriptors
61 * - verified that ALL buttons WORK
62 * - fixed d-pad to axes mapping
63 *
64 * 2002-07-17 - 0.0.5 : simplified d-pad handling
d518b2b4
DC
65 *
66 * 2004-10-02 - 0.0.6 : DDR pad support
67 * - borrowed from the XBOX linux kernel
68 * - USB id's for commonly used dance pads are present
69 * - dance pads will map D-PAD to buttons, not axes
70 * - pass the module paramater 'dpad_to_buttons' to force
71 * the D-PAD to map to buttons if your pad is not detected
bf8cb314
AH
72 *
73 * Later changes can be tracked in SCM.
1da177e4
LT
74 */
75
1da177e4 76#include <linux/kernel.h>
1da177e4 77#include <linux/slab.h>
deb8ee43 78#include <linux/stat.h>
1da177e4 79#include <linux/module.h>
ae0dadcf 80#include <linux/usb/input.h>
1da177e4 81
1da177e4
LT
82#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
deb8ee43
DC
87/* 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 */
b45d44e7
NL
89#define MAP_DPAD_TO_BUTTONS (1 << 0)
90#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
7beae702
CF
91#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)
deb8ee43 94
c7d9f7eb
JK
95#define XTYPE_XBOX 0
96#define XTYPE_XBOX360 1
99de0912 97#define XTYPE_XBOX360W 2
1a48ff81
TM
98#define XTYPE_XBOXONE 3
99#define XTYPE_UNKNOWN 4
c7d9f7eb 100
90ab5ee9 101static bool dpad_to_buttons;
deb8ee43
DC
102module_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
90ab5ee9 105static bool triggers_to_buttons;
b45d44e7
NL
106module_param(triggers_to_buttons, bool, S_IRUGO);
107MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
108
90ab5ee9 109static bool sticks_to_null;
7beae702
CF
110module_param(sticks_to_null, bool, S_IRUGO);
111MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
112
4c4c9432 113static const struct xpad_device {
1da177e4
LT
114 u16 idVendor;
115 u16 idProduct;
116 char *name;
b45d44e7 117 u8 mapping;
c7d9f7eb 118 u8 xtype;
1da177e4 119} xpad_device[] = {
b45d44e7 120 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
b45d44e7
NL
121 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
122 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
540602a4
GA
123 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
124 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
1a48ff81 125 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
540602a4 126 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
99de0912 127 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
b45d44e7 128 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
8e2f2325
PS
129 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
130 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
b45d44e7
NL
131 { 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 },
c7d9f7eb 140 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7
NL
141 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
142 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
be662271 143 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
b45d44e7 144 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
c7d9f7eb 145 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
540602a4 146 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
b45d44e7 147 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
540602a4 148 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
b45d44e7
NL
149 { 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 },
e76b8ee2 152 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7
NL
153 { 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 },
540602a4 158 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
6ac8a99b 159 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
540602a4 160 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
b45d44e7 161 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
540602a4
GA
162 { 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 },
b45d44e7
NL
164 { 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 },
fabadbc7 167 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
540602a4 168 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7 169 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
c7d9f7eb 170 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
b45d44e7 171 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
dbb48007
TOR
172 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
173 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
fabadbc7 174 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
805423e8 175 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
540602a4
GA
176 { 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 },
b45d44e7
NL
181 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
182 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
1da177e4
LT
183};
184
fc55e952
AH
185/* buttons shared with xbox and xbox360 */
186static const signed short xpad_common_btn[] = {
187 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
7beae702 188 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
1da177e4
LT
189 -1 /* terminating entry */
190};
191
fc55e952
AH
192/* original xbox controllers only */
193static const signed short xpad_btn[] = {
194 BTN_C, BTN_Z, /* "analog" buttons */
195 -1 /* terminating entry */
196};
197
7beae702 198/* used when dpad is mapped to buttons */
deb8ee43 199static const signed short xpad_btn_pad[] = {
7beae702
CF
200 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
201 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
deb8ee43
DC
202 -1 /* terminating entry */
203};
204
b45d44e7
NL
205/* 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
c7d9f7eb
JK
212static 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
4c4c9432 218static const signed short xpad_abs[] = {
1da177e4
LT
219 ABS_X, ABS_Y, /* left stick */
220 ABS_RX, ABS_RY, /* right stick */
deb8ee43
DC
221 -1 /* terminating entry */
222};
223
b45d44e7 224/* used when dpad is mapped to axes */
deb8ee43
DC
225static const signed short xpad_abs_pad[] = {
226 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
1da177e4
LT
227 -1 /* terminating entry */
228};
229
b45d44e7
NL
230/* 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
1a48ff81
TM
236/*
237 * Xbox 360 has a vendor-specific class, so we cannot match it with only
8a0f83ea 238 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
99de0912 239 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
1a48ff81
TM
240 * wireless controllers have protocol 129.
241 */
99de0912 242#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
8a0f83ea
AH
243 .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, \
99de0912
BM
247 .bInterfaceProtocol = (pr)
248#define XPAD_XBOX360_VENDOR(vend) \
249 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
250 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
8a0f83ea 251
1a48ff81
TM
252/* 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
0d027966 262static struct usb_device_id xpad_table[] = {
1da177e4 263 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
99de0912 264 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
1a48ff81 265 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
99de0912
BM
266 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
267 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
3ffb62cb 268 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
99de0912 269 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
fabadbc7 270 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
99de0912 271 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
3ac91d36 272 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
fabadbc7 273 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
cc71a7e8
IK
274 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
275 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
540602a4 276 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
1da177e4
LT
277 { }
278};
279
0d027966 280MODULE_DEVICE_TABLE(usb, xpad_table);
1da177e4
LT
281
282struct usb_xpad {
deb8ee43
DC
283 struct input_dev *dev; /* input device interface */
284 struct usb_device *udev; /* usb device */
8818e419 285 struct usb_interface *intf; /* usb interface */
05f091ab 286
99de0912
BM
287 int pad_present;
288
deb8ee43
DC
289 struct urb *irq_in; /* urb for interrupt in report */
290 unsigned char *idata; /* input data */
1da177e4 291 dma_addr_t idata_dma;
05f091ab 292
99de0912
BM
293 struct urb *bulk_out;
294 unsigned char *bdata;
295
e01a06e8
JK
296 struct urb *irq_out; /* urb for interrupt out report */
297 unsigned char *odata; /* output data */
298 dma_addr_t odata_dma;
4994cd8d 299 struct mutex odata_mutex;
4994cd8d
JK
300
301#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
302 struct xpad_led *led;
e01a06e8
JK
303#endif
304
4994cd8d 305 char phys[64]; /* physical device path */
deb8ee43 306
b45d44e7 307 int mapping; /* map d-pad to buttons or to axes */
c7d9f7eb 308 int xtype; /* type of xbox device */
1da177e4
LT
309};
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
7d12e780 321static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
1da177e4 322{
c5b7c7c3 323 struct input_dev *dev = xpad->dev;
1da177e4 324
7beae702
CF
325 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)));
331
332 /* 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 }
05f091ab 338
1da177e4 339 /* triggers left/right */
b45d44e7
NL
340 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 }
05f091ab 347
1da177e4 348 /* digital pad */
b45d44e7 349 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
7beae702
CF
350 /* 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);
b45d44e7
NL
355 } 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));
deb8ee43 360 }
05f091ab 361
1da177e4 362 /* start/back buttons and stick press left/right */
deb8ee43 363 input_report_key(dev, BTN_START, data[2] & 0x10);
7beae702 364 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
deb8ee43
DC
365 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
366 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
05f091ab 367
1da177e4
LT
368 /* "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]);
05f091ab 373
1da177e4
LT
374 /* "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
c7d9f7eb
JK
381/*
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
20b3cdd6
DT
391static void xpad360_process_packet(struct usb_xpad *xpad,
392 u16 cmd, unsigned char *data)
c7d9f7eb
JK
393{
394 struct input_dev *dev = xpad->dev;
395
396 /* digital pad */
b45d44e7 397 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
7beae702
CF
398 /* 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);
b45d44e7
NL
403 } 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));
c7d9f7eb
JK
408 }
409
410 /* start/back buttons */
ae91d10a 411 input_report_key(dev, BTN_START, data[2] & 0x10);
7beae702 412 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
c7d9f7eb
JK
413
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 */
ae91d10a
DT
419 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);
c7d9f7eb 426
7beae702
CF
427 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)));
433
434 /* 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 }
c7d9f7eb
JK
440
441 /* triggers left/right */
b45d44e7
NL
442 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 }
c7d9f7eb
JK
449
450 input_sync(dev);
451}
452
99de0912
BM
453/*
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
1a48ff81
TM
486/*
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
7d12e780 585static void xpad_irq_in(struct urb *urb)
1da177e4
LT
586{
587 struct usb_xpad *xpad = urb->context;
8818e419 588 struct device *dev = &xpad->intf->dev;
6fc88f53 589 int retval, status;
05f091ab 590
6fc88f53
ON
591 status = urb->status;
592
593 switch (status) {
1da177e4
LT
594 case 0:
595 /* success */
596 break;
597 case -ECONNRESET:
598 case -ENOENT:
599 case -ESHUTDOWN:
600 /* this urb is terminated, clean up */
c4f0bbcd 601 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
ea3e6c59 602 __func__, status);
1da177e4
LT
603 return;
604 default:
c4f0bbcd 605 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
ea3e6c59 606 __func__, status);
1da177e4
LT
607 goto exit;
608 }
05f091ab 609
99de0912
BM
610 switch (xpad->xtype) {
611 case XTYPE_XBOX360:
c7d9f7eb 612 xpad360_process_packet(xpad, 0, xpad->idata);
99de0912
BM
613 break;
614 case XTYPE_XBOX360W:
615 xpad360w_process_packet(xpad, 0, xpad->idata);
616 break;
1a48ff81
TM
617 case XTYPE_XBOXONE:
618 xpadone_process_packet(xpad, 0, xpad->idata);
619 break;
99de0912 620 default:
c7d9f7eb 621 xpad_process_packet(xpad, 0, xpad->idata);
99de0912 622 }
1da177e4
LT
623
624exit:
dd38d688 625 retval = usb_submit_urb(urb, GFP_ATOMIC);
1da177e4 626 if (retval)
c4f0bbcd 627 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
9cb757bf 628 __func__, retval);
1da177e4
LT
629}
630
20430214
DT
631static void xpad_bulk_out(struct urb *urb)
632{
c4f0bbcd 633 struct usb_xpad *xpad = urb->context;
8818e419 634 struct device *dev = &xpad->intf->dev;
c4f0bbcd 635
20430214
DT
636 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 */
c4f0bbcd
GKH
644 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
645 __func__, urb->status);
20430214
DT
646 break;
647 default:
c4f0bbcd
GKH
648 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
649 __func__, urb->status);
20430214
DT
650 }
651}
652
e01a06e8
JK
653static void xpad_irq_out(struct urb *urb)
654{
9cb757bf 655 struct usb_xpad *xpad = urb->context;
8818e419 656 struct device *dev = &xpad->intf->dev;
6fc88f53
ON
657 int retval, status;
658
659 status = urb->status;
e01a06e8 660
6fc88f53 661 switch (status) {
70a6f2e6 662 case 0:
e01a06e8 663 /* success */
70a6f2e6
MG
664 return;
665
666 case -ECONNRESET:
667 case -ENOENT:
668 case -ESHUTDOWN:
669 /* this urb is terminated, clean up */
c4f0bbcd
GKH
670 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
671 __func__, status);
70a6f2e6
MG
672 return;
673
674 default:
c4f0bbcd
GKH
675 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
676 __func__, status);
70a6f2e6 677 goto exit;
e01a06e8
JK
678 }
679
680exit:
681 retval = usb_submit_urb(urb, GFP_ATOMIC);
682 if (retval)
c4f0bbcd 683 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
9cb757bf 684 __func__, retval);
e01a06e8
JK
685}
686
4994cd8d 687static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
e01a06e8
JK
688{
689 struct usb_endpoint_descriptor *ep_irq_out;
1a48ff81 690 int ep_irq_out_idx;
49cc69b6 691 int error;
e01a06e8 692
b514d4f7 693 if (xpad->xtype == XTYPE_UNKNOWN)
e01a06e8
JK
694 return 0;
695
997ea58e
DM
696 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
697 GFP_KERNEL, &xpad->odata_dma);
49cc69b6
AL
698 if (!xpad->odata) {
699 error = -ENOMEM;
e01a06e8 700 goto fail1;
49cc69b6 701 }
e01a06e8 702
4994cd8d
JK
703 mutex_init(&xpad->odata_mutex);
704
e01a06e8 705 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
49cc69b6
AL
706 if (!xpad->irq_out) {
707 error = -ENOMEM;
e01a06e8 708 goto fail2;
49cc69b6 709 }
e01a06e8 710
1a48ff81
TM
711 /* 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
e01a06e8
JK
715 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
e01a06e8
JK
722 return 0;
723
997ea58e 724 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
e01a06e8
JK
725 fail1: return error;
726}
727
4994cd8d 728static void xpad_stop_output(struct usb_xpad *xpad)
e01a06e8 729{
b514d4f7 730 if (xpad->xtype != XTYPE_UNKNOWN)
e01a06e8
JK
731 usb_kill_urb(xpad->irq_out);
732}
733
4994cd8d 734static void xpad_deinit_output(struct usb_xpad *xpad)
e01a06e8 735{
b514d4f7 736 if (xpad->xtype != XTYPE_UNKNOWN) {
e01a06e8 737 usb_free_urb(xpad->irq_out);
997ea58e 738 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
e01a06e8
JK
739 xpad->odata, xpad->odata_dma);
740 }
741}
4994cd8d
JK
742
743#ifdef CONFIG_JOYSTICK_XPAD_FF
12187305 744static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
4994cd8d
JK
745{
746 struct usb_xpad *xpad = input_get_drvdata(dev);
e01a06e8 747
4994cd8d
JK
748 if (effect->type == FF_RUMBLE) {
749 __u16 strong = effect->u.rumble.strong_magnitude;
750 __u16 weak = effect->u.rumble.weak_magnitude;
12187305
BV
751
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
b514d4f7
CM
778 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
12187305 795 default:
c4f0bbcd
GKH
796 dev_dbg(&xpad->dev->dev,
797 "%s - rumble command sent to unsupported xpad type: %d\n",
12187305
BV
798 __func__, xpad->xtype);
799 return -1;
800 }
4994cd8d
JK
801 }
802
803 return 0;
804}
805
806static int xpad_init_ff(struct usb_xpad *xpad)
807{
1a48ff81 808 if (xpad->xtype == XTYPE_UNKNOWN || xpad->xtype == XTYPE_XBOXONE)
cfbe2010
AH
809 return 0;
810
4994cd8d
JK
811 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;
04021e4e 836 xpad->irq_out->transfer_buffer_length = 3;
4994cd8d
JK
837 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;
858
859 if (xpad->xtype != XTYPE_XBOX360)
860 return 0;
861
862 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
863 if (!led)
864 return -ENOMEM;
865
866 led_no = (long)atomic_inc_return(&led_seq) - 1;
867
868 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
869 led->xpad = xpad;
870
871 led_cdev = &led->led_cdev;
872 led_cdev->name = led->name;
873 led_cdev->brightness_set = xpad_led_set;
874
875 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);
886
887 return 0;
888}
889
890static void xpad_led_disconnect(struct usb_xpad *xpad)
891{
892 struct xpad_led *xpad_led = xpad->led;
893
894 if (xpad_led) {
895 led_classdev_unregister(&xpad_led->led_cdev);
6ff92a6d 896 kfree(xpad_led);
4994cd8d
JK
897 }
898}
e01a06e8 899#else
4994cd8d
JK
900static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
901static void xpad_led_disconnect(struct usb_xpad *xpad) { }
e01a06e8
JK
902#endif
903
4994cd8d 904
e01a06e8 905static int xpad_open(struct input_dev *dev)
1da177e4 906{
7791bdae 907 struct usb_xpad *xpad = input_get_drvdata(dev);
05f091ab 908
99de0912 909 /* URB was submitted in probe */
0d027966 910 if (xpad->xtype == XTYPE_XBOX360W)
99de0912
BM
911 return 0;
912
1da177e4 913 xpad->irq_in->dev = xpad->udev;
65cde54b 914 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1da177e4 915 return -EIO;
05f091ab 916
1a48ff81
TM
917 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
1da177e4
LT
925 return 0;
926}
927
e01a06e8 928static void xpad_close(struct input_dev *dev)
1da177e4 929{
7791bdae 930 struct usb_xpad *xpad = input_get_drvdata(dev);
05f091ab 931
161feb24 932 if (xpad->xtype != XTYPE_XBOX360W)
99de0912 933 usb_kill_urb(xpad->irq_in);
161feb24 934
4994cd8d 935 xpad_stop_output(xpad);
1da177e4
LT
936}
937
deb8ee43
DC
938static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
939{
1a48ff81 940 struct usb_xpad *xpad = input_get_drvdata(input_dev);
deb8ee43
DC
941 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:
b45d44e7 951 case ABS_RZ: /* the triggers (if mapped to axes) */
1a48ff81
TM
952 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);
deb8ee43
DC
956 break;
957 case ABS_HAT0X:
b45d44e7 958 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
deb8ee43
DC
959 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
960 break;
961 }
962}
963
1da177e4
LT
964static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
965{
20b3cdd6 966 struct usb_device *udev = interface_to_usbdev(intf);
c5b7c7c3
DT
967 struct usb_xpad *xpad;
968 struct input_dev *input_dev;
1da177e4 969 struct usb_endpoint_descriptor *ep_irq_in;
1a48ff81 970 int ep_irq_in_idx;
49cc69b6 971 int i, error;
05f091ab 972
1da177e4
LT
973 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 }
05f091ab 978
1a48ff81
TM
979 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
c5b7c7c3
DT
989 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
990 input_dev = input_allocate_device();
49cc69b6
AL
991 if (!xpad || !input_dev) {
992 error = -ENOMEM;
c5b7c7c3 993 goto fail1;
49cc69b6 994 }
05f091ab 995
997ea58e
DM
996 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
997 GFP_KERNEL, &xpad->idata_dma);
49cc69b6
AL
998 if (!xpad->idata) {
999 error = -ENOMEM;
c5b7c7c3 1000 goto fail1;
49cc69b6 1001 }
1da177e4
LT
1002
1003 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
49cc69b6
AL
1004 if (!xpad->irq_in) {
1005 error = -ENOMEM;
c5b7c7c3 1006 goto fail2;
49cc69b6 1007 }
05f091ab 1008
1da177e4 1009 xpad->udev = udev;
8818e419 1010 xpad->intf = intf;
b45d44e7 1011 xpad->mapping = xpad_device[i].mapping;
c7d9f7eb 1012 xpad->xtype = xpad_device[i].xtype;
b45d44e7 1013
99de0912
BM
1014 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;
b45d44e7
NL
1022
1023 if (dpad_to_buttons)
1024 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1025 if (triggers_to_buttons)
1026 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
7beae702
CF
1027 if (sticks_to_null)
1028 xpad->mapping |= MAP_STICKS_TO_NULL;
99de0912 1029 }
b45d44e7 1030
c5b7c7c3
DT
1031 xpad->dev = input_dev;
1032 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1033 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
05f091ab 1034
c5b7c7c3
DT
1035 input_dev->name = xpad_device[i].name;
1036 input_dev->phys = xpad->phys;
1037 usb_to_input_id(udev, &input_dev->id);
c0f82d57 1038 input_dev->dev.parent = &intf->dev;
7791bdae
DT
1039
1040 input_set_drvdata(input_dev, xpad);
1041
c5b7c7c3
DT
1042 input_dev->open = xpad_open;
1043 input_dev->close = xpad_close;
05f091ab 1044
7beae702
CF
1045 input_dev->evbit[0] = BIT_MASK(EV_KEY);
1046
1047 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 }
05f091ab 1053
7beae702 1054 /* set up standard buttons */
fc55e952 1055 for (i = 0; xpad_common_btn[i] >= 0; i++)
b45d44e7 1056 __set_bit(xpad_common_btn[i], input_dev->keybit);
05f091ab 1057
7beae702 1058 /* set up model-specific ones */
1a48ff81
TM
1059 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1060 xpad->xtype == XTYPE_XBOXONE) {
b45d44e7
NL
1061 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 {
deb8ee43 1072 for (i = 0; xpad_abs_pad[i] >= 0; i++)
1a48ff81 1073 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
b45d44e7
NL
1074 }
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 }
05f091ab 1083
4994cd8d 1084 error = xpad_init_output(intf, xpad);
e01a06e8 1085 if (error)
161feb24 1086 goto fail3;
e01a06e8 1087
4994cd8d
JK
1088 error = xpad_init_ff(xpad);
1089 if (error)
161feb24 1090 goto fail4;
4994cd8d
JK
1091
1092 error = xpad_led_probe(xpad);
1093 if (error)
161feb24 1094 goto fail5;
4994cd8d 1095
1a48ff81
TM
1096 /* 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
c5b7c7c3
DT
1100 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;
05f091ab 1106
5014186d
DT
1107 error = input_register_device(xpad->dev);
1108 if (error)
161feb24 1109 goto fail6;
05f091ab 1110
1da177e4 1111 usb_set_intfdata(intf, xpad);
99de0912 1112
99de0912 1113 if (xpad->xtype == XTYPE_XBOX360W) {
99de0912
BM
1114 /*
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);
49cc69b6
AL
1119 if (!xpad->bulk_out) {
1120 error = -ENOMEM;
e3f0f0a6 1121 goto fail7;
49cc69b6 1122 }
99de0912
BM
1123
1124 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
49cc69b6
AL
1125 if (!xpad->bdata) {
1126 error = -ENOMEM;
e3f0f0a6 1127 goto fail8;
49cc69b6 1128 }
99de0912
BM
1129
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);
e3f0f0a6
AL
1149
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;
99de0912
BM
1161 }
1162
1da177e4 1163 return 0;
c5b7c7c3 1164
e3f0f0a6
AL
1165 fail9: kfree(xpad->bdata);
1166 fail8: usb_free_urb(xpad->bulk_out);
161feb24
AL
1167 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);
997ea58e 1174 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
5014186d 1175 fail1: input_free_device(input_dev);
c5b7c7c3 1176 kfree(xpad);
5014186d 1177 return error;
c5b7c7c3 1178
1da177e4
LT
1179}
1180
1181static void xpad_disconnect(struct usb_interface *intf)
1182{
1183 struct usb_xpad *xpad = usb_get_intfdata (intf);
05f091ab 1184
2a059159
DT
1185 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);
1da177e4 1193 }
2a059159
DT
1194
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);
1da177e4
LT
1203}
1204
1205static struct usb_driver xpad_driver = {
1da177e4
LT
1206 .name = "xpad",
1207 .probe = xpad_probe,
1208 .disconnect = xpad_disconnect,
1209 .id_table = xpad_table,
1210};
1211
08642e7c 1212module_usb_driver(xpad_driver);
1da177e4
LT
1213
1214MODULE_AUTHOR(DRIVER_AUTHOR);
1215MODULE_DESCRIPTION(DRIVER_DESC);
1216MODULE_LICENSE("GPL");