blob: 5257194ef0c0d88ec0d29a27f708839c55ced5c0 [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
246
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400247static const signed short xpad360_btn[] = { /* buttons for x360 controller */
248 BTN_TL, BTN_TR, /* Button LB/RB */
249 BTN_MODE, /* The big X button */
250 -1
251};
252
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100253static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 ABS_X, ABS_Y, /* left stick */
255 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700256 -1 /* terminating entry */
257};
258
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800259/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700260static const signed short xpad_abs_pad[] = {
261 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 -1 /* terminating entry */
263};
264
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800265/* used when triggers are mapped to axes */
266static const signed short xpad_abs_triggers[] = {
267 ABS_Z, ABS_RZ, /* triggers left/right */
268 -1
269};
270
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700271/*
272 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400273 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400274 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700275 * wireless controllers have protocol 129.
276 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400277#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400278 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
279 .idVendor = (vend), \
280 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
281 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400282 .bInterfaceProtocol = (pr)
283#define XPAD_XBOX360_VENDOR(vend) \
284 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
285 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400286
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700287/* The Xbox One controller uses subclass 71 and protocol 208. */
288#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
289 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
290 .idVendor = (vend), \
291 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
292 .bInterfaceSubClass = 71, \
293 .bInterfaceProtocol = (pr)
294#define XPAD_XBOXONE_VENDOR(vend) \
295 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
296
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800297static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700299 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400300 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700301 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400302 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
303 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700304 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400305 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700306 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400307 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700308 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700309 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700310 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
311 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800312 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700313 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
314 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
315 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 { }
317};
318
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800319MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700322 struct input_dev *dev; /* input device interface */
323 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700324 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500325
Brian Magnuson99de0912008-04-03 16:19:23 -0400326 int pad_present;
327
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700328 struct urb *irq_in; /* urb for interrupt in report */
329 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500331
Brian Magnuson99de0912008-04-03 16:19:23 -0400332 struct urb *bulk_out;
333 unsigned char *bdata;
334
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400335 struct urb *irq_out; /* urb for interrupt out report */
336 unsigned char *odata; /* output data */
337 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400338 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400339
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400340#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
341 struct xpad_led *led;
342#endif
343
344 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700345
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800346 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400347 int xtype; /* type of xbox device */
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700348 unsigned long pad_nr; /* the order x360 pads were attached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349};
350
351/*
352 * xpad_process_packet
353 *
354 * Completes a request by converting the data into events for the
355 * input subsystem.
356 *
357 * The used report descriptor was taken from ITO Takayukis website:
358 * http://euc.jp/periphs/xbox-controller.ja.html
359 */
David Howells7d12e782006-10-05 14:55:46 +0100360static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500362 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Christoph Fritz7beae702010-07-13 09:42:33 -0700364 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
365 /* left stick */
366 input_report_abs(dev, ABS_X,
367 (__s16) le16_to_cpup((__le16 *)(data + 12)));
368 input_report_abs(dev, ABS_Y,
369 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500370
Christoph Fritz7beae702010-07-13 09:42:33 -0700371 /* right stick */
372 input_report_abs(dev, ABS_RX,
373 (__s16) le16_to_cpup((__le16 *)(data + 16)));
374 input_report_abs(dev, ABS_RY,
375 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
376 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800379 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
380 input_report_key(dev, BTN_TL2, data[10]);
381 input_report_key(dev, BTN_TR2, data[11]);
382 } else {
383 input_report_abs(dev, ABS_Z, data[10]);
384 input_report_abs(dev, ABS_RZ, data[11]);
385 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800388 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700389 /* dpad as buttons (left, right, up, down) */
390 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
391 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
392 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
393 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800394 } else {
395 input_report_abs(dev, ABS_HAT0X,
396 !!(data[2] & 0x08) - !!(data[2] & 0x04));
397 input_report_abs(dev, ABS_HAT0Y,
398 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700399 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700402 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700403 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700404 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
405 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* "analog" buttons A, B, X, Y */
408 input_report_key(dev, BTN_A, data[4]);
409 input_report_key(dev, BTN_B, data[5]);
410 input_report_key(dev, BTN_X, data[6]);
411 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* "analog" buttons black, white */
414 input_report_key(dev, BTN_C, data[8]);
415 input_report_key(dev, BTN_Z, data[9]);
416
417 input_sync(dev);
418}
419
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400420/*
421 * xpad360_process_packet
422 *
423 * Completes a request by converting the data into events for the
424 * input subsystem. It is version for xbox 360 controller
425 *
426 * The used report descriptor was taken from:
427 * http://www.free60.org/wiki/Gamepad
428 */
429
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400430static void xpad360_process_packet(struct usb_xpad *xpad,
431 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400432{
433 struct input_dev *dev = xpad->dev;
434
435 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800436 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700437 /* dpad as buttons (left, right, up, down) */
438 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
439 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
440 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
441 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800442 } else {
443 input_report_abs(dev, ABS_HAT0X,
444 !!(data[2] & 0x08) - !!(data[2] & 0x04));
445 input_report_abs(dev, ABS_HAT0Y,
446 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400447 }
448
449 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400450 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700451 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400452
453 /* stick press left/right */
454 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
455 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
456
457 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400458 input_report_key(dev, BTN_A, data[3] & 0x10);
459 input_report_key(dev, BTN_B, data[3] & 0x20);
460 input_report_key(dev, BTN_X, data[3] & 0x40);
461 input_report_key(dev, BTN_Y, data[3] & 0x80);
462 input_report_key(dev, BTN_TL, data[3] & 0x01);
463 input_report_key(dev, BTN_TR, data[3] & 0x02);
464 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400465
Christoph Fritz7beae702010-07-13 09:42:33 -0700466 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
467 /* left stick */
468 input_report_abs(dev, ABS_X,
469 (__s16) le16_to_cpup((__le16 *)(data + 6)));
470 input_report_abs(dev, ABS_Y,
471 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400472
Christoph Fritz7beae702010-07-13 09:42:33 -0700473 /* right stick */
474 input_report_abs(dev, ABS_RX,
475 (__s16) le16_to_cpup((__le16 *)(data + 10)));
476 input_report_abs(dev, ABS_RY,
477 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
478 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400479
480 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800481 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
482 input_report_key(dev, BTN_TL2, data[4]);
483 input_report_key(dev, BTN_TR2, data[5]);
484 } else {
485 input_report_abs(dev, ABS_Z, data[4]);
486 input_report_abs(dev, ABS_RZ, data[5]);
487 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400488
489 input_sync(dev);
490}
491
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700492static void xpad_identify_controller(struct usb_xpad *xpad);
493
Brian Magnuson99de0912008-04-03 16:19:23 -0400494/*
495 * xpad360w_process_packet
496 *
497 * Completes a request by converting the data into events for the
498 * input subsystem. It is version for xbox 360 wireless controller.
499 *
500 * Byte.Bit
501 * 00.1 - Status change: The controller or headset has connected/disconnected
502 * Bits 01.7 and 01.6 are valid
503 * 01.7 - Controller present
504 * 01.6 - Headset present
505 * 01.1 - Pad state (Bytes 4+) valid
506 *
507 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400508static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
509{
510 /* Presence change */
511 if (data[0] & 0x08) {
512 if (data[1] & 0x80) {
513 xpad->pad_present = 1;
514 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700515 /*
516 * Light up the segment corresponding to
517 * controller number.
518 */
519 xpad_identify_controller(xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -0400520 } else
521 xpad->pad_present = 0;
522 }
523
524 /* Valid pad data */
525 if (!(data[1] & 0x1))
526 return;
527
528 xpad360_process_packet(xpad, cmd, &data[4]);
529}
530
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700531/*
532 * xpadone_process_buttons
533 *
534 * Process a button update packet from an Xbox one controller.
535 */
536static void xpadone_process_buttons(struct usb_xpad *xpad,
537 struct input_dev *dev,
538 unsigned char *data)
539{
540 /* menu/view buttons */
541 input_report_key(dev, BTN_START, data[4] & 0x04);
542 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
543
544 /* buttons A,B,X,Y */
545 input_report_key(dev, BTN_A, data[4] & 0x10);
546 input_report_key(dev, BTN_B, data[4] & 0x20);
547 input_report_key(dev, BTN_X, data[4] & 0x40);
548 input_report_key(dev, BTN_Y, data[4] & 0x80);
549
550 /* digital pad */
551 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
552 /* dpad as buttons (left, right, up, down) */
553 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
554 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
555 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
556 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
557 } else {
558 input_report_abs(dev, ABS_HAT0X,
559 !!(data[5] & 0x08) - !!(data[5] & 0x04));
560 input_report_abs(dev, ABS_HAT0Y,
561 !!(data[5] & 0x02) - !!(data[5] & 0x01));
562 }
563
564 /* TL/TR */
565 input_report_key(dev, BTN_TL, data[5] & 0x10);
566 input_report_key(dev, BTN_TR, data[5] & 0x20);
567
568 /* stick press left/right */
569 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
570 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
571
572 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
573 /* left stick */
574 input_report_abs(dev, ABS_X,
575 (__s16) le16_to_cpup((__le16 *)(data + 10)));
576 input_report_abs(dev, ABS_Y,
577 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
578
579 /* right stick */
580 input_report_abs(dev, ABS_RX,
581 (__s16) le16_to_cpup((__le16 *)(data + 14)));
582 input_report_abs(dev, ABS_RY,
583 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
584 }
585
586 /* triggers left/right */
587 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
588 input_report_key(dev, BTN_TL2,
589 (__u16) le16_to_cpup((__le16 *)(data + 6)));
590 input_report_key(dev, BTN_TR2,
591 (__u16) le16_to_cpup((__le16 *)(data + 8)));
592 } else {
593 input_report_abs(dev, ABS_Z,
594 (__u16) le16_to_cpup((__le16 *)(data + 6)));
595 input_report_abs(dev, ABS_RZ,
596 (__u16) le16_to_cpup((__le16 *)(data + 8)));
597 }
598
599 input_sync(dev);
600}
601
602/*
603 * xpadone_process_packet
604 *
605 * Completes a request by converting the data into events for the
606 * input subsystem. This version is for the Xbox One controller.
607 *
608 * The report format was gleaned from
609 * https://github.com/kylelemons/xbox/blob/master/xbox.go
610 */
611
612static void xpadone_process_packet(struct usb_xpad *xpad,
613 u16 cmd, unsigned char *data)
614{
615 struct input_dev *dev = xpad->dev;
616
617 switch (data[0]) {
618 case 0x20:
619 xpadone_process_buttons(xpad, dev, data);
620 break;
621
622 case 0x07:
623 /* the xbox button has its own special report */
624 input_report_key(dev, BTN_MODE, data[4] & 0x01);
625 input_sync(dev);
626 break;
627 }
628}
629
David Howells7d12e782006-10-05 14:55:46 +0100630static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700633 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200634 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500635
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200636 status = urb->status;
637
638 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 case 0:
640 /* success */
641 break;
642 case -ECONNRESET:
643 case -ENOENT:
644 case -ESHUTDOWN:
645 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700646 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400647 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return;
649 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700650 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400651 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto exit;
653 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500654
Brian Magnuson99de0912008-04-03 16:19:23 -0400655 switch (xpad->xtype) {
656 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400657 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400658 break;
659 case XTYPE_XBOX360W:
660 xpad360w_process_packet(xpad, 0, xpad->idata);
661 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700662 case XTYPE_XBOXONE:
663 xpadone_process_packet(xpad, 0, xpad->idata);
664 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400665 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400666 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800670 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700672 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700673 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Dmitry Torokhov20430212008-04-27 00:10:11 -0400676static void xpad_bulk_out(struct urb *urb)
677{
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700678 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700679 struct device *dev = &xpad->intf->dev;
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700680
Dmitry Torokhov20430212008-04-27 00:10:11 -0400681 switch (urb->status) {
682 case 0:
683 /* success */
684 break;
685 case -ECONNRESET:
686 case -ENOENT:
687 case -ESHUTDOWN:
688 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700689 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
690 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400691 break;
692 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700693 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
694 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400695 }
696}
697
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400698static void xpad_irq_out(struct urb *urb)
699{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700700 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700701 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200702 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400703
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200704 status = urb->status;
705
706 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700707 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400708 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700709 return;
710
711 case -ECONNRESET:
712 case -ENOENT:
713 case -ESHUTDOWN:
714 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700715 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
716 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700717 return;
718
719 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700720 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
721 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700722 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400723 }
724
725exit:
726 retval = usb_submit_urb(urb, GFP_ATOMIC);
727 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700728 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700729 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400730}
731
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400732static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
733{
734 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700735 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800736 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400737
Chris Moellerb514d4f2011-07-04 19:21:59 -0700738 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400739 return 0;
740
Daniel Mack997ea582010-04-12 13:17:25 +0200741 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
742 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800743 if (!xpad->odata) {
744 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400745 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800746 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400747
748 mutex_init(&xpad->odata_mutex);
749
750 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800751 if (!xpad->irq_out) {
752 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400753 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800754 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400755
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700756 /* Xbox One controller has in/out endpoints swapped. */
757 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
758 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
759
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400760 usb_fill_int_urb(xpad->irq_out, xpad->udev,
761 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
762 xpad->odata, XPAD_PKT_LEN,
763 xpad_irq_out, xpad, ep_irq_out->bInterval);
764 xpad->irq_out->transfer_dma = xpad->odata_dma;
765 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
766
767 return 0;
768
Daniel Mack997ea582010-04-12 13:17:25 +0200769 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400770 fail1: return error;
771}
772
773static void xpad_stop_output(struct usb_xpad *xpad)
774{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700775 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400776 usb_kill_urb(xpad->irq_out);
777}
778
779static void xpad_deinit_output(struct usb_xpad *xpad)
780{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700781 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400782 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200783 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400784 xpad->odata, xpad->odata_dma);
785 }
786}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400787
788#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800789static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400790{
791 struct usb_xpad *xpad = input_get_drvdata(dev);
792
793 if (effect->type == FF_RUMBLE) {
794 __u16 strong = effect->u.rumble.strong_magnitude;
795 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800796
797 switch (xpad->xtype) {
798
799 case XTYPE_XBOX:
800 xpad->odata[0] = 0x00;
801 xpad->odata[1] = 0x06;
802 xpad->odata[2] = 0x00;
803 xpad->odata[3] = strong / 256; /* left actuator */
804 xpad->odata[4] = 0x00;
805 xpad->odata[5] = weak / 256; /* right actuator */
806 xpad->irq_out->transfer_buffer_length = 6;
807
808 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
809
810 case XTYPE_XBOX360:
811 xpad->odata[0] = 0x00;
812 xpad->odata[1] = 0x08;
813 xpad->odata[2] = 0x00;
814 xpad->odata[3] = strong / 256; /* left actuator? */
815 xpad->odata[4] = weak / 256; /* right actuator? */
816 xpad->odata[5] = 0x00;
817 xpad->odata[6] = 0x00;
818 xpad->odata[7] = 0x00;
819 xpad->irq_out->transfer_buffer_length = 8;
820
821 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
822
Chris Moellerb514d4f2011-07-04 19:21:59 -0700823 case XTYPE_XBOX360W:
824 xpad->odata[0] = 0x00;
825 xpad->odata[1] = 0x01;
826 xpad->odata[2] = 0x0F;
827 xpad->odata[3] = 0xC0;
828 xpad->odata[4] = 0x00;
829 xpad->odata[5] = strong / 256;
830 xpad->odata[6] = weak / 256;
831 xpad->odata[7] = 0x00;
832 xpad->odata[8] = 0x00;
833 xpad->odata[9] = 0x00;
834 xpad->odata[10] = 0x00;
835 xpad->odata[11] = 0x00;
836 xpad->irq_out->transfer_buffer_length = 12;
837
838 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
839
Ming-ting Yao Wei06049492015-04-14 16:59:11 -0700840 case XTYPE_XBOXONE:
841 xpad->odata[0] = 0x09; /* activate rumble */
842 xpad->odata[1] = 0x08;
843 xpad->odata[2] = 0x00;
844 xpad->odata[3] = 0x08; /* continuous effect */
845 xpad->odata[4] = 0x00; /* simple rumble mode */
846 xpad->odata[5] = 0x03; /* L and R actuator only */
847 xpad->odata[6] = 0x00; /* TODO: LT actuator */
848 xpad->odata[7] = 0x00; /* TODO: RT actuator */
849 xpad->odata[8] = strong / 256; /* left actuator */
850 xpad->odata[9] = weak / 256; /* right actuator */
851 xpad->odata[10] = 0x80; /* length of pulse */
852 xpad->odata[11] = 0x00; /* stop period of pulse */
853 xpad->irq_out->transfer_buffer_length = 12;
854
855 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
856
Benjamin Valentin12187302010-01-21 20:19:06 -0800857 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700858 dev_dbg(&xpad->dev->dev,
859 "%s - rumble command sent to unsupported xpad type: %d\n",
Benjamin Valentin12187302010-01-21 20:19:06 -0800860 __func__, xpad->xtype);
861 return -1;
862 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400863 }
864
865 return 0;
866}
867
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400868static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400869{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -0700870 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400871 return 0;
872
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400873 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
874
875 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
876}
877
878#else
879static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
880#endif
881
882#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
883#include <linux/leds.h>
884
885struct xpad_led {
886 char name[16];
887 struct led_classdev led_cdev;
888 struct usb_xpad *xpad;
889};
890
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700891/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700892 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700893 * @param command
894 * 0: off
895 * 1: all blink, then previous setting
896 * 2: 1/top-left blink, then on
897 * 3: 2/top-right blink, then on
898 * 4: 3/bottom-left blink, then on
899 * 5: 4/bottom-right blink, then on
900 * 6: 1/top-left on
901 * 7: 2/top-right on
902 * 8: 3/bottom-left on
903 * 9: 4/bottom-right on
904 * 10: rotate
905 * 11: blink, based on previous setting
906 * 12: slow blink, based on previous setting
907 * 13: rotate with two lights
908 * 14: persistent slow all blink
909 * 15: blink once, then previous setting
910 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400911static void xpad_send_led_command(struct usb_xpad *xpad, int command)
912{
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700913 command %= 16;
914
915 mutex_lock(&xpad->odata_mutex);
916
917 switch (xpad->xtype) {
918 case XTYPE_XBOX360:
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400919 xpad->odata[0] = 0x01;
920 xpad->odata[1] = 0x03;
921 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400922 xpad->irq_out->transfer_buffer_length = 3;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700923 break;
924 case XTYPE_XBOX360W:
925 xpad->odata[0] = 0x00;
926 xpad->odata[1] = 0x00;
927 xpad->odata[2] = 0x08;
928 xpad->odata[3] = 0x40 + command;
929 xpad->odata[4] = 0x00;
930 xpad->odata[5] = 0x00;
931 xpad->odata[6] = 0x00;
932 xpad->odata[7] = 0x00;
933 xpad->odata[8] = 0x00;
934 xpad->odata[9] = 0x00;
935 xpad->odata[10] = 0x00;
936 xpad->odata[11] = 0x00;
937 xpad->irq_out->transfer_buffer_length = 12;
938 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400939 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700940
941 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
942 mutex_unlock(&xpad->odata_mutex);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400943}
944
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700945/*
946 * Light up the segment corresponding to the pad number on
947 * Xbox 360 Controllers.
948 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700949static void xpad_identify_controller(struct usb_xpad *xpad)
950{
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700951 xpad_send_led_command(xpad, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700952}
953
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400954static void xpad_led_set(struct led_classdev *led_cdev,
955 enum led_brightness value)
956{
957 struct xpad_led *xpad_led = container_of(led_cdev,
958 struct xpad_led, led_cdev);
959
960 xpad_send_led_command(xpad_led->xpad, value);
961}
962
963static int xpad_led_probe(struct usb_xpad *xpad)
964{
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700965 static atomic_t led_seq = ATOMIC_INIT(-1);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400966 struct xpad_led *led;
967 struct led_classdev *led_cdev;
968 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400969
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700970 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400971 return 0;
972
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400973 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
974 if (!led)
975 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400976
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700977 xpad->pad_nr = atomic_inc_return(&led_seq);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400978
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700979 snprintf(led->name, sizeof(led->name), "xpad%lu", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400980 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400981
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400982 led_cdev = &led->led_cdev;
983 led_cdev->name = led->name;
984 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400985
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400986 error = led_classdev_register(&xpad->udev->dev, led_cdev);
987 if (error) {
988 kfree(led);
989 xpad->led = NULL;
990 return error;
991 }
992
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700993 /* Light up the segment corresponding to controller number */
994 xpad_identify_controller(xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400995
996 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400997}
998
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400999static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001000{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001001 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001002
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001003 if (xpad_led) {
1004 led_classdev_unregister(&xpad_led->led_cdev);
Axel Lin6ff92a62010-11-11 21:43:17 -08001005 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001006 }
1007}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001008#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001009static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1010static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001011static void xpad_identify_controller(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001012#endif
1013
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001014
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001015static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001017 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001018
Brian Magnuson99de0912008-04-03 16:19:23 -04001019 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -08001020 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001021 return 0;
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -05001024 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001026
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001027 if (xpad->xtype == XTYPE_XBOXONE) {
1028 /* Xbox one controller needs to be initialized. */
1029 xpad->odata[0] = 0x05;
1030 xpad->odata[1] = 0x20;
1031 xpad->irq_out->transfer_buffer_length = 2;
1032 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
1033 }
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return 0;
1036}
1037
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001038static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001040 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001041
Axel Lin161feb22010-11-11 21:47:42 -08001042 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001043 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -08001044
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001045 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001048static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1049{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001050 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001051 set_bit(abs, input_dev->absbit);
1052
1053 switch (abs) {
1054 case ABS_X:
1055 case ABS_Y:
1056 case ABS_RX:
1057 case ABS_RY: /* the two sticks */
1058 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1059 break;
1060 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001061 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001062 if (xpad->xtype == XTYPE_XBOXONE)
1063 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1064 else
1065 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001066 break;
1067 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001068 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001069 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1070 break;
1071 }
1072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1075{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -04001076 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001077 struct usb_xpad *xpad;
1078 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct usb_endpoint_descriptor *ep_irq_in;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001080 int ep_irq_in_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -08001081 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 for (i = 0; xpad_device[i].idVendor; i++) {
1084 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1085 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1086 break;
1087 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001088
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001089 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1090 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1091 /*
1092 * The Xbox One controller lists three interfaces all with the
1093 * same interface class, subclass and protocol. Differentiate by
1094 * interface number.
1095 */
1096 return -ENODEV;
1097 }
1098
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001099 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1100 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -08001101 if (!xpad || !input_dev) {
1102 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001103 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001104 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001105
Daniel Mack997ea582010-04-12 13:17:25 +02001106 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1107 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -08001108 if (!xpad->idata) {
1109 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001110 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001114 if (!xpad->irq_in) {
1115 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001116 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -08001117 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001118
1119 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -07001120 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001121 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -04001122 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001123
Brian Magnuson99de0912008-04-03 16:19:23 -04001124 if (xpad->xtype == XTYPE_UNKNOWN) {
1125 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1126 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1127 xpad->xtype = XTYPE_XBOX360W;
1128 else
1129 xpad->xtype = XTYPE_XBOX360;
1130 } else
1131 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001132
1133 if (dpad_to_buttons)
1134 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1135 if (triggers_to_buttons)
1136 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -07001137 if (sticks_to_null)
1138 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -04001139 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001140
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001141 xpad->dev = input_dev;
1142 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1143 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1144
1145 input_dev->name = xpad_device[i].name;
1146 input_dev->phys = xpad->phys;
1147 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001148 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001149
1150 input_set_drvdata(input_dev, xpad);
1151
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001152 input_dev->open = xpad_open;
1153 input_dev->close = xpad_close;
1154
Christoph Fritz7beae702010-07-13 09:42:33 -07001155 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001156
Christoph Fritz7beae702010-07-13 09:42:33 -07001157 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1158 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
1159 /* set up axes */
1160 for (i = 0; xpad_abs[i] >= 0; i++)
1161 xpad_set_up_abs(input_dev, xpad_abs[i]);
1162 }
1163
1164 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001165 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001166 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001167
Christoph Fritz7beae702010-07-13 09:42:33 -07001168 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001169 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1170 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001171 for (i = 0; xpad360_btn[i] >= 0; i++)
1172 __set_bit(xpad360_btn[i], input_dev->keybit);
1173 } else {
1174 for (i = 0; xpad_btn[i] >= 0; i++)
1175 __set_bit(xpad_btn[i], input_dev->keybit);
1176 }
1177
1178 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1179 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1180 __set_bit(xpad_btn_pad[i], input_dev->keybit);
1181 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001182 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001183 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001184 }
1185
1186 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1187 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1188 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1189 } else {
1190 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1191 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1192 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001193
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001194 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001195 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001196 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001197
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001198 error = xpad_init_ff(xpad);
1199 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001200 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001201
1202 error = xpad_led_probe(xpad);
1203 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001204 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001205
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001206 /* Xbox One controller has in/out endpoints swapped. */
1207 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1208 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 usb_fill_int_urb(xpad->irq_in, udev,
1211 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1212 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1213 xpad, ep_irq_in->bInterval);
1214 xpad->irq_in->transfer_dma = xpad->idata_dma;
1215 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001216
Dmitry Torokhov50141862007-04-12 01:33:39 -04001217 error = input_register_device(xpad->dev);
1218 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001219 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001222
Brian Magnuson99de0912008-04-03 16:19:23 -04001223 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001224 /*
1225 * Setup the message to set the LEDs on the
1226 * controller when it shows up
1227 */
1228 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001229 if (!xpad->bulk_out) {
1230 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001231 goto fail7;
Axel Lin49cc69b2010-11-11 21:39:11 -08001232 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001233
1234 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001235 if (!xpad->bdata) {
1236 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001237 goto fail8;
Axel Lin49cc69b2010-11-11 21:39:11 -08001238 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001239
1240 xpad->bdata[2] = 0x08;
1241 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
1242 case 0:
1243 xpad->bdata[3] = 0x42;
1244 break;
1245 case 2:
1246 xpad->bdata[3] = 0x43;
1247 break;
1248 case 4:
1249 xpad->bdata[3] = 0x44;
1250 break;
1251 case 6:
1252 xpad->bdata[3] = 0x45;
1253 }
1254
1255 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
Greg Kroah-Hartmana1f9a402014-11-25 00:38:17 -08001256 if (usb_endpoint_is_bulk_out(ep_irq_in)) {
1257 usb_fill_bulk_urb(xpad->bulk_out, udev,
1258 usb_sndbulkpipe(udev,
1259 ep_irq_in->bEndpointAddress),
1260 xpad->bdata, XPAD_PKT_LEN,
1261 xpad_bulk_out, xpad);
1262 } else {
1263 usb_fill_int_urb(xpad->bulk_out, udev,
1264 usb_sndintpipe(udev,
1265 ep_irq_in->bEndpointAddress),
1266 xpad->bdata, XPAD_PKT_LEN,
1267 xpad_bulk_out, xpad, 0);
1268 }
Axel Line3f0f0a2010-11-17 23:59:34 -08001269
1270 /*
1271 * Submit the int URB immediately rather than waiting for open
1272 * because we get status messages from the device whether
1273 * or not any controllers are attached. In fact, it's
1274 * exactly the message that a controller has arrived that
1275 * we're waiting for.
1276 */
1277 xpad->irq_in->dev = xpad->udev;
1278 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1279 if (error)
1280 goto fail9;
Brian Magnuson99de0912008-04-03 16:19:23 -04001281 }
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001284
Axel Line3f0f0a2010-11-17 23:59:34 -08001285 fail9: kfree(xpad->bdata);
1286 fail8: usb_free_urb(xpad->bulk_out);
Axel Lin161feb22010-11-11 21:47:42 -08001287 fail7: input_unregister_device(input_dev);
1288 input_dev = NULL;
1289 fail6: xpad_led_disconnect(xpad);
1290 fail5: if (input_dev)
1291 input_ff_destroy(input_dev);
1292 fail4: xpad_deinit_output(xpad);
1293 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001294 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001295 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001296 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001297 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301static void xpad_disconnect(struct usb_interface *intf)
1302{
1303 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001304
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001305 xpad_led_disconnect(xpad);
1306 input_unregister_device(xpad->dev);
1307 xpad_deinit_output(xpad);
1308
1309 if (xpad->xtype == XTYPE_XBOX360W) {
1310 usb_kill_urb(xpad->bulk_out);
1311 usb_free_urb(xpad->bulk_out);
1312 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001314
1315 usb_free_urb(xpad->irq_in);
1316 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1317 xpad->idata, xpad->idata_dma);
1318
1319 kfree(xpad->bdata);
1320 kfree(xpad);
1321
1322 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
1325static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .name = "xpad",
1327 .probe = xpad_probe,
1328 .disconnect = xpad_disconnect,
1329 .id_table = xpad_table,
1330};
1331
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001332module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334MODULE_AUTHOR(DRIVER_AUTHOR);
1335MODULE_DESCRIPTION(DRIVER_DESC);
1336MODULE_LICENSE("GPL");