1d97d5c0cSVladimir Kondratyev /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3d97d5c0cSVladimir Kondratyev *
4d97d5c0cSVladimir Kondratyev * Copyright (c) 2020 Vladimir Kondratyev <wulf@FreeBSD.org>
50b453151SVal Packett * Copyright (c) 2020 Val Packett <val@packett.cool>
6d97d5c0cSVladimir Kondratyev *
7d97d5c0cSVladimir Kondratyev * Redistribution and use in source and binary forms, with or without
8d97d5c0cSVladimir Kondratyev * modification, are permitted provided that the following conditions
9d97d5c0cSVladimir Kondratyev * are met:
10d97d5c0cSVladimir Kondratyev * 1. Redistributions of source code must retain the above copyright
11d97d5c0cSVladimir Kondratyev * notice, this list of conditions and the following disclaimer.
12d97d5c0cSVladimir Kondratyev * 2. Redistributions in binary form must reproduce the above copyright
13d97d5c0cSVladimir Kondratyev * notice, this list of conditions and the following disclaimer in the
14d97d5c0cSVladimir Kondratyev * documentation and/or other materials provided with the distribution.
15d97d5c0cSVladimir Kondratyev *
16d97d5c0cSVladimir Kondratyev * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17d97d5c0cSVladimir Kondratyev * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18d97d5c0cSVladimir Kondratyev * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19d97d5c0cSVladimir Kondratyev * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20d97d5c0cSVladimir Kondratyev * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21d97d5c0cSVladimir Kondratyev * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22d97d5c0cSVladimir Kondratyev * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23d97d5c0cSVladimir Kondratyev * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24d97d5c0cSVladimir Kondratyev * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25d97d5c0cSVladimir Kondratyev * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26d97d5c0cSVladimir Kondratyev * SUCH DAMAGE.
27d97d5c0cSVladimir Kondratyev */
28d97d5c0cSVladimir Kondratyev
29d97d5c0cSVladimir Kondratyev #include <sys/cdefs.h>
30d97d5c0cSVladimir Kondratyev /*
31d97d5c0cSVladimir Kondratyev * XBox 360 gamepad driver thanks to the custom descriptor in usbhid.
32d97d5c0cSVladimir Kondratyev *
33d97d5c0cSVladimir Kondratyev * Tested on: SVEN GC-5070 in both XInput (XBox 360) and DirectInput modes
34d97d5c0cSVladimir Kondratyev */
35d97d5c0cSVladimir Kondratyev
36d97d5c0cSVladimir Kondratyev #include <sys/param.h>
37d97d5c0cSVladimir Kondratyev #include <sys/bus.h>
38d97d5c0cSVladimir Kondratyev #include <sys/kernel.h>
39d97d5c0cSVladimir Kondratyev #include <sys/module.h>
40d97d5c0cSVladimir Kondratyev #include <sys/sysctl.h>
41d97d5c0cSVladimir Kondratyev
42d97d5c0cSVladimir Kondratyev #include <dev/evdev/input.h>
43d97d5c0cSVladimir Kondratyev #include <dev/evdev/evdev.h>
44d97d5c0cSVladimir Kondratyev
45d97d5c0cSVladimir Kondratyev #include <dev/hid/hgame.h>
46d97d5c0cSVladimir Kondratyev #include <dev/hid/hid.h>
47d97d5c0cSVladimir Kondratyev #include <dev/hid/hidbus.h>
48d97d5c0cSVladimir Kondratyev #include <dev/hid/hidmap.h>
49d97d5c0cSVladimir Kondratyev #include <dev/hid/hidquirk.h>
50d97d5c0cSVladimir Kondratyev #include <dev/hid/hidrdesc.h>
51d97d5c0cSVladimir Kondratyev
52d97d5c0cSVladimir Kondratyev #include <dev/usb/usb.h>
53d97d5c0cSVladimir Kondratyev #include <dev/usb/usbdi.h>
54d97d5c0cSVladimir Kondratyev
55d97d5c0cSVladimir Kondratyev static const uint8_t xb360gp_rdesc[] = {HID_XB360GP_REPORT_DESCR()};
56d97d5c0cSVladimir Kondratyev
57d97d5c0cSVladimir Kondratyev #define XB360GP_MAP_BUT(number, code) \
58d97d5c0cSVladimir Kondratyev { HIDMAP_KEY(HUP_BUTTON, number, code) }
59d97d5c0cSVladimir Kondratyev #define XB360GP_MAP_ABS(usage, code) \
60d97d5c0cSVladimir Kondratyev { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code) }
61d97d5c0cSVladimir Kondratyev #define XB360GP_MAP_ABS_FLT(usage, code) \
62d97d5c0cSVladimir Kondratyev { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code), \
63d97d5c0cSVladimir Kondratyev .fuzz = 16, .flat = 128 }
64d97d5c0cSVladimir Kondratyev #define XB360GP_MAP_ABS_INV(usage, code) \
65d97d5c0cSVladimir Kondratyev { HIDMAP_ABS(HUP_GENERIC_DESKTOP, HUG_##usage, code), \
66d97d5c0cSVladimir Kondratyev .fuzz = 16, .flat = 128, .invert_value = true }
67d97d5c0cSVladimir Kondratyev #define XB360GP_MAP_CRG(usage_from, usage_to, callback) \
68d97d5c0cSVladimir Kondratyev { HIDMAP_ANY_CB_RANGE(HUP_GENERIC_DESKTOP, \
69d97d5c0cSVladimir Kondratyev HUG_##usage_from, HUG_##usage_to, callback) }
70d97d5c0cSVladimir Kondratyev #define XB360GP_FINALCB(cb) \
71d97d5c0cSVladimir Kondratyev { HIDMAP_FINAL_CB(&cb) }
72d97d5c0cSVladimir Kondratyev
73d97d5c0cSVladimir Kondratyev /* Customized to match usbhid's XBox 360 descriptor */
74d97d5c0cSVladimir Kondratyev static const struct hidmap_item xb360gp_map[] = {
75d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(1, BTN_SOUTH),
76d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(2, BTN_EAST),
77d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(3, BTN_WEST),
78d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(4, BTN_NORTH),
79d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(5, BTN_TL),
80d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(6, BTN_TR),
81d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(7, BTN_SELECT),
82d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(8, BTN_START),
83d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(9, BTN_THUMBL),
84d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(10, BTN_THUMBR),
85d97d5c0cSVladimir Kondratyev XB360GP_MAP_BUT(11, BTN_MODE),
86d97d5c0cSVladimir Kondratyev XB360GP_MAP_CRG(D_PAD_UP, D_PAD_LEFT, hgame_dpad_cb),
87d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS_FLT(X, ABS_X),
88d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS_INV(Y, ABS_Y),
89d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS(Z, ABS_Z),
90d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS_FLT(RX, ABS_RX),
91d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS_INV(RY, ABS_RY),
92d97d5c0cSVladimir Kondratyev XB360GP_MAP_ABS(RZ, ABS_RZ),
93d97d5c0cSVladimir Kondratyev XB360GP_FINALCB( hgame_final_cb),
94d97d5c0cSVladimir Kondratyev };
95d97d5c0cSVladimir Kondratyev
96d97d5c0cSVladimir Kondratyev static const STRUCT_USB_HOST_ID xb360gp_devs[] = {
97d97d5c0cSVladimir Kondratyev /* the Xbox 360 gamepad doesn't use the HID class */
98d97d5c0cSVladimir Kondratyev {USB_IFACE_CLASS(UICLASS_VENDOR),
99d97d5c0cSVladimir Kondratyev USB_IFACE_SUBCLASS(UISUBCLASS_XBOX360_CONTROLLER),
100d97d5c0cSVladimir Kondratyev USB_IFACE_PROTOCOL(UIPROTO_XBOX360_GAMEPAD),},
101d97d5c0cSVladimir Kondratyev };
102d97d5c0cSVladimir Kondratyev
103d97d5c0cSVladimir Kondratyev static void
xb360gp_identify(driver_t * driver,device_t parent)104d97d5c0cSVladimir Kondratyev xb360gp_identify(driver_t *driver, device_t parent)
105d97d5c0cSVladimir Kondratyev {
106d97d5c0cSVladimir Kondratyev const struct hid_device_info *hw = hid_get_device_info(parent);
107d97d5c0cSVladimir Kondratyev
108d97d5c0cSVladimir Kondratyev /* the Xbox 360 gamepad has no report descriptor */
109d97d5c0cSVladimir Kondratyev if (hid_test_quirk(hw, HQ_IS_XBOX360GP))
110d97d5c0cSVladimir Kondratyev hid_set_report_descr(parent, xb360gp_rdesc,
111d97d5c0cSVladimir Kondratyev sizeof(xb360gp_rdesc));
112d97d5c0cSVladimir Kondratyev }
113d97d5c0cSVladimir Kondratyev
114d97d5c0cSVladimir Kondratyev static int
xb360gp_probe(device_t dev)115d97d5c0cSVladimir Kondratyev xb360gp_probe(device_t dev)
116d97d5c0cSVladimir Kondratyev {
117d97d5c0cSVladimir Kondratyev struct hgame_softc *sc = device_get_softc(dev);
118d97d5c0cSVladimir Kondratyev const struct hid_device_info *hw = hid_get_device_info(dev);
119d97d5c0cSVladimir Kondratyev int error;
120d97d5c0cSVladimir Kondratyev
121d97d5c0cSVladimir Kondratyev if (!hid_test_quirk(hw, HQ_IS_XBOX360GP))
122d97d5c0cSVladimir Kondratyev return (ENXIO);
123d97d5c0cSVladimir Kondratyev
124d97d5c0cSVladimir Kondratyev hidmap_set_dev(&sc->hm, dev);
125d97d5c0cSVladimir Kondratyev
126d97d5c0cSVladimir Kondratyev error = HIDMAP_ADD_MAP(&sc->hm, xb360gp_map, NULL);
127d97d5c0cSVladimir Kondratyev if (error != 0)
128d97d5c0cSVladimir Kondratyev return (error);
129d97d5c0cSVladimir Kondratyev
130d97d5c0cSVladimir Kondratyev device_set_desc(dev, "XBox 360 Gamepad");
131d97d5c0cSVladimir Kondratyev
132d97d5c0cSVladimir Kondratyev return (BUS_PROBE_DEFAULT);
133d97d5c0cSVladimir Kondratyev }
134d97d5c0cSVladimir Kondratyev
135d97d5c0cSVladimir Kondratyev static int
xb360gp_attach(device_t dev)136d97d5c0cSVladimir Kondratyev xb360gp_attach(device_t dev)
137d97d5c0cSVladimir Kondratyev {
138d97d5c0cSVladimir Kondratyev struct hgame_softc *sc = device_get_softc(dev);
139d97d5c0cSVladimir Kondratyev int error;
140d97d5c0cSVladimir Kondratyev
141d97d5c0cSVladimir Kondratyev /*
142d97d5c0cSVladimir Kondratyev * Turn off the four LEDs on the gamepad which
143d97d5c0cSVladimir Kondratyev * are blinking by default:
144d97d5c0cSVladimir Kondratyev */
145d97d5c0cSVladimir Kondratyev static const uint8_t reportbuf[3] = {1, 3, 0};
146d97d5c0cSVladimir Kondratyev error = hid_set_report(dev, reportbuf, sizeof(reportbuf),
147d97d5c0cSVladimir Kondratyev HID_OUTPUT_REPORT, 0);
148d97d5c0cSVladimir Kondratyev if (error)
149d97d5c0cSVladimir Kondratyev device_printf(dev, "set output report failed, error=%d "
150d97d5c0cSVladimir Kondratyev "(ignored)\n", error);
151d97d5c0cSVladimir Kondratyev
152d97d5c0cSVladimir Kondratyev return (hidmap_attach(&sc->hm));
153d97d5c0cSVladimir Kondratyev }
154d97d5c0cSVladimir Kondratyev
155d97d5c0cSVladimir Kondratyev static int
xb360gp_detach(device_t dev)156d97d5c0cSVladimir Kondratyev xb360gp_detach(device_t dev)
157d97d5c0cSVladimir Kondratyev {
158d97d5c0cSVladimir Kondratyev struct hgame_softc *sc = device_get_softc(dev);
159d97d5c0cSVladimir Kondratyev
160d97d5c0cSVladimir Kondratyev return (hidmap_detach(&sc->hm));
161d97d5c0cSVladimir Kondratyev }
162d97d5c0cSVladimir Kondratyev
163d97d5c0cSVladimir Kondratyev static device_method_t xb360gp_methods[] = {
164d97d5c0cSVladimir Kondratyev DEVMETHOD(device_identify, xb360gp_identify),
165d97d5c0cSVladimir Kondratyev DEVMETHOD(device_probe, xb360gp_probe),
166d97d5c0cSVladimir Kondratyev DEVMETHOD(device_attach, xb360gp_attach),
167d97d5c0cSVladimir Kondratyev DEVMETHOD(device_detach, xb360gp_detach),
168d97d5c0cSVladimir Kondratyev DEVMETHOD_END
169d97d5c0cSVladimir Kondratyev };
170d97d5c0cSVladimir Kondratyev
171d97d5c0cSVladimir Kondratyev DEFINE_CLASS_0(xb360gp, xb360gp_driver, xb360gp_methods,
172d97d5c0cSVladimir Kondratyev sizeof(struct hgame_softc));
1737eeede15SJohn Baldwin DRIVER_MODULE(xb360gp, hidbus, xb360gp_driver, NULL, NULL);
174d97d5c0cSVladimir Kondratyev MODULE_DEPEND(xb360gp, hid, 1, 1, 1);
175d97d5c0cSVladimir Kondratyev MODULE_DEPEND(xb360gp, hidbus, 1, 1, 1);
176d97d5c0cSVladimir Kondratyev MODULE_DEPEND(xb360gp, hidmap, 1, 1, 1);
177d97d5c0cSVladimir Kondratyev MODULE_DEPEND(xb360gp, hgame, 1, 1, 1);
178d97d5c0cSVladimir Kondratyev MODULE_DEPEND(xb360gp, evdev, 1, 1, 1);
179d97d5c0cSVladimir Kondratyev MODULE_VERSION(xb360gp, 1);
180d97d5c0cSVladimir Kondratyev USB_PNP_HOST_INFO(xb360gp_devs);
181