blob: 1d51d24c03d1cd1b4636bdee9082323c1d0c4121 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
87#define DRIVER_DESC "X-Box pad driver"
88
89#define XPAD_PKT_LEN 32
90
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070091/* xbox d-pads should map to buttons, as is required for DDR pads
92 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080093#define MAP_DPAD_TO_BUTTONS (1 << 0)
94#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070095#define MAP_STICKS_TO_NULL (1 << 2)
96#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
97 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070098
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040099#define XTYPE_XBOX 0
100#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -0400101#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700102#define XTYPE_XBOXONE 3
103#define XTYPE_UNKNOWN 4
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400104
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030105static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700106module_param(dpad_to_buttons, bool, S_IRUGO);
107MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
108
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030109static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800110module_param(triggers_to_buttons, bool, S_IRUGO);
111MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
112
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030113static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700114module_param(sticks_to_null, bool, S_IRUGO);
115MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
116
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100117static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 u16 idVendor;
119 u16 idProduct;
120 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800121 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400122 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800124 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800125 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
126 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800127 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
128 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700129 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Erik Lundgren39a7a882015-10-06 17:04:11 -0700130 { 0x045e, 0x02dd, "Microsoft X-Box One pad (Covert Forces)", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800131 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400132 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800133 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700134 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800135 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700136 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800137 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800138 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
139 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
140 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
141 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
142 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
143 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
144 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
145 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
146 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400147 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800148 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
149 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700150 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
151 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700152 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800153 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700154 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400155 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700156 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800157 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700158 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
159 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
160 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800161 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800162 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800163 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
164 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
165 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700166 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800167 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
168 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
169 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
170 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
171 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800172 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700173 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700174 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800175 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700176 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
177 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
178 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800179 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700180 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
181 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800182 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
183 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800184 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
185 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
186 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700187 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700188 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800189 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800190 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400191 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800192 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700193 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
194 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
195 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
196 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
197 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800198 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
199 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Frank Razenberga7b44732014-09-08 11:32:20 -0700200 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700201 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700202 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800203 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700204 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800205 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700206 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
207 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800208 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
209 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Dario Scarpa470446e2015-10-06 17:04:36 -0700210 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800211 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700212 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
213 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
214 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
215 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
216 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Tommi Rantala4b546252014-10-16 14:01:43 -0700217 { 0x24c6, 0x5b03, "Thrustmaster Ferrari 458 Racing Wheel", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800218 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
219 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
Anssi Hannulafc55e952008-04-03 16:18:44 -0400222/* buttons shared with xbox and xbox360 */
223static const signed short xpad_common_btn[] = {
224 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700225 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 -1 /* terminating entry */
227};
228
Anssi Hannulafc55e952008-04-03 16:18:44 -0400229/* original xbox controllers only */
230static const signed short xpad_btn[] = {
231 BTN_C, BTN_Z, /* "analog" buttons */
232 -1 /* terminating entry */
233};
234
Christoph Fritz7beae702010-07-13 09:42:33 -0700235/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700236static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700237 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
238 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700239 -1 /* terminating entry */
240};
241
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800242/* used when triggers are mapped to buttons */
243static const signed short xpad_btn_triggers[] = {
244 BTN_TL2, BTN_TR2, /* triggers left/right */
245 -1
246};
247
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400248static const signed short xpad360_btn[] = { /* buttons for x360 controller */
249 BTN_TL, BTN_TR, /* Button LB/RB */
250 BTN_MODE, /* The big X button */
251 -1
252};
253
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100254static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ABS_X, ABS_Y, /* left stick */
256 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700257 -1 /* terminating entry */
258};
259
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800260/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700261static const signed short xpad_abs_pad[] = {
262 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 -1 /* terminating entry */
264};
265
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800266/* used when triggers are mapped to axes */
267static const signed short xpad_abs_triggers[] = {
268 ABS_Z, ABS_RZ, /* triggers left/right */
269 -1
270};
271
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700272/*
273 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400274 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400275 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700276 * wireless controllers have protocol 129.
277 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400278#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400279 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
280 .idVendor = (vend), \
281 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
282 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400283 .bInterfaceProtocol = (pr)
284#define XPAD_XBOX360_VENDOR(vend) \
285 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
286 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400287
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700288/* The Xbox One controller uses subclass 71 and protocol 208. */
289#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
290 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
291 .idVendor = (vend), \
292 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
293 .bInterfaceSubClass = 71, \
294 .bInterfaceProtocol = (pr)
295#define XPAD_XBOXONE_VENDOR(vend) \
296 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
297
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800298static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Tommi Rantala4dfb15c2014-10-16 14:02:07 -0700300 XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400301 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700302 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400303 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
304 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700305 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400306 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700307 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400308 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700309 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700310 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700311 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
312 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800313 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700314 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
315 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
316 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 { }
318};
319
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800320MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700323 struct input_dev *dev; /* input device interface */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800324 struct input_dev __rcu *x360w_dev;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700325 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700326 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500327
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800328 bool pad_present;
329 bool input_created;
Brian Magnuson99de0912008-04-03 16:19:23 -0400330
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700331 struct urb *irq_in; /* urb for interrupt in report */
332 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500334
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400335 struct urb *irq_out; /* urb for interrupt out report */
336 unsigned char *odata; /* output data */
337 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400338 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400339
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400340#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
341 struct xpad_led *led;
342#endif
343
344 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700345
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800346 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400347 int xtype; /* type of xbox device */
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700348 int pad_nr; /* the order x360 pads were attached */
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -0700349 const char *name; /* name of the device */
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800350 struct work_struct work; /* init/remove device from callback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351};
352
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800353static int xpad_init_input(struct usb_xpad *xpad);
354static void xpad_deinit_input(struct usb_xpad *xpad);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
357 * xpad_process_packet
358 *
359 * Completes a request by converting the data into events for the
360 * input subsystem.
361 *
362 * The used report descriptor was taken from ITO Takayukis website:
363 * http://euc.jp/periphs/xbox-controller.ja.html
364 */
David Howells7d12e782006-10-05 14:55:46 +0100365static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500367 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Christoph Fritz7beae702010-07-13 09:42:33 -0700369 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
370 /* left stick */
371 input_report_abs(dev, ABS_X,
372 (__s16) le16_to_cpup((__le16 *)(data + 12)));
373 input_report_abs(dev, ABS_Y,
374 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500375
Christoph Fritz7beae702010-07-13 09:42:33 -0700376 /* right stick */
377 input_report_abs(dev, ABS_RX,
378 (__s16) le16_to_cpup((__le16 *)(data + 16)));
379 input_report_abs(dev, ABS_RY,
380 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
381 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800384 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
385 input_report_key(dev, BTN_TL2, data[10]);
386 input_report_key(dev, BTN_TR2, data[11]);
387 } else {
388 input_report_abs(dev, ABS_Z, data[10]);
389 input_report_abs(dev, ABS_RZ, data[11]);
390 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800393 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700394 /* dpad as buttons (left, right, up, down) */
395 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
396 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
397 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
398 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800399 } else {
400 input_report_abs(dev, ABS_HAT0X,
401 !!(data[2] & 0x08) - !!(data[2] & 0x04));
402 input_report_abs(dev, ABS_HAT0Y,
403 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700404 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700407 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700408 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700409 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
410 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* "analog" buttons A, B, X, Y */
413 input_report_key(dev, BTN_A, data[4]);
414 input_report_key(dev, BTN_B, data[5]);
415 input_report_key(dev, BTN_X, data[6]);
416 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* "analog" buttons black, white */
419 input_report_key(dev, BTN_C, data[8]);
420 input_report_key(dev, BTN_Z, data[9]);
421
422 input_sync(dev);
423}
424
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400425/*
426 * xpad360_process_packet
427 *
428 * Completes a request by converting the data into events for the
429 * input subsystem. It is version for xbox 360 controller
430 *
431 * The used report descriptor was taken from:
432 * http://www.free60.org/wiki/Gamepad
433 */
434
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800435static void xpad360_process_packet(struct usb_xpad *xpad, struct input_dev *dev,
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400436 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400437{
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400438 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800439 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700440 /* dpad as buttons (left, right, up, down) */
441 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
442 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
443 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
444 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -0700445 }
446
447 /*
448 * This should be a simple else block. However historically
449 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
450 * made no sense, but now we can not just switch back and have to
451 * support both behaviors.
452 */
453 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
454 xpad->xtype == XTYPE_XBOX360W) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800455 input_report_abs(dev, ABS_HAT0X,
456 !!(data[2] & 0x08) - !!(data[2] & 0x04));
457 input_report_abs(dev, ABS_HAT0Y,
458 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400459 }
460
461 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400462 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700463 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400464
465 /* stick press left/right */
466 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
467 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
468
469 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400470 input_report_key(dev, BTN_A, data[3] & 0x10);
471 input_report_key(dev, BTN_B, data[3] & 0x20);
472 input_report_key(dev, BTN_X, data[3] & 0x40);
473 input_report_key(dev, BTN_Y, data[3] & 0x80);
474 input_report_key(dev, BTN_TL, data[3] & 0x01);
475 input_report_key(dev, BTN_TR, data[3] & 0x02);
476 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400477
Christoph Fritz7beae702010-07-13 09:42:33 -0700478 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
479 /* left stick */
480 input_report_abs(dev, ABS_X,
481 (__s16) le16_to_cpup((__le16 *)(data + 6)));
482 input_report_abs(dev, ABS_Y,
483 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400484
Christoph Fritz7beae702010-07-13 09:42:33 -0700485 /* right stick */
486 input_report_abs(dev, ABS_RX,
487 (__s16) le16_to_cpup((__le16 *)(data + 10)));
488 input_report_abs(dev, ABS_RY,
489 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
490 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400491
492 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800493 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
494 input_report_key(dev, BTN_TL2, data[4]);
495 input_report_key(dev, BTN_TR2, data[5]);
496 } else {
497 input_report_abs(dev, ABS_Z, data[4]);
498 input_report_abs(dev, ABS_RZ, data[5]);
499 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400500
501 input_sync(dev);
502}
503
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800504static void xpad_presence_work(struct work_struct *work)
505{
506 struct usb_xpad *xpad = container_of(work, struct usb_xpad, work);
507 int error;
508
509 if (xpad->pad_present) {
510 error = xpad_init_input(xpad);
511 if (error) {
512 /* complain only, not much else we can do here */
513 dev_err(&xpad->dev->dev,
514 "unable to init device: %d\n", error);
515 } else {
516 rcu_assign_pointer(xpad->x360w_dev, xpad->dev);
517 }
518 } else {
519 RCU_INIT_POINTER(xpad->x360w_dev, NULL);
520 synchronize_rcu();
521 /*
522 * Now that we are sure xpad360w_process_packet is not
523 * using input device we can get rid of it.
524 */
525 xpad_deinit_input(xpad);
526 }
527}
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700528
Brian Magnuson99de0912008-04-03 16:19:23 -0400529/*
530 * xpad360w_process_packet
531 *
532 * Completes a request by converting the data into events for the
533 * input subsystem. It is version for xbox 360 wireless controller.
534 *
535 * Byte.Bit
536 * 00.1 - Status change: The controller or headset has connected/disconnected
537 * Bits 01.7 and 01.6 are valid
538 * 01.7 - Controller present
539 * 01.6 - Headset present
540 * 01.1 - Pad state (Bytes 4+) valid
541 *
542 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400543static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
544{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800545 struct input_dev *dev;
546 bool present;
547
Brian Magnuson99de0912008-04-03 16:19:23 -0400548 /* Presence change */
549 if (data[0] & 0x08) {
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800550 present = (data[1] & 0x80) != 0;
551
552 if (xpad->pad_present != present) {
553 xpad->pad_present = present;
554 schedule_work(&xpad->work);
555 }
Brian Magnuson99de0912008-04-03 16:19:23 -0400556 }
557
558 /* Valid pad data */
Clement Calmels93a017a2015-12-12 21:20:11 -0800559 if (data[1] != 0x1)
Brian Magnuson99de0912008-04-03 16:19:23 -0400560 return;
561
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800562 rcu_read_lock();
563 dev = rcu_dereference(xpad->x360w_dev);
564 if (dev)
565 xpad360_process_packet(xpad, dev, cmd, &data[4]);
566 rcu_read_unlock();
Brian Magnuson99de0912008-04-03 16:19:23 -0400567}
568
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700569/*
570 * xpadone_process_buttons
571 *
572 * Process a button update packet from an Xbox one controller.
573 */
574static void xpadone_process_buttons(struct usb_xpad *xpad,
575 struct input_dev *dev,
576 unsigned char *data)
577{
578 /* menu/view buttons */
579 input_report_key(dev, BTN_START, data[4] & 0x04);
580 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
581
582 /* buttons A,B,X,Y */
583 input_report_key(dev, BTN_A, data[4] & 0x10);
584 input_report_key(dev, BTN_B, data[4] & 0x20);
585 input_report_key(dev, BTN_X, data[4] & 0x40);
586 input_report_key(dev, BTN_Y, data[4] & 0x80);
587
588 /* digital pad */
589 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
590 /* dpad as buttons (left, right, up, down) */
591 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
592 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
593 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
594 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
595 } else {
596 input_report_abs(dev, ABS_HAT0X,
597 !!(data[5] & 0x08) - !!(data[5] & 0x04));
598 input_report_abs(dev, ABS_HAT0Y,
599 !!(data[5] & 0x02) - !!(data[5] & 0x01));
600 }
601
602 /* TL/TR */
603 input_report_key(dev, BTN_TL, data[5] & 0x10);
604 input_report_key(dev, BTN_TR, data[5] & 0x20);
605
606 /* stick press left/right */
607 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
608 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
609
610 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
611 /* left stick */
612 input_report_abs(dev, ABS_X,
613 (__s16) le16_to_cpup((__le16 *)(data + 10)));
614 input_report_abs(dev, ABS_Y,
615 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
616
617 /* right stick */
618 input_report_abs(dev, ABS_RX,
619 (__s16) le16_to_cpup((__le16 *)(data + 14)));
620 input_report_abs(dev, ABS_RY,
621 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
622 }
623
624 /* triggers left/right */
625 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
626 input_report_key(dev, BTN_TL2,
627 (__u16) le16_to_cpup((__le16 *)(data + 6)));
628 input_report_key(dev, BTN_TR2,
629 (__u16) le16_to_cpup((__le16 *)(data + 8)));
630 } else {
631 input_report_abs(dev, ABS_Z,
632 (__u16) le16_to_cpup((__le16 *)(data + 6)));
633 input_report_abs(dev, ABS_RZ,
634 (__u16) le16_to_cpup((__le16 *)(data + 8)));
635 }
636
637 input_sync(dev);
638}
639
640/*
641 * xpadone_process_packet
642 *
643 * Completes a request by converting the data into events for the
644 * input subsystem. This version is for the Xbox One controller.
645 *
646 * The report format was gleaned from
647 * https://github.com/kylelemons/xbox/blob/master/xbox.go
648 */
649
650static void xpadone_process_packet(struct usb_xpad *xpad,
651 u16 cmd, unsigned char *data)
652{
653 struct input_dev *dev = xpad->dev;
654
655 switch (data[0]) {
656 case 0x20:
657 xpadone_process_buttons(xpad, dev, data);
658 break;
659
660 case 0x07:
661 /* the xbox button has its own special report */
662 input_report_key(dev, BTN_MODE, data[4] & 0x01);
663 input_sync(dev);
664 break;
665 }
666}
667
David Howells7d12e782006-10-05 14:55:46 +0100668static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700671 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200672 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500673
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200674 status = urb->status;
675
676 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 case 0:
678 /* success */
679 break;
680 case -ECONNRESET:
681 case -ENOENT:
682 case -ESHUTDOWN:
683 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700684 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400685 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return;
687 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700688 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400689 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 goto exit;
691 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500692
Brian Magnuson99de0912008-04-03 16:19:23 -0400693 switch (xpad->xtype) {
694 case XTYPE_XBOX360:
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -0800695 xpad360_process_packet(xpad, xpad->dev, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400696 break;
697 case XTYPE_XBOX360W:
698 xpad360w_process_packet(xpad, 0, xpad->idata);
699 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700700 case XTYPE_XBOXONE:
701 xpadone_process_packet(xpad, 0, xpad->idata);
702 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400703 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400704 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800708 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700710 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700711 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400714static void xpad_irq_out(struct urb *urb)
715{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700716 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700717 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200718 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400719
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200720 status = urb->status;
721
722 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700723 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400724 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700725 return;
726
727 case -ECONNRESET:
728 case -ENOENT:
729 case -ESHUTDOWN:
730 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700731 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
732 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700733 return;
734
735 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700736 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
737 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700738 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400739 }
740
741exit:
742 retval = usb_submit_urb(urb, GFP_ATOMIC);
743 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700744 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700745 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400746}
747
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400748static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
749{
750 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700751 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800752 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400753
Chris Moellerb514d4f2011-07-04 19:21:59 -0700754 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400755 return 0;
756
Daniel Mack997ea582010-04-12 13:17:25 +0200757 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
758 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800759 if (!xpad->odata) {
760 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400761 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800762 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400763
764 mutex_init(&xpad->odata_mutex);
765
766 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800767 if (!xpad->irq_out) {
768 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400769 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800770 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400771
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700772 /* Xbox One controller has in/out endpoints swapped. */
773 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
774 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
775
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400776 usb_fill_int_urb(xpad->irq_out, xpad->udev,
777 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
778 xpad->odata, XPAD_PKT_LEN,
779 xpad_irq_out, xpad, ep_irq_out->bInterval);
780 xpad->irq_out->transfer_dma = xpad->odata_dma;
781 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
782
783 return 0;
784
Daniel Mack997ea582010-04-12 13:17:25 +0200785 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400786 fail1: return error;
787}
788
789static void xpad_stop_output(struct usb_xpad *xpad)
790{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700791 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400792 usb_kill_urb(xpad->irq_out);
793}
794
795static void xpad_deinit_output(struct usb_xpad *xpad)
796{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700797 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400798 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200799 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400800 xpad->odata, xpad->odata_dma);
801 }
802}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400803
Pavel Rojtbergaba54872015-10-10 09:36:17 -0700804static int xpad_inquiry_pad_presence(struct usb_xpad *xpad)
805{
806 int retval;
807
808 mutex_lock(&xpad->odata_mutex);
809
810 xpad->odata[0] = 0x08;
811 xpad->odata[1] = 0x00;
812 xpad->odata[2] = 0x0F;
813 xpad->odata[3] = 0xC0;
814 xpad->odata[4] = 0x00;
815 xpad->odata[5] = 0x00;
816 xpad->odata[6] = 0x00;
817 xpad->odata[7] = 0x00;
818 xpad->odata[8] = 0x00;
819 xpad->odata[9] = 0x00;
820 xpad->odata[10] = 0x00;
821 xpad->odata[11] = 0x00;
822 xpad->irq_out->transfer_buffer_length = 12;
823
824 retval = usb_submit_urb(xpad->irq_out, GFP_KERNEL);
825
826 mutex_unlock(&xpad->odata_mutex);
827
828 return retval;
829}
830
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400831#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800832static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400833{
834 struct usb_xpad *xpad = input_get_drvdata(dev);
Pavel Rojtberg06008152015-10-10 09:32:55 -0700835 __u16 strong;
836 __u16 weak;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400837
Pavel Rojtberg06008152015-10-10 09:32:55 -0700838 if (effect->type != FF_RUMBLE)
839 return 0;
Benjamin Valentin12187302010-01-21 20:19:06 -0800840
Pavel Rojtberg06008152015-10-10 09:32:55 -0700841 strong = effect->u.rumble.strong_magnitude;
842 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800843
Pavel Rojtberg06008152015-10-10 09:32:55 -0700844 switch (xpad->xtype) {
845 case XTYPE_XBOX:
846 xpad->odata[0] = 0x00;
847 xpad->odata[1] = 0x06;
848 xpad->odata[2] = 0x00;
849 xpad->odata[3] = strong / 256; /* left actuator */
850 xpad->odata[4] = 0x00;
851 xpad->odata[5] = weak / 256; /* right actuator */
852 xpad->irq_out->transfer_buffer_length = 6;
853 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800854
Pavel Rojtberg06008152015-10-10 09:32:55 -0700855 case XTYPE_XBOX360:
856 xpad->odata[0] = 0x00;
857 xpad->odata[1] = 0x08;
858 xpad->odata[2] = 0x00;
859 xpad->odata[3] = strong / 256; /* left actuator? */
860 xpad->odata[4] = weak / 256; /* right actuator? */
861 xpad->odata[5] = 0x00;
862 xpad->odata[6] = 0x00;
863 xpad->odata[7] = 0x00;
864 xpad->irq_out->transfer_buffer_length = 8;
865 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800866
Pavel Rojtberg06008152015-10-10 09:32:55 -0700867 case XTYPE_XBOX360W:
868 xpad->odata[0] = 0x00;
869 xpad->odata[1] = 0x01;
870 xpad->odata[2] = 0x0F;
871 xpad->odata[3] = 0xC0;
872 xpad->odata[4] = 0x00;
873 xpad->odata[5] = strong / 256;
874 xpad->odata[6] = weak / 256;
875 xpad->odata[7] = 0x00;
876 xpad->odata[8] = 0x00;
877 xpad->odata[9] = 0x00;
878 xpad->odata[10] = 0x00;
879 xpad->odata[11] = 0x00;
880 xpad->irq_out->transfer_buffer_length = 12;
881 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800882
Pavel Rojtberg06008152015-10-10 09:32:55 -0700883 case XTYPE_XBOXONE:
884 xpad->odata[0] = 0x09; /* activate rumble */
885 xpad->odata[1] = 0x08;
886 xpad->odata[2] = 0x00;
887 xpad->odata[3] = 0x08; /* continuous effect */
888 xpad->odata[4] = 0x00; /* simple rumble mode */
889 xpad->odata[5] = 0x03; /* L and R actuator only */
890 xpad->odata[6] = 0x00; /* TODO: LT actuator */
891 xpad->odata[7] = 0x00; /* TODO: RT actuator */
892 xpad->odata[8] = strong / 256; /* left actuator */
893 xpad->odata[9] = weak / 256; /* right actuator */
894 xpad->odata[10] = 0x80; /* length of pulse */
895 xpad->odata[11] = 0x00; /* stop period of pulse */
896 xpad->irq_out->transfer_buffer_length = 12;
897 break;
Benjamin Valentin12187302010-01-21 20:19:06 -0800898
Pavel Rojtberg06008152015-10-10 09:32:55 -0700899 default:
900 dev_dbg(&xpad->dev->dev,
901 "%s - rumble command sent to unsupported xpad type: %d\n",
902 __func__, xpad->xtype);
903 return -EINVAL;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400904 }
905
Pavel Rojtberg06008152015-10-10 09:32:55 -0700906 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400907}
908
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400909static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400910{
Ming-ting Yao Wei06049492015-04-14 16:59:11 -0700911 if (xpad->xtype == XTYPE_UNKNOWN)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400912 return 0;
913
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400914 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
915
916 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
917}
918
919#else
920static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
921#endif
922
923#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
924#include <linux/leds.h>
Pavel Rojtberge3b65172015-10-10 10:00:49 -0700925#include <linux/idr.h>
926
927static DEFINE_IDA(xpad_pad_seq);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400928
929struct xpad_led {
930 char name[16];
931 struct led_classdev led_cdev;
932 struct usb_xpad *xpad;
933};
934
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700935/**
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700936 * set the LEDs on Xbox360 / Wireless Controllers
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700937 * @param command
938 * 0: off
939 * 1: all blink, then previous setting
940 * 2: 1/top-left blink, then on
941 * 3: 2/top-right blink, then on
942 * 4: 3/bottom-left blink, then on
943 * 5: 4/bottom-right blink, then on
944 * 6: 1/top-left on
945 * 7: 2/top-right on
946 * 8: 3/bottom-left on
947 * 9: 4/bottom-right on
948 * 10: rotate
949 * 11: blink, based on previous setting
950 * 12: slow blink, based on previous setting
951 * 13: rotate with two lights
952 * 14: persistent slow all blink
953 * 15: blink once, then previous setting
954 */
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400955static void xpad_send_led_command(struct usb_xpad *xpad, int command)
956{
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700957 command %= 16;
958
959 mutex_lock(&xpad->odata_mutex);
960
961 switch (xpad->xtype) {
962 case XTYPE_XBOX360:
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400963 xpad->odata[0] = 0x01;
964 xpad->odata[1] = 0x03;
965 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400966 xpad->irq_out->transfer_buffer_length = 3;
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700967 break;
968 case XTYPE_XBOX360W:
969 xpad->odata[0] = 0x00;
970 xpad->odata[1] = 0x00;
971 xpad->odata[2] = 0x08;
972 xpad->odata[3] = 0x40 + command;
973 xpad->odata[4] = 0x00;
974 xpad->odata[5] = 0x00;
975 xpad->odata[6] = 0x00;
976 xpad->odata[7] = 0x00;
977 xpad->odata[8] = 0x00;
978 xpad->odata[9] = 0x00;
979 xpad->odata[10] = 0x00;
980 xpad->odata[11] = 0x00;
981 xpad->irq_out->transfer_buffer_length = 12;
982 break;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400983 }
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -0700984
985 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
986 mutex_unlock(&xpad->odata_mutex);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400987}
988
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700989/*
990 * Light up the segment corresponding to the pad number on
991 * Xbox 360 Controllers.
992 */
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700993static void xpad_identify_controller(struct usb_xpad *xpad)
994{
Pavel Rojtberg1f6f02b2015-10-06 17:06:16 -0700995 xpad_send_led_command(xpad, (xpad->pad_nr % 4) + 2);
Pavel Rojtbergcae705b2015-06-22 14:11:30 -0700996}
997
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400998static void xpad_led_set(struct led_classdev *led_cdev,
999 enum led_brightness value)
1000{
1001 struct xpad_led *xpad_led = container_of(led_cdev,
1002 struct xpad_led, led_cdev);
1003
1004 xpad_send_led_command(xpad_led->xpad, value);
1005}
1006
1007static int xpad_led_probe(struct usb_xpad *xpad)
1008{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001009 struct xpad_led *led;
1010 struct led_classdev *led_cdev;
1011 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001012
Pierre-Loup A. Griffais75b7f052015-06-22 14:10:36 -07001013 if (xpad->xtype != XTYPE_XBOX360 && xpad->xtype != XTYPE_XBOX360W)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001014 return 0;
1015
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001016 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
1017 if (!led)
1018 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001019
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001020 xpad->pad_nr = ida_simple_get(&xpad_pad_seq, 0, 0, GFP_KERNEL);
1021 if (xpad->pad_nr < 0) {
1022 error = xpad->pad_nr;
1023 goto err_free_mem;
1024 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001025
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001026 snprintf(led->name, sizeof(led->name), "xpad%d", xpad->pad_nr);
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001027 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001028
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001029 led_cdev = &led->led_cdev;
1030 led_cdev->name = led->name;
1031 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001032
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001033 error = led_classdev_register(&xpad->udev->dev, led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001034 if (error)
1035 goto err_free_id;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001036
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001037 xpad_identify_controller(xpad);
Pavel Rojtbergfbe6a312015-10-19 00:06:58 -07001038
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001039 return 0;
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001040
1041err_free_id:
1042 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
1043err_free_mem:
1044 kfree(led);
1045 xpad->led = NULL;
1046 return error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001047}
1048
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001049static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001050{
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001051 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001052
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001053 if (xpad_led) {
1054 led_classdev_unregister(&xpad_led->led_cdev);
Pavel Rojtberge3b65172015-10-10 10:00:49 -07001055 ida_simple_remove(&xpad_pad_seq, xpad->pad_nr);
Axel Lin6ff92a62010-11-11 21:43:17 -08001056 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001057 }
1058}
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001059#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001060static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
1061static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Pavel Rojtbergcae705b2015-06-22 14:11:30 -07001062static void xpad_identify_controller(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001063#endif
1064
1065static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001067 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001068
Brian Magnuson99de0912008-04-03 16:19:23 -04001069 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -08001070 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001071 return 0;
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -05001074 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001076
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001077 if (xpad->xtype == XTYPE_XBOXONE) {
1078 /* Xbox one controller needs to be initialized. */
1079 xpad->odata[0] = 0x05;
1080 xpad->odata[1] = 0x20;
1081 xpad->irq_out->transfer_buffer_length = 2;
1082 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
1083 }
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 return 0;
1086}
1087
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001088static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001090 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001091
Axel Lin161feb22010-11-11 21:47:42 -08001092 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -04001093 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -08001094
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001095 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001098static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
1099{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001100 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001101 set_bit(abs, input_dev->absbit);
1102
1103 switch (abs) {
1104 case ABS_X:
1105 case ABS_Y:
1106 case ABS_RX:
1107 case ABS_RY: /* the two sticks */
1108 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
1109 break;
1110 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001111 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001112 if (xpad->xtype == XTYPE_XBOXONE)
1113 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
1114 else
1115 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001116 break;
1117 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001118 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001119 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
1120 break;
1121 }
1122}
1123
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001124static void xpad_deinit_input(struct usb_xpad *xpad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001126 if (xpad->input_created) {
1127 xpad->input_created = false;
1128 xpad_led_disconnect(xpad);
1129 input_unregister_device(xpad->dev);
1130 }
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001131}
1132
1133static int xpad_init_input(struct usb_xpad *xpad)
1134{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001135 struct input_dev *input_dev;
Axel Lin49cc69b2010-11-11 21:39:11 -08001136 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001137
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001138 input_dev = input_allocate_device();
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001139 if (!input_dev)
1140 return -ENOMEM;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001141
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001142 xpad->dev = input_dev;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001143 input_dev->name = xpad->name;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001144 input_dev->phys = xpad->phys;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001145 usb_to_input_id(xpad->udev, &input_dev->id);
1146 input_dev->dev.parent = &xpad->intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001147
1148 input_set_drvdata(input_dev, xpad);
1149
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001150 input_dev->open = xpad_open;
1151 input_dev->close = xpad_close;
1152
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001153 __set_bit(EV_KEY, input_dev->evbit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001154
Christoph Fritz7beae702010-07-13 09:42:33 -07001155 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001156 __set_bit(EV_ABS, input_dev->evbit);
Christoph Fritz7beae702010-07-13 09:42:33 -07001157 /* set up axes */
1158 for (i = 0; xpad_abs[i] >= 0; i++)
1159 xpad_set_up_abs(input_dev, xpad_abs[i]);
1160 }
1161
1162 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001163 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001164 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001165
Christoph Fritz7beae702010-07-13 09:42:33 -07001166 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001167 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1168 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001169 for (i = 0; xpad360_btn[i] >= 0; i++)
1170 __set_bit(xpad360_btn[i], input_dev->keybit);
1171 } else {
1172 for (i = 0; xpad_btn[i] >= 0; i++)
1173 __set_bit(xpad_btn[i], input_dev->keybit);
1174 }
1175
1176 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1177 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1178 __set_bit(xpad_btn_pad[i], input_dev->keybit);
Pavel Rojtberg5ee8bda2015-10-10 09:33:52 -07001179 }
1180
1181 /*
1182 * This should be a simple else block. However historically
1183 * xbox360w has mapped DPAD to buttons while xbox360 did not. This
1184 * made no sense, but now we can not just switch back and have to
1185 * support both behaviors.
1186 */
1187 if (!(xpad->mapping & MAP_DPAD_TO_BUTTONS) ||
1188 xpad->xtype == XTYPE_XBOX360W) {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001189 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001190 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001191 }
1192
1193 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1194 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1195 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1196 } else {
1197 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1198 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1199 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001200
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001201 error = xpad_init_ff(xpad);
1202 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001203 goto err_free_input;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001204
1205 error = xpad_led_probe(xpad);
1206 if (error)
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001207 goto err_destroy_ff;
1208
1209 error = input_register_device(xpad->dev);
1210 if (error)
1211 goto err_disconnect_led;
1212
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001213 xpad->input_created = true;
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001214 return 0;
1215
1216err_disconnect_led:
1217 xpad_led_disconnect(xpad);
1218err_destroy_ff:
1219 input_ff_destroy(input_dev);
1220err_free_input:
1221 input_free_device(input_dev);
1222 return error;
1223}
1224
1225static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
1226{
1227 struct usb_device *udev = interface_to_usbdev(intf);
1228 struct usb_xpad *xpad;
1229 struct usb_endpoint_descriptor *ep_irq_in;
1230 int ep_irq_in_idx;
1231 int i, error;
1232
1233 for (i = 0; xpad_device[i].idVendor; i++) {
1234 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1235 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1236 break;
1237 }
1238
1239 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1240 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1241 /*
1242 * The Xbox One controller lists three interfaces all with the
1243 * same interface class, subclass and protocol. Differentiate by
1244 * interface number.
1245 */
1246 return -ENODEV;
1247 }
1248
1249 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1250 if (!xpad)
1251 return -ENOMEM;
1252
1253 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1254 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1255
1256 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1257 GFP_KERNEL, &xpad->idata_dma);
1258 if (!xpad->idata) {
1259 error = -ENOMEM;
1260 goto err_free_mem;
1261 }
1262
1263 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
1264 if (!xpad->irq_in) {
1265 error = -ENOMEM;
1266 goto err_free_idata;
1267 }
1268
1269 xpad->udev = udev;
1270 xpad->intf = intf;
1271 xpad->mapping = xpad_device[i].mapping;
1272 xpad->xtype = xpad_device[i].xtype;
1273 xpad->name = xpad_device[i].name;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001274 INIT_WORK(&xpad->work, xpad_presence_work);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001275
1276 if (xpad->xtype == XTYPE_UNKNOWN) {
1277 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1278 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1279 xpad->xtype = XTYPE_XBOX360W;
1280 else
1281 xpad->xtype = XTYPE_XBOX360;
1282 } else {
1283 xpad->xtype = XTYPE_XBOX;
1284 }
1285
1286 if (dpad_to_buttons)
1287 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1288 if (triggers_to_buttons)
1289 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
1290 if (sticks_to_null)
1291 xpad->mapping |= MAP_STICKS_TO_NULL;
1292 }
1293
1294 error = xpad_init_output(intf, xpad);
1295 if (error)
1296 goto err_free_in_urb;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001297
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001298 /* Xbox One controller has in/out endpoints swapped. */
1299 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1300 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 usb_fill_int_urb(xpad->irq_in, udev,
1303 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1304 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1305 xpad, ep_irq_in->bInterval);
1306 xpad->irq_in->transfer_dma = xpad->idata_dma;
1307 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001310
Brian Magnuson99de0912008-04-03 16:19:23 -04001311 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001312 /*
Axel Line3f0f0a2010-11-17 23:59:34 -08001313 * Submit the int URB immediately rather than waiting for open
1314 * because we get status messages from the device whether
1315 * or not any controllers are attached. In fact, it's
1316 * exactly the message that a controller has arrived that
1317 * we're waiting for.
1318 */
1319 xpad->irq_in->dev = xpad->udev;
1320 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1321 if (error)
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001322 goto err_deinit_output;
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001323
1324 /*
1325 * Send presence packet.
1326 * This will force the controller to resend connection packets.
1327 * This is useful in the case we activate the module after the
1328 * adapter has been plugged in, as it won't automatically
1329 * send us info about the controllers.
1330 */
1331 error = xpad_inquiry_pad_presence(xpad);
1332 if (error)
1333 goto err_kill_in_urb;
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001334 } else {
1335 error = xpad_init_input(xpad);
1336 if (error)
1337 goto err_deinit_output;
Brian Magnuson99de0912008-04-03 16:19:23 -04001338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001340
Pavel Rojtbergaba54872015-10-10 09:36:17 -07001341err_kill_in_urb:
1342 usb_kill_urb(xpad->irq_in);
Pierre-Loup A. Griffaisb8154002015-10-10 09:34:17 -07001343err_deinit_output:
1344 xpad_deinit_output(xpad);
1345err_free_in_urb:
1346 usb_free_urb(xpad->irq_in);
1347err_free_idata:
1348 usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
1349err_free_mem:
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001350 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001351 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355static void xpad_disconnect(struct usb_interface *intf)
1356{
1357 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001358
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001359 if (xpad->xtype == XTYPE_XBOX360W)
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001360 usb_kill_urb(xpad->irq_in);
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001361
1362 cancel_work_sync(&xpad->work);
1363
1364 xpad_deinit_input(xpad);
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001365
1366 usb_free_urb(xpad->irq_in);
1367 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1368 xpad->idata, xpad->idata_dma);
1369
Pierre-Loup A. Griffais09c8b002015-12-09 11:46:25 -08001370 xpad_deinit_output(xpad);
1371
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001372 kfree(xpad);
1373
1374 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .name = "xpad",
1379 .probe = xpad_probe,
1380 .disconnect = xpad_disconnect,
1381 .id_table = xpad_table,
1382};
1383
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001384module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386MODULE_AUTHOR(DRIVER_AUTHOR);
1387MODULE_DESCRIPTION(DRIVER_DESC);
1388MODULE_LICENSE("GPL");