blob: 67ab85a4fd0e9f73c8207e6b3cd698e89f51dc06 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Anssi Hannulabf8cb312008-04-03 16:19:10 -04002 * X-Box gamepad driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2002 Marko Friedemann <mfr@bmx-chemnitz.de>
Dominic Cerquettid518b2b2006-10-20 14:51:45 -07005 * 2004 Oliver Schwartz <Oliver.Schwartz@gmx.de>,
6 * Steven Toth <steve@toth.demon.co.uk>,
7 * Franz Lehner <franz@caos.at>,
8 * Ivan Hawkes <blackhawk@ivanhawkes.com>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07009 * 2005 Dominic Cerquetti <binary1230@yahoo.com>
10 * 2006 Adam Buchbinder <adam.buchbinder@gmail.com>
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040011 * 2007 Jan Kratochvil <honza@jikos.cz>
Christoph Fritz7beae702010-07-13 09:42:33 -070012 * 2010 Christoph Fritz <chf.fritz@googlemail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 *
29 * This driver is based on:
30 * - information from http://euc.jp/periphs/xbox-controller.ja.html
31 * - the iForce driver drivers/char/joystick/iforce.c
32 * - the skeleton-driver drivers/usb/usb-skeleton.c
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040033 * - Xbox 360 information http://www.free60.org/wiki/Gamepad
Ming-ting Yao Wei06049492015-04-14 16:59:11 -070034 * - Xbox One information https://github.com/quantus/xbox-one-controller-protocol
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 *
36 * Thanks to:
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
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070040 * - XBOX Linux project - extra USB id's
Ming-ting Yao Wei06049492015-04-14 16:59:11 -070041 * - Pekka Pöyry (quantus) - Xbox One controller reverse engineering
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 *
43 * TODO:
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070044 * - fine tune axes (especially trigger axes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * - fix "analog" buttons (reported as digital now)
46 * - get rumble working
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070047 * - need USB IDs for other dance pads
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
49 * History:
50 *
51 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
52 *
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
56 *
57 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
58 * - indentation fixes
59 * - usb + input init sequence fixes
60 *
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
65 *
66 * 2002-07-17 - 0.0.5 : simplified d-pad handling
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070067 *
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
Anssi Hannulabf8cb312008-04-03 16:19:10 -040074 *
75 * Later changes can be tracked in SCM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070080#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070082#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
85#define DRIVER_DESC "X-Box pad driver"
86
87#define XPAD_PKT_LEN 32
88
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070089/* xbox d-pads should map to buttons, as is required for DDR pads
90 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080091#define MAP_DPAD_TO_BUTTONS (1 << 0)
92#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070093#define MAP_STICKS_TO_NULL (1 << 2)
94#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
95 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070096
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040097#define XTYPE_XBOX 0
98#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -040099#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700100#define XTYPE_XBOXONE 3
101#define XTYPE_UNKNOWN 4
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400102
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030103static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700104module_param(dpad_to_buttons, bool, S_IRUGO);
105MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
106
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030107static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800108module_param(triggers_to_buttons, bool, S_IRUGO);
109MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
110
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030111static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700112module_param(sticks_to_null, bool, S_IRUGO);
113MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
114
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100115static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 u16 idVendor;
117 u16 idProduct;
118 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800119 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400120 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800122 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800123 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
124 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800125 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
126 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700127 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Erik Lundgren39a7a882015-10-06 17:04:11 -0700128 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Covert Forces)", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800129 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400130 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800131 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700132 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800133 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700134 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800135 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800136 { 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 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400145 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800146 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
147 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700148 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
149 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700150 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800151 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700152 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400153 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700154 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800155 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700156 { 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 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800159 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800160 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800161 { 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 },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700164 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800165 { 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 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800170 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700171 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700172 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800173 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700174 { 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 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800177 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700178 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
179 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800180 { 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 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800182 { 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 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700185 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700186 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800187 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800188 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400189 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800190 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700191 { 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 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800196 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
197 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Frank Razenberga7b44732014-09-08 11:32:20 -0700198 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700199 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700200 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800201 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700202 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800203 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700204 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
205 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800206 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
207 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700208 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800209 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700210 { 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 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700215 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800216 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
217 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Anssi Hannulafc55e952008-04-03 16:18:44 -0400220/* buttons shared with xbox and xbox360 */
221static const signed short xpad_common_btn[] = {
222 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700223 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 -1 /* terminating entry */
225};
226
Anssi Hannulafc55e952008-04-03 16:18:44 -0400227/* original xbox controllers only */
228static const signed short xpad_btn[] = {
229 BTN_C, BTN_Z, /* "analog" buttons */
230 -1 /* terminating entry */
231};
232
Christoph Fritz7beae702010-07-13 09:42:33 -0700233/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700234static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700235 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
236 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700237 -1 /* terminating entry */
238};
239
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800240/* used when triggers are mapped to buttons */
241static const signed short xpad_btn_triggers[] = {
242 BTN_TL2, BTN_TR2, /* triggers left/right */
243 -1
244};
245
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400246static const signed short xpad360_btn[] = { /* buttons for x360 controller */
247 BTN_TL, BTN_TR, /* Button LB/RB */
248 BTN_MODE, /* The big X button */
249 -1
250};
251
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100252static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 ABS_X, ABS_Y, /* left stick */
254 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700255 -1 /* terminating entry */
256};
257
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800258/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700259static const signed short xpad_abs_pad[] = {
260 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 -1 /* terminating entry */
262};
263
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800264/* used when triggers are mapped to axes */
265static const signed short xpad_abs_triggers[] = {
266 ABS_Z, ABS_RZ, /* triggers left/right */
267 -1
268};
269
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700270/*
271 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400272 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400273 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700274 * wireless controllers have protocol 129.
275 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400276#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400277 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
278 .idVendor = (vend), \
279 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
280 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400281 .bInterfaceProtocol = (pr)
282#define XPAD_XBOX360_VENDOR(vend) \
283 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
284 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400285
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700286/* The Xbox One controller uses subclass 71 and protocol 208. */
287#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
288 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
289 .idVendor = (vend), \
290 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
291 .bInterfaceSubClass = 71, \
292 .bInterfaceProtocol = (pr)
293#define XPAD_XBOXONE_VENDOR(vend) \
294 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
295
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800296static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700298 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400299 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700300 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400301 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
302 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700303 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400304 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700305 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400306 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700307 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700308 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700309 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
310 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800311 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700312 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
313 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
314 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 { }
316};
317
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800318MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700321 struct input_dev *dev; /* input device interface */
322 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700323 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500324
Brian Magnuson99de0912008-04-03 16:19:23 -0400325 int pad_present;
326
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700327 struct urb *irq_in; /* urb for interrupt in report */
328 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500330
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400331 struct urb *irq_out; /* urb for interrupt out report */
332 unsigned char *odata; /* output data */
333 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400334 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400335
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400336#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
337 struct xpad_led *led;
338#endif
339
340 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700341
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800342 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400343 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700344 int pad_nr; /* the order x360 pads were attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345};
346
347/*
348 * xpad_process_packet
349 *
350 * Completes a request by converting the data into events for the
351 * input subsystem.
352 *
353 * The used report descriptor was taken from ITO Takayukis website:
354 * http://euc.jp/periphs/xbox-controller.ja.html
355 */
David Howells7d12e782006-10-05 14:55:46 +0100356static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500358 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Christoph Fritz7beae702010-07-13 09:42:33 -0700360 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
361 /* left stick */
362 input_report_abs(dev, ABS_X,
363 (__s16) le16_to_cpup((__le16 *)(data + 12)));
364 input_report_abs(dev, ABS_Y,
365 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500366
Christoph Fritz7beae702010-07-13 09:42:33 -0700367 /* right stick */
368 input_report_abs(dev, ABS_RX,
369 (__s16) le16_to_cpup((__le16 *)(data + 16)));
370 input_report_abs(dev, ABS_RY,
371 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
372 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800375 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
376 input_report_key(dev, BTN_TL2, data[10]);
377 input_report_key(dev, BTN_TR2, data[11]);
378 } else {
379 input_report_abs(dev, ABS_Z, data[10]);
380 input_report_abs(dev, ABS_RZ, data[11]);
381 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800384 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700385 /* dpad as buttons (left, right, up, down) */
386 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
387 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
388 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
389 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800390 } else {
391 input_report_abs(dev, ABS_HAT0X,
392 !!(data[2] & 0x08) - !!(data[2] & 0x04));
393 input_report_abs(dev, ABS_HAT0Y,
394 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700395 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700398 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700399 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700400 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
401 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* "analog" buttons A, B, X, Y */
404 input_report_key(dev, BTN_A, data[4]);
405 input_report_key(dev, BTN_B, data[5]);
406 input_report_key(dev, BTN_X, data[6]);
407 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /* "analog" buttons black, white */
410 input_report_key(dev, BTN_C, data[8]);
411 input_report_key(dev, BTN_Z, data[9]);
412
413 input_sync(dev);
414}
415
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400416/*
417 * xpad360_process_packet
418 *
419 * Completes a request by converting the data into events for the
420 * input subsystem. It is version for xbox 360 controller
421 *
422 * The used report descriptor was taken from:
423 * http://www.free60.org/wiki/Gamepad
424 */
425
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400426static void xpad360_process_packet(struct usb_xpad *xpad,
427 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400428{
429 struct input_dev *dev = xpad->dev;
430
431 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800432 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700433 /* dpad as buttons (left, right, up, down) */
434 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
435 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
436 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
437 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800438 } else {
439 input_report_abs(dev, ABS_HAT0X,
440 !!(data[2] & 0x08) - !!(data[2] & 0x04));
441 input_report_abs(dev, ABS_HAT0Y,
442 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400443 }
444
445 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400446 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700447 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400448
449 /* stick press left/right */
450 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
451 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
452
453 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400454 input_report_key(dev, BTN_A, data[3] & 0x10);
455 input_report_key(dev, BTN_B, data[3] & 0x20);
456 input_report_key(dev, BTN_X, data[3] & 0x40);
457 input_report_key(dev, BTN_Y, data[3] & 0x80);
458 input_report_key(dev, BTN_TL, data[3] & 0x01);
459 input_report_key(dev, BTN_TR, data[3] & 0x02);
460 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400461
Christoph Fritz7beae702010-07-13 09:42:33 -0700462 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
463 /* left stick */
464 input_report_abs(dev, ABS_X,
465 (__s16) le16_to_cpup((__le16 *)(data + 6)));
466 input_report_abs(dev, ABS_Y,
467 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400468
Christoph Fritz7beae702010-07-13 09:42:33 -0700469 /* right stick */
470 input_report_abs(dev, ABS_RX,
471 (__s16) le16_to_cpup((__le16 *)(data + 10)));
472 input_report_abs(dev, ABS_RY,
473 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
474 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400475
476 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800477 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
478 input_report_key(dev, BTN_TL2, data[4]);
479 input_report_key(dev, BTN_TR2, data[5]);
480 } else {
481 input_report_abs(dev, ABS_Z, data[4]);
482 input_report_abs(dev, ABS_RZ, data[5]);
483 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400484
485 input_sync(dev);
486}
487
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700488static void xpad_identify_controller(struct usb_xpad *xpad);
489
Brian Magnuson99de0912008-04-03 16:19:23 -0400490/*
491 * xpad360w_process_packet
492 *
493 * Completes a request by converting the data into events for the
494 * input subsystem. It is version for xbox 360 wireless controller.
495 *
496 * Byte.Bit
497 * 00.1 - Status change: The controller or headset has connected/disconnected
498 * Bits 01.7 and 01.6 are valid
499 * 01.7 - Controller present
500 * 01.6 - Headset present
501 * 01.1 - Pad state (Bytes 4+) valid
502 *
503 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400504static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
505{
506 /* Presence change */
507 if (data[0] & 0x08) {
508 if (data[1] & 0x80) {
509 xpad->pad_present = 1;
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700510 /*
511 * Light up the segment corresponding to
512 * controller number.
513 */
514 xpad_identify_controller(xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400515 } else
516 xpad->pad_present = 0;
517 }
518
519 /* Valid pad data */
520 if (!(data[1] & 0x1))
521 return;
522
523 xpad360_process_packet(xpad, cmd, &data[4]);
524}
525
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700526/*
527 * xpadone_process_buttons
528 *
529 * Process a button update packet from an Xbox one controller.
530 */
531static void xpadone_process_buttons(struct usb_xpad *xpad,
532 struct input_dev *dev,
533 unsigned char *data)
534{
535 /* menu/view buttons */
536 input_report_key(dev, BTN_START, data[4] & 0x04);
537 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
538
539 /* buttons A,B,X,Y */
540 input_report_key(dev, BTN_A, data[4] & 0x10);
541 input_report_key(dev, BTN_B, data[4] & 0x20);
542 input_report_key(dev, BTN_X, data[4] & 0x40);
543 input_report_key(dev, BTN_Y, data[4] & 0x80);
544
545 /* digital pad */
546 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
547 /* dpad as buttons (left, right, up, down) */
548 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
549 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
550 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
551 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
552 } else {
553 input_report_abs(dev, ABS_HAT0X,
554 !!(data[5] & 0x08) - !!(data[5] & 0x04));
555 input_report_abs(dev, ABS_HAT0Y,
556 !!(data[5] & 0x02) - !!(data[5] & 0x01));
557 }
558
559 /* TL/TR */
560 input_report_key(dev, BTN_TL, data[5] & 0x10);
561 input_report_key(dev, BTN_TR, data[5] & 0x20);
562
563 /* stick press left/right */
564 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
565 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
566
567 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
568 /* left stick */
569 input_report_abs(dev, ABS_X,
570 (__s16) le16_to_cpup((__le16 *)(data + 10)));
571 input_report_abs(dev, ABS_Y,
572 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
573
574 /* right stick */
575 input_report_abs(dev, ABS_RX,
576 (__s16) le16_to_cpup((__le16 *)(data + 14)));
577 input_report_abs(dev, ABS_RY,
578 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
579 }
580
581 /* triggers left/right */
582 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
583 input_report_key(dev, BTN_TL2,
584 (__u16) le16_to_cpup((__le16 *)(data + 6)));
585 input_report_key(dev, BTN_TR2,
586 (__u16) le16_to_cpup((__le16 *)(data + 8)));
587 } else {
588 input_report_abs(dev, ABS_Z,
589 (__u16) le16_to_cpup((__le16 *)(data + 6)));
590 input_report_abs(dev, ABS_RZ,
591 (__u16) le16_to_cpup((__le16 *)(data + 8)));
592 }
593
594 input_sync(dev);
595}
596
597/*
598 * xpadone_process_packet
599 *
600 * Completes a request by converting the data into events for the
601 * input subsystem. This version is for the Xbox One controller.
602 *
603 * The report format was gleaned from
604 * https://github.com/kylelemons/xbox/blob/master/xbox.go
605 */
606
607static void xpadone_process_packet(struct usb_xpad *xpad,
608 u16 cmd, unsigned char *data)
609{
610 struct input_dev *dev = xpad->dev;
611
612 switch (data[0]) {
613 case 0x20:
614 xpadone_process_buttons(xpad, dev, data);
615 break;
616
617 case 0x07:
618 /* the xbox button has its own special report */
619 input_report_key(dev, BTN_MODE, data[4] & 0x01);
620 input_sync(dev);
621 break;
622 }
623}
624
David Howells7d12e782006-10-05 14:55:46 +0100625static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700628 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200629 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500630
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200631 status = urb->status;
632
633 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 case 0:
635 /* success */
636 break;
637 case -ECONNRESET:
638 case -ENOENT:
639 case -ESHUTDOWN:
640 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700641 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400642 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return;
644 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700645 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400646 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 goto exit;
648 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500649
Brian Magnuson99de0912008-04-03 16:19:23 -0400650 switch (xpad->xtype) {
651 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400652 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400653 break;
654 case XTYPE_XBOX360W:
655 xpad360w_process_packet(xpad, 0, xpad->idata);
656 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700657 case XTYPE_XBOXONE:
658 xpadone_process_packet(xpad, 0, xpad->idata);
659 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400660 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400661 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800665 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700667 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700668 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400671static void xpad_irq_out(struct urb *urb)
672{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700673 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700674 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200675 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400676
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200677 status = urb->status;
678
679 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700680 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400681 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700682 return;
683
684 case -ECONNRESET:
685 case -ENOENT:
686 case -ESHUTDOWN:
687 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700688 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
689 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700690 return;
691
692 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700693 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
694 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700695 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400696 }
697
698exit:
699 retval = usb_submit_urb(urb, GFP_ATOMIC);
700 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700701 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700702 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400703}
704
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400705static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
706{
707 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700708 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800709 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400710
Chris Moellerb514d4f2011-07-04 19:21:59 -0700711 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400712 return 0;
713
Daniel Mack997ea582010-04-12 13:17:25 +0200714 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
715 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800716 if (!xpad->odata) {
717 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400718 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800719 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400720
721 mutex_init(&xpad->odata_mutex);
722
723 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800724 if (!xpad->irq_out) {
725 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400726 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800727 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400728
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700729 /* Xbox One controller has in/out endpoints swapped. */
730 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
731 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
732
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400733 usb_fill_int_urb(xpad->irq_out, xpad->udev,
734 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
735 xpad->odata, XPAD_PKT_LEN,
736 xpad_irq_out, xpad, ep_irq_out->bInterval);
737 xpad->irq_out->transfer_dma = xpad->odata_dma;
738 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
739
740 return 0;
741
Daniel Mack997ea582010-04-12 13:17:25 +0200742 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400743 fail1: return error;
744}
745
746static void xpad_stop_output(struct usb_xpad *xpad)
747{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700748 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400749 usb_kill_urb(xpad->irq_out);
750}
751
752static void xpad_deinit_output(struct usb_xpad *xpad)
753{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700754 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400755 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200756 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400757 xpad->odata, xpad->odata_dma);
758 }
759}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400760
761#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800762static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400763{
764 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg06008152015-10-10 09:32:55 -0700765 __u16 strong;
766 __u16 weak;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400767
Pavel Rojtberg06008152015-10-10 09:32:55 -0700768 if (effect->type != FF_RUMBLE)
769 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -0800770
Pavel Rojtberg06008152015-10-10 09:32:55 -0700771 strong = effect->u.rumble.strong_magnitude;
772 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800773
Pavel Rojtberg06008152015-10-10 09:32:55 -0700774 switch (xpad->xtype) {
775 case XTYPE_XBOX:
776 xpad->odata[0] = 0x00;
777 xpad->odata[1] = 0x06;
778 xpad->odata[2] = 0x00;
779 xpad->odata[3] = strong / 256; /* left actuator */
780 xpad->odata[4] = 0x00;
781 xpad->odata[5] = weak / 256; /* right actuator */
782 xpad->irq_out->transfer_buffer_length = 6;
783 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800784
Pavel Rojtberg06008152015-10-10 09:32:55 -0700785 case XTYPE_XBOX360:
786 xpad->odata[0] = 0x00;
787 xpad->odata[1] = 0x08;
788 xpad->odata[2] = 0x00;
789 xpad->odata[3] = strong / 256; /* left actuator? */
790 xpad->odata[4] = weak / 256; /* right actuator? */
791 xpad->odata[5] = 0x00;
792 xpad->odata[6] = 0x00;
793 xpad->odata[7] = 0x00;
794 xpad->irq_out->transfer_buffer_length = 8;
795 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800796
Pavel Rojtberg06008152015-10-10 09:32:55 -0700797 case XTYPE_XBOX360W:
798 xpad->odata[0] = 0x00;
799 xpad->odata[1] = 0x01;
800 xpad->odata[2] = 0x0F;
801 xpad->odata[3] = 0xC0;
802 xpad->odata[4] = 0x00;
803 xpad->odata[5] = strong / 256;
804 xpad->odata[6] = weak / 256;
805 xpad->odata[7] = 0x00;
806 xpad->odata[8] = 0x00;
807 xpad->odata[9] = 0x00;
808 xpad->odata[10] = 0x00;
809 xpad->odata[11] = 0x00;
810 xpad->irq_out->transfer_buffer_length = 12;
811 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800812
Pavel Rojtberg06008152015-10-10 09:32:55 -0700813 case XTYPE_XBOXONE:
814 xpad->odata[0] = 0x09; /* activate rumble */
815 xpad->odata[1] = 0x08;
816 xpad->odata[2] = 0x00;
817 xpad->odata[3] = 0x08; /* continuous effect */
818 xpad->odata[4] = 0x00; /* simple rumble mode */
819 xpad->odata[5] = 0x03; /* L and R actuator only */
820 xpad->odata[6] = 0x00; /* TODO: LT actuator */
821 xpad->odata[7] = 0x00; /* TODO: RT actuator */
822 xpad->odata[8] = strong / 256; /* left actuator */
823 xpad->odata[9] = weak / 256; /* right actuator */
824 xpad->odata[10] = 0x80; /* length of pulse */
825 xpad->odata[11] = 0x00; /* stop period of pulse */
826 xpad->irq_out->transfer_buffer_length = 12;
827 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800828
Pavel Rojtberg06008152015-10-10 09:32:55 -0700829 default:
830 dev_dbg(&xpad->dev->dev,
831 "%s - rumble command sent to unsupported xpad type: %d\n",
832 __func__, xpad->xtype);
833 return -EINVAL;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400834 }
835
Pavel Rojtberg06008152015-10-10 09:32:55 -0700836 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400837}
838
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400839static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400840{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -0700841 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400842 return 0;
843
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400844 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
845
846 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
847}
848
849#else
850static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
851#endif
852
853#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
854#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700855#include <linux/idr.h>
856
857static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400858
859struct xpad_led {
860 char name[16];
861 struct led_classdev led_cdev;
862 struct usb_xpad *xpad;
863};
864
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700865/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700866 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700867 * @param command
868 * 0: off
869 * 1: all blink, then previous setting
870 * 2: 1/top-left blink, then on
871 * 3: 2/top-right blink, then on
872 * 4: 3/bottom-left blink, then on
873 * 5: 4/bottom-right blink, then on
874 * 6: 1/top-left on
875 * 7: 2/top-right on
876 * 8: 3/bottom-left on
877 * 9: 4/bottom-right on
878 * 10: rotate
879 * 11: blink, based on previous setting
880 * 12: slow blink, based on previous setting
881 * 13: rotate with two lights
882 * 14: persistent slow all blink
883 * 15: blink once, then previous setting
884 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400885static void xpad_send_led_command(struct usb_xpad *xpad, int command)
886{
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700887 command %= 16;
888
889 mutex_lock(&xpad->odata_mutex);
890
891 switch (xpad->xtype) {
892 case XTYPE_XBOX360:
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400893 xpad->odata[0] = 0x01;
894 xpad->odata[1] = 0x03;
895 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400896 xpad->irq_out->transfer_buffer_length = 3;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700897 break;
898 case XTYPE_XBOX360W:
899 xpad->odata[0] = 0x00;
900 xpad->odata[1] = 0x00;
901 xpad->odata[2] = 0x08;
902 xpad->odata[3] = 0x40 + command;
903 xpad->odata[4] = 0x00;
904 xpad->odata[5] = 0x00;
905 xpad->odata[6] = 0x00;
906 xpad->odata[7] = 0x00;
907 xpad->odata[8] = 0x00;
908 xpad->odata[9] = 0x00;
909 xpad->odata[10] = 0x00;
910 xpad->odata[11] = 0x00;
911 xpad->irq_out->transfer_buffer_length = 12;
912 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400913 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700914
915 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
916 mutex_unlock(&xpad->odata_mutex);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400917}
918
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700919/*
920 * Light up the segment corresponding to the pad number on
921 * Xbox 360 Controllers.
922 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700923static void xpad_identify_controller(struct usb_xpad *xpad)
924{
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700925 xpad_send_led_command(xpad, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700926}
927
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400928static void xpad_led_set(struct led_classdev *led_cdev,
929 enum led_brightness value)
930{
931 struct xpad_led *xpad_led = container_of(led_cdev,
932 struct xpad_led, led_cdev);
933
934 xpad_send_led_command(xpad_led->xpad, value);
935}
936
937static int xpad_led_probe(struct usb_xpad *xpad)
938{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400939 struct xpad_led *led;
940 struct led_classdev *led_cdev;
941 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400942
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700943 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400944 return 0;
945
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400946 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
947 if (!led)
948 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400949
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700950 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
951 if (xpad->pad_nr < 0) {
952 error = xpad->pad_nr;
953 goto err_free_mem;
954 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400955
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700956 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400957 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400958
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400959 led_cdev = &led->led_cdev;
960 led_cdev->name = led->name;
961 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400962
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400963 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700964 if (error)
965 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400966
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700967 /* Light up the segment corresponding to controller number */
968 xpad_identify_controller(xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400969 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700970
971err_free_id:
972 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
973err_free_mem:
974 kfree(led);
975 xpad->led = NULL;
976 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400977}
978
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400979static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400980{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400981 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400982
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400983 if (xpad_led) {
984 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700985 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -0800986 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400987 }
988}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400989#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400990static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
991static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700992static void xpad_identify_controller(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400993#endif
994
995static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400997 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500998
Brian Magnuson99de0912008-04-03 16:19:23 -0400999 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -08001000 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001001 return 0;
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -05001004 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001006
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001007 if (xpad->xtype == XTYPE_XBOXONE) {
1008 /* Xbox one controller needs to be initialized. */
1009 xpad->odata[0] = 0x05;
1010 xpad->odata[1] = 0x20;
1011 xpad->irq_out->transfer_buffer_length = 2;
1012 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
1013 }
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return 0;
1016}
1017
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001018static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001020 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001021
Axel Lin161feb22010-11-11 21:47:42 -08001022 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001023 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -08001024
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001025 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001028static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1029{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001030 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001031 set_bit(abs, input_dev->absbit);
1032
1033 switch (abs) {
1034 case ABS_X:
1035 case ABS_Y:
1036 case ABS_RX:
1037 case ABS_RY: /* the two sticks */
1038 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1039 break;
1040 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001041 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001042 if (xpad->xtype == XTYPE_XBOXONE)
1043 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1044 else
1045 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001046 break;
1047 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001048 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001049 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1050 break;
1051 }
1052}
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1055{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -04001056 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001057 struct usb_xpad *xpad;
1058 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 struct usb_endpoint_descriptor *ep_irq_in;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001060 int ep_irq_in_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -08001061 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 for (i = 0; xpad_device[i].idVendor; i++) {
1064 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1065 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1066 break;
1067 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001068
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001069 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1070 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1071 /*
1072 * The Xbox One controller lists three interfaces all with the
1073 * same interface class, subclass and protocol. Differentiate by
1074 * interface number.
1075 */
1076 return -ENODEV;
1077 }
1078
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001079 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1080 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -08001081 if (!xpad || !input_dev) {
1082 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001083 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001084 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001085
Daniel Mack997ea582010-04-12 13:17:25 +02001086 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1087 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -08001088 if (!xpad->idata) {
1089 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001090 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001094 if (!xpad->irq_in) {
1095 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001096 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -08001097 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001098
1099 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -07001100 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001101 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -04001102 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001103
Brian Magnuson99de0912008-04-03 16:19:23 -04001104 if (xpad->xtype == XTYPE_UNKNOWN) {
1105 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1106 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1107 xpad->xtype = XTYPE_XBOX360W;
1108 else
1109 xpad->xtype = XTYPE_XBOX360;
1110 } else
1111 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001112
1113 if (dpad_to_buttons)
1114 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1115 if (triggers_to_buttons)
1116 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -07001117 if (sticks_to_null)
1118 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -04001119 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001120
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001121 xpad->dev = input_dev;
1122 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1123 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1124
1125 input_dev->name = xpad_device[i].name;
1126 input_dev->phys = xpad->phys;
1127 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001128 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001129
1130 input_set_drvdata(input_dev, xpad);
1131
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001132 input_dev->open = xpad_open;
1133 input_dev->close = xpad_close;
1134
Christoph Fritz7beae702010-07-13 09:42:33 -07001135 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001136
Christoph Fritz7beae702010-07-13 09:42:33 -07001137 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1138 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
1139 /* set up axes */
1140 for (i = 0; xpad_abs[i] >= 0; i++)
1141 xpad_set_up_abs(input_dev, xpad_abs[i]);
1142 }
1143
1144 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001145 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001146 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001147
Christoph Fritz7beae702010-07-13 09:42:33 -07001148 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001149 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1150 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001151 for (i = 0; xpad360_btn[i] >= 0; i++)
1152 __set_bit(xpad360_btn[i], input_dev->keybit);
1153 } else {
1154 for (i = 0; xpad_btn[i] >= 0; i++)
1155 __set_bit(xpad_btn[i], input_dev->keybit);
1156 }
1157
1158 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1159 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1160 __set_bit(xpad_btn_pad[i], input_dev->keybit);
1161 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001162 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001163 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001164 }
1165
1166 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1167 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1168 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1169 } else {
1170 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1171 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1172 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001173
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001174 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001175 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001176 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001177
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001178 error = xpad_init_ff(xpad);
1179 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001180 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001181
1182 error = xpad_led_probe(xpad);
1183 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001184 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001185
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001186 /* Xbox One controller has in/out endpoints swapped. */
1187 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1188 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 usb_fill_int_urb(xpad->irq_in, udev,
1191 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1192 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1193 xpad, ep_irq_in->bInterval);
1194 xpad->irq_in->transfer_dma = xpad->idata_dma;
1195 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001196
Dmitry Torokhov50141862007-04-12 01:33:39 -04001197 error = input_register_device(xpad->dev);
1198 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001199 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001202
Brian Magnuson99de0912008-04-03 16:19:23 -04001203 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001204 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001205 * Submit the int URB immediately rather than waiting for open
1206 * because we get status messages from the device whether
1207 * or not any controllers are attached. In fact, it's
1208 * exactly the message that a controller has arrived that
1209 * we're waiting for.
1210 */
1211 xpad->irq_in->dev = xpad->udev;
1212 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1213 if (error)
Pavel Rojtberga306a652015-10-06 17:07:31 -07001214 goto fail7;
Brian Magnuson99de0912008-04-03 16:19:23 -04001215 }
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001218
Axel Lin161feb22010-11-11 21:47:42 -08001219 fail7: input_unregister_device(input_dev);
1220 input_dev = NULL;
1221 fail6: xpad_led_disconnect(xpad);
1222 fail5: if (input_dev)
1223 input_ff_destroy(input_dev);
1224 fail4: xpad_deinit_output(xpad);
1225 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001226 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001227 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001228 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001229 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233static void xpad_disconnect(struct usb_interface *intf)
1234{
1235 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001236
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001237 xpad_led_disconnect(xpad);
1238 input_unregister_device(xpad->dev);
1239 xpad_deinit_output(xpad);
1240
1241 if (xpad->xtype == XTYPE_XBOX360W) {
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001242 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001244
1245 usb_free_urb(xpad->irq_in);
1246 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1247 xpad->idata, xpad->idata_dma);
1248
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001249 kfree(xpad);
1250
1251 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
1254static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 .name = "xpad",
1256 .probe = xpad_probe,
1257 .disconnect = xpad_disconnect,
1258 .id_table = xpad_table,
1259};
1260
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001261module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263MODULE_AUTHOR(DRIVER_AUTHOR);
1264MODULE_DESCRIPTION(DRIVER_DESC);
1265MODULE_LICENSE("GPL");