X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=drivers%2Finput%2FKconfig;h=b3873c140d054a680d1bb3d39f8f09a5d3ff4fb6;hb=c6a21d6615ea83e150eb7633d96e9f0a2c3f8439;hp=bb00de7c576ed4ca7b15968c16047c26e299b30a;hpb=e1cc4d31f889428a4ca73120951389c756404184;p=u-boot diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index bb00de7c57..b3873c140d 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -1,6 +1,26 @@ +config DM_KEYBOARD + bool "Enable driver model keyboard support" + depends on DM + help + This adds a uclass for keyboards and implements keyboard support + using driver model. The API is implemented by keyboard.h and + includes methods to start/stop the device, check for available + input and update LEDs if the keyboard has them. + config CROS_EC_KEYB bool "Enable Chrome OS EC keyboard support" help Most ARM Chromebooks use an EC to provide access to the keyboard. Messages are used to request key scans from the EC and these are then decoded into keys by this driver. + +config I8042_KEYB + bool "Enable Intel i8042 keyboard support" + depends on DM_KEYBOARD + default X86 + help + This adds a driver for the i8042 keyboard controller, allowing the + keyboard to be used on devices which support this controller. The + driver handles English and German keyboards - set the environment + variable 'keymap' to "de" to select German. Keyboard repeat is + handled by the keyboard itself.