diff options
author | Patrick Rudolph <siro@das-labor.org> | 2017-02-06 15:02:25 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-06-28 00:56:53 +0000 |
commit | 837da6ade7aebe9541b5a13e40b75ab2b308ac77 (patch) | |
tree | b5e26cdd1f7400b358ba991fa11465dafe5b2648 /payloads/libpayload/Kconfig | |
parent | 8eb55bbfe7e3bd601c4bece24e0772dba5410827 (diff) |
libpayload: Add mouse cursor driver
Add a driver to handle multiple low level mouse drivers
and provide basic cursor acceleration support.
Tested on Lenovo T500.
Change-Id: Ib7cec736631b8acf81a14d28daa29ff720777b10
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/18593
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/Kconfig')
-rw-r--r-- | payloads/libpayload/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/payloads/libpayload/Kconfig b/payloads/libpayload/Kconfig index 5a5bce2a64..63cc1527b6 100644 --- a/payloads/libpayload/Kconfig +++ b/payloads/libpayload/Kconfig @@ -350,6 +350,16 @@ config NVRAM depends on ARCH_X86 # for now default y +config MOUSE_CURSOR + bool "Support for mouse cursor handling" + default n + help + Provides a common interface for various mouse cursor drivers. + * Supports up to 32 buttons. + * Supports 3 axis mice. + * Applies simple cursor acceleration. + * Allows to set cursor acceleration and cursor speed. + config RTC_PORT_EXTENDED_VIA bool "Extended RTC ports are 0x74/0x75" default n |