[PATCH v4 00/12] Input: xbox_gip - Add new driver for Xbox GIP
Vicki Pfau <[email protected]>
| Newsgroups | org.kernel.vger.linux-input |
|---|---|
| Message-ID | <[email protected]> |
This is a new version of the previously submitted xbox-gip series. This introduces a new driver for the Xbox One/Series controller protocol, officially known as the Gaming Input Protocol, or GIP for short. Microsoft released documentation on (some of) GIP in late 2024, upon which this driver is based. Though the documentation was incomplete, it still provided enough information to warrant a clean start over the previous, incomplete implementation. This driver is already at feature parity with the GIP support in xpad, along with several more enhancements: - Proper support for parsing message length and fragmented messages - Metadata parsing, allowing for auto-detection on various parameters, including the presence and location in the message of the share button, as well as detection of specific device types - Controllable LED support - HID passthrough for the Chatpad - Battery information support - Arcade stick support - Racing wheel support - Support for the security flow, allowing use with wireless controllers that include their own dongles. (This does not include support for the first-party dongle yet.) The framework set out in this driver also allows future expansion for specialized device types and additional features more cleanly than xpad. Future plans include: - Adding support for more device types, such as flight sticks. - Exposing a raw character device to enable sending vendor-specific commands from userspace. - Event logging to either sysfs or dmesg. - Support for the headphone jack. Since the last version this has included several minor bugfixes as adding support for sending ACME messages and porting the security flow from xone to allow for use with wireless controllers with their own dongles. It also adds support for PDP guitar controllers like the RiffMaster. Vicki Pfau (12): Input: xbox_gip - Add new driver for Xbox GIP Input: xpad - Remove Xbox One support Input: xbox_gip - Add controllable LED support Input: xbox_gip - Add HID relaying Input: xbox_gip - Add battery support Input: xbox_gip - Allow sending fragmented and ACME messages Input: xbox_gip - Add security implementation from xone Input: xbox_gip - Add arcade stick support Input: xbox_gip - Add support for PDP guitar controllers Input: Add ABS_CLUTCH, HANDBRAKE, and SHIFTER HID: Map more automobile simulation inputs Input: xbox_gip - Add wheel support Documentation/input/devices/xpad.rst | 17 +- MAINTAINERS | 6 + drivers/hid/hid-debug.c | 16 +- drivers/hid/hid-input.c | 2 + drivers/input/joystick/Kconfig | 2 + drivers/input/joystick/Makefile | 1 + drivers/input/joystick/gip/Kconfig | 21 + drivers/input/joystick/gip/Makefile | 8 + drivers/input/joystick/gip/gip-arcade-stick.c | 173 + drivers/input/joystick/gip/gip-core.c | 3173 +++++++++++++++++ drivers/input/joystick/gip/gip-drivers.c | 222 ++ drivers/input/joystick/gip/gip-pdp-jaguar.c | 129 + drivers/input/joystick/gip/gip-security.c | 867 +++++ drivers/input/joystick/gip/gip-wheel.c | 349 ++ drivers/input/joystick/gip/gip.h | 423 +++ drivers/input/joystick/xpad.c | 636 +--- include/uapi/linux/input-event-codes.h | 3 + 17 files changed, 5399 insertions(+), 649 deletions(-) create mode 100644 drivers/input/joystick/gip/Kconfig create mode 100644 drivers/input/joystick/gip/Makefile create mode 100644 drivers/input/joystick/gip/gip-arcade-stick.c create mode 100644 drivers/input/joystick/gip/gip-core.c create mode 100644 drivers/input/joystick/gip/gip-drivers.c create mode 100644 drivers/input/joystick/gip/gip-pdp-jaguar.c create mode 100644 drivers/input/joystick/gip/gip-security.c create mode 100644 drivers/input/joystick/gip/gip-wheel.c create mode 100644 drivers/input/joystick/gip/gip.h -- 2.54.0