blob: cd13c82ca0a152ead829b1165e8386482043c03c [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
35 * Thanks to:
36 * - ITO Takayuki for providing essential xpad information on his website
37 * - Vojtech Pavlik - iforce driver / input subsystem
38 * - Greg Kroah-Hartman - usb-skeleton driver
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070039 * - XBOX Linux project - extra USB id's
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 * TODO:
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070042 * - fine tune axes (especially trigger axes)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * - fix "analog" buttons (reported as digital now)
44 * - get rumble working
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070045 * - need USB IDs for other dance pads
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
47 * History:
48 *
49 * 2002-06-27 - 0.0.1 : first version, just said "XBOX HID controller"
50 *
51 * 2002-07-02 - 0.0.2 : basic working version
52 * - all axes and 9 of the 10 buttons work (german InterAct device)
53 * - the black button does not work
54 *
55 * 2002-07-14 - 0.0.3 : rework by Vojtech Pavlik
56 * - indentation fixes
57 * - usb + input init sequence fixes
58 *
59 * 2002-07-16 - 0.0.4 : minor changes, merge with Vojtech's v0.0.3
60 * - verified the lack of HID and report descriptors
61 * - verified that ALL buttons WORK
62 * - fixed d-pad to axes mapping
63 *
64 * 2002-07-17 - 0.0.5 : simplified d-pad handling
Dominic Cerquettid518b2b2006-10-20 14:51:45 -070065 *
66 * 2004-10-02 - 0.0.6 : DDR pad support
67 * - borrowed from the XBOX linux kernel
68 * - USB id's for commonly used dance pads are present
69 * - dance pads will map D-PAD to buttons, not axes
70 * - pass the module paramater 'dpad_to_buttons' to force
71 * the D-PAD to map to buttons if your pad is not detected
Anssi Hannulabf8cb312008-04-03 16:19:10 -040072 *
73 * Later changes can be tracked in SCM.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/slab.h>
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070078#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
David Brownellae0dadc2006-06-13 10:04:34 -070080#include <linux/usb/input.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DRIVER_AUTHOR "Marko Friedemann <mfr@bmx-chemnitz.de>"
83#define DRIVER_DESC "X-Box pad driver"
84
85#define XPAD_PKT_LEN 32
86
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070087/* xbox d-pads should map to buttons, as is required for DDR pads
88 but we map them to axes when possible to simplify things */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -080089#define MAP_DPAD_TO_BUTTONS (1 << 0)
90#define MAP_TRIGGERS_TO_BUTTONS (1 << 1)
Christoph Fritz7beae702010-07-13 09:42:33 -070091#define MAP_STICKS_TO_NULL (1 << 2)
92#define DANCEPAD_MAP_CONFIG (MAP_DPAD_TO_BUTTONS | \
93 MAP_TRIGGERS_TO_BUTTONS | MAP_STICKS_TO_NULL)
Dominic Cerquettideb8ee42006-10-10 14:42:48 -070094
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -040095#define XTYPE_XBOX 0
96#define XTYPE_XBOX360 1
Brian Magnuson99de0912008-04-03 16:19:23 -040097#define XTYPE_XBOX360W 2
Ted Mielczarek1a48ff82014-08-08 11:21:59 -070098#define XTYPE_XBOXONE 3
99#define XTYPE_UNKNOWN 4
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400100
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030101static bool dpad_to_buttons;
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700102module_param(dpad_to_buttons, bool, S_IRUGO);
103MODULE_PARM_DESC(dpad_to_buttons, "Map D-PAD to buttons rather than axes for unknown pads");
104
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030105static bool triggers_to_buttons;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800106module_param(triggers_to_buttons, bool, S_IRUGO);
107MODULE_PARM_DESC(triggers_to_buttons, "Map triggers to buttons rather than axes for unknown pads");
108
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030109static bool sticks_to_null;
Christoph Fritz7beae702010-07-13 09:42:33 -0700110module_param(sticks_to_null, bool, S_IRUGO);
111MODULE_PARM_DESC(sticks_to_null, "Do not map sticks at all for unknown pads");
112
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100113static const struct xpad_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 u16 idVendor;
115 u16 idProduct;
116 char *name;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800117 u8 mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400118 u8 xtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119} xpad_device[] = {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800120 { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800121 { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX },
122 { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800123 { 0x045e, 0x0289, "Microsoft X-Box pad v2 (US)", 0, XTYPE_XBOX },
124 { 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700125 { 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800126 { 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Brian Magnuson99de0912008-04-03 16:19:23 -0400127 { 0x045e, 0x0719, "Xbox 360 Wireless Receiver", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800128 { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700129 { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800130 { 0x046d, 0xc21d, "Logitech Gamepad F310", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700131 { 0x046d, 0xc21e, "Logitech Gamepad F510", 0, XTYPE_XBOX360 },
Petr Sebor8e2f2322014-01-02 15:35:07 -0800132 { 0x046d, 0xc21f, "Logitech Gamepad F710", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800133 { 0x046d, 0xc242, "Logitech Chillstream Controller", 0, XTYPE_XBOX360 },
134 { 0x046d, 0xca84, "Logitech Xbox Cordless Controller", 0, XTYPE_XBOX },
135 { 0x046d, 0xca88, "Logitech Compact Controller for Xbox", 0, XTYPE_XBOX },
136 { 0x05fd, 0x1007, "Mad Catz Controller (unverified)", 0, XTYPE_XBOX },
137 { 0x05fd, 0x107a, "InterAct 'PowerPad Pro' X-Box pad (Germany)", 0, XTYPE_XBOX },
138 { 0x0738, 0x4516, "Mad Catz Control Pad", 0, XTYPE_XBOX },
139 { 0x0738, 0x4522, "Mad Catz LumiCON", 0, XTYPE_XBOX },
140 { 0x0738, 0x4526, "Mad Catz Control Pad Pro", 0, XTYPE_XBOX },
141 { 0x0738, 0x4536, "Mad Catz MicroCON", 0, XTYPE_XBOX },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400142 { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800143 { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
144 { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700145 { 0x0738, 0x4718, "Mad Catz Street Fighter IV FightStick SE", 0, XTYPE_XBOX360 },
146 { 0x0738, 0x4726, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Shawn Josephbe662272013-06-18 23:07:45 -0700147 { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800148 { 0x0738, 0x4738, "Mad Catz Wired Xbox 360 Controller (SFIV)", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700149 { 0x0738, 0x4740, "Mad Catz Beat Pad", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400150 { 0x0738, 0x6040, "Mad Catz Beat Pad Pro", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700151 { 0x0738, 0xb726, "Mad Catz Xbox controller - MW2", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800152 { 0x0738, 0xbeef, "Mad Catz JOYTECH NEO SE Advanced GamePad", XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700153 { 0x0738, 0xcb02, "Saitek Cyborg Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
154 { 0x0738, 0xcb03, "Saitek P3200 Rumble Pad - PC/Xbox 360", 0, XTYPE_XBOX360 },
155 { 0x0738, 0xf738, "Super SFIV FightStick TE S", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800156 { 0x0c12, 0x8802, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800157 { 0x0c12, 0x8809, "RedOctane Xbox Dance Pad", DANCEPAD_MAP_CONFIG, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800158 { 0x0c12, 0x880a, "Pelican Eclipse PL-2023", 0, XTYPE_XBOX },
159 { 0x0c12, 0x8810, "Zeroplus Xbox Controller", 0, XTYPE_XBOX },
160 { 0x0c12, 0x9902, "HAMA VibraX - *FAULTY HARDWARE*", 0, XTYPE_XBOX },
Yuri Khane76b8ee2012-07-11 22:12:31 -0700161 { 0x0d2f, 0x0002, "Andamiro Pump It Up pad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800162 { 0x0e4c, 0x1097, "Radica Gamester Controller", 0, XTYPE_XBOX },
163 { 0x0e4c, 0x2390, "Radica Games Jtech Controller", 0, XTYPE_XBOX },
164 { 0x0e6f, 0x0003, "Logic3 Freebird wireless Controller", 0, XTYPE_XBOX },
165 { 0x0e6f, 0x0005, "Eclipse wireless Controller", 0, XTYPE_XBOX },
166 { 0x0e6f, 0x0006, "Edge wireless Controller", 0, XTYPE_XBOX },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800167 { 0x0e6f, 0x0105, "HSM3 Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700168 { 0x0e6f, 0x0113, "Afterglow AX.1 Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Christoph Fritz6ac8a992010-08-09 10:08:10 -0700169 { 0x0e6f, 0x0201, "Pelican PL-3601 'TSZ' Wired Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800170 { 0x0e6f, 0x0213, "Afterglow Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700171 { 0x0e6f, 0x021f, "Rock Candy Gamepad for Xbox 360", 0, XTYPE_XBOX360 },
172 { 0x0e6f, 0x0301, "Logic3 Controller", 0, XTYPE_XBOX360 },
173 { 0x0e6f, 0x0401, "Logic3 Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800174 { 0x0e8f, 0x0201, "SmartJoy Frag Xpad/PS2 adaptor", 0, XTYPE_XBOX },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700175 { 0x0e8f, 0x3008, "Generic xbox control (dealextreme)", 0, XTYPE_XBOX },
176 { 0x0f0d, 0x000a, "Hori Co. DOA4 FightStick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800177 { 0x0f0d, 0x000d, "Hori Fighting Stick EX2", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
178 { 0x0f0d, 0x0016, "Hori Real Arcade Pro.EX", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800179 { 0x0f30, 0x0202, "Joytech Advanced Controller", 0, XTYPE_XBOX },
180 { 0x0f30, 0x8888, "BigBen XBMiniPad Controller", 0, XTYPE_XBOX },
181 { 0x102c, 0xff0c, "Joytech Wireless Advanced Controller", 0, XTYPE_XBOX },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700182 { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700183 { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800184 { 0x12ab, 0x8809, "Xbox DDR dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800185 { 0x1430, 0x4748, "RedOctane Guitar Hero X-plorer", 0, XTYPE_XBOX360 },
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400186 { 0x1430, 0x8888, "TX6500+ Dance Pad (first generation)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800187 { 0x146b, 0x0601, "BigBen Interactive XBOX 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700188 { 0x1532, 0x0037, "Razer Sabertooth", 0, XTYPE_XBOX360 },
189 { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 },
190 { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
191 { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 },
192 { 0x162e, 0xbeef, "Joytech Neo-Se Take2", 0, XTYPE_XBOX360 },
Thomaz de Oliveira dos Reisdbb48002014-01-02 15:38:45 -0800193 { 0x1689, 0xfd00, "Razer Onza Tournament Edition", 0, XTYPE_XBOX360 },
194 { 0x1689, 0xfd01, "Razer Onza Classic Edition", 0, XTYPE_XBOX360 },
Frank Razenberga7b44732014-09-08 11:32:20 -0700195 { 0x24c6, 0x5d04, "Razer Sabertooth", 0, XTYPE_XBOX360 },
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700196 { 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
Corbin Simpson805423e2009-08-20 21:41:04 -0700197 { 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800198 { 0x1bad, 0xf016, "Mad Catz Xbox 360 Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700199 { 0x1bad, 0xf023, "MLG Pro Circuit Controller (Xbox)", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800200 { 0x1bad, 0xf028, "Street Fighter IV FightPad", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700201 { 0x1bad, 0xf038, "Street Fighter IV FightStick TE", 0, XTYPE_XBOX360 },
202 { 0x1bad, 0xf900, "Harmonix Xbox 360 Controller", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800203 { 0x1bad, 0xf901, "Gamestop Xbox 360 Controller", 0, XTYPE_XBOX360 },
204 { 0x1bad, 0xf903, "Tron Xbox 360 controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700205 { 0x24c6, 0x5000, "Razer Atrox Arcade Stick", 0, XTYPE_XBOX360 },
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800206 { 0x24c6, 0x5300, "PowerA MINI PROEX Controller", 0, XTYPE_XBOX360 },
Benjamin Valentinf554f612014-09-08 14:18:40 -0700207 { 0x24c6, 0x5303, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 },
208 { 0x24c6, 0x5500, "Hori XBOX 360 EX 2 with Turbo", 0, XTYPE_XBOX360 },
209 { 0x24c6, 0x5501, "Hori Real Arcade Pro VX-SA", 0, XTYPE_XBOX360 },
210 { 0x24c6, 0x5506, "Hori SOULCALIBUR V Stick", 0, XTYPE_XBOX360 },
211 { 0x24c6, 0x5b02, "Thrustmaster, Inc. GPX Controller", 0, XTYPE_XBOX360 },
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800212 { 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
213 { 0x0000, 0x0000, "Generic X-Box pad", 0, XTYPE_UNKNOWN }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Anssi Hannulafc55e952008-04-03 16:18:44 -0400216/* buttons shared with xbox and xbox360 */
217static const signed short xpad_common_btn[] = {
218 BTN_A, BTN_B, BTN_X, BTN_Y, /* "analog" buttons */
Christoph Fritz7beae702010-07-13 09:42:33 -0700219 BTN_START, BTN_SELECT, BTN_THUMBL, BTN_THUMBR, /* start/back/sticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 -1 /* terminating entry */
221};
222
Anssi Hannulafc55e952008-04-03 16:18:44 -0400223/* original xbox controllers only */
224static const signed short xpad_btn[] = {
225 BTN_C, BTN_Z, /* "analog" buttons */
226 -1 /* terminating entry */
227};
228
Christoph Fritz7beae702010-07-13 09:42:33 -0700229/* used when dpad is mapped to buttons */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700230static const signed short xpad_btn_pad[] = {
Christoph Fritz7beae702010-07-13 09:42:33 -0700231 BTN_TRIGGER_HAPPY1, BTN_TRIGGER_HAPPY2, /* d-pad left, right */
232 BTN_TRIGGER_HAPPY3, BTN_TRIGGER_HAPPY4, /* d-pad up, down */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700233 -1 /* terminating entry */
234};
235
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800236/* used when triggers are mapped to buttons */
237static const signed short xpad_btn_triggers[] = {
238 BTN_TL2, BTN_TR2, /* triggers left/right */
239 -1
240};
241
242
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400243static const signed short xpad360_btn[] = { /* buttons for x360 controller */
244 BTN_TL, BTN_TR, /* Button LB/RB */
245 BTN_MODE, /* The big X button */
246 -1
247};
248
Arjan van de Ven4c4c9432005-11-29 09:43:42 +0100249static const signed short xpad_abs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ABS_X, ABS_Y, /* left stick */
251 ABS_RX, ABS_RY, /* right stick */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700252 -1 /* terminating entry */
253};
254
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800255/* used when dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700256static const signed short xpad_abs_pad[] = {
257 ABS_HAT0X, ABS_HAT0Y, /* d-pad axes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 -1 /* terminating entry */
259};
260
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800261/* used when triggers are mapped to axes */
262static const signed short xpad_abs_triggers[] = {
263 ABS_Z, ABS_RZ, /* triggers left/right */
264 -1
265};
266
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700267/*
268 * Xbox 360 has a vendor-specific class, so we cannot match it with only
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400269 * USB_INTERFACE_INFO (also specifically refused by USB subsystem), so we
Brian Magnuson99de0912008-04-03 16:19:23 -0400270 * match against vendor id as well. Wired Xbox 360 devices have protocol 1,
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700271 * wireless controllers have protocol 129.
272 */
Brian Magnuson99de0912008-04-03 16:19:23 -0400273#define XPAD_XBOX360_VENDOR_PROTOCOL(vend,pr) \
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400274 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
275 .idVendor = (vend), \
276 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
277 .bInterfaceSubClass = 93, \
Brian Magnuson99de0912008-04-03 16:19:23 -0400278 .bInterfaceProtocol = (pr)
279#define XPAD_XBOX360_VENDOR(vend) \
280 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,1) }, \
281 { XPAD_XBOX360_VENDOR_PROTOCOL(vend,129) }
Anssi Hannula8a0f83e2008-04-03 16:17:52 -0400282
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700283/* The Xbox One controller uses subclass 71 and protocol 208. */
284#define XPAD_XBOXONE_VENDOR_PROTOCOL(vend, pr) \
285 .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_INFO, \
286 .idVendor = (vend), \
287 .bInterfaceClass = USB_CLASS_VENDOR_SPEC, \
288 .bInterfaceSubClass = 71, \
289 .bInterfaceProtocol = (pr)
290#define XPAD_XBOXONE_VENDOR(vend) \
291 { XPAD_XBOXONE_VENDOR_PROTOCOL(vend, 208) }
292
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800293static struct usb_device_id xpad_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 { USB_INTERFACE_INFO('X', 'B', 0) }, /* X-Box USB-IF not approved class */
Brian Magnuson99de0912008-04-03 16:19:23 -0400295 XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700296 XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */
Brian Magnuson99de0912008-04-03 16:19:23 -0400297 XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */
298 XPAD_XBOX360_VENDOR(0x0738), /* Mad Catz X-Box 360 controllers */
Yuri Khan3ffb62c2012-07-11 00:49:18 -0700299 { USB_DEVICE(0x0738, 0x4540) }, /* Mad Catz Beat Pad */
Brian Magnuson99de0912008-04-03 16:19:23 -0400300 XPAD_XBOX360_VENDOR(0x0e6f), /* 0x0e6f X-Box 360 controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700301 XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */
Brian Magnuson99de0912008-04-03 16:19:23 -0400302 XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */
Thomas Gruber3ac91d32009-10-05 21:43:42 -0700303 XPAD_XBOX360_VENDOR(0x146b), /* BigBen Interactive Controllers */
Magnus Hörlinfabadbc2011-06-21 14:40:30 -0700304 XPAD_XBOX360_VENDOR(0x1bad), /* Harminix Rock Band Guitar and Drums */
Ilia Katsnelsoncc71a7e2012-07-11 00:54:20 -0700305 XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */
306 XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
Guillermo A. Amaral540602a2012-12-02 23:26:18 -0800307 XPAD_XBOX360_VENDOR(0x24c6), /* PowerA Controllers */
Benjamin Valentinf554f612014-09-08 14:18:40 -0700308 XPAD_XBOX360_VENDOR(0x1532), /* Razer Sabertooth */
309 XPAD_XBOX360_VENDOR(0x15e4), /* Numark X-Box 360 controllers */
310 XPAD_XBOX360_VENDOR(0x162e), /* Joytech X-Box 360 controllers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 { }
312};
313
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800314MODULE_DEVICE_TABLE(usb, xpad_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316struct usb_xpad {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700317 struct input_dev *dev; /* input device interface */
318 struct usb_device *udev; /* usb device */
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700319 struct usb_interface *intf; /* usb interface */
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500320
Brian Magnuson99de0912008-04-03 16:19:23 -0400321 int pad_present;
322
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700323 struct urb *irq_in; /* urb for interrupt in report */
324 unsigned char *idata; /* input data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 dma_addr_t idata_dma;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500326
Brian Magnuson99de0912008-04-03 16:19:23 -0400327 struct urb *bulk_out;
328 unsigned char *bdata;
329
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400330 struct urb *irq_out; /* urb for interrupt out report */
331 unsigned char *odata; /* output data */
332 dma_addr_t odata_dma;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400333 struct mutex odata_mutex;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400334
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400335#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
336 struct xpad_led *led;
337#endif
338
339 char phys[64]; /* physical device path */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700340
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800341 int mapping; /* map d-pad to buttons or to axes */
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400342 int xtype; /* type of xbox device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343};
344
345/*
346 * xpad_process_packet
347 *
348 * Completes a request by converting the data into events for the
349 * input subsystem.
350 *
351 * The used report descriptor was taken from ITO Takayukis website:
352 * http://euc.jp/periphs/xbox-controller.ja.html
353 */
354
David Howells7d12e782006-10-05 14:55:46 +0100355static void xpad_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -0500357 struct input_dev *dev = xpad->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Christoph Fritz7beae702010-07-13 09:42:33 -0700359 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
360 /* left stick */
361 input_report_abs(dev, ABS_X,
362 (__s16) le16_to_cpup((__le16 *)(data + 12)));
363 input_report_abs(dev, ABS_Y,
364 ~(__s16) le16_to_cpup((__le16 *)(data + 14)));
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500365
Christoph Fritz7beae702010-07-13 09:42:33 -0700366 /* right stick */
367 input_report_abs(dev, ABS_RX,
368 (__s16) le16_to_cpup((__le16 *)(data + 16)));
369 input_report_abs(dev, ABS_RY,
370 ~(__s16) le16_to_cpup((__le16 *)(data + 18)));
371 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800374 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
375 input_report_key(dev, BTN_TL2, data[10]);
376 input_report_key(dev, BTN_TR2, data[11]);
377 } else {
378 input_report_abs(dev, ABS_Z, data[10]);
379 input_report_abs(dev, ABS_RZ, data[11]);
380 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800383 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700384 /* dpad as buttons (left, right, up, down) */
385 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
386 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
387 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
388 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800389 } else {
390 input_report_abs(dev, ABS_HAT0X,
391 !!(data[2] & 0x08) - !!(data[2] & 0x04));
392 input_report_abs(dev, ABS_HAT0Y,
393 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700394 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* start/back buttons and stick press left/right */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700397 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700398 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700399 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
400 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* "analog" buttons A, B, X, Y */
403 input_report_key(dev, BTN_A, data[4]);
404 input_report_key(dev, BTN_B, data[5]);
405 input_report_key(dev, BTN_X, data[6]);
406 input_report_key(dev, BTN_Y, data[7]);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /* "analog" buttons black, white */
409 input_report_key(dev, BTN_C, data[8]);
410 input_report_key(dev, BTN_Z, data[9]);
411
412 input_sync(dev);
413}
414
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400415/*
416 * xpad360_process_packet
417 *
418 * Completes a request by converting the data into events for the
419 * input subsystem. It is version for xbox 360 controller
420 *
421 * The used report descriptor was taken from:
422 * http://www.free60.org/wiki/Gamepad
423 */
424
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -0400425static void xpad360_process_packet(struct usb_xpad *xpad,
426 u16 cmd, unsigned char *data)
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400427{
428 struct input_dev *dev = xpad->dev;
429
430 /* digital pad */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800431 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
Christoph Fritz7beae702010-07-13 09:42:33 -0700432 /* dpad as buttons (left, right, up, down) */
433 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[2] & 0x04);
434 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[2] & 0x08);
435 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[2] & 0x01);
436 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[2] & 0x02);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800437 } else {
438 input_report_abs(dev, ABS_HAT0X,
439 !!(data[2] & 0x08) - !!(data[2] & 0x04));
440 input_report_abs(dev, ABS_HAT0Y,
441 !!(data[2] & 0x02) - !!(data[2] & 0x01));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400442 }
443
444 /* start/back buttons */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400445 input_report_key(dev, BTN_START, data[2] & 0x10);
Christoph Fritz7beae702010-07-13 09:42:33 -0700446 input_report_key(dev, BTN_SELECT, data[2] & 0x20);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400447
448 /* stick press left/right */
449 input_report_key(dev, BTN_THUMBL, data[2] & 0x40);
450 input_report_key(dev, BTN_THUMBR, data[2] & 0x80);
451
452 /* buttons A,B,X,Y,TL,TR and MODE */
Dmitry Torokhovae91d102007-06-14 23:49:55 -0400453 input_report_key(dev, BTN_A, data[3] & 0x10);
454 input_report_key(dev, BTN_B, data[3] & 0x20);
455 input_report_key(dev, BTN_X, data[3] & 0x40);
456 input_report_key(dev, BTN_Y, data[3] & 0x80);
457 input_report_key(dev, BTN_TL, data[3] & 0x01);
458 input_report_key(dev, BTN_TR, data[3] & 0x02);
459 input_report_key(dev, BTN_MODE, data[3] & 0x04);
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400460
Christoph Fritz7beae702010-07-13 09:42:33 -0700461 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
462 /* left stick */
463 input_report_abs(dev, ABS_X,
464 (__s16) le16_to_cpup((__le16 *)(data + 6)));
465 input_report_abs(dev, ABS_Y,
466 ~(__s16) le16_to_cpup((__le16 *)(data + 8)));
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400467
Christoph Fritz7beae702010-07-13 09:42:33 -0700468 /* right stick */
469 input_report_abs(dev, ABS_RX,
470 (__s16) le16_to_cpup((__le16 *)(data + 10)));
471 input_report_abs(dev, ABS_RY,
472 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
473 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400474
475 /* triggers left/right */
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800476 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
477 input_report_key(dev, BTN_TL2, data[4]);
478 input_report_key(dev, BTN_TR2, data[5]);
479 } else {
480 input_report_abs(dev, ABS_Z, data[4]);
481 input_report_abs(dev, ABS_RZ, data[5]);
482 }
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400483
484 input_sync(dev);
485}
486
Brian Magnuson99de0912008-04-03 16:19:23 -0400487/*
488 * xpad360w_process_packet
489 *
490 * Completes a request by converting the data into events for the
491 * input subsystem. It is version for xbox 360 wireless controller.
492 *
493 * Byte.Bit
494 * 00.1 - Status change: The controller or headset has connected/disconnected
495 * Bits 01.7 and 01.6 are valid
496 * 01.7 - Controller present
497 * 01.6 - Headset present
498 * 01.1 - Pad state (Bytes 4+) valid
499 *
500 */
501
502static void xpad360w_process_packet(struct usb_xpad *xpad, u16 cmd, unsigned char *data)
503{
504 /* Presence change */
505 if (data[0] & 0x08) {
506 if (data[1] & 0x80) {
507 xpad->pad_present = 1;
508 usb_submit_urb(xpad->bulk_out, GFP_ATOMIC);
509 } else
510 xpad->pad_present = 0;
511 }
512
513 /* Valid pad data */
514 if (!(data[1] & 0x1))
515 return;
516
517 xpad360_process_packet(xpad, cmd, &data[4]);
518}
519
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700520/*
521 * xpadone_process_buttons
522 *
523 * Process a button update packet from an Xbox one controller.
524 */
525static void xpadone_process_buttons(struct usb_xpad *xpad,
526 struct input_dev *dev,
527 unsigned char *data)
528{
529 /* menu/view buttons */
530 input_report_key(dev, BTN_START, data[4] & 0x04);
531 input_report_key(dev, BTN_SELECT, data[4] & 0x08);
532
533 /* buttons A,B,X,Y */
534 input_report_key(dev, BTN_A, data[4] & 0x10);
535 input_report_key(dev, BTN_B, data[4] & 0x20);
536 input_report_key(dev, BTN_X, data[4] & 0x40);
537 input_report_key(dev, BTN_Y, data[4] & 0x80);
538
539 /* digital pad */
540 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
541 /* dpad as buttons (left, right, up, down) */
542 input_report_key(dev, BTN_TRIGGER_HAPPY1, data[5] & 0x04);
543 input_report_key(dev, BTN_TRIGGER_HAPPY2, data[5] & 0x08);
544 input_report_key(dev, BTN_TRIGGER_HAPPY3, data[5] & 0x01);
545 input_report_key(dev, BTN_TRIGGER_HAPPY4, data[5] & 0x02);
546 } else {
547 input_report_abs(dev, ABS_HAT0X,
548 !!(data[5] & 0x08) - !!(data[5] & 0x04));
549 input_report_abs(dev, ABS_HAT0Y,
550 !!(data[5] & 0x02) - !!(data[5] & 0x01));
551 }
552
553 /* TL/TR */
554 input_report_key(dev, BTN_TL, data[5] & 0x10);
555 input_report_key(dev, BTN_TR, data[5] & 0x20);
556
557 /* stick press left/right */
558 input_report_key(dev, BTN_THUMBL, data[5] & 0x40);
559 input_report_key(dev, BTN_THUMBR, data[5] & 0x80);
560
561 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
562 /* left stick */
563 input_report_abs(dev, ABS_X,
564 (__s16) le16_to_cpup((__le16 *)(data + 10)));
565 input_report_abs(dev, ABS_Y,
566 ~(__s16) le16_to_cpup((__le16 *)(data + 12)));
567
568 /* right stick */
569 input_report_abs(dev, ABS_RX,
570 (__s16) le16_to_cpup((__le16 *)(data + 14)));
571 input_report_abs(dev, ABS_RY,
572 ~(__s16) le16_to_cpup((__le16 *)(data + 16)));
573 }
574
575 /* triggers left/right */
576 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
577 input_report_key(dev, BTN_TL2,
578 (__u16) le16_to_cpup((__le16 *)(data + 6)));
579 input_report_key(dev, BTN_TR2,
580 (__u16) le16_to_cpup((__le16 *)(data + 8)));
581 } else {
582 input_report_abs(dev, ABS_Z,
583 (__u16) le16_to_cpup((__le16 *)(data + 6)));
584 input_report_abs(dev, ABS_RZ,
585 (__u16) le16_to_cpup((__le16 *)(data + 8)));
586 }
587
588 input_sync(dev);
589}
590
591/*
592 * xpadone_process_packet
593 *
594 * Completes a request by converting the data into events for the
595 * input subsystem. This version is for the Xbox One controller.
596 *
597 * The report format was gleaned from
598 * https://github.com/kylelemons/xbox/blob/master/xbox.go
599 */
600
601static void xpadone_process_packet(struct usb_xpad *xpad,
602 u16 cmd, unsigned char *data)
603{
604 struct input_dev *dev = xpad->dev;
605
606 switch (data[0]) {
607 case 0x20:
608 xpadone_process_buttons(xpad, dev, data);
609 break;
610
611 case 0x07:
612 /* the xbox button has its own special report */
613 input_report_key(dev, BTN_MODE, data[4] & 0x01);
614 input_sync(dev);
615 break;
616 }
617}
618
David Howells7d12e782006-10-05 14:55:46 +0100619static void xpad_irq_in(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700622 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200623 int retval, status;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500624
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200625 status = urb->status;
626
627 switch (status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 case 0:
629 /* success */
630 break;
631 case -ECONNRESET:
632 case -ENOENT:
633 case -ESHUTDOWN:
634 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700635 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400636 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return;
638 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700639 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
Harvey Harrisonea3e6c52008-05-05 11:36:18 -0400640 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto exit;
642 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500643
Brian Magnuson99de0912008-04-03 16:19:23 -0400644 switch (xpad->xtype) {
645 case XTYPE_XBOX360:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400646 xpad360_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400647 break;
648 case XTYPE_XBOX360W:
649 xpad360w_process_packet(xpad, 0, xpad->idata);
650 break;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700651 case XTYPE_XBOXONE:
652 xpadone_process_packet(xpad, 0, xpad->idata);
653 break;
Brian Magnuson99de0912008-04-03 16:19:23 -0400654 default:
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -0400655 xpad_process_packet(xpad, 0, xpad->idata);
Brian Magnuson99de0912008-04-03 16:19:23 -0400656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658exit:
Dmitry Torokhovdd38d682010-01-09 00:13:36 -0800659 retval = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700661 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700662 __func__, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Dmitry Torokhov20430212008-04-27 00:10:11 -0400665static void xpad_bulk_out(struct urb *urb)
666{
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700667 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700668 struct device *dev = &xpad->intf->dev;
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700669
Dmitry Torokhov20430212008-04-27 00:10:11 -0400670 switch (urb->status) {
671 case 0:
672 /* success */
673 break;
674 case -ECONNRESET:
675 case -ENOENT:
676 case -ESHUTDOWN:
677 /* this urb is terminated, clean up */
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700678 dev_dbg(dev, "%s - urb shutting down with status: %d\n",
679 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400680 break;
681 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700682 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
683 __func__, urb->status);
Dmitry Torokhov20430212008-04-27 00:10:11 -0400684 }
685}
686
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400687static void xpad_irq_out(struct urb *urb)
688{
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700689 struct usb_xpad *xpad = urb->context;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -0700690 struct device *dev = &xpad->intf->dev;
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200691 int retval, status;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400692
Oliver Neukum6fc88f532008-04-03 21:40:59 +0200693 status = urb->status;
694
695 switch (status) {
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700696 case 0:
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400697 /* success */
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700698 return;
699
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",
705 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700706 return;
707
708 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700709 dev_dbg(dev, "%s - nonzero urb status received: %d\n",
710 __func__, status);
Michael Gruber70a6f2e2009-07-12 20:51:36 -0700711 goto exit;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400712 }
713
714exit:
715 retval = usb_submit_urb(urb, GFP_ATOMIC);
716 if (retval)
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700717 dev_err(dev, "%s - usb_submit_urb failed with result %d\n",
Greg Kroah-Hartman9cb757b2012-04-25 14:48:23 -0700718 __func__, retval);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400719}
720
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400721static int xpad_init_output(struct usb_interface *intf, struct usb_xpad *xpad)
722{
723 struct usb_endpoint_descriptor *ep_irq_out;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700724 int ep_irq_out_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -0800725 int error;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400726
Chris Moellerb514d4f2011-07-04 19:21:59 -0700727 if (xpad->xtype == XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400728 return 0;
729
Daniel Mack997ea582010-04-12 13:17:25 +0200730 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN,
731 GFP_KERNEL, &xpad->odata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -0800732 if (!xpad->odata) {
733 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400734 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -0800735 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400736
737 mutex_init(&xpad->odata_mutex);
738
739 xpad->irq_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -0800740 if (!xpad->irq_out) {
741 error = -ENOMEM;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400742 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -0800743 }
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400744
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700745 /* Xbox One controller has in/out endpoints swapped. */
746 ep_irq_out_idx = xpad->xtype == XTYPE_XBOXONE ? 0 : 1;
747 ep_irq_out = &intf->cur_altsetting->endpoint[ep_irq_out_idx].desc;
748
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400749 usb_fill_int_urb(xpad->irq_out, xpad->udev,
750 usb_sndintpipe(xpad->udev, ep_irq_out->bEndpointAddress),
751 xpad->odata, XPAD_PKT_LEN,
752 xpad_irq_out, xpad, ep_irq_out->bInterval);
753 xpad->irq_out->transfer_dma = xpad->odata_dma;
754 xpad->irq_out->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
755
756 return 0;
757
Daniel Mack997ea582010-04-12 13:17:25 +0200758 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma);
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400759 fail1: return error;
760}
761
762static void xpad_stop_output(struct usb_xpad *xpad)
763{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700764 if (xpad->xtype != XTYPE_UNKNOWN)
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400765 usb_kill_urb(xpad->irq_out);
766}
767
768static void xpad_deinit_output(struct usb_xpad *xpad)
769{
Chris Moellerb514d4f2011-07-04 19:21:59 -0700770 if (xpad->xtype != XTYPE_UNKNOWN) {
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400771 usb_free_urb(xpad->irq_out);
Daniel Mack997ea582010-04-12 13:17:25 +0200772 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400773 xpad->odata, xpad->odata_dma);
774 }
775}
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400776
777#ifdef CONFIG_JOYSTICK_XPAD_FF
Benjamin Valentin12187302010-01-21 20:19:06 -0800778static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400779{
780 struct usb_xpad *xpad = input_get_drvdata(dev);
781
782 if (effect->type == FF_RUMBLE) {
783 __u16 strong = effect->u.rumble.strong_magnitude;
784 __u16 weak = effect->u.rumble.weak_magnitude;
Benjamin Valentin12187302010-01-21 20:19:06 -0800785
786 switch (xpad->xtype) {
787
788 case XTYPE_XBOX:
789 xpad->odata[0] = 0x00;
790 xpad->odata[1] = 0x06;
791 xpad->odata[2] = 0x00;
792 xpad->odata[3] = strong / 256; /* left actuator */
793 xpad->odata[4] = 0x00;
794 xpad->odata[5] = weak / 256; /* right actuator */
795 xpad->irq_out->transfer_buffer_length = 6;
796
797 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
798
799 case XTYPE_XBOX360:
800 xpad->odata[0] = 0x00;
801 xpad->odata[1] = 0x08;
802 xpad->odata[2] = 0x00;
803 xpad->odata[3] = strong / 256; /* left actuator? */
804 xpad->odata[4] = weak / 256; /* right actuator? */
805 xpad->odata[5] = 0x00;
806 xpad->odata[6] = 0x00;
807 xpad->odata[7] = 0x00;
808 xpad->irq_out->transfer_buffer_length = 8;
809
810 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
811
Chris Moellerb514d4f2011-07-04 19:21:59 -0700812 case XTYPE_XBOX360W:
813 xpad->odata[0] = 0x00;
814 xpad->odata[1] = 0x01;
815 xpad->odata[2] = 0x0F;
816 xpad->odata[3] = 0xC0;
817 xpad->odata[4] = 0x00;
818 xpad->odata[5] = strong / 256;
819 xpad->odata[6] = weak / 256;
820 xpad->odata[7] = 0x00;
821 xpad->odata[8] = 0x00;
822 xpad->odata[9] = 0x00;
823 xpad->odata[10] = 0x00;
824 xpad->odata[11] = 0x00;
825 xpad->irq_out->transfer_buffer_length = 12;
826
827 return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
828
Benjamin Valentin12187302010-01-21 20:19:06 -0800829 default:
Greg Kroah-Hartmanc4f0bbc2012-05-01 21:32:59 -0700830 dev_dbg(&xpad->dev->dev,
831 "%s - rumble command sent to unsupported xpad type: %d\n",
Benjamin Valentin12187302010-01-21 20:19:06 -0800832 __func__, xpad->xtype);
833 return -1;
834 }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400835 }
836
837 return 0;
838}
839
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400840static int xpad_init_ff(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400841{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700842 if (xpad->xtype == XTYPE_UNKNOWN || xpad->xtype == XTYPE_XBOXONE)
Anssi Hannulacfbe2012008-04-03 16:18:57 -0400843 return 0;
844
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400845 input_set_capability(xpad->dev, EV_FF, FF_RUMBLE);
846
847 return input_ff_create_memless(xpad->dev, NULL, xpad_play_effect);
848}
849
850#else
851static int xpad_init_ff(struct usb_xpad *xpad) { return 0; }
852#endif
853
854#if defined(CONFIG_JOYSTICK_XPAD_LEDS)
855#include <linux/leds.h>
856
857struct xpad_led {
858 char name[16];
859 struct led_classdev led_cdev;
860 struct usb_xpad *xpad;
861};
862
863static void xpad_send_led_command(struct usb_xpad *xpad, int command)
864{
865 if (command >= 0 && command < 14) {
866 mutex_lock(&xpad->odata_mutex);
867 xpad->odata[0] = 0x01;
868 xpad->odata[1] = 0x03;
869 xpad->odata[2] = command;
Michael Gruber04021e42008-04-15 01:31:47 -0400870 xpad->irq_out->transfer_buffer_length = 3;
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400871 usb_submit_urb(xpad->irq_out, GFP_KERNEL);
872 mutex_unlock(&xpad->odata_mutex);
873 }
874}
875
876static void xpad_led_set(struct led_classdev *led_cdev,
877 enum led_brightness value)
878{
879 struct xpad_led *xpad_led = container_of(led_cdev,
880 struct xpad_led, led_cdev);
881
882 xpad_send_led_command(xpad_led->xpad, value);
883}
884
885static int xpad_led_probe(struct usb_xpad *xpad)
886{
887 static atomic_t led_seq = ATOMIC_INIT(0);
888 long led_no;
889 struct xpad_led *led;
890 struct led_classdev *led_cdev;
891 int error;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400892
893 if (xpad->xtype != XTYPE_XBOX360)
894 return 0;
895
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400896 xpad->led = led = kzalloc(sizeof(struct xpad_led), GFP_KERNEL);
897 if (!led)
898 return -ENOMEM;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400899
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400900 led_no = (long)atomic_inc_return(&led_seq) - 1;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400901
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400902 snprintf(led->name, sizeof(led->name), "xpad%ld", led_no);
903 led->xpad = xpad;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400904
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400905 led_cdev = &led->led_cdev;
906 led_cdev->name = led->name;
907 led_cdev->brightness_set = xpad_led_set;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400908
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400909 error = led_classdev_register(&xpad->udev->dev, led_cdev);
910 if (error) {
911 kfree(led);
912 xpad->led = NULL;
913 return error;
914 }
915
916 /*
917 * Light up the segment corresponding to controller number
918 */
919 xpad_send_led_command(xpad, (led_no % 4) + 2);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400920
921 return 0;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400922}
923
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400924static void xpad_led_disconnect(struct usb_xpad *xpad)
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400925{
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400926 struct xpad_led *xpad_led = xpad->led;
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400927
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400928 if (xpad_led) {
929 led_classdev_unregister(&xpad_led->led_cdev);
Axel Lin6ff92a62010-11-11 21:43:17 -0800930 kfree(xpad_led);
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400931 }
932}
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400933#else
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400934static int xpad_led_probe(struct usb_xpad *xpad) { return 0; }
935static void xpad_led_disconnect(struct usb_xpad *xpad) { }
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400936#endif
937
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400938
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400939static int xpad_open(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400941 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500942
Brian Magnuson99de0912008-04-03 16:19:23 -0400943 /* URB was submitted in probe */
Guillermo A. Amaral0d027962012-12-02 23:26:11 -0800944 if (xpad->xtype == XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400945 return 0;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 xpad->irq_in->dev = xpad->udev;
Dmitry Torokhov65cde542005-05-29 02:29:38 -0500948 if (usb_submit_urb(xpad->irq_in, GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return -EIO;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500950
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700951 if (xpad->xtype == XTYPE_XBOXONE) {
952 /* Xbox one controller needs to be initialized. */
953 xpad->odata[0] = 0x05;
954 xpad->odata[1] = 0x20;
955 xpad->irq_out->transfer_buffer_length = 2;
956 return usb_submit_urb(xpad->irq_out, GFP_KERNEL);
957 }
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 return 0;
960}
961
Jan Kratochvile01a06e2007-05-09 00:27:51 -0400962static void xpad_close(struct input_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Dmitry Torokhov7791bda2007-04-12 01:34:39 -0400964 struct usb_xpad *xpad = input_get_drvdata(dev);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -0500965
Axel Lin161feb22010-11-11 21:47:42 -0800966 if (xpad->xtype != XTYPE_XBOX360W)
Brian Magnuson99de0912008-04-03 16:19:23 -0400967 usb_kill_urb(xpad->irq_in);
Axel Lin161feb22010-11-11 21:47:42 -0800968
Jan Kratochvil4994cd82007-07-18 00:35:40 -0400969 xpad_stop_output(xpad);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700972static void xpad_set_up_abs(struct input_dev *input_dev, signed short abs)
973{
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700974 struct usb_xpad *xpad = input_get_drvdata(input_dev);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700975 set_bit(abs, input_dev->absbit);
976
977 switch (abs) {
978 case ABS_X:
979 case ABS_Y:
980 case ABS_RX:
981 case ABS_RY: /* the two sticks */
982 input_set_abs_params(input_dev, abs, -32768, 32767, 16, 128);
983 break;
984 case ABS_Z:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800985 case ABS_RZ: /* the triggers (if mapped to axes) */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -0700986 if (xpad->xtype == XTYPE_XBOXONE)
987 input_set_abs_params(input_dev, abs, 0, 1023, 0, 0);
988 else
989 input_set_abs_params(input_dev, abs, 0, 255, 0, 0);
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700990 break;
991 case ABS_HAT0X:
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -0800992 case ABS_HAT0Y: /* the d-pad (only if dpad is mapped to axes */
Dominic Cerquettideb8ee42006-10-10 14:42:48 -0700993 input_set_abs_params(input_dev, abs, -1, 1, 0, 0);
994 break;
995 }
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998static int xpad_probe(struct usb_interface *intf, const struct usb_device_id *id)
999{
Dmitry Torokhov20b3cdd2007-07-18 01:20:34 -04001000 struct usb_device *udev = interface_to_usbdev(intf);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001001 struct usb_xpad *xpad;
1002 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 struct usb_endpoint_descriptor *ep_irq_in;
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001004 int ep_irq_in_idx;
Axel Lin49cc69b2010-11-11 21:39:11 -08001005 int i, error;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 for (i = 0; xpad_device[i].idVendor; i++) {
1008 if ((le16_to_cpu(udev->descriptor.idVendor) == xpad_device[i].idVendor) &&
1009 (le16_to_cpu(udev->descriptor.idProduct) == xpad_device[i].idProduct))
1010 break;
1011 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001012
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001013 if (xpad_device[i].xtype == XTYPE_XBOXONE &&
1014 intf->cur_altsetting->desc.bInterfaceNumber != 0) {
1015 /*
1016 * The Xbox One controller lists three interfaces all with the
1017 * same interface class, subclass and protocol. Differentiate by
1018 * interface number.
1019 */
1020 return -ENODEV;
1021 }
1022
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001023 xpad = kzalloc(sizeof(struct usb_xpad), GFP_KERNEL);
1024 input_dev = input_allocate_device();
Axel Lin49cc69b2010-11-11 21:39:11 -08001025 if (!xpad || !input_dev) {
1026 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001027 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001028 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001029
Daniel Mack997ea582010-04-12 13:17:25 +02001030 xpad->idata = usb_alloc_coherent(udev, XPAD_PKT_LEN,
1031 GFP_KERNEL, &xpad->idata_dma);
Axel Lin49cc69b2010-11-11 21:39:11 -08001032 if (!xpad->idata) {
1033 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001034 goto fail1;
Axel Lin49cc69b2010-11-11 21:39:11 -08001035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 xpad->irq_in = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001038 if (!xpad->irq_in) {
1039 error = -ENOMEM;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001040 goto fail2;
Axel Lin49cc69b2010-11-11 21:39:11 -08001041 }
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001042
1043 xpad->udev = udev;
Greg Kroah-Hartman8818e412012-05-04 15:32:53 -07001044 xpad->intf = intf;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001045 xpad->mapping = xpad_device[i].mapping;
Jan Kratochvilc7d9f7e2007-05-09 00:27:37 -04001046 xpad->xtype = xpad_device[i].xtype;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001047
Brian Magnuson99de0912008-04-03 16:19:23 -04001048 if (xpad->xtype == XTYPE_UNKNOWN) {
1049 if (intf->cur_altsetting->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) {
1050 if (intf->cur_altsetting->desc.bInterfaceProtocol == 129)
1051 xpad->xtype = XTYPE_XBOX360W;
1052 else
1053 xpad->xtype = XTYPE_XBOX360;
1054 } else
1055 xpad->xtype = XTYPE_XBOX;
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001056
1057 if (dpad_to_buttons)
1058 xpad->mapping |= MAP_DPAD_TO_BUTTONS;
1059 if (triggers_to_buttons)
1060 xpad->mapping |= MAP_TRIGGERS_TO_BUTTONS;
Christoph Fritz7beae702010-07-13 09:42:33 -07001061 if (sticks_to_null)
1062 xpad->mapping |= MAP_STICKS_TO_NULL;
Brian Magnuson99de0912008-04-03 16:19:23 -04001063 }
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001064
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001065 xpad->dev = input_dev;
1066 usb_make_path(udev, xpad->phys, sizeof(xpad->phys));
1067 strlcat(xpad->phys, "/input0", sizeof(xpad->phys));
1068
1069 input_dev->name = xpad_device[i].name;
1070 input_dev->phys = xpad->phys;
1071 usb_to_input_id(udev, &input_dev->id);
Dmitry Torokhovc0f82d52007-04-12 01:35:03 -04001072 input_dev->dev.parent = &intf->dev;
Dmitry Torokhov7791bda2007-04-12 01:34:39 -04001073
1074 input_set_drvdata(input_dev, xpad);
1075
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001076 input_dev->open = xpad_open;
1077 input_dev->close = xpad_close;
1078
Christoph Fritz7beae702010-07-13 09:42:33 -07001079 input_dev->evbit[0] = BIT_MASK(EV_KEY);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001080
Christoph Fritz7beae702010-07-13 09:42:33 -07001081 if (!(xpad->mapping & MAP_STICKS_TO_NULL)) {
1082 input_dev->evbit[0] |= BIT_MASK(EV_ABS);
1083 /* set up axes */
1084 for (i = 0; xpad_abs[i] >= 0; i++)
1085 xpad_set_up_abs(input_dev, xpad_abs[i]);
1086 }
1087
1088 /* set up standard buttons */
Anssi Hannulafc55e952008-04-03 16:18:44 -04001089 for (i = 0; xpad_common_btn[i] >= 0; i++)
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001090 __set_bit(xpad_common_btn[i], input_dev->keybit);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001091
Christoph Fritz7beae702010-07-13 09:42:33 -07001092 /* set up model-specific ones */
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001093 if (xpad->xtype == XTYPE_XBOX360 || xpad->xtype == XTYPE_XBOX360W ||
1094 xpad->xtype == XTYPE_XBOXONE) {
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001095 for (i = 0; xpad360_btn[i] >= 0; i++)
1096 __set_bit(xpad360_btn[i], input_dev->keybit);
1097 } else {
1098 for (i = 0; xpad_btn[i] >= 0; i++)
1099 __set_bit(xpad_btn[i], input_dev->keybit);
1100 }
1101
1102 if (xpad->mapping & MAP_DPAD_TO_BUTTONS) {
1103 for (i = 0; xpad_btn_pad[i] >= 0; i++)
1104 __set_bit(xpad_btn_pad[i], input_dev->keybit);
1105 } else {
Dominic Cerquettideb8ee42006-10-10 14:42:48 -07001106 for (i = 0; xpad_abs_pad[i] >= 0; i++)
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001107 xpad_set_up_abs(input_dev, xpad_abs_pad[i]);
Nicolas Léveilléb45d44e2009-12-29 20:39:05 -08001108 }
1109
1110 if (xpad->mapping & MAP_TRIGGERS_TO_BUTTONS) {
1111 for (i = 0; xpad_btn_triggers[i] >= 0; i++)
1112 __set_bit(xpad_btn_triggers[i], input_dev->keybit);
1113 } else {
1114 for (i = 0; xpad_abs_triggers[i] >= 0; i++)
1115 xpad_set_up_abs(input_dev, xpad_abs_triggers[i]);
1116 }
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001117
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001118 error = xpad_init_output(intf, xpad);
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001119 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001120 goto fail3;
Jan Kratochvile01a06e2007-05-09 00:27:51 -04001121
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001122 error = xpad_init_ff(xpad);
1123 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001124 goto fail4;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001125
1126 error = xpad_led_probe(xpad);
1127 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001128 goto fail5;
Jan Kratochvil4994cd82007-07-18 00:35:40 -04001129
Ted Mielczarek1a48ff82014-08-08 11:21:59 -07001130 /* Xbox One controller has in/out endpoints swapped. */
1131 ep_irq_in_idx = xpad->xtype == XTYPE_XBOXONE ? 1 : 0;
1132 ep_irq_in = &intf->cur_altsetting->endpoint[ep_irq_in_idx].desc;
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 usb_fill_int_urb(xpad->irq_in, udev,
1135 usb_rcvintpipe(udev, ep_irq_in->bEndpointAddress),
1136 xpad->idata, XPAD_PKT_LEN, xpad_irq_in,
1137 xpad, ep_irq_in->bInterval);
1138 xpad->irq_in->transfer_dma = xpad->idata_dma;
1139 xpad->irq_in->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001140
Dmitry Torokhov50141862007-04-12 01:33:39 -04001141 error = input_register_device(xpad->dev);
1142 if (error)
Axel Lin161feb22010-11-11 21:47:42 -08001143 goto fail6;
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 usb_set_intfdata(intf, xpad);
Brian Magnuson99de0912008-04-03 16:19:23 -04001146
Brian Magnuson99de0912008-04-03 16:19:23 -04001147 if (xpad->xtype == XTYPE_XBOX360W) {
Brian Magnuson99de0912008-04-03 16:19:23 -04001148 /*
1149 * Setup the message to set the LEDs on the
1150 * controller when it shows up
1151 */
1152 xpad->bulk_out = usb_alloc_urb(0, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001153 if (!xpad->bulk_out) {
1154 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001155 goto fail7;
Axel Lin49cc69b2010-11-11 21:39:11 -08001156 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001157
1158 xpad->bdata = kzalloc(XPAD_PKT_LEN, GFP_KERNEL);
Axel Lin49cc69b2010-11-11 21:39:11 -08001159 if (!xpad->bdata) {
1160 error = -ENOMEM;
Axel Line3f0f0a2010-11-17 23:59:34 -08001161 goto fail8;
Axel Lin49cc69b2010-11-11 21:39:11 -08001162 }
Brian Magnuson99de0912008-04-03 16:19:23 -04001163
1164 xpad->bdata[2] = 0x08;
1165 switch (intf->cur_altsetting->desc.bInterfaceNumber) {
1166 case 0:
1167 xpad->bdata[3] = 0x42;
1168 break;
1169 case 2:
1170 xpad->bdata[3] = 0x43;
1171 break;
1172 case 4:
1173 xpad->bdata[3] = 0x44;
1174 break;
1175 case 6:
1176 xpad->bdata[3] = 0x45;
1177 }
1178
1179 ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
1180 usb_fill_bulk_urb(xpad->bulk_out, udev,
1181 usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
1182 xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
Axel Line3f0f0a2010-11-17 23:59:34 -08001183
1184 /*
1185 * Submit the int URB immediately rather than waiting for open
1186 * because we get status messages from the device whether
1187 * or not any controllers are attached. In fact, it's
1188 * exactly the message that a controller has arrived that
1189 * we're waiting for.
1190 */
1191 xpad->irq_in->dev = xpad->udev;
1192 error = usb_submit_urb(xpad->irq_in, GFP_KERNEL);
1193 if (error)
1194 goto fail9;
Brian Magnuson99de0912008-04-03 16:19:23 -04001195 }
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return 0;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001198
Axel Line3f0f0a2010-11-17 23:59:34 -08001199 fail9: kfree(xpad->bdata);
1200 fail8: usb_free_urb(xpad->bulk_out);
Axel Lin161feb22010-11-11 21:47:42 -08001201 fail7: input_unregister_device(input_dev);
1202 input_dev = NULL;
1203 fail6: xpad_led_disconnect(xpad);
1204 fail5: if (input_dev)
1205 input_ff_destroy(input_dev);
1206 fail4: xpad_deinit_output(xpad);
1207 fail3: usb_free_urb(xpad->irq_in);
Daniel Mack997ea582010-04-12 13:17:25 +02001208 fail2: usb_free_coherent(udev, XPAD_PKT_LEN, xpad->idata, xpad->idata_dma);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001209 fail1: input_free_device(input_dev);
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001210 kfree(xpad);
Dmitry Torokhov50141862007-04-12 01:33:39 -04001211 return error;
Dmitry Torokhovc5b7c7c2005-09-15 02:01:47 -05001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
1215static void xpad_disconnect(struct usb_interface *intf)
1216{
1217 struct usb_xpad *xpad = usb_get_intfdata (intf);
Dmitry Torokhov05f091ab2005-05-29 02:29:01 -05001218
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001219 xpad_led_disconnect(xpad);
1220 input_unregister_device(xpad->dev);
1221 xpad_deinit_output(xpad);
1222
1223 if (xpad->xtype == XTYPE_XBOX360W) {
1224 usb_kill_urb(xpad->bulk_out);
1225 usb_free_urb(xpad->bulk_out);
1226 usb_kill_urb(xpad->irq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
Dmitry Torokhov2a059152010-11-11 21:52:18 -08001228
1229 usb_free_urb(xpad->irq_in);
1230 usb_free_coherent(xpad->udev, XPAD_PKT_LEN,
1231 xpad->idata, xpad->idata_dma);
1232
1233 kfree(xpad->bdata);
1234 kfree(xpad);
1235
1236 usb_set_intfdata(intf, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239static struct usb_driver xpad_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 .name = "xpad",
1241 .probe = xpad_probe,
1242 .disconnect = xpad_disconnect,
1243 .id_table = xpad_table,
1244};
1245
Greg Kroah-Hartman08642e72011-11-18 09:48:31 -08001246module_usb_driver(xpad_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248MODULE_AUTHOR(DRIVER_AUTHOR);
1249MODULE_DESCRIPTION(DRIVER_DESC);
1250MODULE_LICENSE("GPL");