[PATCH 0/2] HID: flydigi: add support for vader 5 pro
From: Denis Benato <denis.benato@linux.dev>
Date: 2026-08-07 01:23:50
Also in:
lkml
Hi all, A few days ago I was contacted by a friend of mine who was having his share of issues with his Flydigi Vader 5 Pro controller: specifically the rumble didn't work correctly, alongside other issues that were partially solved by using the linked project. However at the current time his main interest is in Steam support and the driver was working in everything but Steam, which insists on using the controller in hid mode rather than evdev mode by default, and when in evdev mode it is disregarding additional buttons and the gyroscope. So we ended up with a perfectly working driver for the controller, that at the cost of gyroscope support and back buttons has rumble working correctly in Steam. Since the driver works in basically everything that is not Steam, including the browser, I decided to submit it anyway as someone else will surely be interested in using some other way that is not the aforementioned program. To make optimal use of this device the xpad driver should not bind to the controller, and this is the case for more than just this controller as Derek told me, so I added some basic infrastructure to use the best available driver for the device. I also want to thank the original authors that did the work of implementing the controller the first time (in SDL). Best regards, Denis Benato Link: https://github.com/DuncanTPerkins/vader5-pro-linux-fix Denis Benato (2): HID: flydigi: add support for vader 5 pro Input: xpad - introduce a static table to ignore devices drivers/hid/Kconfig | 8 + drivers/hid/Makefile | 1 + drivers/hid/hid-flydigi.c | 887 ++++++++++++++++++++++++++++++++++ drivers/hid/hid-ids.h | 3 + drivers/input/joystick/xpad.c | 24 + 5 files changed, 923 insertions(+) create mode 100644 drivers/hid/hid-flydigi.c -- 2.47.3