1config DM_KEYBOARD 2 bool "Enable driver model keyboard support" 3 depends on DM 4 help 5 This adds a uclass for keyboards and implements keyboard support 6 using driver model. The API is implemented by keyboard.h and 7 includes methods to start/stop the device, check for available 8 input and update LEDs if the keyboard has them. 9 10config DM_KEY 11 bool "Enable driver model key support" 12 depends on DM 13 help 14 This adds a simple uclass for key. 15 16config DM_RC 17 bool "Enable driver model Remote Controller support" 18 depends on DM 19 help 20 This adds a uclass for Remote Controllers. This is needed 21 in order to support standalone IR receivers. 22 23config CROS_EC_KEYB 24 bool "Enable Chrome OS EC keyboard support" 25 help 26 Most ARM Chromebooks use an EC to provide access to the keyboard. 27 Messages are used to request key scans from the EC and these are 28 then decoded into keys by this driver. 29 30config I8042_KEYB 31 bool "Enable Intel i8042 keyboard support" 32 depends on DM_KEYBOARD 33 default X86 34 help 35 This adds a driver for the i8042 keyboard controller, allowing the 36 keyboard to be used on devices which support this controller. The 37 driver handles English and German keyboards - set the environment 38 variable 'keymap' to "de" to select German. Keyboard repeat is 39 handled by the keyboard itself. 40 41config RK8XX_PWRKEY 42 bool "Enable RK805/816 pwrkey support" 43 depends on DM_KEY && PMIC_RK8XX 44 default y 45 help 46 This adds a driver for the RK805/816 pwrkey support. 47