4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
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>
9 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
11 * 2007 Jan Kratochvil <honza@jikos.cz>
12 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
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.
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.
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
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
33 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
34 * - Xbox One information https://github.com/quantus/xbox-one-controller-protocol
37 * - ITO Takayuki for providing essential xpad information on his website
38 * - Vojtech Pavlik - iforce driver / input subsystem
39 * - Greg Kroah-Hartman - usb-skeleton driver
40 * - XBOX Linux project - extra USB id's
41 * - Pekka Pöyry (quantus) - Xbox One controller reverse engineering
44 * - fine tune axes (especially trigger axes)
45 * - fix "analog" buttons (reported as digital now)
46 * - get rumble working
47 * - need USB IDs for other dance pads
51 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
53 * 2002-07-02 - 0.0.2 : basic working version
54 * - all axes and 9 of the 10 buttons work (german InterAct device)
55 * - the black button does not work
57 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
59 * - usb + input init sequence fixes
61 * 2002-07-16 - 0.0.4 : minor changes, merge with Vojtech's v0.0.3
62 * - verified the lack of HID and report descriptors
63 * - verified that ALL buttons WORK
64 * - fixed d-pad to axes mapping
66 * 2002-07-17 - 0.0.5 : simplified d-pad handling
68 * 2004-10-02 - 0.0.6 : DDR pad support
69 * - borrowed from the XBOX linux kernel
70 * - USB id's for commonly used dance pads are present
71 * - dance pads will map D-PAD to buttons, not axes
72 * - pass the module paramater 'dpad_to_buttons' to force
73 * the D-PAD to map to buttons if your pad is not detected
75 * Later changes can be tracked in SCM.
78 #include <linux/kernel.h>
79 #include <linux/init.h>
80 #include <linux/slab.h>
81 #include <linux/stat.h>
82 #include <linux/module.h>
83 #include <linux/usb/input.h>
85 #define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
86 #define DRIVER_DESC "X-Box pad driver"
88 #define XPAD_PKT_LEN 32
90 /* xbox d-pads should map to buttons, as is required for DDR pads
91 but we map them to axes when possible to simplify things */
92 #define MAP_DPAD_TO_BUTTONS (1 << 0)
93 #define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
94 #define MAP_STICKS_TO_NULL (1 << 2)
95 #define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
96 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
99 #define XTYPE_XBOX360 1
100 #define XTYPE_XBOX360W 2
101 #define XTYPE_XBOXONE 3
102 #define XTYPE_UNKNOWN 4
104 static bool dpad_to_buttons
;
105 module_param(dpad_to_buttons
, bool, S_IRUGO
);
106 MODULE_PARM_DESC(dpad_to_buttons
, "Map D-PAD to buttons rather than axes for unknown pads");
108 static bool triggers_to_buttons
;
109 module_param(triggers_to_buttons
, bool, S_IRUGO
);
110 MODULE_PARM_DESC(triggers_to_buttons
, "Map triggers to buttons rather than axes for unknown pads");
112 static bool sticks_to_null
;
113 module_param(sticks_to_null
, bool, S_IRUGO
);
114 MODULE_PARM_DESC(sticks_to_null
, "Do not map sticks at all for unknown pads");
116 static const struct xpad_device
{
123 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX
},
124 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX
},
125 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX
},
126 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX
},
127 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360
},
128 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE
},
129 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360W
},
130 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360W
},
131 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX
},
132 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360
},
133 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360
},
134 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360
},
135 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360
},
136 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360
},
137 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX
},
138 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX
},
139 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX
},
140 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX
},
141 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX
},
142 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX
},
143 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX
},
144 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX
},
145 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
146 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX
},
147 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360
},
148 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360
},
149 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360
},
150 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
151 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
152 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360
},
153 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
154 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360
},
155 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360
},
156 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360
},
157 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360
},
158 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360
},
159 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX
},
160 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG
, XTYPE_XBOX
},
161 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX
},
162 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX
},
163 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX
},
164 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
165 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX
},
166 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX
},
167 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX
},
168 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX
},
169 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX
},
170 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
171 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
172 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360
},
173 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
174 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
175 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360
},
176 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360
},
177 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX
},
178 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX
},
179 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360
},
180 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
181 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
182 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX
},
183 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX
},
184 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX
},
185 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
186 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360
},
187 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
188 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360
},
189 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
190 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360
},
191 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360
},
192 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360
},
193 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360
},
194 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360
},
195 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360
},
196 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360
},
197 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360
},
198 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360
},
199 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360
},
200 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
201 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360
},
202 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360
},
203 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360
},
204 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360
},
205 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360
},
206 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360
},
207 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360
},
208 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", 0, XTYPE_XBOX360
},
209 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360
},
210 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360
},
211 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360
},
212 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360
},
213 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360
},
214 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360
},
215 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360
},
216 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX
},
217 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN
}
220 /* buttons shared with xbox and xbox360 */
221 static const signed short xpad_common_btn
[] = {
222 BTN_A
, BTN_B
, BTN_X
, BTN_Y
, /* "analog" buttons */
223 BTN_START
, BTN_SELECT
, BTN_THUMBL
, BTN_THUMBR
, /* start/back/sticks */
224 -1 /* terminating entry */
227 /* original xbox controllers only */
228 static const signed short xpad_btn
[] = {
229 BTN_C
, BTN_Z
, /* "analog" buttons */
230 -1 /* terminating entry */
233 /* used when dpad is mapped to buttons */
234 static const signed short xpad_btn_pad
[] = {
235 BTN_TRIGGER_HAPPY1
, BTN_TRIGGER_HAPPY2
, /* d-pad left, right */
236 BTN_TRIGGER_HAPPY3
, BTN_TRIGGER_HAPPY4
, /* d-pad up, down */
237 -1 /* terminating entry */
240 /* used when triggers are mapped to buttons */
241 static const signed short xpad_btn_triggers
[] = {
242 BTN_TL2
, BTN_TR2
, /* triggers left/right */
247 static const signed short xpad360_btn
[] = { /* buttons for x360 controller */
248 BTN_TL
, BTN_TR
, /* Button LB/RB */
249 BTN_MODE
, /* The big X button */
253 static const signed short xpad_abs
[] = {
254 ABS_X
, ABS_Y
, /* left stick */
255 ABS_RX
, ABS_RY
, /* right stick */
256 -1 /* terminating entry */
259 /* used when dpad is mapped to axes */
260 static const signed short xpad_abs_pad
[] = {
261 ABS_HAT0X
, ABS_HAT0Y
, /* d-pad axes */
262 -1 /* terminating entry */
265 /* used when triggers are mapped to axes */
266 static const signed short xpad_abs_triggers
[] = {
267 ABS_Z
, ABS_RZ
, /* triggers left/right */
272 * Xbox 360 has a vendor-specific class, so we cannot match it with only
273 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
274 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
275 * wireless controllers have protocol 129.
277 #define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
278 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
279 .idVendor = (vend), \
280 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
281 .bInterfaceSubClass = 93, \
282 .bInterfaceProtocol = (pr)
283 #define XPAD_XBOX360_VENDOR(vend) \
284 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
285 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
287 /* The Xbox One controller uses subclass 71 and protocol 208. */
288 #define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
289 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
290 .idVendor = (vend), \
291 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
292 .bInterfaceSubClass = 71, \
293 .bInterfaceProtocol = (pr)
294 #define XPAD_XBOXONE_VENDOR(vend) \
295 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
297 static struct usb_device_id xpad_table
[] = {
298 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
299 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
300 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
301 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
302 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
303 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
304 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
305 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
306 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
307 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
308 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
309 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
310 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
311 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
312 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
313 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
314 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
315 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
319 MODULE_DEVICE_TABLE(usb
, xpad_table
);
322 struct input_dev
*dev
; /* input device interface */
323 struct usb_device
*udev
; /* usb device */
324 struct usb_interface
*intf
; /* usb interface */
328 struct urb
*irq_in
; /* urb for interrupt in report */
329 unsigned char *idata
; /* input data */
330 dma_addr_t idata_dma
;
332 struct urb
*bulk_out
;
333 unsigned char *bdata
;
335 struct urb
*irq_out
; /* urb for interrupt out report */
336 unsigned char *odata
; /* output data */
337 dma_addr_t odata_dma
;
338 struct mutex odata_mutex
;
340 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
341 struct xpad_led
*led
;
344 char phys
[64]; /* physical device path */
346 int mapping
; /* map d-pad to buttons or to axes */
347 int xtype
; /* type of xbox device */
351 * xpad_process_packet
353 * Completes a request by converting the data into events for the
356 * The used report descriptor was taken from ITO Takayukis website:
357 * http://euc.jp/periphs/xbox-controller.ja.html
360 static void xpad_process_packet(struct usb_xpad
*xpad
, u16 cmd
, unsigned char *data
)
362 struct input_dev
*dev
= xpad
->dev
;
364 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
366 input_report_abs(dev
, ABS_X
,
367 (__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
368 input_report_abs(dev
, ABS_Y
,
369 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 14)));
372 input_report_abs(dev
, ABS_RX
,
373 (__s16
) le16_to_cpup((__le16
*)(data
+ 16)));
374 input_report_abs(dev
, ABS_RY
,
375 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 18)));
378 /* triggers left/right */
379 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
380 input_report_key(dev
, BTN_TL2
, data
[10]);
381 input_report_key(dev
, BTN_TR2
, data
[11]);
383 input_report_abs(dev
, ABS_Z
, data
[10]);
384 input_report_abs(dev
, ABS_RZ
, data
[11]);
388 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
389 /* dpad as buttons (left, right, up, down) */
390 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[2] & 0x04);
391 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[2] & 0x08);
392 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[2] & 0x01);
393 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[2] & 0x02);
395 input_report_abs(dev
, ABS_HAT0X
,
396 !!(data
[2] & 0x08) - !!(data
[2] & 0x04));
397 input_report_abs(dev
, ABS_HAT0Y
,
398 !!(data
[2] & 0x02) - !!(data
[2] & 0x01));
401 /* start/back buttons and stick press left/right */
402 input_report_key(dev
, BTN_START
, data
[2] & 0x10);
403 input_report_key(dev
, BTN_SELECT
, data
[2] & 0x20);
404 input_report_key(dev
, BTN_THUMBL
, data
[2] & 0x40);
405 input_report_key(dev
, BTN_THUMBR
, data
[2] & 0x80);
407 /* "analog" buttons A, B, X, Y */
408 input_report_key(dev
, BTN_A
, data
[4]);
409 input_report_key(dev
, BTN_B
, data
[5]);
410 input_report_key(dev
, BTN_X
, data
[6]);
411 input_report_key(dev
, BTN_Y
, data
[7]);
413 /* "analog" buttons black, white */
414 input_report_key(dev
, BTN_C
, data
[8]);
415 input_report_key(dev
, BTN_Z
, data
[9]);
421 * xpad360_process_packet
423 * Completes a request by converting the data into events for the
424 * input subsystem. It is version for xbox 360 controller
426 * The used report descriptor was taken from:
427 * http://www.free60.org/wiki/Gamepad
430 static void xpad360_process_packet(struct usb_xpad
*xpad
,
431 u16 cmd
, unsigned char *data
)
433 struct input_dev
*dev
= xpad
->dev
;
436 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
437 /* dpad as buttons (left, right, up, down) */
438 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[2] & 0x04);
439 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[2] & 0x08);
440 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[2] & 0x01);
441 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[2] & 0x02);
443 input_report_abs(dev
, ABS_HAT0X
,
444 !!(data
[2] & 0x08) - !!(data
[2] & 0x04));
445 input_report_abs(dev
, ABS_HAT0Y
,
446 !!(data
[2] & 0x02) - !!(data
[2] & 0x01));
449 /* start/back buttons */
450 input_report_key(dev
, BTN_START
, data
[2] & 0x10);
451 input_report_key(dev
, BTN_SELECT
, data
[2] & 0x20);
453 /* stick press left/right */
454 input_report_key(dev
, BTN_THUMBL
, data
[2] & 0x40);
455 input_report_key(dev
, BTN_THUMBR
, data
[2] & 0x80);
457 /* buttons A,B,X,Y,TL,TR and MODE */
458 input_report_key(dev
, BTN_A
, data
[3] & 0x10);
459 input_report_key(dev
, BTN_B
, data
[3] & 0x20);
460 input_report_key(dev
, BTN_X
, data
[3] & 0x40);
461 input_report_key(dev
, BTN_Y
, data
[3] & 0x80);
462 input_report_key(dev
, BTN_TL
, data
[3] & 0x01);
463 input_report_key(dev
, BTN_TR
, data
[3] & 0x02);
464 input_report_key(dev
, BTN_MODE
, data
[3] & 0x04);
466 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
468 input_report_abs(dev
, ABS_X
,
469 (__s16
) le16_to_cpup((__le16
*)(data
+ 6)));
470 input_report_abs(dev
, ABS_Y
,
471 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 8)));
474 input_report_abs(dev
, ABS_RX
,
475 (__s16
) le16_to_cpup((__le16
*)(data
+ 10)));
476 input_report_abs(dev
, ABS_RY
,
477 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
480 /* triggers left/right */
481 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
482 input_report_key(dev
, BTN_TL2
, data
[4]);
483 input_report_key(dev
, BTN_TR2
, data
[5]);
485 input_report_abs(dev
, ABS_Z
, data
[4]);
486 input_report_abs(dev
, ABS_RZ
, data
[5]);
493 * xpad360w_process_packet
495 * Completes a request by converting the data into events for the
496 * input subsystem. It is version for xbox 360 wireless controller.
499 * 00.1 - Status change: The controller or headset has connected/disconnected
500 * Bits 01.7 and 01.6 are valid
501 * 01.7 - Controller present
502 * 01.6 - Headset present
503 * 01.1 - Pad state (Bytes 4+) valid
507 static void xpad360w_process_packet(struct usb_xpad
*xpad
, u16 cmd
, unsigned char *data
)
509 /* Presence change */
510 if (data
[0] & 0x08) {
511 if (data
[1] & 0x80) {
512 xpad
->pad_present
= 1;
513 usb_submit_urb(xpad
->bulk_out
, GFP_ATOMIC
);
515 xpad
->pad_present
= 0;
519 if (!(data
[1] & 0x1))
522 xpad360_process_packet(xpad
, cmd
, &data
[4]);
526 * xpadone_process_buttons
528 * Process a button update packet from an Xbox one controller.
530 static void xpadone_process_buttons(struct usb_xpad
*xpad
,
531 struct input_dev
*dev
,
534 /* menu/view buttons */
535 input_report_key(dev
, BTN_START
, data
[4] & 0x04);
536 input_report_key(dev
, BTN_SELECT
, data
[4] & 0x08);
538 /* buttons A,B,X,Y */
539 input_report_key(dev
, BTN_A
, data
[4] & 0x10);
540 input_report_key(dev
, BTN_B
, data
[4] & 0x20);
541 input_report_key(dev
, BTN_X
, data
[4] & 0x40);
542 input_report_key(dev
, BTN_Y
, data
[4] & 0x80);
545 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
546 /* dpad as buttons (left, right, up, down) */
547 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[5] & 0x04);
548 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[5] & 0x08);
549 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[5] & 0x01);
550 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[5] & 0x02);
552 input_report_abs(dev
, ABS_HAT0X
,
553 !!(data
[5] & 0x08) - !!(data
[5] & 0x04));
554 input_report_abs(dev
, ABS_HAT0Y
,
555 !!(data
[5] & 0x02) - !!(data
[5] & 0x01));
559 input_report_key(dev
, BTN_TL
, data
[5] & 0x10);
560 input_report_key(dev
, BTN_TR
, data
[5] & 0x20);
562 /* stick press left/right */
563 input_report_key(dev
, BTN_THUMBL
, data
[5] & 0x40);
564 input_report_key(dev
, BTN_THUMBR
, data
[5] & 0x80);
566 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
568 input_report_abs(dev
, ABS_X
,
569 (__s16
) le16_to_cpup((__le16
*)(data
+ 10)));
570 input_report_abs(dev
, ABS_Y
,
571 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
574 input_report_abs(dev
, ABS_RX
,
575 (__s16
) le16_to_cpup((__le16
*)(data
+ 14)));
576 input_report_abs(dev
, ABS_RY
,
577 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 16)));
580 /* triggers left/right */
581 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
582 input_report_key(dev
, BTN_TL2
,
583 (__u16
) le16_to_cpup((__le16
*)(data
+ 6)));
584 input_report_key(dev
, BTN_TR2
,
585 (__u16
) le16_to_cpup((__le16
*)(data
+ 8)));
587 input_report_abs(dev
, ABS_Z
,
588 (__u16
) le16_to_cpup((__le16
*)(data
+ 6)));
589 input_report_abs(dev
, ABS_RZ
,
590 (__u16
) le16_to_cpup((__le16
*)(data
+ 8)));
597 * xpadone_process_packet
599 * Completes a request by converting the data into events for the
600 * input subsystem. This version is for the Xbox One controller.
602 * The report format was gleaned from
603 * https://github.com/kylelemons/xbox/blob/master/xbox.go
606 static void xpadone_process_packet(struct usb_xpad
*xpad
,
607 u16 cmd
, unsigned char *data
)
609 struct input_dev
*dev
= xpad
->dev
;
613 xpadone_process_buttons(xpad
, dev
, data
);
617 /* the xbox button has its own special report */
618 input_report_key(dev
, BTN_MODE
, data
[4] & 0x01);
624 static void xpad_irq_in(struct urb
*urb
)
626 struct usb_xpad
*xpad
= urb
->context
;
627 struct device
*dev
= &xpad
->intf
->dev
;
630 status
= urb
->status
;
639 /* this urb is terminated, clean up */
640 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
644 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
649 switch (xpad
->xtype
) {
651 xpad360_process_packet(xpad
, 0, xpad
->idata
);
654 xpad360w_process_packet(xpad
, 0, xpad
->idata
);
657 xpadone_process_packet(xpad
, 0, xpad
->idata
);
660 xpad_process_packet(xpad
, 0, xpad
->idata
);
664 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
666 dev_err(dev
, "%s - usb_submit_urb failed with result %d\n",
670 static void xpad_bulk_out(struct urb
*urb
)
672 struct usb_xpad
*xpad
= urb
->context
;
673 struct device
*dev
= &xpad
->intf
->dev
;
675 switch (urb
->status
) {
682 /* this urb is terminated, clean up */
683 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
684 __func__
, urb
->status
);
687 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
688 __func__
, urb
->status
);
692 static void xpad_irq_out(struct urb
*urb
)
694 struct usb_xpad
*xpad
= urb
->context
;
695 struct device
*dev
= &xpad
->intf
->dev
;
698 status
= urb
->status
;
708 /* this urb is terminated, clean up */
709 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
714 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
720 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
722 dev_err(dev
, "%s - usb_submit_urb failed with result %d\n",
726 static int xpad_init_output(struct usb_interface
*intf
, struct usb_xpad
*xpad
)
728 struct usb_endpoint_descriptor
*ep_irq_out
;
732 if (xpad
->xtype
== XTYPE_UNKNOWN
)
735 xpad
->odata
= usb_alloc_coherent(xpad
->udev
, XPAD_PKT_LEN
,
736 GFP_KERNEL
, &xpad
->odata_dma
);
742 mutex_init(&xpad
->odata_mutex
);
744 xpad
->irq_out
= usb_alloc_urb(0, GFP_KERNEL
);
745 if (!xpad
->irq_out
) {
750 /* Xbox One controller has in/out endpoints swapped. */
751 ep_irq_out_idx
= xpad
->xtype
== XTYPE_XBOXONE
? 0 : 1;
752 ep_irq_out
= &intf
->cur_altsetting
->endpoint
[ep_irq_out_idx
].desc
;
754 usb_fill_int_urb(xpad
->irq_out
, xpad
->udev
,
755 usb_sndintpipe(xpad
->udev
, ep_irq_out
->bEndpointAddress
),
756 xpad
->odata
, XPAD_PKT_LEN
,
757 xpad_irq_out
, xpad
, ep_irq_out
->bInterval
);
758 xpad
->irq_out
->transfer_dma
= xpad
->odata_dma
;
759 xpad
->irq_out
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
763 fail2
: usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
, xpad
->odata
, xpad
->odata_dma
);
767 static void xpad_stop_output(struct usb_xpad
*xpad
)
769 if (xpad
->xtype
!= XTYPE_UNKNOWN
)
770 usb_kill_urb(xpad
->irq_out
);
773 static void xpad_deinit_output(struct usb_xpad
*xpad
)
775 if (xpad
->xtype
!= XTYPE_UNKNOWN
) {
776 usb_free_urb(xpad
->irq_out
);
777 usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
,
778 xpad
->odata
, xpad
->odata_dma
);
782 #ifdef CONFIG_JOYSTICK_XPAD_FF
783 static int xpad_play_effect(struct input_dev
*dev
, void *data
, struct ff_effect
*effect
)
785 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
787 if (effect
->type
== FF_RUMBLE
) {
788 __u16 strong
= effect
->u
.rumble
.strong_magnitude
;
789 __u16 weak
= effect
->u
.rumble
.weak_magnitude
;
791 switch (xpad
->xtype
) {
794 xpad
->odata
[0] = 0x00;
795 xpad
->odata
[1] = 0x06;
796 xpad
->odata
[2] = 0x00;
797 xpad
->odata
[3] = strong
/ 256; /* left actuator */
798 xpad
->odata
[4] = 0x00;
799 xpad
->odata
[5] = weak
/ 256; /* right actuator */
800 xpad
->irq_out
->transfer_buffer_length
= 6;
802 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
805 xpad
->odata
[0] = 0x00;
806 xpad
->odata
[1] = 0x08;
807 xpad
->odata
[2] = 0x00;
808 xpad
->odata
[3] = strong
/ 256; /* left actuator? */
809 xpad
->odata
[4] = weak
/ 256; /* right actuator? */
810 xpad
->odata
[5] = 0x00;
811 xpad
->odata
[6] = 0x00;
812 xpad
->odata
[7] = 0x00;
813 xpad
->irq_out
->transfer_buffer_length
= 8;
815 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
818 xpad
->odata
[0] = 0x00;
819 xpad
->odata
[1] = 0x01;
820 xpad
->odata
[2] = 0x0F;
821 xpad
->odata
[3] = 0xC0;
822 xpad
->odata
[4] = 0x00;
823 xpad
->odata
[5] = strong
/ 256;
824 xpad
->odata
[6] = weak
/ 256;
825 xpad
->odata
[7] = 0x00;
826 xpad
->odata
[8] = 0x00;
827 xpad
->odata
[9] = 0x00;
828 xpad
->odata
[10] = 0x00;
829 xpad
->odata
[11] = 0x00;
830 xpad
->irq_out
->transfer_buffer_length
= 12;
832 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
835 xpad
->odata
[0] = 0x09; /* activate rumble */
836 xpad
->odata
[1] = 0x08;
837 xpad
->odata
[2] = 0x00;
838 xpad
->odata
[3] = 0x08; /* continuous effect */
839 xpad
->odata
[4] = 0x00; /* simple rumble mode */
840 xpad
->odata
[5] = 0x03; /* L and R actuator only */
841 xpad
->odata
[6] = 0x00; /* TODO: LT actuator */
842 xpad
->odata
[7] = 0x00; /* TODO: RT actuator */
843 xpad
->odata
[8] = strong
/ 256; /* left actuator */
844 xpad
->odata
[9] = weak
/ 256; /* right actuator */
845 xpad
->odata
[10] = 0x80; /* length of pulse */
846 xpad
->odata
[11] = 0x00; /* stop period of pulse */
847 xpad
->irq_out
->transfer_buffer_length
= 12;
849 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
852 dev_dbg(&xpad
->dev
->dev
,
853 "%s - rumble command sent to unsupported xpad type: %d\n",
854 __func__
, xpad
->xtype
);
862 static int xpad_init_ff(struct usb_xpad
*xpad
)
864 if (xpad
->xtype
== XTYPE_UNKNOWN
)
867 input_set_capability(xpad
->dev
, EV_FF
, FF_RUMBLE
);
869 return input_ff_create_memless(xpad
->dev
, NULL
, xpad_play_effect
);
873 static int xpad_init_ff(struct usb_xpad
*xpad
) { return 0; }
876 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
877 #include <linux/leds.h>
881 struct led_classdev led_cdev
;
882 struct usb_xpad
*xpad
;
885 static void xpad_send_led_command(struct usb_xpad
*xpad
, int command
)
887 if (command
>= 0 && command
< 14) {
888 mutex_lock(&xpad
->odata_mutex
);
889 xpad
->odata
[0] = 0x01;
890 xpad
->odata
[1] = 0x03;
891 xpad
->odata
[2] = command
;
892 xpad
->irq_out
->transfer_buffer_length
= 3;
893 usb_submit_urb(xpad
->irq_out
, GFP_KERNEL
);
894 mutex_unlock(&xpad
->odata_mutex
);
898 static void xpad_led_set(struct led_classdev
*led_cdev
,
899 enum led_brightness value
)
901 struct xpad_led
*xpad_led
= container_of(led_cdev
,
902 struct xpad_led
, led_cdev
);
904 xpad_send_led_command(xpad_led
->xpad
, value
);
907 static int xpad_led_probe(struct usb_xpad
*xpad
)
909 static atomic_t led_seq
= ATOMIC_INIT(0);
911 struct xpad_led
*led
;
912 struct led_classdev
*led_cdev
;
915 if (xpad
->xtype
!= XTYPE_XBOX360
)
918 xpad
->led
= led
= kzalloc(sizeof(struct xpad_led
), GFP_KERNEL
);
922 led_no
= (long)atomic_inc_return(&led_seq
) - 1;
924 snprintf(led
->name
, sizeof(led
->name
), "xpad%ld", led_no
);
927 led_cdev
= &led
->led_cdev
;
928 led_cdev
->name
= led
->name
;
929 led_cdev
->brightness_set
= xpad_led_set
;
931 error
= led_classdev_register(&xpad
->udev
->dev
, led_cdev
);
939 * Light up the segment corresponding to controller number
941 xpad_send_led_command(xpad
, (led_no
% 4) + 2);
946 static void xpad_led_disconnect(struct usb_xpad
*xpad
)
948 struct xpad_led
*xpad_led
= xpad
->led
;
951 led_classdev_unregister(&xpad_led
->led_cdev
);
956 static int xpad_led_probe(struct usb_xpad
*xpad
) { return 0; }
957 static void xpad_led_disconnect(struct usb_xpad
*xpad
) { }
961 static int xpad_open(struct input_dev
*dev
)
963 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
965 /* URB was submitted in probe */
966 if (xpad
->xtype
== XTYPE_XBOX360W
)
969 xpad
->irq_in
->dev
= xpad
->udev
;
970 if (usb_submit_urb(xpad
->irq_in
, GFP_KERNEL
))
973 if (xpad
->xtype
== XTYPE_XBOXONE
) {
974 /* Xbox one controller needs to be initialized. */
975 xpad
->odata
[0] = 0x05;
976 xpad
->odata
[1] = 0x20;
977 xpad
->irq_out
->transfer_buffer_length
= 2;
978 return usb_submit_urb(xpad
->irq_out
, GFP_KERNEL
);
984 static void xpad_close(struct input_dev
*dev
)
986 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
988 if (xpad
->xtype
!= XTYPE_XBOX360W
)
989 usb_kill_urb(xpad
->irq_in
);
991 xpad_stop_output(xpad
);
994 static void xpad_set_up_abs(struct input_dev
*input_dev
, signed short abs
)
996 struct usb_xpad
*xpad
= input_get_drvdata(input_dev
);
997 set_bit(abs
, input_dev
->absbit
);
1003 case ABS_RY
: /* the two sticks */
1004 input_set_abs_params(input_dev
, abs
, -32768, 32767, 16, 128);
1007 case ABS_RZ
: /* the triggers (if mapped to axes) */
1008 if (xpad
->xtype
== XTYPE_XBOXONE
)
1009 input_set_abs_params(input_dev
, abs
, 0, 1023, 0, 0);
1011 input_set_abs_params(input_dev
, abs
, 0, 255, 0, 0);
1014 case ABS_HAT0Y
: /* the d-pad (only if dpad is mapped to axes */
1015 input_set_abs_params(input_dev
, abs
, -1, 1, 0, 0);
1020 static int xpad_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
1022 struct usb_device
*udev
= interface_to_usbdev(intf
);
1023 struct usb_xpad
*xpad
;
1024 struct input_dev
*input_dev
;
1025 struct usb_endpoint_descriptor
*ep_irq_in
;
1029 if (intf
->cur_altsetting
->desc
.bNumEndpoints
!= 2)
1032 for (i
= 0; xpad_device
[i
].idVendor
; i
++) {
1033 if ((le16_to_cpu(udev
->descriptor
.idVendor
) == xpad_device
[i
].idVendor
) &&
1034 (le16_to_cpu(udev
->descriptor
.idProduct
) == xpad_device
[i
].idProduct
))
1038 if (xpad_device
[i
].xtype
== XTYPE_XBOXONE
&&
1039 intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0) {
1041 * The Xbox One controller lists three interfaces all with the
1042 * same interface class, subclass and protocol. Differentiate by
1048 xpad
= kzalloc(sizeof(struct usb_xpad
), GFP_KERNEL
);
1049 input_dev
= input_allocate_device();
1050 if (!xpad
|| !input_dev
) {
1055 xpad
->idata
= usb_alloc_coherent(udev
, XPAD_PKT_LEN
,
1056 GFP_KERNEL
, &xpad
->idata_dma
);
1062 xpad
->irq_in
= usb_alloc_urb(0, GFP_KERNEL
);
1063 if (!xpad
->irq_in
) {
1070 xpad
->mapping
= xpad_device
[i
].mapping
;
1071 xpad
->xtype
= xpad_device
[i
].xtype
;
1073 if (xpad
->xtype
== XTYPE_UNKNOWN
) {
1074 if (intf
->cur_altsetting
->desc
.bInterfaceClass
== USB_CLASS_VENDOR_SPEC
) {
1075 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
== 129)
1076 xpad
->xtype
= XTYPE_XBOX360W
;
1078 xpad
->xtype
= XTYPE_XBOX360
;
1080 xpad
->xtype
= XTYPE_XBOX
;
1082 if (dpad_to_buttons
)
1083 xpad
->mapping
|= MAP_DPAD_TO_BUTTONS
;
1084 if (triggers_to_buttons
)
1085 xpad
->mapping
|= MAP_TRIGGERS_TO_BUTTONS
;
1087 xpad
->mapping
|= MAP_STICKS_TO_NULL
;
1090 xpad
->dev
= input_dev
;
1091 usb_make_path(udev
, xpad
->phys
, sizeof(xpad
->phys
));
1092 strlcat(xpad
->phys
, "/input0", sizeof(xpad
->phys
));
1094 input_dev
->name
= xpad_device
[i
].name
;
1095 input_dev
->phys
= xpad
->phys
;
1096 usb_to_input_id(udev
, &input_dev
->id
);
1097 input_dev
->dev
.parent
= &intf
->dev
;
1099 input_set_drvdata(input_dev
, xpad
);
1101 input_dev
->open
= xpad_open
;
1102 input_dev
->close
= xpad_close
;
1104 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
1106 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
1107 input_dev
->evbit
[0] |= BIT_MASK(EV_ABS
);
1109 for (i
= 0; xpad_abs
[i
] >= 0; i
++)
1110 xpad_set_up_abs(input_dev
, xpad_abs
[i
]);
1113 /* set up standard buttons */
1114 for (i
= 0; xpad_common_btn
[i
] >= 0; i
++)
1115 __set_bit(xpad_common_btn
[i
], input_dev
->keybit
);
1117 /* set up model-specific ones */
1118 if (xpad
->xtype
== XTYPE_XBOX360
|| xpad
->xtype
== XTYPE_XBOX360W
||
1119 xpad
->xtype
== XTYPE_XBOXONE
) {
1120 for (i
= 0; xpad360_btn
[i
] >= 0; i
++)
1121 __set_bit(xpad360_btn
[i
], input_dev
->keybit
);
1123 for (i
= 0; xpad_btn
[i
] >= 0; i
++)
1124 __set_bit(xpad_btn
[i
], input_dev
->keybit
);
1127 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
1128 for (i
= 0; xpad_btn_pad
[i
] >= 0; i
++)
1129 __set_bit(xpad_btn_pad
[i
], input_dev
->keybit
);
1131 for (i
= 0; xpad_abs_pad
[i
] >= 0; i
++)
1132 xpad_set_up_abs(input_dev
, xpad_abs_pad
[i
]);
1135 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
1136 for (i
= 0; xpad_btn_triggers
[i
] >= 0; i
++)
1137 __set_bit(xpad_btn_triggers
[i
], input_dev
->keybit
);
1139 for (i
= 0; xpad_abs_triggers
[i
] >= 0; i
++)
1140 xpad_set_up_abs(input_dev
, xpad_abs_triggers
[i
]);
1143 error
= xpad_init_output(intf
, xpad
);
1147 error
= xpad_init_ff(xpad
);
1151 error
= xpad_led_probe(xpad
);
1155 /* Xbox One controller has in/out endpoints swapped. */
1156 ep_irq_in_idx
= xpad
->xtype
== XTYPE_XBOXONE
? 1 : 0;
1157 ep_irq_in
= &intf
->cur_altsetting
->endpoint
[ep_irq_in_idx
].desc
;
1159 usb_fill_int_urb(xpad
->irq_in
, udev
,
1160 usb_rcvintpipe(udev
, ep_irq_in
->bEndpointAddress
),
1161 xpad
->idata
, XPAD_PKT_LEN
, xpad_irq_in
,
1162 xpad
, ep_irq_in
->bInterval
);
1163 xpad
->irq_in
->transfer_dma
= xpad
->idata_dma
;
1164 xpad
->irq_in
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1166 error
= input_register_device(xpad
->dev
);
1170 usb_set_intfdata(intf
, xpad
);
1172 if (xpad
->xtype
== XTYPE_XBOX360W
) {
1174 * Setup the message to set the LEDs on the
1175 * controller when it shows up
1177 xpad
->bulk_out
= usb_alloc_urb(0, GFP_KERNEL
);
1178 if (!xpad
->bulk_out
) {
1183 xpad
->bdata
= kzalloc(XPAD_PKT_LEN
, GFP_KERNEL
);
1189 xpad
->bdata
[2] = 0x08;
1190 switch (intf
->cur_altsetting
->desc
.bInterfaceNumber
) {
1192 xpad
->bdata
[3] = 0x42;
1195 xpad
->bdata
[3] = 0x43;
1198 xpad
->bdata
[3] = 0x44;
1201 xpad
->bdata
[3] = 0x45;
1204 ep_irq_in
= &intf
->cur_altsetting
->endpoint
[1].desc
;
1205 if (usb_endpoint_is_bulk_out(ep_irq_in
)) {
1206 usb_fill_bulk_urb(xpad
->bulk_out
, udev
,
1207 usb_sndbulkpipe(udev
,
1208 ep_irq_in
->bEndpointAddress
),
1209 xpad
->bdata
, XPAD_PKT_LEN
,
1210 xpad_bulk_out
, xpad
);
1212 usb_fill_int_urb(xpad
->bulk_out
, udev
,
1213 usb_sndintpipe(udev
,
1214 ep_irq_in
->bEndpointAddress
),
1215 xpad
->bdata
, XPAD_PKT_LEN
,
1216 xpad_bulk_out
, xpad
, 0);
1220 * Submit the int URB immediately rather than waiting for open
1221 * because we get status messages from the device whether
1222 * or not any controllers are attached. In fact, it's
1223 * exactly the message that a controller has arrived that
1224 * we're waiting for.
1226 xpad
->irq_in
->dev
= xpad
->udev
;
1227 error
= usb_submit_urb(xpad
->irq_in
, GFP_KERNEL
);
1234 fail9
: kfree(xpad
->bdata
);
1235 fail8
: usb_free_urb(xpad
->bulk_out
);
1236 fail7
: input_unregister_device(input_dev
);
1238 fail6
: xpad_led_disconnect(xpad
);
1239 fail5
: if (input_dev
)
1240 input_ff_destroy(input_dev
);
1241 fail4
: xpad_deinit_output(xpad
);
1242 fail3
: usb_free_urb(xpad
->irq_in
);
1243 fail2
: usb_free_coherent(udev
, XPAD_PKT_LEN
, xpad
->idata
, xpad
->idata_dma
);
1244 fail1
: input_free_device(input_dev
);
1250 static void xpad_disconnect(struct usb_interface
*intf
)
1252 struct usb_xpad
*xpad
= usb_get_intfdata (intf
);
1254 xpad_led_disconnect(xpad
);
1255 input_unregister_device(xpad
->dev
);
1256 xpad_deinit_output(xpad
);
1258 if (xpad
->xtype
== XTYPE_XBOX360W
) {
1259 usb_kill_urb(xpad
->bulk_out
);
1260 usb_free_urb(xpad
->bulk_out
);
1261 usb_kill_urb(xpad
->irq_in
);
1264 usb_free_urb(xpad
->irq_in
);
1265 usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
,
1266 xpad
->idata
, xpad
->idata_dma
);
1271 usb_set_intfdata(intf
, NULL
);
1274 static struct usb_driver xpad_driver
= {
1276 .probe
= xpad_probe
,
1277 .disconnect
= xpad_disconnect
,
1278 .id_table
= xpad_table
,
1281 module_usb_driver(xpad_driver
);
1283 MODULE_AUTHOR(DRIVER_AUTHOR
);
1284 MODULE_DESCRIPTION(DRIVER_DESC
);
1285 MODULE_LICENSE("GPL");