diff options
author | Daniel J. Ogorchock <djogorchock@gmail.com> | 2021-09-11 20:36:28 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-10-27 11:05:51 +0300 |
commit | c4eae84feff3e68c2f385aa10faea4a96791e7ad (patch) | |
tree | fbde740a71b031ca8f12859e7ee86c1f9f0f7a51 /drivers/hid/Kconfig | |
parent | 697e5c7a34b0f69e1e438385cf85a9220069e079 (diff) | |
download | linux-c4eae84feff3e68c2f385aa10faea4a96791e7ad.tar.xz |
HID: nintendo: add rumble support
This patch adds support for controller rumble.
The ff_effect weak magnitude is associated with the pro controller's
right motor (or with a right joy-con). The strong magnitude is
associated with the pro's left motor (or a left joy-con).
The rumble data is sent periodically (currently configured for every 50
milliseconds). If the controller receives no rumble data for too long a
time period, it will stop vibrating. The data is also sent every time
joycon_set_rumble is called to avoid latency of up to 50ms.
Because the rumble subcommands are sent in a deferred workqueue (they
can't be sent in the play_effect function due to the hid send sleeping),
the effects are queued. This ensures that no rumble effect is missed due
to them arriving in too quick of succession.
Signed-off-by: Daniel J. Ogorchock <djogorchock@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Kconfig')
-rw-r--r-- | drivers/hid/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig index b0da3d7a6d2f..d5037fcc3635 100644 --- a/drivers/hid/Kconfig +++ b/drivers/hid/Kconfig @@ -745,6 +745,16 @@ config HID_NINTENDO To compile this driver as a module, choose M here: the module will be called hid-nintendo. +config NINTENDO_FF + bool "Nintendo Switch controller force feedback support" + depends on HID_NINTENDO + select INPUT_FF_MEMLESS + help + Say Y here if you have a Nintendo Switch controller and want to enable + force feedback support for it. This works for both joy-cons and the pro + controller. For the pro controller, both rumble motors can be controlled + individually. + config HID_NTI tristate "NTI keyboard adapters" help |