blob: fa2612c9799c9fd49238fc34f8449bde16e23628 [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 },
Erik Lundgren39a7a882015-10-06 17:04:11 -0700131 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Covert Forces)", 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 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400156 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700157 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800158 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700159 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
160 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
161 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800162 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800163 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800164 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
165 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
166 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700167 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800168 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
169 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
170 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
171 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
172 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800173 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700174 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700175 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800176 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700177 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
178 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
179 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800180 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700181 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
182 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800183 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
184 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800185 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
186 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
187 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700188 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700189 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800190 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800191 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400192 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800193 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700194 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
195 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
196 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
197 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
198 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800199 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
200 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Frank Razenberga7b44732014-09-08 11:32:20 -0700201 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700202 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700203 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800204 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700205 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800206 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700207 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
208 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800209 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
210 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700211 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800212 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700213 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
214 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
215 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
216 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
217 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700218 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800219 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
220 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Anssi Hannulafc55e952008-04-03 16:18:44 -0400223/* buttons shared with xbox and xbox360 */
224static const signed short xpad_common_btn[] = {
225 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700226 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 -1 /* terminating entry */
228};
229
Anssi Hannulafc55e952008-04-03 16:18:44 -0400230/* original xbox controllers only */
231static const signed short xpad_btn[] = {
232 BTN_C, BTN_Z, /* "analog" buttons */
233 -1 /* terminating entry */
234};
235
Christoph Fritz7beae702010-07-13 09:42:33 -0700236/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700237static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700238 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
239 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700240 -1 /* terminating entry */
241};
242
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800243/* used when triggers are mapped to buttons */
244static const signed short xpad_btn_triggers[] = {
245 BTN_TL2, BTN_TR2, /* triggers left/right */
246 -1
247};
248
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400249static const signed short xpad360_btn[] = { /* buttons for x360 controller */
250 BTN_TL, BTN_TR, /* Button LB/RB */
251 BTN_MODE, /* The big X button */
252 -1
253};
254
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100255static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 ABS_X, ABS_Y, /* left stick */
257 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700258 -1 /* terminating entry */
259};
260
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800261/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700262static const signed short xpad_abs_pad[] = {
263 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 -1 /* terminating entry */
265};
266
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800267/* used when triggers are mapped to axes */
268static const signed short xpad_abs_triggers[] = {
269 ABS_Z, ABS_RZ, /* triggers left/right */
270 -1
271};
272
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700273/*
274 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400275 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400276 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700277 * wireless controllers have protocol 129.
278 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400279#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400280 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
281 .idVendor = (vend), \
282 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
283 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400284 .bInterfaceProtocol = (pr)
285#define XPAD_XBOX360_VENDOR(vend) \
286 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
287 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400288
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700289/* The Xbox One controller uses subclass 71 and protocol 208. */
290#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
291 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
292 .idVendor = (vend), \
293 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
294 .bInterfaceSubClass = 71, \
295 .bInterfaceProtocol = (pr)
296#define XPAD_XBOXONE_VENDOR(vend) \
297 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
298
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800299static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700301 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400302 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700303 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400304 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
305 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700306 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400307 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700308 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400309 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700310 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700311 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700312 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
313 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800314 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700315 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
316 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
317 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 { }
319};
320
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800321MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800323struct xpad_output_packet {
324 u8 data[XPAD_PKT_LEN];
325 u8 len;
326 bool pending;
327};
328
329#define XPAD_OUT_CMD_IDX 0
330#define XPAD_OUT_FF_IDX 1
331#define XPAD_OUT_LED_IDX (1 + IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF))
332#define XPAD_NUM_OUT_PACKETS (1 + \
333 IS_ENABLED(CONFIG_JOYSTICK_XPAD_FF) + \
334 IS_ENABLED(CONFIG_JOYSTICK_XPAD_LEDS))
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700337 struct input_dev *dev; /* input device interface */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800338 struct input_dev __rcu *x360w_dev;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700339 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700340 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500341
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800342 bool pad_present;
343 bool input_created;
Brian Magnuson99de0912008-04-03 16:19:23 -0400344
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700345 struct urb *irq_in; /* urb for interrupt in report */
346 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500348
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400349 struct urb *irq_out; /* urb for interrupt out report */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800350 struct usb_anchor irq_out_anchor;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800351 bool irq_out_active; /* we must not use an active URB */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800352 u8 odata_serial; /* serial number for xbox one protocol */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800353 unsigned char *odata; /* output data */
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400354 dma_addr_t odata_dma;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800355 spinlock_t odata_lock;
356
357 struct xpad_output_packet out_packets[XPAD_NUM_OUT_PACKETS];
358 int last_out_packet;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400359
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400360#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
361 struct xpad_led *led;
362#endif
363
364 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700365
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800366 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400367 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700368 int pad_nr; /* the order x360 pads were attached */
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -0700369 const char *name; /* name of the device */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800370 struct work_struct work; /* init/remove device from callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800373static int xpad_init_input(struct usb_xpad *xpad);
374static void xpad_deinit_input(struct usb_xpad *xpad);
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * xpad_process_packet
378 *
379 * Completes a request by converting the data into events for the
380 * input subsystem.
381 *
382 * The used report descriptor was taken from ITO Takayukis website:
383 * http://euc.jp/periphs/xbox-controller.ja.html
384 */
David Howells7d12e782006-10-05 14:55:46 +0100385static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500387 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Christoph Fritz7beae702010-07-13 09:42:33 -0700389 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
390 /* left stick */
391 input_report_abs(dev, ABS_X,
392 (__s16) le16_to_cpup((__le16 *)(data + 12)));
393 input_report_abs(dev, ABS_Y,
394 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500395
Christoph Fritz7beae702010-07-13 09:42:33 -0700396 /* right stick */
397 input_report_abs(dev, ABS_RX,
398 (__s16) le16_to_cpup((__le16 *)(data + 16)));
399 input_report_abs(dev, ABS_RY,
400 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
401 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800404 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
405 input_report_key(dev, BTN_TL2, data[10]);
406 input_report_key(dev, BTN_TR2, data[11]);
407 } else {
408 input_report_abs(dev, ABS_Z, data[10]);
409 input_report_abs(dev, ABS_RZ, data[11]);
410 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800413 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700414 /* dpad as buttons (left, right, up, down) */
415 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
416 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
417 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
418 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800419 } else {
420 input_report_abs(dev, ABS_HAT0X,
421 !!(data[2] & 0x08) - !!(data[2] & 0x04));
422 input_report_abs(dev, ABS_HAT0Y,
423 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700424 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700427 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700428 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700429 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
430 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* "analog" buttons A, B, X, Y */
433 input_report_key(dev, BTN_A, data[4]);
434 input_report_key(dev, BTN_B, data[5]);
435 input_report_key(dev, BTN_X, data[6]);
436 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* "analog" buttons black, white */
439 input_report_key(dev, BTN_C, data[8]);
440 input_report_key(dev, BTN_Z, data[9]);
441
442 input_sync(dev);
443}
444
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400445/*
446 * xpad360_process_packet
447 *
448 * Completes a request by converting the data into events for the
449 * input subsystem. It is version for xbox 360 controller
450 *
451 * The used report descriptor was taken from:
452 * http://www.free60.org/wiki/Gamepad
453 */
454
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800455static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400456 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400457{
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400458 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800459 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700460 /* dpad as buttons (left, right, up, down) */
461 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
462 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
463 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
464 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -0700465 }
466
467 /*
468 * This should be a simple else block. However historically
469 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
470 * made no sense, but now we can not just switch back and have to
471 * support both behaviors.
472 */
473 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
474 xpad->xtype == XTYPE_XBOX360W) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800475 input_report_abs(dev, ABS_HAT0X,
476 !!(data[2] & 0x08) - !!(data[2] & 0x04));
477 input_report_abs(dev, ABS_HAT0Y,
478 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400479 }
480
481 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400482 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700483 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400484
485 /* stick press left/right */
486 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
487 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
488
489 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400490 input_report_key(dev, BTN_A, data[3] & 0x10);
491 input_report_key(dev, BTN_B, data[3] & 0x20);
492 input_report_key(dev, BTN_X, data[3] & 0x40);
493 input_report_key(dev, BTN_Y, data[3] & 0x80);
494 input_report_key(dev, BTN_TL, data[3] & 0x01);
495 input_report_key(dev, BTN_TR, data[3] & 0x02);
496 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400497
Christoph Fritz7beae702010-07-13 09:42:33 -0700498 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
499 /* left stick */
500 input_report_abs(dev, ABS_X,
501 (__s16) le16_to_cpup((__le16 *)(data + 6)));
502 input_report_abs(dev, ABS_Y,
503 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400504
Christoph Fritz7beae702010-07-13 09:42:33 -0700505 /* right stick */
506 input_report_abs(dev, ABS_RX,
507 (__s16) le16_to_cpup((__le16 *)(data + 10)));
508 input_report_abs(dev, ABS_RY,
509 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
510 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400511
512 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800513 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
514 input_report_key(dev, BTN_TL2, data[4]);
515 input_report_key(dev, BTN_TR2, data[5]);
516 } else {
517 input_report_abs(dev, ABS_Z, data[4]);
518 input_report_abs(dev, ABS_RZ, data[5]);
519 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400520
521 input_sync(dev);
522}
523
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800524static void xpad_presence_work(struct work_struct *work)
525{
526 struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
527 int error;
528
529 if (xpad->pad_present) {
530 error = xpad_init_input(xpad);
531 if (error) {
532 /* complain only, not much else we can do here */
533 dev_err(&xpad->dev->dev,
534 "unable to init device: %d\n", error);
535 } else {
536 rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
537 }
538 } else {
539 RCU_INIT_POINTER(xpad->x360w_dev, NULL);
540 synchronize_rcu();
541 /*
542 * Now that we are sure xpad360w_process_packet is not
543 * using input device we can get rid of it.
544 */
545 xpad_deinit_input(xpad);
546 }
547}
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700548
Brian Magnuson99de0912008-04-03 16:19:23 -0400549/*
550 * xpad360w_process_packet
551 *
552 * Completes a request by converting the data into events for the
553 * input subsystem. It is version for xbox 360 wireless controller.
554 *
555 * Byte.Bit
556 * 00.1 - Status change: The controller or headset has connected/disconnected
557 * Bits 01.7 and 01.6 are valid
558 * 01.7 - Controller present
559 * 01.6 - Headset present
560 * 01.1 - Pad state (Bytes 4+) valid
561 *
562 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400563static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
564{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800565 struct input_dev *dev;
566 bool present;
567
Brian Magnuson99de0912008-04-03 16:19:23 -0400568 /* Presence change */
569 if (data[0] & 0x08) {
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800570 present = (data[1] & 0x80) != 0;
571
572 if (xpad->pad_present != present) {
573 xpad->pad_present = present;
574 schedule_work(&xpad->work);
575 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400576 }
577
578 /* Valid pad data */
Clement Calmels93a017aa22015-12-12 21:20:11 -0800579 if (data[1] != 0x1)
Brian Magnuson99de0912008-04-03 16:19:23 -0400580 return;
581
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800582 rcu_read_lock();
583 dev = rcu_dereference(xpad->x360w_dev);
584 if (dev)
585 xpad360_process_packet(xpad, dev, cmd, &data[4]);
586 rcu_read_unlock();
Brian Magnuson99de0912008-04-03 16:19:23 -0400587}
588
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700589/*
590 * xpadone_process_buttons
591 *
592 * Process a button update packet from an Xbox one controller.
593 */
594static void xpadone_process_buttons(struct usb_xpad *xpad,
595 struct input_dev *dev,
596 unsigned char *data)
597{
598 /* menu/view buttons */
599 input_report_key(dev, BTN_START, data[4] & 0x04);
600 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
601
602 /* buttons A,B,X,Y */
603 input_report_key(dev, BTN_A, data[4] & 0x10);
604 input_report_key(dev, BTN_B, data[4] & 0x20);
605 input_report_key(dev, BTN_X, data[4] & 0x40);
606 input_report_key(dev, BTN_Y, data[4] & 0x80);
607
608 /* digital pad */
609 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
610 /* dpad as buttons (left, right, up, down) */
611 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
612 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
613 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
614 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
615 } else {
616 input_report_abs(dev, ABS_HAT0X,
617 !!(data[5] & 0x08) - !!(data[5] & 0x04));
618 input_report_abs(dev, ABS_HAT0Y,
619 !!(data[5] & 0x02) - !!(data[5] & 0x01));
620 }
621
622 /* TL/TR */
623 input_report_key(dev, BTN_TL, data[5] & 0x10);
624 input_report_key(dev, BTN_TR, data[5] & 0x20);
625
626 /* stick press left/right */
627 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
628 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
629
630 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
631 /* left stick */
632 input_report_abs(dev, ABS_X,
633 (__s16) le16_to_cpup((__le16 *)(data + 10)));
634 input_report_abs(dev, ABS_Y,
635 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
636
637 /* right stick */
638 input_report_abs(dev, ABS_RX,
639 (__s16) le16_to_cpup((__le16 *)(data + 14)));
640 input_report_abs(dev, ABS_RY,
641 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
642 }
643
644 /* triggers left/right */
645 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
646 input_report_key(dev, BTN_TL2,
647 (__u16) le16_to_cpup((__le16 *)(data + 6)));
648 input_report_key(dev, BTN_TR2,
649 (__u16) le16_to_cpup((__le16 *)(data + 8)));
650 } else {
651 input_report_abs(dev, ABS_Z,
652 (__u16) le16_to_cpup((__le16 *)(data + 6)));
653 input_report_abs(dev, ABS_RZ,
654 (__u16) le16_to_cpup((__le16 *)(data + 8)));
655 }
656
657 input_sync(dev);
658}
659
660/*
661 * xpadone_process_packet
662 *
663 * Completes a request by converting the data into events for the
664 * input subsystem. This version is for the Xbox One controller.
665 *
666 * The report format was gleaned from
667 * https://github.com/kylelemons/xbox/blob/master/xbox.go
668 */
669
670static void xpadone_process_packet(struct usb_xpad *xpad,
671 u16 cmd, unsigned char *data)
672{
673 struct input_dev *dev = xpad->dev;
674
675 switch (data[0]) {
676 case 0x20:
677 xpadone_process_buttons(xpad, dev, data);
678 break;
679
680 case 0x07:
681 /* the xbox button has its own special report */
682 input_report_key(dev, BTN_MODE, data[4] & 0x01);
683 input_sync(dev);
684 break;
685 }
686}
687
David Howells7d12e782006-10-05 14:55:46 +0100688static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700691 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200692 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500693
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200694 status = urb->status;
695
696 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 case 0:
698 /* success */
699 break;
700 case -ECONNRESET:
701 case -ENOENT:
702 case -ESHUTDOWN:
703 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700704 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400705 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return;
707 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700708 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400709 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto exit;
711 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500712
Brian Magnuson99de0912008-04-03 16:19:23 -0400713 switch (xpad->xtype) {
714 case XTYPE_XBOX360:
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800715 xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400716 break;
717 case XTYPE_XBOX360W:
718 xpad360w_process_packet(xpad, 0, xpad->idata);
719 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700720 case XTYPE_XBOXONE:
721 xpadone_process_packet(xpad, 0, xpad->idata);
722 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400723 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400724 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800728 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700730 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700731 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800734/* Callers must hold xpad->odata_lock spinlock */
735static bool xpad_prepare_next_out_packet(struct usb_xpad *xpad)
736{
737 struct xpad_output_packet *pkt, *packet = NULL;
738 int i;
739
740 for (i = 0; i < XPAD_NUM_OUT_PACKETS; i++) {
741 if (++xpad->last_out_packet >= XPAD_NUM_OUT_PACKETS)
742 xpad->last_out_packet = 0;
743
744 pkt = &xpad->out_packets[xpad->last_out_packet];
745 if (pkt->pending) {
746 dev_dbg(&xpad->intf->dev,
747 "%s - found pending output packet %d\n",
748 __func__, xpad->last_out_packet);
749 packet = pkt;
750 break;
751 }
752 }
753
754 if (packet) {
755 memcpy(xpad->odata, packet->data, packet->len);
756 xpad->irq_out->transfer_buffer_length = packet->len;
757 return true;
758 }
759
760 return false;
761}
762
763/* Callers must hold xpad->odata_lock spinlock */
764static int xpad_try_sending_next_out_packet(struct usb_xpad *xpad)
765{
766 int error;
767
768 if (!xpad->irq_out_active && xpad_prepare_next_out_packet(xpad)) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800769 usb_anchor_urb(xpad->irq_out, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800770 error = usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
771 if (error) {
772 dev_err(&xpad->intf->dev,
773 "%s - usb_submit_urb failed with result %d\n",
774 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800775 usb_unanchor_urb(xpad->irq_out);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800776 return -EIO;
777 }
778
779 xpad->irq_out_active = true;
780 }
781
782 return 0;
783}
784
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400785static void xpad_irq_out(struct urb *urb)
786{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700787 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700788 struct device *dev = &xpad->intf->dev;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800789 int status = urb->status;
790 int error;
791 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400792
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800793 spin_lock_irqsave(&xpad->odata_lock, flags);
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200794
795 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700796 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400797 /* success */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800798 xpad->out_packets[xpad->last_out_packet].pending = false;
799 xpad->irq_out_active = xpad_prepare_next_out_packet(xpad);
800 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700801
802 case -ECONNRESET:
803 case -ENOENT:
804 case -ESHUTDOWN:
805 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700806 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
807 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800808 xpad->irq_out_active = false;
809 break;
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700810
811 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700812 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
813 __func__, status);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800814 break;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400815 }
816
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800817 if (xpad->irq_out_active) {
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800818 usb_anchor_urb(urb, &xpad->irq_out_anchor);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800819 error = usb_submit_urb(urb, GFP_ATOMIC);
820 if (error) {
821 dev_err(dev,
822 "%s - usb_submit_urb failed with result %d\n",
823 __func__, error);
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800824 usb_unanchor_urb(urb);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800825 xpad->irq_out_active = false;
826 }
827 }
828
829 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400830}
831
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400832static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
833{
834 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700835 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800836 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400837
Chris Moellerb514d4f2011-07-04 19:21:59 -0700838 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400839 return 0;
840
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800841 init_usb_anchor(&xpad->irq_out_anchor);
842
Daniel Mack997ea582010-04-12 13:17:25 +0200843 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
844 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800845 if (!xpad->odata) {
846 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400847 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800848 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400849
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800850 spin_lock_init(&xpad->odata_lock);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400851
852 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800853 if (!xpad->irq_out) {
854 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400855 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800856 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400857
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700858 /* Xbox One controller has in/out endpoints swapped. */
859 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
860 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
861
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400862 usb_fill_int_urb(xpad->irq_out, xpad->udev,
863 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
864 xpad->odata, XPAD_PKT_LEN,
865 xpad_irq_out, xpad, ep_irq_out->bInterval);
866 xpad->irq_out->transfer_dma = xpad->odata_dma;
867 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
868
869 return 0;
870
Daniel Mack997ea582010-04-12 13:17:25 +0200871 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400872 fail1: return error;
873}
874
875static void xpad_stop_output(struct usb_xpad *xpad)
876{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -0800877 if (xpad->xtype != XTYPE_UNKNOWN) {
878 if (!usb_wait_anchor_empty_timeout(&xpad->irq_out_anchor,
879 5000)) {
880 dev_warn(&xpad->intf->dev,
881 "timed out waiting for output URB to complete, killing\n");
882 usb_kill_anchored_urbs(&xpad->irq_out_anchor);
883 }
884 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400885}
886
887static void xpad_deinit_output(struct usb_xpad *xpad)
888{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700889 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400890 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200891 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400892 xpad->odata, xpad->odata_dma);
893 }
894}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400895
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700896static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
897{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800898 struct xpad_output_packet *packet =
899 &xpad->out_packets[XPAD_OUT_CMD_IDX];
900 unsigned long flags;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700901 int retval;
902
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800903 spin_lock_irqsave(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700904
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800905 packet->data[0] = 0x08;
906 packet->data[1] = 0x00;
907 packet->data[2] = 0x0F;
908 packet->data[3] = 0xC0;
909 packet->data[4] = 0x00;
910 packet->data[5] = 0x00;
911 packet->data[6] = 0x00;
912 packet->data[7] = 0x00;
913 packet->data[8] = 0x00;
914 packet->data[9] = 0x00;
915 packet->data[10] = 0x00;
916 packet->data[11] = 0x00;
917 packet->len = 12;
918 packet->pending = true;
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700919
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800920 /* Reset the sequence so we send out presence first */
921 xpad->last_out_packet = -1;
922 retval = xpad_try_sending_next_out_packet(xpad);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700923
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800924 spin_unlock_irqrestore(&xpad->odata_lock, flags);
925
926 return retval;
927}
928
929static int xpad_start_xbox_one(struct usb_xpad *xpad)
930{
931 struct xpad_output_packet *packet =
932 &xpad->out_packets[XPAD_OUT_CMD_IDX];
933 unsigned long flags;
934 int retval;
935
936 spin_lock_irqsave(&xpad->odata_lock, flags);
937
938 /* Xbox one controller needs to be initialized. */
939 packet->data[0] = 0x05;
940 packet->data[1] = 0x20;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -0800941 packet->data[2] = xpad->odata_serial++; /* packet serial */
942 packet->data[3] = 0x01; /* rumble bit enable? */
943 packet->data[4] = 0x00;
944 packet->len = 5;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800945 packet->pending = true;
946
947 /* Reset the sequence so we send out start packet first */
948 xpad->last_out_packet = -1;
949 retval = xpad_try_sending_next_out_packet(xpad);
950
951 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700952
953 return retval;
954}
955
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400956#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800957static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400958{
959 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800960 struct xpad_output_packet *packet = &xpad->out_packets[XPAD_OUT_FF_IDX];
Pavel Rojtberg06008152015-10-10 09:32:55 -0700961 __u16 strong;
962 __u16 weak;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800963 int retval;
964 unsigned long flags;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400965
Pavel Rojtberg06008152015-10-10 09:32:55 -0700966 if (effect->type != FF_RUMBLE)
967 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -0800968
Pavel Rojtberg06008152015-10-10 09:32:55 -0700969 strong = effect->u.rumble.strong_magnitude;
970 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800971
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800972 spin_lock_irqsave(&xpad->odata_lock, flags);
973
Pavel Rojtberg06008152015-10-10 09:32:55 -0700974 switch (xpad->xtype) {
975 case XTYPE_XBOX:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800976 packet->data[0] = 0x00;
977 packet->data[1] = 0x06;
978 packet->data[2] = 0x00;
979 packet->data[3] = strong / 256; /* left actuator */
980 packet->data[4] = 0x00;
981 packet->data[5] = weak / 256; /* right actuator */
982 packet->len = 6;
983 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -0700984 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800985
Pavel Rojtberg06008152015-10-10 09:32:55 -0700986 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -0800987 packet->data[0] = 0x00;
988 packet->data[1] = 0x08;
989 packet->data[2] = 0x00;
990 packet->data[3] = strong / 256; /* left actuator? */
991 packet->data[4] = weak / 256; /* right actuator? */
992 packet->data[5] = 0x00;
993 packet->data[6] = 0x00;
994 packet->data[7] = 0x00;
995 packet->len = 8;
996 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -0700997 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800998
Pavel Rojtberg06008152015-10-10 09:32:55 -0700999 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001000 packet->data[0] = 0x00;
1001 packet->data[1] = 0x01;
1002 packet->data[2] = 0x0F;
1003 packet->data[3] = 0xC0;
1004 packet->data[4] = 0x00;
1005 packet->data[5] = strong / 256;
1006 packet->data[6] = weak / 256;
1007 packet->data[7] = 0x00;
1008 packet->data[8] = 0x00;
1009 packet->data[9] = 0x00;
1010 packet->data[10] = 0x00;
1011 packet->data[11] = 0x00;
1012 packet->len = 12;
1013 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001014 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001015
Pavel Rojtberg06008152015-10-10 09:32:55 -07001016 case XTYPE_XBOXONE:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001017 packet->data[0] = 0x09; /* activate rumble */
1018 packet->data[1] = 0x08;
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001019 packet->data[2] = xpad->odata_serial++;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001020 packet->data[3] = 0x08; /* continuous effect */
1021 packet->data[4] = 0x00; /* simple rumble mode */
1022 packet->data[5] = 0x03; /* L and R actuator only */
1023 packet->data[6] = 0x00; /* TODO: LT actuator */
1024 packet->data[7] = 0x00; /* TODO: RT actuator */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001025 packet->data[8] = strong / 512; /* left actuator */
1026 packet->data[9] = weak / 512; /* right actuator */
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001027 packet->data[10] = 0x80; /* length of pulse */
1028 packet->data[11] = 0x00; /* stop period of pulse */
Pierre-Loup A. Griffais2a6d7522015-12-09 13:40:37 -08001029 packet->data[12] = 0x00;
1030 packet->len = 13;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001031 packet->pending = true;
Pavel Rojtberg06008152015-10-10 09:32:55 -07001032 break;
Benjamin Valentin12187302010-01-21 20:19:06 -08001033
Pavel Rojtberg06008152015-10-10 09:32:55 -07001034 default:
1035 dev_dbg(&xpad->dev->dev,
1036 "%s - rumble command sent to unsupported xpad type: %d\n",
1037 __func__, xpad->xtype);
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001038 retval = -EINVAL;
1039 goto out;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001040 }
1041
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001042 retval = xpad_try_sending_next_out_packet(xpad);
1043
1044out:
1045 spin_unlock_irqrestore(&xpad->odata_lock, flags);
1046 return retval;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001047}
1048
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001049static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001050{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -07001051 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -04001052 return 0;
1053
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001054 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
1055
1056 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
1057}
1058
1059#else
1060static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
1061#endif
1062
1063#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
1064#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001065#include <linux/idr.h>
1066
1067static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001068
1069struct xpad_led {
1070 char name[16];
1071 struct led_classdev led_cdev;
1072 struct usb_xpad *xpad;
1073};
1074
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001075/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001076 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001077 * @param command
1078 * 0: off
1079 * 1: all blink, then previous setting
1080 * 2: 1/top-left blink, then on
1081 * 3: 2/top-right blink, then on
1082 * 4: 3/bottom-left blink, then on
1083 * 5: 4/bottom-right blink, then on
1084 * 6: 1/top-left on
1085 * 7: 2/top-right on
1086 * 8: 3/bottom-left on
1087 * 9: 4/bottom-right on
1088 * 10: rotate
1089 * 11: blink, based on previous setting
1090 * 12: slow blink, based on previous setting
1091 * 13: rotate with two lights
1092 * 14: persistent slow all blink
1093 * 15: blink once, then previous setting
1094 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001095static void xpad_send_led_command(struct usb_xpad *xpad, int command)
1096{
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001097 struct xpad_output_packet *packet =
1098 &xpad->out_packets[XPAD_OUT_LED_IDX];
1099 unsigned long flags;
1100
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001101 command %= 16;
1102
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001103 spin_lock_irqsave(&xpad->odata_lock, flags);
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001104
1105 switch (xpad->xtype) {
1106 case XTYPE_XBOX360:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001107 packet->data[0] = 0x01;
1108 packet->data[1] = 0x03;
1109 packet->data[2] = command;
1110 packet->len = 3;
1111 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001112 break;
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001113
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001114 case XTYPE_XBOX360W:
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001115 packet->data[0] = 0x00;
1116 packet->data[1] = 0x00;
1117 packet->data[2] = 0x08;
1118 packet->data[3] = 0x40 + command;
1119 packet->data[4] = 0x00;
1120 packet->data[5] = 0x00;
1121 packet->data[6] = 0x00;
1122 packet->data[7] = 0x00;
1123 packet->data[8] = 0x00;
1124 packet->data[9] = 0x00;
1125 packet->data[10] = 0x00;
1126 packet->data[11] = 0x00;
1127 packet->len = 12;
1128 packet->pending = true;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001129 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001130 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001131
Pavel Rojtberg7fc595f2015-12-09 11:57:01 -08001132 xpad_try_sending_next_out_packet(xpad);
1133
1134 spin_unlock_irqrestore(&xpad->odata_lock, flags);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001135}
1136
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001137/*
1138 * Light up the segment corresponding to the pad number on
1139 * Xbox 360 Controllers.
1140 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001141static void xpad_identify_controller(struct usb_xpad *xpad)
1142{
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -07001143 xpad_send_led_command(xpad, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001144}
1145
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001146static void xpad_led_set(struct led_classdev *led_cdev,
1147 enum led_brightness value)
1148{
1149 struct xpad_led *xpad_led = container_of(led_cdev,
1150 struct xpad_led, led_cdev);
1151
1152 xpad_send_led_command(xpad_led->xpad, value);
1153}
1154
1155static int xpad_led_probe(struct usb_xpad *xpad)
1156{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001157 struct xpad_led *led;
1158 struct led_classdev *led_cdev;
1159 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001160
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001161 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001162 return 0;
1163
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001164 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1165 if (!led)
1166 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001167
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001168 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1169 if (xpad->pad_nr < 0) {
1170 error = xpad->pad_nr;
1171 goto err_free_mem;
1172 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001173
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001174 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001175 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001176
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001177 led_cdev = &led->led_cdev;
1178 led_cdev->name = led->name;
1179 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001180
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001181 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001182 if (error)
1183 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001184
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001185 xpad_identify_controller(xpad);
Pavel Rojtbergfbe6a312015-10-19 00:06:58 -07001186
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001187 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001188
1189err_free_id:
1190 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1191err_free_mem:
1192 kfree(led);
1193 xpad->led = NULL;
1194 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001195}
1196
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001197static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001198{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001199 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001200
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001201 if (xpad_led) {
1202 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001203 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -08001204 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001205 }
1206}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001207#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001208static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1209static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001210static void xpad_identify_controller(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001211#endif
1212
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001213static int xpad_start_input(struct usb_xpad *xpad)
1214{
1215 int error;
1216
1217 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
1218 return -EIO;
1219
1220 if (xpad->xtype == XTYPE_XBOXONE) {
1221 error = xpad_start_xbox_one(xpad);
1222 if (error) {
1223 usb_kill_urb(xpad->irq_in);
1224 return error;
1225 }
1226 }
1227
1228 return 0;
1229}
1230
1231static void xpad_stop_input(struct usb_xpad *xpad)
1232{
1233 usb_kill_urb(xpad->irq_in);
1234}
1235
1236static int xpad360w_start_input(struct usb_xpad *xpad)
1237{
1238 int error;
1239
1240 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1241 if (error)
1242 return -EIO;
1243
1244 /*
1245 * Send presence packet.
1246 * This will force the controller to resend connection packets.
1247 * This is useful in the case we activate the module after the
1248 * adapter has been plugged in, as it won't automatically
1249 * send us info about the controllers.
1250 */
1251 error = xpad_inquiry_pad_presence(xpad);
1252 if (error) {
1253 usb_kill_urb(xpad->irq_in);
1254 return error;
1255 }
1256
1257 return 0;
1258}
1259
1260static void xpad360w_stop_input(struct usb_xpad *xpad)
1261{
1262 usb_kill_urb(xpad->irq_in);
1263
1264 /* Make sure we are done with presence work if it was scheduled */
1265 flush_work(&xpad->work);
1266}
1267
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001268static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001270 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001271
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001272 return xpad_start_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001275static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001277 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001278
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001279 xpad_stop_input(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001282static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1283{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001284 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001285 set_bit(abs, input_dev->absbit);
1286
1287 switch (abs) {
1288 case ABS_X:
1289 case ABS_Y:
1290 case ABS_RX:
1291 case ABS_RY: /* the two sticks */
1292 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1293 break;
1294 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001295 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001296 if (xpad->xtype == XTYPE_XBOXONE)
1297 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1298 else
1299 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001300 break;
1301 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001302 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001303 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1304 break;
1305 }
1306}
1307
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001308static void xpad_deinit_input(struct usb_xpad *xpad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001310 if (xpad->input_created) {
1311 xpad->input_created = false;
1312 xpad_led_disconnect(xpad);
1313 input_unregister_device(xpad->dev);
1314 }
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001315}
1316
1317static int xpad_init_input(struct usb_xpad *xpad)
1318{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001319 struct input_dev *input_dev;
Axel Lin49cc69b2010-11-11 21:39:11 -08001320 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001321
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001322 input_dev = input_allocate_device();
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001323 if (!input_dev)
1324 return -ENOMEM;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001325
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001326 xpad->dev = input_dev;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001327 input_dev->name = xpad->name;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001328 input_dev->phys = xpad->phys;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001329 usb_to_input_id(xpad->udev, &input_dev->id);
1330 input_dev->dev.parent = &xpad->intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001331
1332 input_set_drvdata(input_dev, xpad);
1333
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001334 if (xpad->xtype != XTYPE_XBOX360W) {
1335 input_dev->open = xpad_open;
1336 input_dev->close = xpad_close;
1337 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001338
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001339 __set_bit(EV_KEY, input_dev->evbit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001340
Christoph Fritz7beae702010-07-13 09:42:33 -07001341 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001342 __set_bit(EV_ABS, input_dev->evbit);
Christoph Fritz7beae702010-07-13 09:42:33 -07001343 /* set up axes */
1344 for (i = 0; xpad_abs[i] >= 0; i++)
1345 xpad_set_up_abs(input_dev, xpad_abs[i]);
1346 }
1347
1348 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001349 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001350 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001351
Christoph Fritz7beae702010-07-13 09:42:33 -07001352 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001353 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1354 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001355 for (i = 0; xpad360_btn[i] >= 0; i++)
1356 __set_bit(xpad360_btn[i], input_dev->keybit);
1357 } else {
1358 for (i = 0; xpad_btn[i] >= 0; i++)
1359 __set_bit(xpad_btn[i], input_dev->keybit);
1360 }
1361
1362 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1363 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1364 __set_bit(xpad_btn_pad[i], input_dev->keybit);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -07001365 }
1366
1367 /*
1368 * This should be a simple else block. However historically
1369 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1370 * made no sense, but now we can not just switch back and have to
1371 * support both behaviors.
1372 */
1373 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1374 xpad->xtype == XTYPE_XBOX360W) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001375 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001376 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001377 }
1378
1379 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1380 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1381 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1382 } else {
1383 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1384 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1385 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001386
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001387 error = xpad_init_ff(xpad);
1388 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001389 goto err_free_input;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001390
1391 error = xpad_led_probe(xpad);
1392 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001393 goto err_destroy_ff;
1394
1395 error = input_register_device(xpad->dev);
1396 if (error)
1397 goto err_disconnect_led;
1398
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001399 xpad->input_created = true;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001400 return 0;
1401
1402err_disconnect_led:
1403 xpad_led_disconnect(xpad);
1404err_destroy_ff:
1405 input_ff_destroy(input_dev);
1406err_free_input:
1407 input_free_device(input_dev);
1408 return error;
1409}
1410
1411static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1412{
1413 struct usb_device *udev = interface_to_usbdev(intf);
1414 struct usb_xpad *xpad;
1415 struct usb_endpoint_descriptor *ep_irq_in;
1416 int ep_irq_in_idx;
1417 int i, error;
1418
1419 for (i = 0; xpad_device[i].idVendor; i++) {
1420 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1421 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1422 break;
1423 }
1424
1425 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1426 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1427 /*
1428 * The Xbox One controller lists three interfaces all with the
1429 * same interface class, subclass and protocol. Differentiate by
1430 * interface number.
1431 */
1432 return -ENODEV;
1433 }
1434
1435 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1436 if (!xpad)
1437 return -ENOMEM;
1438
1439 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1440 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1441
1442 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1443 GFP_KERNEL, &xpad->idata_dma);
1444 if (!xpad->idata) {
1445 error = -ENOMEM;
1446 goto err_free_mem;
1447 }
1448
1449 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1450 if (!xpad->irq_in) {
1451 error = -ENOMEM;
1452 goto err_free_idata;
1453 }
1454
1455 xpad->udev = udev;
1456 xpad->intf = intf;
1457 xpad->mapping = xpad_device[i].mapping;
1458 xpad->xtype = xpad_device[i].xtype;
1459 xpad->name = xpad_device[i].name;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001460 INIT_WORK(&xpad->work, xpad_presence_work);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001461
1462 if (xpad->xtype == XTYPE_UNKNOWN) {
1463 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1464 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1465 xpad->xtype = XTYPE_XBOX360W;
1466 else
1467 xpad->xtype = XTYPE_XBOX360;
1468 } else {
1469 xpad->xtype = XTYPE_XBOX;
1470 }
1471
1472 if (dpad_to_buttons)
1473 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1474 if (triggers_to_buttons)
1475 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1476 if (sticks_to_null)
1477 xpad->mapping |= MAP_STICKS_TO_NULL;
1478 }
1479
1480 error = xpad_init_output(intf, xpad);
1481 if (error)
1482 goto err_free_in_urb;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001483
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001484 /* Xbox One controller has in/out endpoints swapped. */
1485 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1486 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 usb_fill_int_urb(xpad->irq_in, udev,
1489 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1490 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1491 xpad, ep_irq_in->bInterval);
1492 xpad->irq_in->transfer_dma = xpad->idata_dma;
1493 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001496
Brian Magnuson99de0912008-04-03 16:19:23 -04001497 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001498 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001499 * Submit the int URB immediately rather than waiting for open
1500 * because we get status messages from the device whether
1501 * or not any controllers are attached. In fact, it's
1502 * exactly the message that a controller has arrived that
1503 * we're waiting for.
1504 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001505 error = xpad360w_start_input(xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001506 if (error)
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001507 goto err_deinit_output;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001508 /*
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001509 * Wireless controllers require RESET_RESUME to work properly
1510 * after suspend. Ideally this quirk should be in usb core
1511 * quirk list, but we have too many vendors producing these
1512 * controllers and we'd need to maintain 2 identical lists
1513 * here in this driver and in usb core.
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001514 */
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001515 udev->quirks |= USB_QUIRK_RESET_RESUME;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001516 } else {
1517 error = xpad_init_input(xpad);
1518 if (error)
1519 goto err_deinit_output;
Brian Magnuson99de0912008-04-03 16:19:23 -04001520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001522
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001523err_deinit_output:
1524 xpad_deinit_output(xpad);
1525err_free_in_urb:
1526 usb_free_urb(xpad->irq_in);
1527err_free_idata:
1528 usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1529err_free_mem:
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001530 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001531 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
1534static void xpad_disconnect(struct usb_interface *intf)
1535{
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001536 struct usb_xpad *xpad = usb_get_intfdata(intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001537
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001538 if (xpad->xtype == XTYPE_XBOX360W)
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001539 xpad360w_stop_input(xpad);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001540
1541 xpad_deinit_input(xpad);
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001542
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001543 /*
1544 * Now that both input device and LED device are gone we can
1545 * stop output URB.
1546 */
1547 xpad_stop_output(xpad);
1548
1549 xpad_deinit_output(xpad);
1550
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001551 usb_free_urb(xpad->irq_in);
1552 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1553 xpad->idata, xpad->idata_dma);
1554
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001555 kfree(xpad);
1556
1557 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001560static int xpad_suspend(struct usb_interface *intf, pm_message_t message)
1561{
1562 struct usb_xpad *xpad = usb_get_intfdata(intf);
1563 struct input_dev *input = xpad->dev;
1564
1565 if (xpad->xtype == XTYPE_XBOX360W) {
1566 /*
1567 * Wireless controllers always listen to input so
1568 * they are notified when controller shows up
1569 * or goes away.
1570 */
1571 xpad360w_stop_input(xpad);
1572 } else {
1573 mutex_lock(&input->mutex);
1574 if (input->users)
1575 xpad_stop_input(xpad);
1576 mutex_unlock(&input->mutex);
1577 }
1578
1579 xpad_stop_output(xpad);
1580
1581 return 0;
1582}
1583
1584static int xpad_resume(struct usb_interface *intf)
1585{
1586 struct usb_xpad *xpad = usb_get_intfdata(intf);
1587 struct input_dev *input = xpad->dev;
1588 int retval = 0;
1589
1590 if (xpad->xtype == XTYPE_XBOX360W) {
1591 retval = xpad360w_start_input(xpad);
1592 } else {
1593 mutex_lock(&input->mutex);
1594 if (input->users)
1595 retval = xpad_start_input(xpad);
1596 mutex_unlock(&input->mutex);
1597 }
1598
1599 return retval;
1600}
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 .name = "xpad",
1604 .probe = xpad_probe,
1605 .disconnect = xpad_disconnect,
Pavel Rojtberg4220f7d2015-12-09 13:30:34 -08001606 .suspend = xpad_suspend,
1607 .resume = xpad_resume,
1608 .reset_resume = xpad_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 .id_table = xpad_table,
1610};
1611
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001612module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614MODULE_AUTHOR(DRIVER_AUTHOR);
1615MODULE_DESCRIPTION(DRIVER_DESC);
1616MODULE_LICENSE("GPL");