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
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
39 * - XBOX Linux project - extra USB id's
42 * - fine tune axes (especially trigger axes)
43 * - fix "analog" buttons (reported as digital now)
44 * - get rumble working
45 * - need USB IDs for other dance pads
49 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
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
55 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
57 * - usb + input init sequence fixes
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
64 * 2002-07-17 - 0.0.5 : simplified d-pad handling
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
73 * Later changes can be tracked in SCM.
76 #include <linux/kernel.h>
77 #include <linux/slab.h>
78 #include <linux/stat.h>
79 #include <linux/module.h>
80 #include <linux/usb/input.h>
82 #define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
83 #define DRIVER_DESC "X-Box pad driver"
85 #define XPAD_PKT_LEN 32
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 */
89 #define MAP_DPAD_TO_BUTTONS (1 << 0)
90 #define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
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)
96 #define XTYPE_XBOX360 1
97 #define XTYPE_XBOX360W 2
98 #define XTYPE_XBOXONE 3
99 #define XTYPE_UNKNOWN 4
101 static bool dpad_to_buttons
;
102 module_param(dpad_to_buttons
, bool, S_IRUGO
);
103 MODULE_PARM_DESC(dpad_to_buttons
, "Map D-PAD to buttons rather than axes for unknown pads");
105 static bool triggers_to_buttons
;
106 module_param(triggers_to_buttons
, bool, S_IRUGO
);
107 MODULE_PARM_DESC(triggers_to_buttons
, "Map triggers to buttons rather than axes for unknown pads");
109 static bool sticks_to_null
;
110 module_param(sticks_to_null
, bool, S_IRUGO
);
111 MODULE_PARM_DESC(sticks_to_null
, "Do not map sticks at all for unknown pads");
113 static const struct xpad_device
{
120 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX
},
121 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX
},
122 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX
},
123 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX
},
124 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360
},
125 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE
},
126 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360W
},
127 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360W
},
128 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX
},
129 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360
},
130 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360
},
131 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360
},
132 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360
},
133 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360
},
134 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX
},
135 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX
},
136 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX
},
137 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX
},
138 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX
},
139 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX
},
140 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX
},
141 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX
},
142 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
143 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX
},
144 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360
},
145 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360
},
146 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360
},
147 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
148 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
149 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360
},
150 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
151 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360
},
152 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360
},
153 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360
},
154 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360
},
155 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360
},
156 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX
},
157 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG
, XTYPE_XBOX
},
158 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX
},
159 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX
},
160 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX
},
161 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
162 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX
},
163 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX
},
164 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX
},
165 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX
},
166 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX
},
167 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
168 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
169 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360
},
170 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
171 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360
},
172 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360
},
173 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360
},
174 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX
},
175 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX
},
176 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360
},
177 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
178 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS
, XTYPE_XBOX360
},
179 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX
},
180 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX
},
181 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX
},
182 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
183 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360
},
184 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
185 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360
},
186 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX
},
187 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360
},
188 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360
},
189 { 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE
},
190 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360
},
191 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360
},
192 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360
},
193 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360
},
194 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360
},
195 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360
},
196 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360
},
197 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360
},
198 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS
, XTYPE_XBOX360
},
199 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360
},
200 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360
},
201 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360
},
202 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360
},
203 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360
},
204 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360
},
205 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360
},
206 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", 0, XTYPE_XBOX360
},
207 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360
},
208 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360
},
209 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360
},
210 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360
},
211 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360
},
212 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360
},
213 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360
},
214 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX
},
215 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN
}
218 /* buttons shared with xbox and xbox360 */
219 static const signed short xpad_common_btn
[] = {
220 BTN_A
, BTN_B
, BTN_X
, BTN_Y
, /* "analog" buttons */
221 BTN_START
, BTN_SELECT
, BTN_THUMBL
, BTN_THUMBR
, /* start/back/sticks */
222 -1 /* terminating entry */
225 /* original xbox controllers only */
226 static const signed short xpad_btn
[] = {
227 BTN_C
, BTN_Z
, /* "analog" buttons */
228 -1 /* terminating entry */
231 /* used when dpad is mapped to buttons */
232 static const signed short xpad_btn_pad
[] = {
233 BTN_TRIGGER_HAPPY1
, BTN_TRIGGER_HAPPY2
, /* d-pad left, right */
234 BTN_TRIGGER_HAPPY3
, BTN_TRIGGER_HAPPY4
, /* d-pad up, down */
235 -1 /* terminating entry */
238 /* used when triggers are mapped to buttons */
239 static const signed short xpad_btn_triggers
[] = {
240 BTN_TL2
, BTN_TR2
, /* triggers left/right */
245 static const signed short xpad360_btn
[] = { /* buttons for x360 controller */
246 BTN_TL
, BTN_TR
, /* Button LB/RB */
247 BTN_MODE
, /* The big X button */
251 static const signed short xpad_abs
[] = {
252 ABS_X
, ABS_Y
, /* left stick */
253 ABS_RX
, ABS_RY
, /* right stick */
254 -1 /* terminating entry */
257 /* used when dpad is mapped to axes */
258 static const signed short xpad_abs_pad
[] = {
259 ABS_HAT0X
, ABS_HAT0Y
, /* d-pad axes */
260 -1 /* terminating entry */
263 /* used when triggers are mapped to axes */
264 static const signed short xpad_abs_triggers
[] = {
265 ABS_Z
, ABS_RZ
, /* triggers left/right */
270 * Xbox 360 has a vendor-specific class, so we cannot match it with only
271 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
272 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
273 * wireless controllers have protocol 129.
275 #define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
276 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
277 .idVendor = (vend), \
278 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
279 .bInterfaceSubClass = 93, \
280 .bInterfaceProtocol = (pr)
281 #define XPAD_XBOX360_VENDOR(vend) \
282 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
283 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
285 /* The Xbox One controller uses subclass 71 and protocol 208. */
286 #define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
287 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
288 .idVendor = (vend), \
289 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
290 .bInterfaceSubClass = 71, \
291 .bInterfaceProtocol = (pr)
292 #define XPAD_XBOXONE_VENDOR(vend) \
293 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
295 static struct usb_device_id xpad_table
[] = {
296 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
297 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
298 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
299 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
300 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
301 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
302 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
303 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
304 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
305 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
306 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
307 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
308 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
309 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
310 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
311 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
312 XPAD_XBOXONE_VENDOR(0x1532), /* Razer Wildcat */
313 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
314 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
318 MODULE_DEVICE_TABLE(usb
, xpad_table
);
321 struct input_dev
*dev
; /* input device interface */
322 struct usb_device
*udev
; /* usb device */
323 struct usb_interface
*intf
; /* usb interface */
327 struct urb
*irq_in
; /* urb for interrupt in report */
328 unsigned char *idata
; /* input data */
329 dma_addr_t idata_dma
;
331 struct urb
*bulk_out
;
332 unsigned char *bdata
;
334 struct urb
*irq_out
; /* urb for interrupt out report */
335 unsigned char *odata
; /* output data */
336 dma_addr_t odata_dma
;
337 struct mutex odata_mutex
;
339 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
340 struct xpad_led
*led
;
343 char phys
[64]; /* physical device path */
345 int mapping
; /* map d-pad to buttons or to axes */
346 int xtype
; /* type of xbox device */
350 * xpad_process_packet
352 * Completes a request by converting the data into events for the
355 * The used report descriptor was taken from ITO Takayukis website:
356 * http://euc.jp/periphs/xbox-controller.ja.html
359 static void xpad_process_packet(struct usb_xpad
*xpad
, u16 cmd
, unsigned char *data
)
361 struct input_dev
*dev
= xpad
->dev
;
363 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
365 input_report_abs(dev
, ABS_X
,
366 (__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
367 input_report_abs(dev
, ABS_Y
,
368 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 14)));
371 input_report_abs(dev
, ABS_RX
,
372 (__s16
) le16_to_cpup((__le16
*)(data
+ 16)));
373 input_report_abs(dev
, ABS_RY
,
374 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 18)));
377 /* triggers left/right */
378 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
379 input_report_key(dev
, BTN_TL2
, data
[10]);
380 input_report_key(dev
, BTN_TR2
, data
[11]);
382 input_report_abs(dev
, ABS_Z
, data
[10]);
383 input_report_abs(dev
, ABS_RZ
, data
[11]);
387 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
388 /* dpad as buttons (left, right, up, down) */
389 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[2] & 0x04);
390 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[2] & 0x08);
391 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[2] & 0x01);
392 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[2] & 0x02);
394 input_report_abs(dev
, ABS_HAT0X
,
395 !!(data
[2] & 0x08) - !!(data
[2] & 0x04));
396 input_report_abs(dev
, ABS_HAT0Y
,
397 !!(data
[2] & 0x02) - !!(data
[2] & 0x01));
400 /* start/back buttons and stick press left/right */
401 input_report_key(dev
, BTN_START
, data
[2] & 0x10);
402 input_report_key(dev
, BTN_SELECT
, data
[2] & 0x20);
403 input_report_key(dev
, BTN_THUMBL
, data
[2] & 0x40);
404 input_report_key(dev
, BTN_THUMBR
, data
[2] & 0x80);
406 /* "analog" buttons A, B, X, Y */
407 input_report_key(dev
, BTN_A
, data
[4]);
408 input_report_key(dev
, BTN_B
, data
[5]);
409 input_report_key(dev
, BTN_X
, data
[6]);
410 input_report_key(dev
, BTN_Y
, data
[7]);
412 /* "analog" buttons black, white */
413 input_report_key(dev
, BTN_C
, data
[8]);
414 input_report_key(dev
, BTN_Z
, data
[9]);
420 * xpad360_process_packet
422 * Completes a request by converting the data into events for the
423 * input subsystem. It is version for xbox 360 controller
425 * The used report descriptor was taken from:
426 * http://www.free60.org/wiki/Gamepad
429 static void xpad360_process_packet(struct usb_xpad
*xpad
,
430 u16 cmd
, unsigned char *data
)
432 struct input_dev
*dev
= xpad
->dev
;
435 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
436 /* dpad as buttons (left, right, up, down) */
437 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[2] & 0x04);
438 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[2] & 0x08);
439 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[2] & 0x01);
440 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[2] & 0x02);
442 input_report_abs(dev
, ABS_HAT0X
,
443 !!(data
[2] & 0x08) - !!(data
[2] & 0x04));
444 input_report_abs(dev
, ABS_HAT0Y
,
445 !!(data
[2] & 0x02) - !!(data
[2] & 0x01));
448 /* start/back buttons */
449 input_report_key(dev
, BTN_START
, data
[2] & 0x10);
450 input_report_key(dev
, BTN_SELECT
, data
[2] & 0x20);
452 /* stick press left/right */
453 input_report_key(dev
, BTN_THUMBL
, data
[2] & 0x40);
454 input_report_key(dev
, BTN_THUMBR
, data
[2] & 0x80);
456 /* buttons A,B,X,Y,TL,TR and MODE */
457 input_report_key(dev
, BTN_A
, data
[3] & 0x10);
458 input_report_key(dev
, BTN_B
, data
[3] & 0x20);
459 input_report_key(dev
, BTN_X
, data
[3] & 0x40);
460 input_report_key(dev
, BTN_Y
, data
[3] & 0x80);
461 input_report_key(dev
, BTN_TL
, data
[3] & 0x01);
462 input_report_key(dev
, BTN_TR
, data
[3] & 0x02);
463 input_report_key(dev
, BTN_MODE
, data
[3] & 0x04);
465 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
467 input_report_abs(dev
, ABS_X
,
468 (__s16
) le16_to_cpup((__le16
*)(data
+ 6)));
469 input_report_abs(dev
, ABS_Y
,
470 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 8)));
473 input_report_abs(dev
, ABS_RX
,
474 (__s16
) le16_to_cpup((__le16
*)(data
+ 10)));
475 input_report_abs(dev
, ABS_RY
,
476 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
479 /* triggers left/right */
480 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
481 input_report_key(dev
, BTN_TL2
, data
[4]);
482 input_report_key(dev
, BTN_TR2
, data
[5]);
484 input_report_abs(dev
, ABS_Z
, data
[4]);
485 input_report_abs(dev
, ABS_RZ
, data
[5]);
492 * xpad360w_process_packet
494 * Completes a request by converting the data into events for the
495 * input subsystem. It is version for xbox 360 wireless controller.
498 * 00.1 - Status change: The controller or headset has connected/disconnected
499 * Bits 01.7 and 01.6 are valid
500 * 01.7 - Controller present
501 * 01.6 - Headset present
502 * 01.1 - Pad state (Bytes 4+) valid
506 static void xpad360w_process_packet(struct usb_xpad
*xpad
, u16 cmd
, unsigned char *data
)
508 /* Presence change */
509 if (data
[0] & 0x08) {
510 if (data
[1] & 0x80) {
511 xpad
->pad_present
= 1;
512 usb_submit_urb(xpad
->bulk_out
, GFP_ATOMIC
);
514 xpad
->pad_present
= 0;
518 if (!(data
[1] & 0x1))
521 xpad360_process_packet(xpad
, cmd
, &data
[4]);
525 * xpadone_process_buttons
527 * Process a button update packet from an Xbox one controller.
529 static void xpadone_process_buttons(struct usb_xpad
*xpad
,
530 struct input_dev
*dev
,
533 /* menu/view buttons */
534 input_report_key(dev
, BTN_START
, data
[4] & 0x04);
535 input_report_key(dev
, BTN_SELECT
, data
[4] & 0x08);
537 /* buttons A,B,X,Y */
538 input_report_key(dev
, BTN_A
, data
[4] & 0x10);
539 input_report_key(dev
, BTN_B
, data
[4] & 0x20);
540 input_report_key(dev
, BTN_X
, data
[4] & 0x40);
541 input_report_key(dev
, BTN_Y
, data
[4] & 0x80);
544 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
545 /* dpad as buttons (left, right, up, down) */
546 input_report_key(dev
, BTN_TRIGGER_HAPPY1
, data
[5] & 0x04);
547 input_report_key(dev
, BTN_TRIGGER_HAPPY2
, data
[5] & 0x08);
548 input_report_key(dev
, BTN_TRIGGER_HAPPY3
, data
[5] & 0x01);
549 input_report_key(dev
, BTN_TRIGGER_HAPPY4
, data
[5] & 0x02);
551 input_report_abs(dev
, ABS_HAT0X
,
552 !!(data
[5] & 0x08) - !!(data
[5] & 0x04));
553 input_report_abs(dev
, ABS_HAT0Y
,
554 !!(data
[5] & 0x02) - !!(data
[5] & 0x01));
558 input_report_key(dev
, BTN_TL
, data
[5] & 0x10);
559 input_report_key(dev
, BTN_TR
, data
[5] & 0x20);
561 /* stick press left/right */
562 input_report_key(dev
, BTN_THUMBL
, data
[5] & 0x40);
563 input_report_key(dev
, BTN_THUMBR
, data
[5] & 0x80);
565 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
567 input_report_abs(dev
, ABS_X
,
568 (__s16
) le16_to_cpup((__le16
*)(data
+ 10)));
569 input_report_abs(dev
, ABS_Y
,
570 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 12)));
573 input_report_abs(dev
, ABS_RX
,
574 (__s16
) le16_to_cpup((__le16
*)(data
+ 14)));
575 input_report_abs(dev
, ABS_RY
,
576 ~(__s16
) le16_to_cpup((__le16
*)(data
+ 16)));
579 /* triggers left/right */
580 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
581 input_report_key(dev
, BTN_TL2
,
582 (__u16
) le16_to_cpup((__le16
*)(data
+ 6)));
583 input_report_key(dev
, BTN_TR2
,
584 (__u16
) le16_to_cpup((__le16
*)(data
+ 8)));
586 input_report_abs(dev
, ABS_Z
,
587 (__u16
) le16_to_cpup((__le16
*)(data
+ 6)));
588 input_report_abs(dev
, ABS_RZ
,
589 (__u16
) le16_to_cpup((__le16
*)(data
+ 8)));
596 * xpadone_process_packet
598 * Completes a request by converting the data into events for the
599 * input subsystem. This version is for the Xbox One controller.
601 * The report format was gleaned from
602 * https://github.com/kylelemons/xbox/blob/master/xbox.go
605 static void xpadone_process_packet(struct usb_xpad
*xpad
,
606 u16 cmd
, unsigned char *data
)
608 struct input_dev
*dev
= xpad
->dev
;
612 xpadone_process_buttons(xpad
, dev
, data
);
616 /* the xbox button has its own special report */
617 input_report_key(dev
, BTN_MODE
, data
[4] & 0x01);
623 static void xpad_irq_in(struct urb
*urb
)
625 struct usb_xpad
*xpad
= urb
->context
;
626 struct device
*dev
= &xpad
->intf
->dev
;
629 status
= urb
->status
;
638 /* this urb is terminated, clean up */
639 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
643 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
648 switch (xpad
->xtype
) {
650 xpad360_process_packet(xpad
, 0, xpad
->idata
);
653 xpad360w_process_packet(xpad
, 0, xpad
->idata
);
656 xpadone_process_packet(xpad
, 0, xpad
->idata
);
659 xpad_process_packet(xpad
, 0, xpad
->idata
);
663 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
665 dev_err(dev
, "%s - usb_submit_urb failed with result %d\n",
669 static void xpad_bulk_out(struct urb
*urb
)
671 struct usb_xpad
*xpad
= urb
->context
;
672 struct device
*dev
= &xpad
->intf
->dev
;
674 switch (urb
->status
) {
681 /* this urb is terminated, clean up */
682 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
683 __func__
, urb
->status
);
686 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
687 __func__
, urb
->status
);
691 static void xpad_irq_out(struct urb
*urb
)
693 struct usb_xpad
*xpad
= urb
->context
;
694 struct device
*dev
= &xpad
->intf
->dev
;
697 status
= urb
->status
;
707 /* this urb is terminated, clean up */
708 dev_dbg(dev
, "%s - urb shutting down with status: %d\n",
713 dev_dbg(dev
, "%s - nonzero urb status received: %d\n",
719 retval
= usb_submit_urb(urb
, GFP_ATOMIC
);
721 dev_err(dev
, "%s - usb_submit_urb failed with result %d\n",
725 static int xpad_init_output(struct usb_interface
*intf
, struct usb_xpad
*xpad
)
727 struct usb_endpoint_descriptor
*ep_irq_out
;
731 if (xpad
->xtype
== XTYPE_UNKNOWN
)
734 xpad
->odata
= usb_alloc_coherent(xpad
->udev
, XPAD_PKT_LEN
,
735 GFP_KERNEL
, &xpad
->odata_dma
);
741 mutex_init(&xpad
->odata_mutex
);
743 xpad
->irq_out
= usb_alloc_urb(0, GFP_KERNEL
);
744 if (!xpad
->irq_out
) {
749 /* Xbox One controller has in/out endpoints swapped. */
750 ep_irq_out_idx
= xpad
->xtype
== XTYPE_XBOXONE
? 0 : 1;
751 ep_irq_out
= &intf
->cur_altsetting
->endpoint
[ep_irq_out_idx
].desc
;
753 usb_fill_int_urb(xpad
->irq_out
, xpad
->udev
,
754 usb_sndintpipe(xpad
->udev
, ep_irq_out
->bEndpointAddress
),
755 xpad
->odata
, XPAD_PKT_LEN
,
756 xpad_irq_out
, xpad
, ep_irq_out
->bInterval
);
757 xpad
->irq_out
->transfer_dma
= xpad
->odata_dma
;
758 xpad
->irq_out
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
762 fail2
: usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
, xpad
->odata
, xpad
->odata_dma
);
766 static void xpad_stop_output(struct usb_xpad
*xpad
)
768 if (xpad
->xtype
!= XTYPE_UNKNOWN
)
769 usb_kill_urb(xpad
->irq_out
);
772 static void xpad_deinit_output(struct usb_xpad
*xpad
)
774 if (xpad
->xtype
!= XTYPE_UNKNOWN
) {
775 usb_free_urb(xpad
->irq_out
);
776 usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
,
777 xpad
->odata
, xpad
->odata_dma
);
781 #ifdef CONFIG_JOYSTICK_XPAD_FF
782 static int xpad_play_effect(struct input_dev
*dev
, void *data
, struct ff_effect
*effect
)
784 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
786 if (effect
->type
== FF_RUMBLE
) {
787 __u16 strong
= effect
->u
.rumble
.strong_magnitude
;
788 __u16 weak
= effect
->u
.rumble
.weak_magnitude
;
790 switch (xpad
->xtype
) {
793 xpad
->odata
[0] = 0x00;
794 xpad
->odata
[1] = 0x06;
795 xpad
->odata
[2] = 0x00;
796 xpad
->odata
[3] = strong
/ 256; /* left actuator */
797 xpad
->odata
[4] = 0x00;
798 xpad
->odata
[5] = weak
/ 256; /* right actuator */
799 xpad
->irq_out
->transfer_buffer_length
= 6;
801 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
804 xpad
->odata
[0] = 0x00;
805 xpad
->odata
[1] = 0x08;
806 xpad
->odata
[2] = 0x00;
807 xpad
->odata
[3] = strong
/ 256; /* left actuator? */
808 xpad
->odata
[4] = weak
/ 256; /* right actuator? */
809 xpad
->odata
[5] = 0x00;
810 xpad
->odata
[6] = 0x00;
811 xpad
->odata
[7] = 0x00;
812 xpad
->irq_out
->transfer_buffer_length
= 8;
814 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
817 xpad
->odata
[0] = 0x00;
818 xpad
->odata
[1] = 0x01;
819 xpad
->odata
[2] = 0x0F;
820 xpad
->odata
[3] = 0xC0;
821 xpad
->odata
[4] = 0x00;
822 xpad
->odata
[5] = strong
/ 256;
823 xpad
->odata
[6] = weak
/ 256;
824 xpad
->odata
[7] = 0x00;
825 xpad
->odata
[8] = 0x00;
826 xpad
->odata
[9] = 0x00;
827 xpad
->odata
[10] = 0x00;
828 xpad
->odata
[11] = 0x00;
829 xpad
->irq_out
->transfer_buffer_length
= 12;
831 return usb_submit_urb(xpad
->irq_out
, GFP_ATOMIC
);
834 dev_dbg(&xpad
->dev
->dev
,
835 "%s - rumble command sent to unsupported xpad type: %d\n",
836 __func__
, xpad
->xtype
);
844 static int xpad_init_ff(struct usb_xpad
*xpad
)
846 if (xpad
->xtype
== XTYPE_UNKNOWN
|| xpad
->xtype
== XTYPE_XBOXONE
)
849 input_set_capability(xpad
->dev
, EV_FF
, FF_RUMBLE
);
851 return input_ff_create_memless(xpad
->dev
, NULL
, xpad_play_effect
);
855 static int xpad_init_ff(struct usb_xpad
*xpad
) { return 0; }
858 #if defined(CONFIG_JOYSTICK_XPAD_LEDS)
859 #include <linux/leds.h>
863 struct led_classdev led_cdev
;
864 struct usb_xpad
*xpad
;
867 static void xpad_send_led_command(struct usb_xpad
*xpad
, int command
)
869 if (command
>= 0 && command
< 14) {
870 mutex_lock(&xpad
->odata_mutex
);
871 xpad
->odata
[0] = 0x01;
872 xpad
->odata
[1] = 0x03;
873 xpad
->odata
[2] = command
;
874 xpad
->irq_out
->transfer_buffer_length
= 3;
875 usb_submit_urb(xpad
->irq_out
, GFP_KERNEL
);
876 mutex_unlock(&xpad
->odata_mutex
);
880 static void xpad_led_set(struct led_classdev
*led_cdev
,
881 enum led_brightness value
)
883 struct xpad_led
*xpad_led
= container_of(led_cdev
,
884 struct xpad_led
, led_cdev
);
886 xpad_send_led_command(xpad_led
->xpad
, value
);
889 static int xpad_led_probe(struct usb_xpad
*xpad
)
891 static atomic_t led_seq
= ATOMIC_INIT(0);
893 struct xpad_led
*led
;
894 struct led_classdev
*led_cdev
;
897 if (xpad
->xtype
!= XTYPE_XBOX360
)
900 xpad
->led
= led
= kzalloc(sizeof(struct xpad_led
), GFP_KERNEL
);
904 led_no
= (long)atomic_inc_return(&led_seq
) - 1;
906 snprintf(led
->name
, sizeof(led
->name
), "xpad%ld", led_no
);
909 led_cdev
= &led
->led_cdev
;
910 led_cdev
->name
= led
->name
;
911 led_cdev
->brightness_set
= xpad_led_set
;
913 error
= led_classdev_register(&xpad
->udev
->dev
, led_cdev
);
921 * Light up the segment corresponding to controller number
923 xpad_send_led_command(xpad
, (led_no
% 4) + 2);
928 static void xpad_led_disconnect(struct usb_xpad
*xpad
)
930 struct xpad_led
*xpad_led
= xpad
->led
;
933 led_classdev_unregister(&xpad_led
->led_cdev
);
938 static int xpad_led_probe(struct usb_xpad
*xpad
) { return 0; }
939 static void xpad_led_disconnect(struct usb_xpad
*xpad
) { }
943 static int xpad_open(struct input_dev
*dev
)
945 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
947 /* URB was submitted in probe */
948 if (xpad
->xtype
== XTYPE_XBOX360W
)
951 xpad
->irq_in
->dev
= xpad
->udev
;
952 if (usb_submit_urb(xpad
->irq_in
, GFP_KERNEL
))
955 if (xpad
->xtype
== XTYPE_XBOXONE
) {
956 /* Xbox one controller needs to be initialized. */
957 xpad
->odata
[0] = 0x05;
958 xpad
->odata
[1] = 0x20;
959 xpad
->irq_out
->transfer_buffer_length
= 2;
960 return usb_submit_urb(xpad
->irq_out
, GFP_KERNEL
);
966 static void xpad_close(struct input_dev
*dev
)
968 struct usb_xpad
*xpad
= input_get_drvdata(dev
);
970 if (xpad
->xtype
!= XTYPE_XBOX360W
)
971 usb_kill_urb(xpad
->irq_in
);
973 xpad_stop_output(xpad
);
976 static void xpad_set_up_abs(struct input_dev
*input_dev
, signed short abs
)
978 struct usb_xpad
*xpad
= input_get_drvdata(input_dev
);
979 set_bit(abs
, input_dev
->absbit
);
985 case ABS_RY
: /* the two sticks */
986 input_set_abs_params(input_dev
, abs
, -32768, 32767, 16, 128);
989 case ABS_RZ
: /* the triggers (if mapped to axes) */
990 if (xpad
->xtype
== XTYPE_XBOXONE
)
991 input_set_abs_params(input_dev
, abs
, 0, 1023, 0, 0);
993 input_set_abs_params(input_dev
, abs
, 0, 255, 0, 0);
996 case ABS_HAT0Y
: /* the d-pad (only if dpad is mapped to axes */
997 input_set_abs_params(input_dev
, abs
, -1, 1, 0, 0);
1002 static int xpad_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
1004 struct usb_device
*udev
= interface_to_usbdev(intf
);
1005 struct usb_xpad
*xpad
;
1006 struct input_dev
*input_dev
;
1007 struct usb_endpoint_descriptor
*ep_irq_in
;
1011 if (intf
->cur_altsetting
->desc
.bNumEndpoints
!= 2)
1014 for (i
= 0; xpad_device
[i
].idVendor
; i
++) {
1015 if ((le16_to_cpu(udev
->descriptor
.idVendor
) == xpad_device
[i
].idVendor
) &&
1016 (le16_to_cpu(udev
->descriptor
.idProduct
) == xpad_device
[i
].idProduct
))
1020 if (xpad_device
[i
].xtype
== XTYPE_XBOXONE
&&
1021 intf
->cur_altsetting
->desc
.bInterfaceNumber
!= 0) {
1023 * The Xbox One controller lists three interfaces all with the
1024 * same interface class, subclass and protocol. Differentiate by
1030 xpad
= kzalloc(sizeof(struct usb_xpad
), GFP_KERNEL
);
1031 input_dev
= input_allocate_device();
1032 if (!xpad
|| !input_dev
) {
1037 xpad
->idata
= usb_alloc_coherent(udev
, XPAD_PKT_LEN
,
1038 GFP_KERNEL
, &xpad
->idata_dma
);
1044 xpad
->irq_in
= usb_alloc_urb(0, GFP_KERNEL
);
1045 if (!xpad
->irq_in
) {
1052 xpad
->mapping
= xpad_device
[i
].mapping
;
1053 xpad
->xtype
= xpad_device
[i
].xtype
;
1055 if (xpad
->xtype
== XTYPE_UNKNOWN
) {
1056 if (intf
->cur_altsetting
->desc
.bInterfaceClass
== USB_CLASS_VENDOR_SPEC
) {
1057 if (intf
->cur_altsetting
->desc
.bInterfaceProtocol
== 129)
1058 xpad
->xtype
= XTYPE_XBOX360W
;
1060 xpad
->xtype
= XTYPE_XBOX360
;
1062 xpad
->xtype
= XTYPE_XBOX
;
1064 if (dpad_to_buttons
)
1065 xpad
->mapping
|= MAP_DPAD_TO_BUTTONS
;
1066 if (triggers_to_buttons
)
1067 xpad
->mapping
|= MAP_TRIGGERS_TO_BUTTONS
;
1069 xpad
->mapping
|= MAP_STICKS_TO_NULL
;
1072 xpad
->dev
= input_dev
;
1073 usb_make_path(udev
, xpad
->phys
, sizeof(xpad
->phys
));
1074 strlcat(xpad
->phys
, "/input0", sizeof(xpad
->phys
));
1076 input_dev
->name
= xpad_device
[i
].name
;
1077 input_dev
->phys
= xpad
->phys
;
1078 usb_to_input_id(udev
, &input_dev
->id
);
1079 input_dev
->dev
.parent
= &intf
->dev
;
1081 input_set_drvdata(input_dev
, xpad
);
1083 input_dev
->open
= xpad_open
;
1084 input_dev
->close
= xpad_close
;
1086 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
1088 if (!(xpad
->mapping
& MAP_STICKS_TO_NULL
)) {
1089 input_dev
->evbit
[0] |= BIT_MASK(EV_ABS
);
1091 for (i
= 0; xpad_abs
[i
] >= 0; i
++)
1092 xpad_set_up_abs(input_dev
, xpad_abs
[i
]);
1095 /* set up standard buttons */
1096 for (i
= 0; xpad_common_btn
[i
] >= 0; i
++)
1097 __set_bit(xpad_common_btn
[i
], input_dev
->keybit
);
1099 /* set up model-specific ones */
1100 if (xpad
->xtype
== XTYPE_XBOX360
|| xpad
->xtype
== XTYPE_XBOX360W
||
1101 xpad
->xtype
== XTYPE_XBOXONE
) {
1102 for (i
= 0; xpad360_btn
[i
] >= 0; i
++)
1103 __set_bit(xpad360_btn
[i
], input_dev
->keybit
);
1105 for (i
= 0; xpad_btn
[i
] >= 0; i
++)
1106 __set_bit(xpad_btn
[i
], input_dev
->keybit
);
1109 if (xpad
->mapping
& MAP_DPAD_TO_BUTTONS
) {
1110 for (i
= 0; xpad_btn_pad
[i
] >= 0; i
++)
1111 __set_bit(xpad_btn_pad
[i
], input_dev
->keybit
);
1113 for (i
= 0; xpad_abs_pad
[i
] >= 0; i
++)
1114 xpad_set_up_abs(input_dev
, xpad_abs_pad
[i
]);
1117 if (xpad
->mapping
& MAP_TRIGGERS_TO_BUTTONS
) {
1118 for (i
= 0; xpad_btn_triggers
[i
] >= 0; i
++)
1119 __set_bit(xpad_btn_triggers
[i
], input_dev
->keybit
);
1121 for (i
= 0; xpad_abs_triggers
[i
] >= 0; i
++)
1122 xpad_set_up_abs(input_dev
, xpad_abs_triggers
[i
]);
1125 error
= xpad_init_output(intf
, xpad
);
1129 error
= xpad_init_ff(xpad
);
1133 error
= xpad_led_probe(xpad
);
1137 /* Xbox One controller has in/out endpoints swapped. */
1138 ep_irq_in_idx
= xpad
->xtype
== XTYPE_XBOXONE
? 1 : 0;
1139 ep_irq_in
= &intf
->cur_altsetting
->endpoint
[ep_irq_in_idx
].desc
;
1141 usb_fill_int_urb(xpad
->irq_in
, udev
,
1142 usb_rcvintpipe(udev
, ep_irq_in
->bEndpointAddress
),
1143 xpad
->idata
, XPAD_PKT_LEN
, xpad_irq_in
,
1144 xpad
, ep_irq_in
->bInterval
);
1145 xpad
->irq_in
->transfer_dma
= xpad
->idata_dma
;
1146 xpad
->irq_in
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
1148 error
= input_register_device(xpad
->dev
);
1152 usb_set_intfdata(intf
, xpad
);
1154 if (xpad
->xtype
== XTYPE_XBOX360W
) {
1156 * Setup the message to set the LEDs on the
1157 * controller when it shows up
1159 xpad
->bulk_out
= usb_alloc_urb(0, GFP_KERNEL
);
1160 if (!xpad
->bulk_out
) {
1165 xpad
->bdata
= kzalloc(XPAD_PKT_LEN
, GFP_KERNEL
);
1171 xpad
->bdata
[2] = 0x08;
1172 switch (intf
->cur_altsetting
->desc
.bInterfaceNumber
) {
1174 xpad
->bdata
[3] = 0x42;
1177 xpad
->bdata
[3] = 0x43;
1180 xpad
->bdata
[3] = 0x44;
1183 xpad
->bdata
[3] = 0x45;
1186 ep_irq_in
= &intf
->cur_altsetting
->endpoint
[1].desc
;
1187 if (usb_endpoint_is_bulk_out(ep_irq_in
)) {
1188 usb_fill_bulk_urb(xpad
->bulk_out
, udev
,
1189 usb_sndbulkpipe(udev
,
1190 ep_irq_in
->bEndpointAddress
),
1191 xpad
->bdata
, XPAD_PKT_LEN
,
1192 xpad_bulk_out
, xpad
);
1194 usb_fill_int_urb(xpad
->bulk_out
, udev
,
1195 usb_sndintpipe(udev
,
1196 ep_irq_in
->bEndpointAddress
),
1197 xpad
->bdata
, XPAD_PKT_LEN
,
1198 xpad_bulk_out
, xpad
, 0);
1202 * Submit the int URB immediately rather than waiting for open
1203 * because we get status messages from the device whether
1204 * or not any controllers are attached. In fact, it's
1205 * exactly the message that a controller has arrived that
1206 * we're waiting for.
1208 xpad
->irq_in
->dev
= xpad
->udev
;
1209 error
= usb_submit_urb(xpad
->irq_in
, GFP_KERNEL
);
1216 fail9
: kfree(xpad
->bdata
);
1217 fail8
: usb_free_urb(xpad
->bulk_out
);
1218 fail7
: input_unregister_device(input_dev
);
1220 fail6
: xpad_led_disconnect(xpad
);
1221 fail5
: if (input_dev
)
1222 input_ff_destroy(input_dev
);
1223 fail4
: xpad_deinit_output(xpad
);
1224 fail3
: usb_free_urb(xpad
->irq_in
);
1225 fail2
: usb_free_coherent(udev
, XPAD_PKT_LEN
, xpad
->idata
, xpad
->idata_dma
);
1226 fail1
: input_free_device(input_dev
);
1232 static void xpad_disconnect(struct usb_interface
*intf
)
1234 struct usb_xpad
*xpad
= usb_get_intfdata (intf
);
1236 xpad_led_disconnect(xpad
);
1237 input_unregister_device(xpad
->dev
);
1238 xpad_deinit_output(xpad
);
1240 if (xpad
->xtype
== XTYPE_XBOX360W
) {
1241 usb_kill_urb(xpad
->bulk_out
);
1242 usb_free_urb(xpad
->bulk_out
);
1243 usb_kill_urb(xpad
->irq_in
);
1246 usb_free_urb(xpad
->irq_in
);
1247 usb_free_coherent(xpad
->udev
, XPAD_PKT_LEN
,
1248 xpad
->idata
, xpad
->idata_dma
);
1253 usb_set_intfdata(intf
, NULL
);
1256 static struct usb_driver xpad_driver
= {
1258 .probe
= xpad_probe
,
1259 .disconnect
= xpad_disconnect
,
1260 .id_table
= xpad_table
,
1263 module_usb_driver(xpad_driver
);
1265 MODULE_AUTHOR(DRIVER_AUTHOR
);
1266 MODULE_DESCRIPTION(DRIVER_DESC
);
1267 MODULE_LICENSE("GPL");