blob: a529a4535457217e761fd1e8f8b0748cb48a5498 [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
Pavel Rojtberg6f49a392016-05-27 16:24:40 -070090#define XPAD_PKT_LEN 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
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 },
Pavel Rojtberg6f49a392016-05-27 16:24:40 -0700132 { 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800133 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400134 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800135 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700136 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800137 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700138 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800139 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800140 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
141 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
142 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
143 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
144 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
145 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
146 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
147 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
148 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400149 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800150 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
151 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700152 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
153 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700154 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800155 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700156 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Silvan Jegend63b0f02016-03-17 17:15:01 -0700157 { 0x0738, 0x4a01, "Mad Catz FightStick TE 2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400158 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700159 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800160 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700161 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
162 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
163 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800164 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800165 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800166 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
167 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
168 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700169 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800170 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
171 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
172 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
173 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
174 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800175 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700176 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700177 { 0x0e6f, 0x0139, "Afterglow Prismatic Wired Controller", 0, XTYPE_XBOXONE },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700178 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800179 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700180 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700181 { 0x0e6f, 0x0146, "Rock Candy Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700182 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
183 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800184 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700185 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
186 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800187 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
188 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700189 { 0x0f0d, 0x0067, "HORIPAD ONE", 0, XTYPE_XBOXONE },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800190 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
191 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
192 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700193 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700194 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800195 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800196 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400197 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800198 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700199 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
200 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
201 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
202 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
203 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800204 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
205 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700206 { 0x24c6, 0x542a, "Xbox ONE spectra", 0, XTYPE_XBOXONE },
Frank Razenberga7b44732014-09-08 11:32:20 -0700207 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700208 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700209 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800210 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700211 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800212 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700213 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
214 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800215 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
216 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700217 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800218 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700219 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700220 { 0x24c6, 0x541a, "PowerA Xbox One Mini Wired Controller", 0, XTYPE_XBOXONE },
221 { 0x24c6, 0x543a, "PowerA Xbox One wired controller", 0, XTYPE_XBOXONE },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700222 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
223 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
224 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
225 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700226 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800227 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
228 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
Anssi Hannulafc55e952008-04-03 16:18:44 -0400231/* buttons shared with xbox and xbox360 */
232static const signed short xpad_common_btn[] = {
233 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700234 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 -1 /* terminating entry */
236};
237
Anssi Hannulafc55e952008-04-03 16:18:44 -0400238/* original xbox controllers only */
239static const signed short xpad_btn[] = {
240 BTN_C, BTN_Z, /* "analog" buttons */
241 -1 /* terminating entry */
242};
243
Christoph Fritz7beae702010-07-13 09:42:33 -0700244/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700245static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700246 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
247 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700248 -1 /* terminating entry */
249};
250
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800251/* used when triggers are mapped to buttons */
252static const signed short xpad_btn_triggers[] = {
253 BTN_TL2, BTN_TR2, /* triggers left/right */
254 -1
255};
256
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400257static const signed short xpad360_btn[] = { /* buttons for x360 controller */
258 BTN_TL, BTN_TR, /* Button LB/RB */
259 BTN_MODE, /* The big X button */
260 -1
261};
262
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100263static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ABS_X, ABS_Y, /* left stick */
265 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700266 -1 /* terminating entry */
267};
268
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800269/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700270static const signed short xpad_abs_pad[] = {
271 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 -1 /* terminating entry */
273};
274
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800275/* used when triggers are mapped to axes */
276static const signed short xpad_abs_triggers[] = {
277 ABS_Z, ABS_RZ, /* triggers left/right */
278 -1
279};
280
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700281/*
282 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400283 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400284 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700285 * wireless controllers have protocol 129.
286 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400287#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400288 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
289 .idVendor = (vend), \
290 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
291 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400292 .bInterfaceProtocol = (pr)
293#define XPAD_XBOX360_VENDOR(vend) \
294 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
295 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400296
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700297/* The Xbox One controller uses subclass 71 and protocol 208. */
298#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
299 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
300 .idVendor = (vend), \
301 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
302 .bInterfaceSubClass = 71, \
303 .bInterfaceProtocol = (pr)
304#define XPAD_XBOXONE_VENDOR(vend) \
305 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
306
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800307static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700309 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400310 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700311 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400312 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
313 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700314 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Silvan Jegend63b0f02016-03-17 17:15:01 -0700315 XPAD_XBOXONE_VENDOR(0x0738), /* Mad Catz FightStick TE 2 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400316 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700317 XPAD_XBOXONE_VENDOR(0x0e6f), /* 0x0e6f X-Box One controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700318 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400319 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700320 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700321 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700322 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700323 XPAD_XBOXONE_VENDOR(0x0f0d), /* Hori Controllers */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700324 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800325 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Pavel Rojtberg6538c3b2016-05-27 16:24:20 -0700326 XPAD_XBOXONE_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700327 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
328 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
329 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 { }
331};
332
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800333MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800335struct xpad_output_packet {
336 u8 data[XPAD_PKT_LEN];
337 u8 len;
338 bool pending;
339};
340
341#define XPAD_OUT_CMD_IDX 0
342#define XPAD_OUT_FF_IDX 1
343#define XPAD_OUT_LED_IDX (1 + IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF))
344#define XPAD_NUM_OUT_PACKETS (1 + \
345 IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF) + \
346 IS_ENABLED(CONFIG_JOYSTICK_XPAD_LEDS))
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700349 struct input_dev *dev; /* input device interface */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800350 struct input_dev __rcu *x360w_dev;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700351 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700352 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500353
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800354 bool pad_present;
355 bool input_created;
Brian Magnuson99de0912008-04-03 16:19:23 -0400356
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700357 struct urb *irq_in; /* urb for interrupt in report */
358 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500360
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400361 struct urb *irq_out; /* urb for interrupt out report */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800362 struct usb_anchor irq_out_anchor;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800363 bool irq_out_active; /* we must not use an active URB */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800364 u8 odata_serial; /* serial number for xbox one protocol */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800365 unsigned char *odata; /* output data */
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400366 dma_addr_t odata_dma;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800367 spinlock_t odata_lock;
368
369 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS];
370 int last_out_packet;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400371
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400372#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
373 struct xpad_led *led;
374#endif
375
376 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700377
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800378 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400379 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700380 int pad_nr; /* the order x360 pads were attached */
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -0700381 const char *name; /* name of the device */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800382 struct work_struct work; /* init/remove device from callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383};
384
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800385static int xpad_init_input(struct usb_xpad *xpad);
386static void xpad_deinit_input(struct usb_xpad *xpad);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/*
389 * xpad_process_packet
390 *
391 * Completes a request by converting the data into events for the
392 * input subsystem.
393 *
394 * The used report descriptor was taken from ITO Takayukis website:
395 * http://euc.jp/periphs/xbox-controller.ja.html
396 */
David Howells7d12e782006-10-05 14:55:46 +0100397static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500399 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Christoph Fritz7beae702010-07-13 09:42:33 -0700401 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
402 /* left stick */
403 input_report_abs(dev, ABS_X,
404 (__s16) le16_to_cpup((__le16 *)(data + 12)));
405 input_report_abs(dev, ABS_Y,
406 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500407
Christoph Fritz7beae702010-07-13 09:42:33 -0700408 /* right stick */
409 input_report_abs(dev, ABS_RX,
410 (__s16) le16_to_cpup((__le16 *)(data + 16)));
411 input_report_abs(dev, ABS_RY,
412 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
413 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800416 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
417 input_report_key(dev, BTN_TL2, data[10]);
418 input_report_key(dev, BTN_TR2, data[11]);
419 } else {
420 input_report_abs(dev, ABS_Z, data[10]);
421 input_report_abs(dev, ABS_RZ, data[11]);
422 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800425 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700426 /* dpad as buttons (left, right, up, down) */
427 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
428 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
429 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
430 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800431 } else {
432 input_report_abs(dev, ABS_HAT0X,
433 !!(data[2] & 0x08) - !!(data[2] & 0x04));
434 input_report_abs(dev, ABS_HAT0Y,
435 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700436 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700439 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700440 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700441 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
442 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /* "analog" buttons A, B, X, Y */
445 input_report_key(dev, BTN_A, data[4]);
446 input_report_key(dev, BTN_B, data[5]);
447 input_report_key(dev, BTN_X, data[6]);
448 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* "analog" buttons black, white */
451 input_report_key(dev, BTN_C, data[8]);
452 input_report_key(dev, BTN_Z, data[9]);
453
454 input_sync(dev);
455}
456
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400457/*
458 * xpad360_process_packet
459 *
460 * Completes a request by converting the data into events for the
461 * input subsystem. It is version for xbox 360 controller
462 *
463 * The used report descriptor was taken from:
464 * http://www.free60.org/wiki/Gamepad
465 */
466
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800467static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400468 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400469{
Cameron Gutman1ff5fa32016-05-27 16:23:50 -0700470 /* valid pad data */
471 if (data[0] != 0x00)
472 return;
473
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400474 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800475 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700476 /* dpad as buttons (left, right, up, down) */
477 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
478 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
479 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
480 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -0700481 }
482
483 /*
484 * This should be a simple else block. However historically
485 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
486 * made no sense, but now we can not just switch back and have to
487 * support both behaviors.
488 */
489 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
490 xpad->xtype == XTYPE_XBOX360W) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800491 input_report_abs(dev, ABS_HAT0X,
492 !!(data[2] & 0x08) - !!(data[2] & 0x04));
493 input_report_abs(dev, ABS_HAT0Y,
494 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400495 }
496
497 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400498 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700499 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400500
501 /* stick press left/right */
502 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
503 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
504
505 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400506 input_report_key(dev, BTN_A, data[3] & 0x10);
507 input_report_key(dev, BTN_B, data[3] & 0x20);
508 input_report_key(dev, BTN_X, data[3] & 0x40);
509 input_report_key(dev, BTN_Y, data[3] & 0x80);
510 input_report_key(dev, BTN_TL, data[3] & 0x01);
511 input_report_key(dev, BTN_TR, data[3] & 0x02);
512 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400513
Christoph Fritz7beae702010-07-13 09:42:33 -0700514 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
515 /* left stick */
516 input_report_abs(dev, ABS_X,
517 (__s16) le16_to_cpup((__le16 *)(data + 6)));
518 input_report_abs(dev, ABS_Y,
519 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400520
Christoph Fritz7beae702010-07-13 09:42:33 -0700521 /* right stick */
522 input_report_abs(dev, ABS_RX,
523 (__s16) le16_to_cpup((__le16 *)(data + 10)));
524 input_report_abs(dev, ABS_RY,
525 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
526 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400527
528 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800529 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
530 input_report_key(dev, BTN_TL2, data[4]);
531 input_report_key(dev, BTN_TR2, data[5]);
532 } else {
533 input_report_abs(dev, ABS_Z, data[4]);
534 input_report_abs(dev, ABS_RZ, data[5]);
535 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400536
537 input_sync(dev);
538}
539
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800540static void xpad_presence_work(struct work_struct *work)
541{
542 struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
543 int error;
544
545 if (xpad->pad_present) {
546 error = xpad_init_input(xpad);
547 if (error) {
548 /* complain only, not much else we can do here */
549 dev_err(&xpad->dev->dev,
550 "unable to init device: %d\n", error);
551 } else {
552 rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
553 }
554 } else {
555 RCU_INIT_POINTER(xpad->x360w_dev, NULL);
556 synchronize_rcu();
557 /*
558 * Now that we are sure xpad360w_process_packet is not
559 * using input device we can get rid of it.
560 */
561 xpad_deinit_input(xpad);
562 }
563}
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700564
Brian Magnuson99de0912008-04-03 16:19:23 -0400565/*
566 * xpad360w_process_packet
567 *
568 * Completes a request by converting the data into events for the
569 * input subsystem. It is version for xbox 360 wireless controller.
570 *
571 * Byte.Bit
572 * 00.1 - Status change: The controller or headset has connected/disconnected
573 * Bits 01.7 and 01.6 are valid
574 * 01.7 - Controller present
575 * 01.6 - Headset present
576 * 01.1 - Pad state (Bytes 4+) valid
577 *
578 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400579static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
580{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800581 struct input_dev *dev;
582 bool present;
583
Brian Magnuson99de0912008-04-03 16:19:23 -0400584 /* Presence change */
585 if (data[0] & 0x08) {
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800586 present = (data[1] & 0x80) != 0;
587
588 if (xpad->pad_present != present) {
589 xpad->pad_present = present;
590 schedule_work(&xpad->work);
591 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400592 }
593
594 /* Valid pad data */
Clement Calmels93a017a2015-12-12 21:20:11 -0800595 if (data[1] != 0x1)
Brian Magnuson99de0912008-04-03 16:19:23 -0400596 return;
597
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800598 rcu_read_lock();
599 dev = rcu_dereference(xpad->x360w_dev);
600 if (dev)
601 xpad360_process_packet(xpad, dev, cmd, &data[4]);
602 rcu_read_unlock();
Brian Magnuson99de0912008-04-03 16:19:23 -0400603}
604
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700605/*
606 * xpadone_process_buttons
607 *
608 * Process a button update packet from an Xbox one controller.
609 */
610static void xpadone_process_buttons(struct usb_xpad *xpad,
611 struct input_dev *dev,
612 unsigned char *data)
613{
614 /* menu/view buttons */
615 input_report_key(dev, BTN_START, data[4] & 0x04);
616 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
617
618 /* buttons A,B,X,Y */
619 input_report_key(dev, BTN_A, data[4] & 0x10);
620 input_report_key(dev, BTN_B, data[4] & 0x20);
621 input_report_key(dev, BTN_X, data[4] & 0x40);
622 input_report_key(dev, BTN_Y, data[4] & 0x80);
623
624 /* digital pad */
625 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
626 /* dpad as buttons (left, right, up, down) */
627 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
628 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
629 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
630 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
631 } else {
632 input_report_abs(dev, ABS_HAT0X,
633 !!(data[5] & 0x08) - !!(data[5] & 0x04));
634 input_report_abs(dev, ABS_HAT0Y,
635 !!(data[5] & 0x02) - !!(data[5] & 0x01));
636 }
637
638 /* TL/TR */
639 input_report_key(dev, BTN_TL, data[5] & 0x10);
640 input_report_key(dev, BTN_TR, data[5] & 0x20);
641
642 /* stick press left/right */
643 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
644 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
645
646 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
647 /* left stick */
648 input_report_abs(dev, ABS_X,
649 (__s16) le16_to_cpup((__le16 *)(data + 10)));
650 input_report_abs(dev, ABS_Y,
651 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
652
653 /* right stick */
654 input_report_abs(dev, ABS_RX,
655 (__s16) le16_to_cpup((__le16 *)(data + 14)));
656 input_report_abs(dev, ABS_RY,
657 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
658 }
659
660 /* triggers left/right */
661 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
662 input_report_key(dev, BTN_TL2,
663 (__u16) le16_to_cpup((__le16 *)(data + 6)));
664 input_report_key(dev, BTN_TR2,
665 (__u16) le16_to_cpup((__le16 *)(data + 8)));
666 } else {
667 input_report_abs(dev, ABS_Z,
668 (__u16) le16_to_cpup((__le16 *)(data + 6)));
669 input_report_abs(dev, ABS_RZ,
670 (__u16) le16_to_cpup((__le16 *)(data + 8)));
671 }
672
673 input_sync(dev);
674}
675
676/*
677 * xpadone_process_packet
678 *
679 * Completes a request by converting the data into events for the
680 * input subsystem. This version is for the Xbox One controller.
681 *
682 * The report format was gleaned from
683 * https://github.com/kylelemons/xbox/blob/master/xbox.go
684 */
685
686static void xpadone_process_packet(struct usb_xpad *xpad,
687 u16 cmd, unsigned char *data)
688{
689 struct input_dev *dev = xpad->dev;
690
691 switch (data[0]) {
692 case 0x20:
693 xpadone_process_buttons(xpad, dev, data);
694 break;
695
696 case 0x07:
697 /* the xbox button has its own special report */
698 input_report_key(dev, BTN_MODE, data[4] & 0x01);
699 input_sync(dev);
700 break;
701 }
702}
703
David Howells7d12e782006-10-05 14:55:46 +0100704static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700707 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200708 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500709
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200710 status = urb->status;
711
712 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 case 0:
714 /* success */
715 break;
716 case -ECONNRESET:
717 case -ENOENT:
718 case -ESHUTDOWN:
719 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700720 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400721 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return;
723 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700724 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400725 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 goto exit;
727 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500728
Brian Magnuson99de0912008-04-03 16:19:23 -0400729 switch (xpad->xtype) {
730 case XTYPE_XBOX360:
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800731 xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400732 break;
733 case XTYPE_XBOX360W:
734 xpad360w_process_packet(xpad, 0, xpad->idata);
735 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700736 case XTYPE_XBOXONE:
737 xpadone_process_packet(xpad, 0, xpad->idata);
738 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400739 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400740 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800744 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700746 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700747 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800750/* Callers must hold xpad->odata_lock spinlock */
751static bool xpad_prepare_next_out_packet(struct usb_xpad *xpad)
752{
753 struct xpad_output_packet *pkt, *packet = NULL;
754 int i;
755
756 for (i = 0; i < XPAD_NUM_OUT_PACKETS; i++) {
757 if (++xpad->last_out_packet >= XPAD_NUM_OUT_PACKETS)
758 xpad->last_out_packet = 0;
759
760 pkt = &xpad->out_packets[xpad->last_out_packet];
761 if (pkt->pending) {
762 dev_dbg(&xpad->intf->dev,
763 "%s - found pending output packet %d\n",
764 __func__, xpad->last_out_packet);
765 packet = pkt;
766 break;
767 }
768 }
769
770 if (packet) {
771 memcpy(xpad->odata, packet->data, packet->len);
772 xpad->irq_out->transfer_buffer_length = packet->len;
Pavel Rojtberg4efc6932016-05-27 16:22:25 -0700773 packet->pending = false;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800774 return true;
775 }
776
777 return false;
778}
779
780/* Callers must hold xpad->odata_lock spinlock */
781static int xpad_try_sending_next_out_packet(struct usb_xpad *xpad)
782{
783 int error;
784
785 if (!xpad->irq_out_active && xpad_prepare_next_out_packet(xpad)) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800786 usb_anchor_urb(xpad->irq_out, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800787 error = usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
788 if (error) {
789 dev_err(&xpad->intf->dev,
790 "%s - usb_submit_urb failed with result %d\n",
791 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800792 usb_unanchor_urb(xpad->irq_out);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800793 return -EIO;
794 }
795
796 xpad->irq_out_active = true;
797 }
798
799 return 0;
800}
801
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400802static void xpad_irq_out(struct urb *urb)
803{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700804 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700805 struct device *dev = &xpad->intf->dev;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800806 int status = urb->status;
807 int error;
808 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400809
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800810 spin_lock_irqsave(&xpad->odata_lock, flags);
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200811
812 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700813 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400814 /* success */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800815 xpad->irq_out_active = xpad_prepare_next_out_packet(xpad);
816 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700817
818 case -ECONNRESET:
819 case -ENOENT:
820 case -ESHUTDOWN:
821 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700822 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
823 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800824 xpad->irq_out_active = false;
825 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700826
827 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700828 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
829 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800830 break;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400831 }
832
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800833 if (xpad->irq_out_active) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800834 usb_anchor_urb(urb, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800835 error = usb_submit_urb(urb, GFP_ATOMIC);
836 if (error) {
837 dev_err(dev,
838 "%s - usb_submit_urb failed with result %d\n",
839 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800840 usb_unanchor_urb(urb);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800841 xpad->irq_out_active = false;
842 }
843 }
844
845 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400846}
847
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400848static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
849{
850 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700851 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800852 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400853
Chris Moellerb514d4f2011-07-04 19:21:59 -0700854 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400855 return 0;
856
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800857 init_usb_anchor(&xpad->irq_out_anchor);
858
Daniel Mack997ea582010-04-12 13:17:25 +0200859 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
860 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800861 if (!xpad->odata) {
862 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400863 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800864 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400865
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800866 spin_lock_init(&xpad->odata_lock);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400867
868 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800869 if (!xpad->irq_out) {
870 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400871 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800872 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400873
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700874 /* Xbox One controller has in/out endpoints swapped. */
875 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
876 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
877
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400878 usb_fill_int_urb(xpad->irq_out, xpad->udev,
879 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
880 xpad->odata, XPAD_PKT_LEN,
881 xpad_irq_out, xpad, ep_irq_out->bInterval);
882 xpad->irq_out->transfer_dma = xpad->odata_dma;
883 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
884
885 return 0;
886
Daniel Mack997ea582010-04-12 13:17:25 +0200887 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400888 fail1: return error;
889}
890
891static void xpad_stop_output(struct usb_xpad *xpad)
892{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800893 if (xpad->xtype != XTYPE_UNKNOWN) {
894 if (!usb_wait_anchor_empty_timeout(&xpad->irq_out_anchor,
895 5000)) {
896 dev_warn(&xpad->intf->dev,
897 "timed out waiting for output URB to complete, killing\n");
898 usb_kill_anchored_urbs(&xpad->irq_out_anchor);
899 }
900 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400901}
902
903static void xpad_deinit_output(struct usb_xpad *xpad)
904{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700905 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400906 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200907 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400908 xpad->odata, xpad->odata_dma);
909 }
910}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400911
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700912static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
913{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800914 struct xpad_output_packet *packet =
915 &xpad->out_packets[XPAD_OUT_CMD_IDX];
916 unsigned long flags;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700917 int retval;
918
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800919 spin_lock_irqsave(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700920
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800921 packet->data[0] = 0x08;
922 packet->data[1] = 0x00;
923 packet->data[2] = 0x0F;
924 packet->data[3] = 0xC0;
925 packet->data[4] = 0x00;
926 packet->data[5] = 0x00;
927 packet->data[6] = 0x00;
928 packet->data[7] = 0x00;
929 packet->data[8] = 0x00;
930 packet->data[9] = 0x00;
931 packet->data[10] = 0x00;
932 packet->data[11] = 0x00;
933 packet->len = 12;
934 packet->pending = true;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700935
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800936 /* Reset the sequence so we send out presence first */
937 xpad->last_out_packet = -1;
938 retval = xpad_try_sending_next_out_packet(xpad);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700939
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800940 spin_unlock_irqrestore(&xpad->odata_lock, flags);
941
942 return retval;
943}
944
945static int xpad_start_xbox_one(struct usb_xpad *xpad)
946{
947 struct xpad_output_packet *packet =
948 &xpad->out_packets[XPAD_OUT_CMD_IDX];
949 unsigned long flags;
950 int retval;
951
952 spin_lock_irqsave(&xpad->odata_lock, flags);
953
954 /* Xbox one controller needs to be initialized. */
955 packet->data[0] = 0x05;
956 packet->data[1] = 0x20;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800957 packet->data[2] = xpad->odata_serial++; /* packet serial */
958 packet->data[3] = 0x01; /* rumble bit enable? */
959 packet->data[4] = 0x00;
960 packet->len = 5;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800961 packet->pending = true;
962
963 /* Reset the sequence so we send out start packet first */
964 xpad->last_out_packet = -1;
965 retval = xpad_try_sending_next_out_packet(xpad);
966
967 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700968
969 return retval;
970}
971
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400972#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800973static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400974{
975 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800976 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX];
Pavel Rojtberg06008152015-10-10 09:32:55 -0700977 __u16 strong;
978 __u16 weak;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800979 int retval;
980 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400981
Pavel Rojtberg06008152015-10-10 09:32:55 -0700982 if (effect->type != FF_RUMBLE)
983 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -0800984
Pavel Rojtberg06008152015-10-10 09:32:55 -0700985 strong = effect->u.rumble.strong_magnitude;
986 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800987
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800988 spin_lock_irqsave(&xpad->odata_lock, flags);
989
Pavel Rojtberg06008152015-10-10 09:32:55 -0700990 switch (xpad->xtype) {
991 case XTYPE_XBOX:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800992 packet->data[0] = 0x00;
993 packet->data[1] = 0x06;
994 packet->data[2] = 0x00;
995 packet->data[3] = strong / 256; /* left actuator */
996 packet->data[4] = 0x00;
997 packet->data[5] = weak / 256; /* right actuator */
998 packet->len = 6;
999 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001000 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001001
Pavel Rojtberg06008152015-10-10 09:32:55 -07001002 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001003 packet->data[0] = 0x00;
1004 packet->data[1] = 0x08;
1005 packet->data[2] = 0x00;
1006 packet->data[3] = strong / 256; /* left actuator? */
1007 packet->data[4] = weak / 256; /* right actuator? */
1008 packet->data[5] = 0x00;
1009 packet->data[6] = 0x00;
1010 packet->data[7] = 0x00;
1011 packet->len = 8;
1012 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001013 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001014
Pavel Rojtberg06008152015-10-10 09:32:55 -07001015 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001016 packet->data[0] = 0x00;
1017 packet->data[1] = 0x01;
1018 packet->data[2] = 0x0F;
1019 packet->data[3] = 0xC0;
1020 packet->data[4] = 0x00;
1021 packet->data[5] = strong / 256;
1022 packet->data[6] = weak / 256;
1023 packet->data[7] = 0x00;
1024 packet->data[8] = 0x00;
1025 packet->data[9] = 0x00;
1026 packet->data[10] = 0x00;
1027 packet->data[11] = 0x00;
1028 packet->len = 12;
1029 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001030 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001031
Pavel Rojtberg06008152015-10-10 09:32:55 -07001032 case XTYPE_XBOXONE:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001033 packet->data[0] = 0x09; /* activate rumble */
Cameron Gutman540c2602016-06-01 11:32:51 -07001034 packet->data[1] = 0x00;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001035 packet->data[2] = xpad->odata_serial++;
Cameron Gutman540c2602016-06-01 11:32:51 -07001036 packet->data[3] = 0x09;
1037 packet->data[4] = 0x00;
1038 packet->data[5] = 0x0F;
1039 packet->data[6] = 0x00;
1040 packet->data[7] = 0x00;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001041 packet->data[8] = strong / 512; /* left actuator */
1042 packet->data[9] = weak / 512; /* right actuator */
Cameron Gutman540c2602016-06-01 11:32:51 -07001043 packet->data[10] = 0xFF;
1044 packet->data[11] = 0x00;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001045 packet->data[12] = 0x00;
1046 packet->len = 13;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001047 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001048 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001049
Pavel Rojtberg06008152015-10-10 09:32:55 -07001050 default:
1051 dev_dbg(&xpad->dev->dev,
1052 "%s - rumble command sent to unsupported xpad type: %d\n",
1053 __func__, xpad->xtype);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001054 retval = -EINVAL;
1055 goto out;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001056 }
1057
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001058 retval = xpad_try_sending_next_out_packet(xpad);
1059
1060out:
1061 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1062 return retval;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001063}
1064
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001065static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001066{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -07001067 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -04001068 return 0;
1069
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001070 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
1071
1072 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
1073}
1074
1075#else
1076static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
1077#endif
1078
1079#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
1080#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001081#include <linux/idr.h>
1082
1083static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001084
1085struct xpad_led {
1086 char name[16];
1087 struct led_classdev led_cdev;
1088 struct usb_xpad *xpad;
1089};
1090
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001091/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001092 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001093 * @param command
1094 * 0: off
1095 * 1: all blink, then previous setting
1096 * 2: 1/top-left blink, then on
1097 * 3: 2/top-right blink, then on
1098 * 4: 3/bottom-left blink, then on
1099 * 5: 4/bottom-right blink, then on
1100 * 6: 1/top-left on
1101 * 7: 2/top-right on
1102 * 8: 3/bottom-left on
1103 * 9: 4/bottom-right on
1104 * 10: rotate
1105 * 11: blink, based on previous setting
1106 * 12: slow blink, based on previous setting
1107 * 13: rotate with two lights
1108 * 14: persistent slow all blink
1109 * 15: blink once, then previous setting
1110 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001111static void xpad_send_led_command(struct usb_xpad *xpad, int command)
1112{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001113 struct xpad_output_packet *packet =
1114 &xpad->out_packets[XPAD_OUT_LED_IDX];
1115 unsigned long flags;
1116
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001117 command %= 16;
1118
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001119 spin_lock_irqsave(&xpad->odata_lock, flags);
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001120
1121 switch (xpad->xtype) {
1122 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001123 packet->data[0] = 0x01;
1124 packet->data[1] = 0x03;
1125 packet->data[2] = command;
1126 packet->len = 3;
1127 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001128 break;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001129
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001130 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001131 packet->data[0] = 0x00;
1132 packet->data[1] = 0x00;
1133 packet->data[2] = 0x08;
1134 packet->data[3] = 0x40 + command;
1135 packet->data[4] = 0x00;
1136 packet->data[5] = 0x00;
1137 packet->data[6] = 0x00;
1138 packet->data[7] = 0x00;
1139 packet->data[8] = 0x00;
1140 packet->data[9] = 0x00;
1141 packet->data[10] = 0x00;
1142 packet->data[11] = 0x00;
1143 packet->len = 12;
1144 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001145 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001146 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001147
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001148 xpad_try_sending_next_out_packet(xpad);
1149
1150 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001151}
1152
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001153/*
1154 * Light up the segment corresponding to the pad number on
1155 * Xbox 360 Controllers.
1156 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001157static void xpad_identify_controller(struct usb_xpad *xpad)
1158{
Dmitry Torokhovd9be3982015-12-16 14:24:58 -08001159 led_set_brightness(&xpad->led->led_cdev, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001160}
1161
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001162static void xpad_led_set(struct led_classdev *led_cdev,
1163 enum led_brightness value)
1164{
1165 struct xpad_led *xpad_led = container_of(led_cdev,
1166 struct xpad_led, led_cdev);
1167
1168 xpad_send_led_command(xpad_led->xpad, value);
1169}
1170
1171static int xpad_led_probe(struct usb_xpad *xpad)
1172{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001173 struct xpad_led *led;
1174 struct led_classdev *led_cdev;
1175 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001176
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001177 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001178 return 0;
1179
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001180 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1181 if (!led)
1182 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001183
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001184 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1185 if (xpad->pad_nr < 0) {
1186 error = xpad->pad_nr;
1187 goto err_free_mem;
1188 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001189
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001190 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001191 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001192
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001193 led_cdev = &led->led_cdev;
1194 led_cdev->name = led->name;
1195 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001196
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001197 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001198 if (error)
1199 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001200
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001201 xpad_identify_controller(xpad);
Pavel Rojtbergfbe6a312015-10-19 00:06:58 -07001202
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001203 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001204
1205err_free_id:
1206 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1207err_free_mem:
1208 kfree(led);
1209 xpad->led = NULL;
1210 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001211}
1212
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001213static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001214{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001215 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001216
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001217 if (xpad_led) {
1218 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001219 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -08001220 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001221 }
1222}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001223#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001224static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1225static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001226#endif
1227
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001228static int xpad_start_input(struct usb_xpad *xpad)
1229{
1230 int error;
1231
1232 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1233 return -EIO;
1234
1235 if (xpad->xtype == XTYPE_XBOXONE) {
1236 error = xpad_start_xbox_one(xpad);
1237 if (error) {
1238 usb_kill_urb(xpad->irq_in);
1239 return error;
1240 }
1241 }
1242
1243 return 0;
1244}
1245
1246static void xpad_stop_input(struct usb_xpad *xpad)
1247{
1248 usb_kill_urb(xpad->irq_in);
1249}
1250
1251static int xpad360w_start_input(struct usb_xpad *xpad)
1252{
1253 int error;
1254
1255 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1256 if (error)
1257 return -EIO;
1258
1259 /*
1260 * Send presence packet.
1261 * This will force the controller to resend connection packets.
1262 * This is useful in the case we activate the module after the
1263 * adapter has been plugged in, as it won't automatically
1264 * send us info about the controllers.
1265 */
1266 error = xpad_inquiry_pad_presence(xpad);
1267 if (error) {
1268 usb_kill_urb(xpad->irq_in);
1269 return error;
1270 }
1271
1272 return 0;
1273}
1274
1275static void xpad360w_stop_input(struct usb_xpad *xpad)
1276{
1277 usb_kill_urb(xpad->irq_in);
1278
1279 /* Make sure we are done with presence work if it was scheduled */
1280 flush_work(&xpad->work);
1281}
1282
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001283static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001285 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001286
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001287 return xpad_start_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001290static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001292 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001293
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001294 xpad_stop_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001297static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1298{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001299 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001300 set_bit(abs, input_dev->absbit);
1301
1302 switch (abs) {
1303 case ABS_X:
1304 case ABS_Y:
1305 case ABS_RX:
1306 case ABS_RY: /* the two sticks */
1307 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1308 break;
1309 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001310 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001311 if (xpad->xtype == XTYPE_XBOXONE)
1312 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1313 else
1314 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001315 break;
1316 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001317 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001318 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1319 break;
1320 }
1321}
1322
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001323static void xpad_deinit_input(struct usb_xpad *xpad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001325 if (xpad->input_created) {
1326 xpad->input_created = false;
1327 xpad_led_disconnect(xpad);
1328 input_unregister_device(xpad->dev);
1329 }
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001330}
1331
1332static int xpad_init_input(struct usb_xpad *xpad)
1333{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001334 struct input_dev *input_dev;
Axel Lin49cc69b2010-11-11 21:39:11 -08001335 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001336
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001337 input_dev = input_allocate_device();
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001338 if (!input_dev)
1339 return -ENOMEM;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001340
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001341 xpad->dev = input_dev;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001342 input_dev->name = xpad->name;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001343 input_dev->phys = xpad->phys;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001344 usb_to_input_id(xpad->udev, &input_dev->id);
1345 input_dev->dev.parent = &xpad->intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001346
1347 input_set_drvdata(input_dev, xpad);
1348
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001349 if (xpad->xtype != XTYPE_XBOX360W) {
1350 input_dev->open = xpad_open;
1351 input_dev->close = xpad_close;
1352 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001353
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001354 __set_bit(EV_KEY, input_dev->evbit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001355
Christoph Fritz7beae702010-07-13 09:42:33 -07001356 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001357 __set_bit(EV_ABS, input_dev->evbit);
Christoph Fritz7beae702010-07-13 09:42:33 -07001358 /* set up axes */
1359 for (i = 0; xpad_abs[i] >= 0; i++)
1360 xpad_set_up_abs(input_dev, xpad_abs[i]);
1361 }
1362
1363 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001364 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001365 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001366
Christoph Fritz7beae702010-07-13 09:42:33 -07001367 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001368 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1369 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001370 for (i = 0; xpad360_btn[i] >= 0; i++)
1371 __set_bit(xpad360_btn[i], input_dev->keybit);
1372 } else {
1373 for (i = 0; xpad_btn[i] >= 0; i++)
1374 __set_bit(xpad_btn[i], input_dev->keybit);
1375 }
1376
1377 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1378 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1379 __set_bit(xpad_btn_pad[i], input_dev->keybit);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -07001380 }
1381
1382 /*
1383 * This should be a simple else block. However historically
1384 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1385 * made no sense, but now we can not just switch back and have to
1386 * support both behaviors.
1387 */
1388 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1389 xpad->xtype == XTYPE_XBOX360W) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001390 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001391 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001392 }
1393
1394 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1395 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1396 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1397 } else {
1398 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1399 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1400 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001401
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001402 error = xpad_init_ff(xpad);
1403 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001404 goto err_free_input;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001405
1406 error = xpad_led_probe(xpad);
1407 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001408 goto err_destroy_ff;
1409
1410 error = input_register_device(xpad->dev);
1411 if (error)
1412 goto err_disconnect_led;
1413
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001414 xpad->input_created = true;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001415 return 0;
1416
1417err_disconnect_led:
1418 xpad_led_disconnect(xpad);
1419err_destroy_ff:
1420 input_ff_destroy(input_dev);
1421err_free_input:
1422 input_free_device(input_dev);
1423 return error;
1424}
1425
1426static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1427{
1428 struct usb_device *udev = interface_to_usbdev(intf);
1429 struct usb_xpad *xpad;
1430 struct usb_endpoint_descriptor *ep_irq_in;
1431 int ep_irq_in_idx;
1432 int i, error;
1433
Cameron Gutmancaca9252016-06-29 09:51:35 -07001434 if (intf->cur_altsetting->desc.bNumEndpoints != 2)
1435 return -ENODEV;
1436
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001437 for (i = 0; xpad_device[i].idVendor; i++) {
1438 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1439 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1440 break;
1441 }
1442
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001443 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1444 if (!xpad)
1445 return -ENOMEM;
1446
1447 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1448 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1449
1450 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1451 GFP_KERNEL, &xpad->idata_dma);
1452 if (!xpad->idata) {
1453 error = -ENOMEM;
1454 goto err_free_mem;
1455 }
1456
1457 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1458 if (!xpad->irq_in) {
1459 error = -ENOMEM;
1460 goto err_free_idata;
1461 }
1462
1463 xpad->udev = udev;
1464 xpad->intf = intf;
1465 xpad->mapping = xpad_device[i].mapping;
1466 xpad->xtype = xpad_device[i].xtype;
1467 xpad->name = xpad_device[i].name;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001468 INIT_WORK(&xpad->work, xpad_presence_work);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001469
1470 if (xpad->xtype == XTYPE_UNKNOWN) {
1471 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1472 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1473 xpad->xtype = XTYPE_XBOX360W;
Cameron Gutmanc7f14292016-06-23 10:24:42 -07001474 else if (intf->cur_altsetting->desc.bInterfaceProtocol == 208)
1475 xpad->xtype = XTYPE_XBOXONE;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001476 else
1477 xpad->xtype = XTYPE_XBOX360;
1478 } else {
1479 xpad->xtype = XTYPE_XBOX;
1480 }
1481
1482 if (dpad_to_buttons)
1483 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1484 if (triggers_to_buttons)
1485 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1486 if (sticks_to_null)
1487 xpad->mapping |= MAP_STICKS_TO_NULL;
1488 }
1489
Cameron Gutmanc7f14292016-06-23 10:24:42 -07001490 if (xpad->xtype == XTYPE_XBOXONE &&
1491 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1492 /*
1493 * The Xbox One controller lists three interfaces all with the
1494 * same interface class, subclass and protocol. Differentiate by
1495 * interface number.
1496 */
1497 error = -ENODEV;
1498 goto err_free_in_urb;
1499 }
1500
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001501 error = xpad_init_output(intf, xpad);
1502 if (error)
1503 goto err_free_in_urb;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001504
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001505 /* Xbox One controller has in/out endpoints swapped. */
1506 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1507 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 usb_fill_int_urb(xpad->irq_in, udev,
1510 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1511 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1512 xpad, ep_irq_in->bInterval);
1513 xpad->irq_in->transfer_dma = xpad->idata_dma;
1514 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001517
Brian Magnuson99de0912008-04-03 16:19:23 -04001518 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001519 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001520 * Submit the int URB immediately rather than waiting for open
1521 * because we get status messages from the device whether
1522 * or not any controllers are attached. In fact, it's
1523 * exactly the message that a controller has arrived that
1524 * we're waiting for.
1525 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001526 error = xpad360w_start_input(xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001527 if (error)
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001528 goto err_deinit_output;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001529 /*
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001530 * Wireless controllers require RESET_RESUME to work properly
1531 * after suspend. Ideally this quirk should be in usb core
1532 * quirk list, but we have too many vendors producing these
1533 * controllers and we'd need to maintain 2 identical lists
1534 * here in this driver and in usb core.
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001535 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001536 udev->quirks |= USB_QUIRK_RESET_RESUME;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001537 } else {
1538 error = xpad_init_input(xpad);
1539 if (error)
1540 goto err_deinit_output;
Brian Magnuson99de0912008-04-03 16:19:23 -04001541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001543
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001544err_deinit_output:
1545 xpad_deinit_output(xpad);
1546err_free_in_urb:
1547 usb_free_urb(xpad->irq_in);
1548err_free_idata:
1549 usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1550err_free_mem:
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001551 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001552 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
1555static void xpad_disconnect(struct usb_interface *intf)
1556{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001557 struct usb_xpad *xpad = usb_get_intfdata(intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001558
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001559 if (xpad->xtype == XTYPE_XBOX360W)
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001560 xpad360w_stop_input(xpad);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001561
1562 xpad_deinit_input(xpad);
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001563
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001564 /*
1565 * Now that both input device and LED device are gone we can
1566 * stop output URB.
1567 */
1568 xpad_stop_output(xpad);
1569
1570 xpad_deinit_output(xpad);
1571
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001572 usb_free_urb(xpad->irq_in);
1573 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1574 xpad->idata, xpad->idata_dma);
1575
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001576 kfree(xpad);
1577
1578 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001581static int xpad_suspend(struct usb_interface *intf, pm_message_t message)
1582{
1583 struct usb_xpad *xpad = usb_get_intfdata(intf);
1584 struct input_dev *input = xpad->dev;
1585
1586 if (xpad->xtype == XTYPE_XBOX360W) {
1587 /*
1588 * Wireless controllers always listen to input so
1589 * they are notified when controller shows up
1590 * or goes away.
1591 */
1592 xpad360w_stop_input(xpad);
1593 } else {
1594 mutex_lock(&input->mutex);
1595 if (input->users)
1596 xpad_stop_input(xpad);
1597 mutex_unlock(&input->mutex);
1598 }
1599
1600 xpad_stop_output(xpad);
1601
1602 return 0;
1603}
1604
1605static int xpad_resume(struct usb_interface *intf)
1606{
1607 struct usb_xpad *xpad = usb_get_intfdata(intf);
1608 struct input_dev *input = xpad->dev;
1609 int retval = 0;
1610
1611 if (xpad->xtype == XTYPE_XBOX360W) {
1612 retval = xpad360w_start_input(xpad);
1613 } else {
1614 mutex_lock(&input->mutex);
1615 if (input->users)
1616 retval = xpad_start_input(xpad);
1617 mutex_unlock(&input->mutex);
1618 }
1619
1620 return retval;
1621}
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 .name = "xpad",
1625 .probe = xpad_probe,
1626 .disconnect = xpad_disconnect,
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001627 .suspend = xpad_suspend,
1628 .resume = xpad_resume,
1629 .reset_resume = xpad_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 .id_table = xpad_table,
1631};
1632
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001633module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635MODULE_AUTHOR(DRIVER_AUTHOR);
1636MODULE_DESCRIPTION(DRIVER_DESC);
1637MODULE_LICENSE("GPL");