blob: d601983477048af36760b7a6582704a12f7dfe69 [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>
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -080079#include <linux/input.h>
80#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070082#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070084#include <linux/usb/input.h>
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -080085#include <linux/usb/quirks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
88#define DRIVER_DESC "X-Box pad driver"
89
90#define XPAD_PKT_LEN 32
91
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070092/* xbox d-pads should map to buttons, as is required for DDR pads
93 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080094#define MAP_DPAD_TO_BUTTONS (1 << 0)
95#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070096#define MAP_STICKS_TO_NULL (1 << 2)
97#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
98 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070099
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400100#define XTYPE_XBOX 0
101#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -0400102#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700103#define XTYPE_XBOXONE 3
104#define XTYPE_UNKNOWN 4
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400105
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030106static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700107module_param(dpad_to_buttons, bool, S_IRUGO);
108MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
109
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030110static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800111module_param(triggers_to_buttons, bool, S_IRUGO);
112MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
113
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030114static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700115module_param(sticks_to_null, bool, S_IRUGO);
116MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
117
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100118static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 u16 idVendor;
120 u16 idProduct;
121 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800122 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400123 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800125 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800126 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
127 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800128 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
129 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700130 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Pavel Rojtberg95162dc2016-01-12 14:35:51 -0800131 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Firmware 2015)", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800132 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400133 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800134 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700135 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800136 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700137 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800138 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800139 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
140 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
141 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
142 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
143 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
144 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
145 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
146 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
147 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400148 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800149 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
150 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700151 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
152 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700153 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800154 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700155 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Silvan Jegend63b0f02016-03-17 17:15:01 -0700156 { 0x0738, 0x4a01, "Mad Catz FightStick TE 2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400157 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700158 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800159 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700160 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
161 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
162 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800163 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800164 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800165 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
166 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
167 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700168 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800169 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
170 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
171 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
172 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
173 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800174 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700175 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700176 { 0x0e6f, 0x0139, "Afterglow Prismatic Wired Controller", 0, XTYPE_XBOXONE },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700177 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800178 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700179 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700180 { 0x0e6f, 0x0146, "Rock Candy Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700181 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
182 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800183 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700184 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
185 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800186 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
187 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700188 { 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800189 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
190 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
191 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700192 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700193 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800194 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800195 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400196 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800197 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700198 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
199 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
200 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
201 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
202 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800203 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
204 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700205 { 0x24c6, 0x542a, "Xbox ONE spectra", 0, XTYPE_XBOXONE },
Frank Razenberga7b44732014-09-08 11:32:20 -0700206 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700207 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700208 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800209 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700210 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800211 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700212 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
213 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800214 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
215 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700216 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800217 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700218 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700219 { 0x24c6, 0x541a, "PowerA Xbox One Mini Wired Controller", 0, XTYPE_XBOXONE },
220 { 0x24c6, 0x543a, "PowerA Xbox One wired controller", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700221 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
222 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
223 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
224 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700225 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800226 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
227 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Anssi Hannulafc55e952008-04-03 16:18:44 -0400230/* buttons shared with xbox and xbox360 */
231static const signed short xpad_common_btn[] = {
232 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700233 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 -1 /* terminating entry */
235};
236
Anssi Hannulafc55e952008-04-03 16:18:44 -0400237/* original xbox controllers only */
238static const signed short xpad_btn[] = {
239 BTN_C, BTN_Z, /* "analog" buttons */
240 -1 /* terminating entry */
241};
242
Christoph Fritz7beae702010-07-13 09:42:33 -0700243/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700244static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700245 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
246 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700247 -1 /* terminating entry */
248};
249
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800250/* used when triggers are mapped to buttons */
251static const signed short xpad_btn_triggers[] = {
252 BTN_TL2, BTN_TR2, /* triggers left/right */
253 -1
254};
255
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400256static const signed short xpad360_btn[] = { /* buttons for x360 controller */
257 BTN_TL, BTN_TR, /* Button LB/RB */
258 BTN_MODE, /* The big X button */
259 -1
260};
261
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100262static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 ABS_X, ABS_Y, /* left stick */
264 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700265 -1 /* terminating entry */
266};
267
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800268/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700269static const signed short xpad_abs_pad[] = {
270 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 -1 /* terminating entry */
272};
273
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800274/* used when triggers are mapped to axes */
275static const signed short xpad_abs_triggers[] = {
276 ABS_Z, ABS_RZ, /* triggers left/right */
277 -1
278};
279
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700280/*
281 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400282 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400283 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700284 * wireless controllers have protocol 129.
285 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400286#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400287 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
288 .idVendor = (vend), \
289 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
290 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400291 .bInterfaceProtocol = (pr)
292#define XPAD_XBOX360_VENDOR(vend) \
293 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
294 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400295
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700296/* The Xbox One controller uses subclass 71 and protocol 208. */
297#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
298 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
299 .idVendor = (vend), \
300 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
301 .bInterfaceSubClass = 71, \
302 .bInterfaceProtocol = (pr)
303#define XPAD_XBOXONE_VENDOR(vend) \
304 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
305
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800306static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700308 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400309 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700310 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400311 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
312 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700313 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Silvan Jegend63b0f02016-03-17 17:15:01 -0700314 XPAD_XBOXONE_VENDOR(0x0738), /* Mad Catz FightStick TE 2 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400315 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700316 XPAD_XBOXONE_VENDOR(0x0e6f), /* 0x0e6f X-Box One controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700317 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400318 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700319 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700320 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700321 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700322 XPAD_XBOXONE_VENDOR(0x0f0d), /* Hori Controllers */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700323 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800324 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700325 XPAD_XBOXONE_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700326 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
327 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
328 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 { }
330};
331
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800332MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800334struct xpad_output_packet {
335 u8 data[XPAD_PKT_LEN];
336 u8 len;
337 bool pending;
338};
339
340#define XPAD_OUT_CMD_IDX 0
341#define XPAD_OUT_FF_IDX 1
342#define XPAD_OUT_LED_IDX (1 + IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF))
343#define XPAD_NUM_OUT_PACKETS (1 + \
344 IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF) + \
345 IS_ENABLED(CONFIG_JOYSTICK_XPAD_LEDS))
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700348 struct input_dev *dev; /* input device interface */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800349 struct input_dev __rcu *x360w_dev;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700350 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700351 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500352
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800353 bool pad_present;
354 bool input_created;
Brian Magnuson99de0912008-04-03 16:19:23 -0400355
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700356 struct urb *irq_in; /* urb for interrupt in report */
357 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500359
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400360 struct urb *irq_out; /* urb for interrupt out report */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800361 struct usb_anchor irq_out_anchor;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800362 bool irq_out_active; /* we must not use an active URB */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800363 u8 odata_serial; /* serial number for xbox one protocol */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800364 unsigned char *odata; /* output data */
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400365 dma_addr_t odata_dma;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800366 spinlock_t odata_lock;
367
368 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS];
369 int last_out_packet;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400370
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400371#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
372 struct xpad_led *led;
373#endif
374
375 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700376
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800377 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400378 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700379 int pad_nr; /* the order x360 pads were attached */
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -0700380 const char *name; /* name of the device */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800381 struct work_struct work; /* init/remove device from callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382};
383
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800384static int xpad_init_input(struct usb_xpad *xpad);
385static void xpad_deinit_input(struct usb_xpad *xpad);
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
388 * xpad_process_packet
389 *
390 * Completes a request by converting the data into events for the
391 * input subsystem.
392 *
393 * The used report descriptor was taken from ITO Takayukis website:
394 * http://euc.jp/periphs/xbox-controller.ja.html
395 */
David Howells7d12e782006-10-05 14:55:46 +0100396static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500398 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Christoph Fritz7beae702010-07-13 09:42:33 -0700400 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
401 /* left stick */
402 input_report_abs(dev, ABS_X,
403 (__s16) le16_to_cpup((__le16 *)(data + 12)));
404 input_report_abs(dev, ABS_Y,
405 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500406
Christoph Fritz7beae702010-07-13 09:42:33 -0700407 /* right stick */
408 input_report_abs(dev, ABS_RX,
409 (__s16) le16_to_cpup((__le16 *)(data + 16)));
410 input_report_abs(dev, ABS_RY,
411 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
412 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800415 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
416 input_report_key(dev, BTN_TL2, data[10]);
417 input_report_key(dev, BTN_TR2, data[11]);
418 } else {
419 input_report_abs(dev, ABS_Z, data[10]);
420 input_report_abs(dev, ABS_RZ, data[11]);
421 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800424 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700425 /* dpad as buttons (left, right, up, down) */
426 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
427 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
428 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
429 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800430 } else {
431 input_report_abs(dev, ABS_HAT0X,
432 !!(data[2] & 0x08) - !!(data[2] & 0x04));
433 input_report_abs(dev, ABS_HAT0Y,
434 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700435 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700438 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700439 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700440 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
441 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* "analog" buttons A, B, X, Y */
444 input_report_key(dev, BTN_A, data[4]);
445 input_report_key(dev, BTN_B, data[5]);
446 input_report_key(dev, BTN_X, data[6]);
447 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* "analog" buttons black, white */
450 input_report_key(dev, BTN_C, data[8]);
451 input_report_key(dev, BTN_Z, data[9]);
452
453 input_sync(dev);
454}
455
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400456/*
457 * xpad360_process_packet
458 *
459 * Completes a request by converting the data into events for the
460 * input subsystem. It is version for xbox 360 controller
461 *
462 * The used report descriptor was taken from:
463 * http://www.free60.org/wiki/Gamepad
464 */
465
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800466static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400467 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400468{
Cameron Gutman1ff5fa32016-05-27 16:23:50 -0700469 /* valid pad data */
470 if (data[0] != 0x00)
471 return;
472
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400473 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800474 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700475 /* dpad as buttons (left, right, up, down) */
476 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
477 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
478 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
479 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -0700480 }
481
482 /*
483 * This should be a simple else block. However historically
484 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
485 * made no sense, but now we can not just switch back and have to
486 * support both behaviors.
487 */
488 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
489 xpad->xtype == XTYPE_XBOX360W) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800490 input_report_abs(dev, ABS_HAT0X,
491 !!(data[2] & 0x08) - !!(data[2] & 0x04));
492 input_report_abs(dev, ABS_HAT0Y,
493 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400494 }
495
496 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400497 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700498 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400499
500 /* stick press left/right */
501 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
502 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
503
504 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400505 input_report_key(dev, BTN_A, data[3] & 0x10);
506 input_report_key(dev, BTN_B, data[3] & 0x20);
507 input_report_key(dev, BTN_X, data[3] & 0x40);
508 input_report_key(dev, BTN_Y, data[3] & 0x80);
509 input_report_key(dev, BTN_TL, data[3] & 0x01);
510 input_report_key(dev, BTN_TR, data[3] & 0x02);
511 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400512
Christoph Fritz7beae702010-07-13 09:42:33 -0700513 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
514 /* left stick */
515 input_report_abs(dev, ABS_X,
516 (__s16) le16_to_cpup((__le16 *)(data + 6)));
517 input_report_abs(dev, ABS_Y,
518 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400519
Christoph Fritz7beae702010-07-13 09:42:33 -0700520 /* right stick */
521 input_report_abs(dev, ABS_RX,
522 (__s16) le16_to_cpup((__le16 *)(data + 10)));
523 input_report_abs(dev, ABS_RY,
524 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
525 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400526
527 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800528 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
529 input_report_key(dev, BTN_TL2, data[4]);
530 input_report_key(dev, BTN_TR2, data[5]);
531 } else {
532 input_report_abs(dev, ABS_Z, data[4]);
533 input_report_abs(dev, ABS_RZ, data[5]);
534 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400535
536 input_sync(dev);
537}
538
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800539static void xpad_presence_work(struct work_struct *work)
540{
541 struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
542 int error;
543
544 if (xpad->pad_present) {
545 error = xpad_init_input(xpad);
546 if (error) {
547 /* complain only, not much else we can do here */
548 dev_err(&xpad->dev->dev,
549 "unable to init device: %d\n", error);
550 } else {
551 rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
552 }
553 } else {
554 RCU_INIT_POINTER(xpad->x360w_dev, NULL);
555 synchronize_rcu();
556 /*
557 * Now that we are sure xpad360w_process_packet is not
558 * using input device we can get rid of it.
559 */
560 xpad_deinit_input(xpad);
561 }
562}
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700563
Brian Magnuson99de0912008-04-03 16:19:23 -0400564/*
565 * xpad360w_process_packet
566 *
567 * Completes a request by converting the data into events for the
568 * input subsystem. It is version for xbox 360 wireless controller.
569 *
570 * Byte.Bit
571 * 00.1 - Status change: The controller or headset has connected/disconnected
572 * Bits 01.7 and 01.6 are valid
573 * 01.7 - Controller present
574 * 01.6 - Headset present
575 * 01.1 - Pad state (Bytes 4+) valid
576 *
577 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400578static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
579{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800580 struct input_dev *dev;
581 bool present;
582
Brian Magnuson99de0912008-04-03 16:19:23 -0400583 /* Presence change */
584 if (data[0] & 0x08) {
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800585 present = (data[1] & 0x80) != 0;
586
587 if (xpad->pad_present != present) {
588 xpad->pad_present = present;
589 schedule_work(&xpad->work);
590 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400591 }
592
593 /* Valid pad data */
Clement Calmels93a017a2015-12-12 21:20:11 -0800594 if (data[1] != 0x1)
Brian Magnuson99de0912008-04-03 16:19:23 -0400595 return;
596
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800597 rcu_read_lock();
598 dev = rcu_dereference(xpad->x360w_dev);
599 if (dev)
600 xpad360_process_packet(xpad, dev, cmd, &data[4]);
601 rcu_read_unlock();
Brian Magnuson99de0912008-04-03 16:19:23 -0400602}
603
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700604/*
605 * xpadone_process_buttons
606 *
607 * Process a button update packet from an Xbox one controller.
608 */
609static void xpadone_process_buttons(struct usb_xpad *xpad,
610 struct input_dev *dev,
611 unsigned char *data)
612{
613 /* menu/view buttons */
614 input_report_key(dev, BTN_START, data[4] & 0x04);
615 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
616
617 /* buttons A,B,X,Y */
618 input_report_key(dev, BTN_A, data[4] & 0x10);
619 input_report_key(dev, BTN_B, data[4] & 0x20);
620 input_report_key(dev, BTN_X, data[4] & 0x40);
621 input_report_key(dev, BTN_Y, data[4] & 0x80);
622
623 /* digital pad */
624 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
625 /* dpad as buttons (left, right, up, down) */
626 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
627 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
628 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
629 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
630 } else {
631 input_report_abs(dev, ABS_HAT0X,
632 !!(data[5] & 0x08) - !!(data[5] & 0x04));
633 input_report_abs(dev, ABS_HAT0Y,
634 !!(data[5] & 0x02) - !!(data[5] & 0x01));
635 }
636
637 /* TL/TR */
638 input_report_key(dev, BTN_TL, data[5] & 0x10);
639 input_report_key(dev, BTN_TR, data[5] & 0x20);
640
641 /* stick press left/right */
642 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
643 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
644
645 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
646 /* left stick */
647 input_report_abs(dev, ABS_X,
648 (__s16) le16_to_cpup((__le16 *)(data + 10)));
649 input_report_abs(dev, ABS_Y,
650 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
651
652 /* right stick */
653 input_report_abs(dev, ABS_RX,
654 (__s16) le16_to_cpup((__le16 *)(data + 14)));
655 input_report_abs(dev, ABS_RY,
656 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
657 }
658
659 /* triggers left/right */
660 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
661 input_report_key(dev, BTN_TL2,
662 (__u16) le16_to_cpup((__le16 *)(data + 6)));
663 input_report_key(dev, BTN_TR2,
664 (__u16) le16_to_cpup((__le16 *)(data + 8)));
665 } else {
666 input_report_abs(dev, ABS_Z,
667 (__u16) le16_to_cpup((__le16 *)(data + 6)));
668 input_report_abs(dev, ABS_RZ,
669 (__u16) le16_to_cpup((__le16 *)(data + 8)));
670 }
671
672 input_sync(dev);
673}
674
675/*
676 * xpadone_process_packet
677 *
678 * Completes a request by converting the data into events for the
679 * input subsystem. This version is for the Xbox One controller.
680 *
681 * The report format was gleaned from
682 * https://github.com/kylelemons/xbox/blob/master/xbox.go
683 */
684
685static void xpadone_process_packet(struct usb_xpad *xpad,
686 u16 cmd, unsigned char *data)
687{
688 struct input_dev *dev = xpad->dev;
689
690 switch (data[0]) {
691 case 0x20:
692 xpadone_process_buttons(xpad, dev, data);
693 break;
694
695 case 0x07:
696 /* the xbox button has its own special report */
697 input_report_key(dev, BTN_MODE, data[4] & 0x01);
698 input_sync(dev);
699 break;
700 }
701}
702
David Howells7d12e782006-10-05 14:55:46 +0100703static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700706 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200707 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500708
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200709 status = urb->status;
710
711 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 case 0:
713 /* success */
714 break;
715 case -ECONNRESET:
716 case -ENOENT:
717 case -ESHUTDOWN:
718 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700719 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400720 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return;
722 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700723 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400724 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 goto exit;
726 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500727
Brian Magnuson99de0912008-04-03 16:19:23 -0400728 switch (xpad->xtype) {
729 case XTYPE_XBOX360:
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800730 xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400731 break;
732 case XTYPE_XBOX360W:
733 xpad360w_process_packet(xpad, 0, xpad->idata);
734 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700735 case XTYPE_XBOXONE:
736 xpadone_process_packet(xpad, 0, xpad->idata);
737 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400738 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400739 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800743 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700745 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700746 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800749/* Callers must hold xpad->odata_lock spinlock */
750static bool xpad_prepare_next_out_packet(struct usb_xpad *xpad)
751{
752 struct xpad_output_packet *pkt, *packet = NULL;
753 int i;
754
755 for (i = 0; i < XPAD_NUM_OUT_PACKETS; i++) {
756 if (++xpad->last_out_packet >= XPAD_NUM_OUT_PACKETS)
757 xpad->last_out_packet = 0;
758
759 pkt = &xpad->out_packets[xpad->last_out_packet];
760 if (pkt->pending) {
761 dev_dbg(&xpad->intf->dev,
762 "%s - found pending output packet %d\n",
763 __func__, xpad->last_out_packet);
764 packet = pkt;
765 break;
766 }
767 }
768
769 if (packet) {
770 memcpy(xpad->odata, packet->data, packet->len);
771 xpad->irq_out->transfer_buffer_length = packet->len;
Pavel Rojtberg4efc6932016-05-27 16:22:25 -0700772 packet->pending = false;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800773 return true;
774 }
775
776 return false;
777}
778
779/* Callers must hold xpad->odata_lock spinlock */
780static int xpad_try_sending_next_out_packet(struct usb_xpad *xpad)
781{
782 int error;
783
784 if (!xpad->irq_out_active && xpad_prepare_next_out_packet(xpad)) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800785 usb_anchor_urb(xpad->irq_out, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800786 error = usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
787 if (error) {
788 dev_err(&xpad->intf->dev,
789 "%s - usb_submit_urb failed with result %d\n",
790 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800791 usb_unanchor_urb(xpad->irq_out);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800792 return -EIO;
793 }
794
795 xpad->irq_out_active = true;
796 }
797
798 return 0;
799}
800
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400801static void xpad_irq_out(struct urb *urb)
802{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700803 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700804 struct device *dev = &xpad->intf->dev;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800805 int status = urb->status;
806 int error;
807 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400808
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800809 spin_lock_irqsave(&xpad->odata_lock, flags);
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200810
811 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700812 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400813 /* success */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800814 xpad->irq_out_active = xpad_prepare_next_out_packet(xpad);
815 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700816
817 case -ECONNRESET:
818 case -ENOENT:
819 case -ESHUTDOWN:
820 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700821 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
822 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800823 xpad->irq_out_active = false;
824 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700825
826 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700827 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
828 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800829 break;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400830 }
831
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800832 if (xpad->irq_out_active) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800833 usb_anchor_urb(urb, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800834 error = usb_submit_urb(urb, GFP_ATOMIC);
835 if (error) {
836 dev_err(dev,
837 "%s - usb_submit_urb failed with result %d\n",
838 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800839 usb_unanchor_urb(urb);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800840 xpad->irq_out_active = false;
841 }
842 }
843
844 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400845}
846
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400847static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
848{
849 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700850 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800851 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400852
Chris Moellerb514d4f2011-07-04 19:21:59 -0700853 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400854 return 0;
855
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800856 init_usb_anchor(&xpad->irq_out_anchor);
857
Daniel Mack997ea582010-04-12 13:17:25 +0200858 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
859 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800860 if (!xpad->odata) {
861 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400862 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800863 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400864
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800865 spin_lock_init(&xpad->odata_lock);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400866
867 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800868 if (!xpad->irq_out) {
869 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400870 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800871 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400872
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700873 /* Xbox One controller has in/out endpoints swapped. */
874 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
875 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
876
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400877 usb_fill_int_urb(xpad->irq_out, xpad->udev,
878 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
879 xpad->odata, XPAD_PKT_LEN,
880 xpad_irq_out, xpad, ep_irq_out->bInterval);
881 xpad->irq_out->transfer_dma = xpad->odata_dma;
882 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
883
884 return 0;
885
Daniel Mack997ea582010-04-12 13:17:25 +0200886 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400887 fail1: return error;
888}
889
890static void xpad_stop_output(struct usb_xpad *xpad)
891{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800892 if (xpad->xtype != XTYPE_UNKNOWN) {
893 if (!usb_wait_anchor_empty_timeout(&xpad->irq_out_anchor,
894 5000)) {
895 dev_warn(&xpad->intf->dev,
896 "timed out waiting for output URB to complete, killing\n");
897 usb_kill_anchored_urbs(&xpad->irq_out_anchor);
898 }
899 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400900}
901
902static void xpad_deinit_output(struct usb_xpad *xpad)
903{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700904 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400905 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200906 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400907 xpad->odata, xpad->odata_dma);
908 }
909}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400910
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700911static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
912{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800913 struct xpad_output_packet *packet =
914 &xpad->out_packets[XPAD_OUT_CMD_IDX];
915 unsigned long flags;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700916 int retval;
917
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800918 spin_lock_irqsave(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700919
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800920 packet->data[0] = 0x08;
921 packet->data[1] = 0x00;
922 packet->data[2] = 0x0F;
923 packet->data[3] = 0xC0;
924 packet->data[4] = 0x00;
925 packet->data[5] = 0x00;
926 packet->data[6] = 0x00;
927 packet->data[7] = 0x00;
928 packet->data[8] = 0x00;
929 packet->data[9] = 0x00;
930 packet->data[10] = 0x00;
931 packet->data[11] = 0x00;
932 packet->len = 12;
933 packet->pending = true;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700934
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800935 /* Reset the sequence so we send out presence first */
936 xpad->last_out_packet = -1;
937 retval = xpad_try_sending_next_out_packet(xpad);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700938
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800939 spin_unlock_irqrestore(&xpad->odata_lock, flags);
940
941 return retval;
942}
943
944static int xpad_start_xbox_one(struct usb_xpad *xpad)
945{
946 struct xpad_output_packet *packet =
947 &xpad->out_packets[XPAD_OUT_CMD_IDX];
948 unsigned long flags;
949 int retval;
950
951 spin_lock_irqsave(&xpad->odata_lock, flags);
952
953 /* Xbox one controller needs to be initialized. */
954 packet->data[0] = 0x05;
955 packet->data[1] = 0x20;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800956 packet->data[2] = xpad->odata_serial++; /* packet serial */
957 packet->data[3] = 0x01; /* rumble bit enable? */
958 packet->data[4] = 0x00;
959 packet->len = 5;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800960 packet->pending = true;
961
962 /* Reset the sequence so we send out start packet first */
963 xpad->last_out_packet = -1;
964 retval = xpad_try_sending_next_out_packet(xpad);
965
966 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700967
968 return retval;
969}
970
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400971#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800972static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400973{
974 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800975 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX];
Pavel Rojtberg06008152015-10-10 09:32:55 -0700976 __u16 strong;
977 __u16 weak;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800978 int retval;
979 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400980
Pavel Rojtberg06008152015-10-10 09:32:55 -0700981 if (effect->type != FF_RUMBLE)
982 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -0800983
Pavel Rojtberg06008152015-10-10 09:32:55 -0700984 strong = effect->u.rumble.strong_magnitude;
985 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800986
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800987 spin_lock_irqsave(&xpad->odata_lock, flags);
988
Pavel Rojtberg06008152015-10-10 09:32:55 -0700989 switch (xpad->xtype) {
990 case XTYPE_XBOX:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800991 packet->data[0] = 0x00;
992 packet->data[1] = 0x06;
993 packet->data[2] = 0x00;
994 packet->data[3] = strong / 256; /* left actuator */
995 packet->data[4] = 0x00;
996 packet->data[5] = weak / 256; /* right actuator */
997 packet->len = 6;
998 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -0700999 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001000
Pavel Rojtberg06008152015-10-10 09:32:55 -07001001 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001002 packet->data[0] = 0x00;
1003 packet->data[1] = 0x08;
1004 packet->data[2] = 0x00;
1005 packet->data[3] = strong / 256; /* left actuator? */
1006 packet->data[4] = weak / 256; /* right actuator? */
1007 packet->data[5] = 0x00;
1008 packet->data[6] = 0x00;
1009 packet->data[7] = 0x00;
1010 packet->len = 8;
1011 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001012 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001013
Pavel Rojtberg06008152015-10-10 09:32:55 -07001014 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001015 packet->data[0] = 0x00;
1016 packet->data[1] = 0x01;
1017 packet->data[2] = 0x0F;
1018 packet->data[3] = 0xC0;
1019 packet->data[4] = 0x00;
1020 packet->data[5] = strong / 256;
1021 packet->data[6] = weak / 256;
1022 packet->data[7] = 0x00;
1023 packet->data[8] = 0x00;
1024 packet->data[9] = 0x00;
1025 packet->data[10] = 0x00;
1026 packet->data[11] = 0x00;
1027 packet->len = 12;
1028 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001029 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001030
Pavel Rojtberg06008152015-10-10 09:32:55 -07001031 case XTYPE_XBOXONE:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001032 packet->data[0] = 0x09; /* activate rumble */
1033 packet->data[1] = 0x08;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001034 packet->data[2] = xpad->odata_serial++;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001035 packet->data[3] = 0x08; /* continuous effect */
1036 packet->data[4] = 0x00; /* simple rumble mode */
1037 packet->data[5] = 0x03; /* L and R actuator only */
1038 packet->data[6] = 0x00; /* TODO: LT actuator */
1039 packet->data[7] = 0x00; /* TODO: RT actuator */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001040 packet->data[8] = strong / 512; /* left actuator */
1041 packet->data[9] = weak / 512; /* right actuator */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001042 packet->data[10] = 0x80; /* length of pulse */
1043 packet->data[11] = 0x00; /* stop period of pulse */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001044 packet->data[12] = 0x00;
1045 packet->len = 13;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001046 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001047 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001048
Pavel Rojtberg06008152015-10-10 09:32:55 -07001049 default:
1050 dev_dbg(&xpad->dev->dev,
1051 "%s - rumble command sent to unsupported xpad type: %d\n",
1052 __func__, xpad->xtype);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001053 retval = -EINVAL;
1054 goto out;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001055 }
1056
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001057 retval = xpad_try_sending_next_out_packet(xpad);
1058
1059out:
1060 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1061 return retval;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001062}
1063
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001064static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001065{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -07001066 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -04001067 return 0;
1068
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001069 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
1070
1071 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
1072}
1073
1074#else
1075static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
1076#endif
1077
1078#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
1079#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001080#include <linux/idr.h>
1081
1082static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001083
1084struct xpad_led {
1085 char name[16];
1086 struct led_classdev led_cdev;
1087 struct usb_xpad *xpad;
1088};
1089
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001090/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001091 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001092 * @param command
1093 * 0: off
1094 * 1: all blink, then previous setting
1095 * 2: 1/top-left blink, then on
1096 * 3: 2/top-right blink, then on
1097 * 4: 3/bottom-left blink, then on
1098 * 5: 4/bottom-right blink, then on
1099 * 6: 1/top-left on
1100 * 7: 2/top-right on
1101 * 8: 3/bottom-left on
1102 * 9: 4/bottom-right on
1103 * 10: rotate
1104 * 11: blink, based on previous setting
1105 * 12: slow blink, based on previous setting
1106 * 13: rotate with two lights
1107 * 14: persistent slow all blink
1108 * 15: blink once, then previous setting
1109 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001110static void xpad_send_led_command(struct usb_xpad *xpad, int command)
1111{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001112 struct xpad_output_packet *packet =
1113 &xpad->out_packets[XPAD_OUT_LED_IDX];
1114 unsigned long flags;
1115
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001116 command %= 16;
1117
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001118 spin_lock_irqsave(&xpad->odata_lock, flags);
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001119
1120 switch (xpad->xtype) {
1121 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001122 packet->data[0] = 0x01;
1123 packet->data[1] = 0x03;
1124 packet->data[2] = command;
1125 packet->len = 3;
1126 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001127 break;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001128
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001129 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001130 packet->data[0] = 0x00;
1131 packet->data[1] = 0x00;
1132 packet->data[2] = 0x08;
1133 packet->data[3] = 0x40 + command;
1134 packet->data[4] = 0x00;
1135 packet->data[5] = 0x00;
1136 packet->data[6] = 0x00;
1137 packet->data[7] = 0x00;
1138 packet->data[8] = 0x00;
1139 packet->data[9] = 0x00;
1140 packet->data[10] = 0x00;
1141 packet->data[11] = 0x00;
1142 packet->len = 12;
1143 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001144 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001145 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001146
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001147 xpad_try_sending_next_out_packet(xpad);
1148
1149 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001150}
1151
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001152/*
1153 * Light up the segment corresponding to the pad number on
1154 * Xbox 360 Controllers.
1155 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001156static void xpad_identify_controller(struct usb_xpad *xpad)
1157{
Dmitry Torokhovd9be3982015-12-16 14:24:58 -08001158 led_set_brightness(&xpad->led->led_cdev, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001159}
1160
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001161static void xpad_led_set(struct led_classdev *led_cdev,
1162 enum led_brightness value)
1163{
1164 struct xpad_led *xpad_led = container_of(led_cdev,
1165 struct xpad_led, led_cdev);
1166
1167 xpad_send_led_command(xpad_led->xpad, value);
1168}
1169
1170static int xpad_led_probe(struct usb_xpad *xpad)
1171{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001172 struct xpad_led *led;
1173 struct led_classdev *led_cdev;
1174 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001175
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001176 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001177 return 0;
1178
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001179 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1180 if (!led)
1181 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001182
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001183 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1184 if (xpad->pad_nr < 0) {
1185 error = xpad->pad_nr;
1186 goto err_free_mem;
1187 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001188
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001189 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001190 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001191
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001192 led_cdev = &led->led_cdev;
1193 led_cdev->name = led->name;
1194 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001195
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001196 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001197 if (error)
1198 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001199
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001200 xpad_identify_controller(xpad);
Pavel Rojtbergfbe6a312015-10-19 00:06:58 -07001201
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001202 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001203
1204err_free_id:
1205 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1206err_free_mem:
1207 kfree(led);
1208 xpad->led = NULL;
1209 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001210}
1211
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001212static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001213{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001214 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001215
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001216 if (xpad_led) {
1217 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001218 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -08001219 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001220 }
1221}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001222#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001223static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1224static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001225#endif
1226
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001227static int xpad_start_input(struct usb_xpad *xpad)
1228{
1229 int error;
1230
1231 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1232 return -EIO;
1233
1234 if (xpad->xtype == XTYPE_XBOXONE) {
1235 error = xpad_start_xbox_one(xpad);
1236 if (error) {
1237 usb_kill_urb(xpad->irq_in);
1238 return error;
1239 }
1240 }
1241
1242 return 0;
1243}
1244
1245static void xpad_stop_input(struct usb_xpad *xpad)
1246{
1247 usb_kill_urb(xpad->irq_in);
1248}
1249
1250static int xpad360w_start_input(struct usb_xpad *xpad)
1251{
1252 int error;
1253
1254 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1255 if (error)
1256 return -EIO;
1257
1258 /*
1259 * Send presence packet.
1260 * This will force the controller to resend connection packets.
1261 * This is useful in the case we activate the module after the
1262 * adapter has been plugged in, as it won't automatically
1263 * send us info about the controllers.
1264 */
1265 error = xpad_inquiry_pad_presence(xpad);
1266 if (error) {
1267 usb_kill_urb(xpad->irq_in);
1268 return error;
1269 }
1270
1271 return 0;
1272}
1273
1274static void xpad360w_stop_input(struct usb_xpad *xpad)
1275{
1276 usb_kill_urb(xpad->irq_in);
1277
1278 /* Make sure we are done with presence work if it was scheduled */
1279 flush_work(&xpad->work);
1280}
1281
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001282static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001284 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001285
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001286 return xpad_start_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001289static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001291 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001292
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001293 xpad_stop_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001296static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1297{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001298 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001299 set_bit(abs, input_dev->absbit);
1300
1301 switch (abs) {
1302 case ABS_X:
1303 case ABS_Y:
1304 case ABS_RX:
1305 case ABS_RY: /* the two sticks */
1306 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1307 break;
1308 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001309 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001310 if (xpad->xtype == XTYPE_XBOXONE)
1311 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1312 else
1313 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001314 break;
1315 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001316 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001317 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1318 break;
1319 }
1320}
1321
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001322static void xpad_deinit_input(struct usb_xpad *xpad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001324 if (xpad->input_created) {
1325 xpad->input_created = false;
1326 xpad_led_disconnect(xpad);
1327 input_unregister_device(xpad->dev);
1328 }
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001329}
1330
1331static int xpad_init_input(struct usb_xpad *xpad)
1332{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001333 struct input_dev *input_dev;
Axel Lin49cc69b2010-11-11 21:39:11 -08001334 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001335
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001336 input_dev = input_allocate_device();
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001337 if (!input_dev)
1338 return -ENOMEM;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001339
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001340 xpad->dev = input_dev;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001341 input_dev->name = xpad->name;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001342 input_dev->phys = xpad->phys;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001343 usb_to_input_id(xpad->udev, &input_dev->id);
1344 input_dev->dev.parent = &xpad->intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001345
1346 input_set_drvdata(input_dev, xpad);
1347
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001348 if (xpad->xtype != XTYPE_XBOX360W) {
1349 input_dev->open = xpad_open;
1350 input_dev->close = xpad_close;
1351 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001352
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001353 __set_bit(EV_KEY, input_dev->evbit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001354
Christoph Fritz7beae702010-07-13 09:42:33 -07001355 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001356 __set_bit(EV_ABS, input_dev->evbit);
Christoph Fritz7beae702010-07-13 09:42:33 -07001357 /* set up axes */
1358 for (i = 0; xpad_abs[i] >= 0; i++)
1359 xpad_set_up_abs(input_dev, xpad_abs[i]);
1360 }
1361
1362 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001363 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001364 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001365
Christoph Fritz7beae702010-07-13 09:42:33 -07001366 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001367 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1368 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001369 for (i = 0; xpad360_btn[i] >= 0; i++)
1370 __set_bit(xpad360_btn[i], input_dev->keybit);
1371 } else {
1372 for (i = 0; xpad_btn[i] >= 0; i++)
1373 __set_bit(xpad_btn[i], input_dev->keybit);
1374 }
1375
1376 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1377 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1378 __set_bit(xpad_btn_pad[i], input_dev->keybit);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -07001379 }
1380
1381 /*
1382 * This should be a simple else block. However historically
1383 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1384 * made no sense, but now we can not just switch back and have to
1385 * support both behaviors.
1386 */
1387 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1388 xpad->xtype == XTYPE_XBOX360W) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001389 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001390 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001391 }
1392
1393 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1394 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1395 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1396 } else {
1397 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1398 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1399 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001400
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001401 error = xpad_init_ff(xpad);
1402 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001403 goto err_free_input;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001404
1405 error = xpad_led_probe(xpad);
1406 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001407 goto err_destroy_ff;
1408
1409 error = input_register_device(xpad->dev);
1410 if (error)
1411 goto err_disconnect_led;
1412
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001413 xpad->input_created = true;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001414 return 0;
1415
1416err_disconnect_led:
1417 xpad_led_disconnect(xpad);
1418err_destroy_ff:
1419 input_ff_destroy(input_dev);
1420err_free_input:
1421 input_free_device(input_dev);
1422 return error;
1423}
1424
1425static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1426{
1427 struct usb_device *udev = interface_to_usbdev(intf);
1428 struct usb_xpad *xpad;
1429 struct usb_endpoint_descriptor *ep_irq_in;
1430 int ep_irq_in_idx;
1431 int i, error;
1432
1433 for (i = 0; xpad_device[i].idVendor; i++) {
1434 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1435 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1436 break;
1437 }
1438
1439 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1440 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1441 /*
1442 * The Xbox One controller lists three interfaces all with the
1443 * same interface class, subclass and protocol. Differentiate by
1444 * interface number.
1445 */
1446 return -ENODEV;
1447 }
1448
1449 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1450 if (!xpad)
1451 return -ENOMEM;
1452
1453 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1454 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1455
1456 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1457 GFP_KERNEL, &xpad->idata_dma);
1458 if (!xpad->idata) {
1459 error = -ENOMEM;
1460 goto err_free_mem;
1461 }
1462
1463 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1464 if (!xpad->irq_in) {
1465 error = -ENOMEM;
1466 goto err_free_idata;
1467 }
1468
1469 xpad->udev = udev;
1470 xpad->intf = intf;
1471 xpad->mapping = xpad_device[i].mapping;
1472 xpad->xtype = xpad_device[i].xtype;
1473 xpad->name = xpad_device[i].name;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001474 INIT_WORK(&xpad->work, xpad_presence_work);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001475
1476 if (xpad->xtype == XTYPE_UNKNOWN) {
1477 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1478 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1479 xpad->xtype = XTYPE_XBOX360W;
1480 else
1481 xpad->xtype = XTYPE_XBOX360;
1482 } else {
1483 xpad->xtype = XTYPE_XBOX;
1484 }
1485
1486 if (dpad_to_buttons)
1487 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1488 if (triggers_to_buttons)
1489 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1490 if (sticks_to_null)
1491 xpad->mapping |= MAP_STICKS_TO_NULL;
1492 }
1493
1494 error = xpad_init_output(intf, xpad);
1495 if (error)
1496 goto err_free_in_urb;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001497
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001498 /* Xbox One controller has in/out endpoints swapped. */
1499 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1500 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 usb_fill_int_urb(xpad->irq_in, udev,
1503 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1504 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1505 xpad, ep_irq_in->bInterval);
1506 xpad->irq_in->transfer_dma = xpad->idata_dma;
1507 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001510
Brian Magnuson99de0912008-04-03 16:19:23 -04001511 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001512 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001513 * Submit the int URB immediately rather than waiting for open
1514 * because we get status messages from the device whether
1515 * or not any controllers are attached. In fact, it's
1516 * exactly the message that a controller has arrived that
1517 * we're waiting for.
1518 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001519 error = xpad360w_start_input(xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001520 if (error)
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001521 goto err_deinit_output;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001522 /*
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001523 * Wireless controllers require RESET_RESUME to work properly
1524 * after suspend. Ideally this quirk should be in usb core
1525 * quirk list, but we have too many vendors producing these
1526 * controllers and we'd need to maintain 2 identical lists
1527 * here in this driver and in usb core.
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001528 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001529 udev->quirks |= USB_QUIRK_RESET_RESUME;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001530 } else {
1531 error = xpad_init_input(xpad);
1532 if (error)
1533 goto err_deinit_output;
Brian Magnuson99de0912008-04-03 16:19:23 -04001534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001536
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001537err_deinit_output:
1538 xpad_deinit_output(xpad);
1539err_free_in_urb:
1540 usb_free_urb(xpad->irq_in);
1541err_free_idata:
1542 usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1543err_free_mem:
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001544 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001545 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
1548static void xpad_disconnect(struct usb_interface *intf)
1549{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001550 struct usb_xpad *xpad = usb_get_intfdata(intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001551
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001552 if (xpad->xtype == XTYPE_XBOX360W)
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001553 xpad360w_stop_input(xpad);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001554
1555 xpad_deinit_input(xpad);
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001556
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001557 /*
1558 * Now that both input device and LED device are gone we can
1559 * stop output URB.
1560 */
1561 xpad_stop_output(xpad);
1562
1563 xpad_deinit_output(xpad);
1564
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001565 usb_free_urb(xpad->irq_in);
1566 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1567 xpad->idata, xpad->idata_dma);
1568
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001569 kfree(xpad);
1570
1571 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001574static int xpad_suspend(struct usb_interface *intf, pm_message_t message)
1575{
1576 struct usb_xpad *xpad = usb_get_intfdata(intf);
1577 struct input_dev *input = xpad->dev;
1578
1579 if (xpad->xtype == XTYPE_XBOX360W) {
1580 /*
1581 * Wireless controllers always listen to input so
1582 * they are notified when controller shows up
1583 * or goes away.
1584 */
1585 xpad360w_stop_input(xpad);
1586 } else {
1587 mutex_lock(&input->mutex);
1588 if (input->users)
1589 xpad_stop_input(xpad);
1590 mutex_unlock(&input->mutex);
1591 }
1592
1593 xpad_stop_output(xpad);
1594
1595 return 0;
1596}
1597
1598static int xpad_resume(struct usb_interface *intf)
1599{
1600 struct usb_xpad *xpad = usb_get_intfdata(intf);
1601 struct input_dev *input = xpad->dev;
1602 int retval = 0;
1603
1604 if (xpad->xtype == XTYPE_XBOX360W) {
1605 retval = xpad360w_start_input(xpad);
1606 } else {
1607 mutex_lock(&input->mutex);
1608 if (input->users)
1609 retval = xpad_start_input(xpad);
1610 mutex_unlock(&input->mutex);
1611 }
1612
1613 return retval;
1614}
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 .name = "xpad",
1618 .probe = xpad_probe,
1619 .disconnect = xpad_disconnect,
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001620 .suspend = xpad_suspend,
1621 .resume = xpad_resume,
1622 .reset_resume = xpad_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 .id_table = xpad_table,
1624};
1625
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001626module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628MODULE_AUTHOR(DRIVER_AUTHOR);
1629MODULE_DESCRIPTION(DRIVER_DESC);
1630MODULE_LICENSE("GPL");