Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bf84fb1
[FOR-UPSTREAM] hid-asus-ally: Add joystick LED ring support
flukejones Aug 26, 2024
c7eefa7
[FOR-UPSTREAM] hid-asus-ally: do MCY FW validation in hid-asus-ally
flukejones Mar 24, 2025
4ec55d8
[FOR-UPSTREAM] hid-asus-ally: initial Ally-X gamepad bringup
flukejones Oct 2, 2024
73cbdd1
[FOR-UPSTREAM] hid-asus-ally: initial gamepad configuration
flukejones Oct 2, 2024
9a7972d
[FOR-UPSTREAM] hid-asus-ally: add button remap attributes
flukejones Oct 5, 2024
1104c2f
[FOR-UPSTREAM] hid-asus-ally: add gamepad mode selection
flukejones Oct 25, 2024
2039a6a
[FOR-UPSTREAM] hid-asus-ally: Turbo settings for buttons
flukejones Oct 5, 2024
68284d8
[FOR-UPSTREAM] hid-asus-ally: add vibration intensity settings
flukejones Oct 5, 2024
97a0259
[FOR-UPSTREAM] hid-asus-ally: add JS deadzones
flukejones Oct 5, 2024
f147910
[FOR-UPSTREAM] hid-asus-ally: add trigger deadzones
flukejones Oct 5, 2024
4604108
[FOR-UPSTREAM] hid-asus-ally: add anti-deadzones
flukejones Oct 6, 2024
61e2578
[FOR-UPSTREAM] hid-asus-ally: add JS response curves
flukejones Oct 6, 2024
335b336
[FOR-UPSTREAM] hid-asus-ally: mcu_version attribute
flukejones Feb 10, 2025
845a3a2
[FOR-UPSTREAM] hid-asus-ally: add calibrations (wip)
flukejones Oct 9, 2024
da08781
[FOR-UPSTREAM] debug by default
flukejones Nov 5, 2024
bb629b5
[FOR-UPSTREAM] hid-asus-ally: grab short press QAM on ROG Xbox Ally X
matte-schwartz Oct 27, 2025
80b2b24
[FOR-UPSTREAM] hid-asus-ally: disable wakeup attribute on N-Key device
matte-schwartz Sep 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions drivers/hid/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,15 @@ config HID_ASUS
- GL553V series
- GL753V series

config HID_ASUS_ALLY
tristate "Asus Ally gamepad configuration support"
depends on USB_HID
depends on LEDS_CLASS
depends on LEDS_CLASS_MULTICOLOR
select POWER_SUPPLY
help
Support for configuring the Asus ROG Ally gamepad using attributes.

config HID_AUREAL
tristate "Aureal"
help
Expand Down
1 change: 1 addition & 0 deletions drivers/hid/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ obj-$(CONFIG_HID_APPLETB_BL) += hid-appletb-bl.o
obj-$(CONFIG_HID_APPLETB_KBD) += hid-appletb-kbd.o
obj-$(CONFIG_HID_CREATIVE_SB0540) += hid-creative-sb0540.o
obj-$(CONFIG_HID_ASUS) += hid-asus.o
obj-$(CONFIG_HID_ASUS_ALLY) += hid-asus-ally.o
obj-$(CONFIG_HID_AUREAL) += hid-aureal.o
obj-$(CONFIG_HID_BELKIN) += hid-belkin.o
obj-$(CONFIG_HID_BETOP_FF) += hid-betopff.o
Expand Down
Loading