Simon Glass | 985ca39 | 2018-10-01 12:22:10 -0600 | [diff] [blame] | 1 | config INPUT |
| 2 | bool "Enable input subsystem" |
| 3 | depends on DM |
| 4 | default y |
| 5 | |
| 6 | config SPL_INPUT |
| 7 | bool "Enable input subsystem for SPL" |
| 8 | depends on SPL_DM |
| 9 | |
| 10 | config TPL_INPUT |
| 11 | bool "Enable input subsystem for TPL" |
| 12 | depends on TPL_DM |
| 13 | |
Simon Glass | e84421d | 2015-10-18 21:17:10 -0600 | [diff] [blame] | 14 | config DM_KEYBOARD |
| 15 | bool "Enable driver model keyboard support" |
| 16 | depends on DM |
| 17 | help |
| 18 | This adds a uclass for keyboards and implements keyboard support |
| 19 | using driver model. The API is implemented by keyboard.h and |
| 20 | includes methods to start/stop the device, check for available |
| 21 | input and update LEDs if the keyboard has them. |
| 22 | |
Simon Glass | 985ca39 | 2018-10-01 12:22:10 -0600 | [diff] [blame] | 23 | config SPL_DM_KEYBOARD |
| 24 | bool "Enable driver model keyboard support" |
| 25 | depends on SPL_DM |
| 26 | help |
| 27 | This adds a uclass for keyboards and implements keyboard support |
| 28 | using driver model. The API is implemented by keyboard.h and |
| 29 | includes methods to start/stop the device, check for available |
| 30 | input and update LEDs if the keyboard has them. |
| 31 | |
| 32 | config TPL_DM_KEYBOARD |
| 33 | bool "Enable driver model keyboard support" |
| 34 | depends on TPL_DM |
| 35 | help |
| 36 | This adds a uclass for keyboards and implements keyboard support |
| 37 | using driver model. The API is implemented by keyboard.h and |
| 38 | includes methods to start/stop the device, check for available |
| 39 | input and update LEDs if the keyboard has them. |
| 40 | |
Simon Glass | 6fb9ac1 | 2015-02-13 12:20:47 -0700 | [diff] [blame] | 41 | config CROS_EC_KEYB |
| 42 | bool "Enable Chrome OS EC keyboard support" |
Simon Glass | 985ca39 | 2018-10-01 12:22:10 -0600 | [diff] [blame] | 43 | depends on INPUT |
| 44 | help |
| 45 | Most ARM Chromebooks use an EC to provide access to the keyboard. |
| 46 | Messages are used to request key scans from the EC and these are |
| 47 | then decoded into keys by this driver. |
| 48 | |
| 49 | config SPL_CROS_EC_KEYB |
| 50 | bool "Enable Chrome OS EC keyboard support in SPL" |
| 51 | depends on SPL_INPUT |
| 52 | help |
| 53 | Most ARM Chromebooks use an EC to provide access to the keyboard. |
| 54 | Messages are used to request key scans from the EC and these are |
| 55 | then decoded into keys by this driver. |
| 56 | |
| 57 | config TPL_CROS_EC_KEYB |
| 58 | bool "Enable Chrome OS EC keyboard support in TPL" |
| 59 | depends on TPL_INPUT |
Simon Glass | 6fb9ac1 | 2015-02-13 12:20:47 -0700 | [diff] [blame] | 60 | help |
| 61 | Most ARM Chromebooks use an EC to provide access to the keyboard. |
| 62 | Messages are used to request key scans from the EC and these are |
| 63 | then decoded into keys by this driver. |
Simon Glass | b0abfef | 2015-11-11 10:05:42 -0700 | [diff] [blame] | 64 | |
| 65 | config I8042_KEYB |
| 66 | bool "Enable Intel i8042 keyboard support" |
| 67 | depends on DM_KEYBOARD |
Masahiro Yamada | b98278b | 2016-09-08 18:47:36 +0900 | [diff] [blame] | 68 | default X86 |
Simon Glass | b0abfef | 2015-11-11 10:05:42 -0700 | [diff] [blame] | 69 | help |
| 70 | This adds a driver for the i8042 keyboard controller, allowing the |
| 71 | keyboard to be used on devices which support this controller. The |
| 72 | driver handles English and German keyboards - set the environment |
| 73 | variable 'keymap' to "de" to select German. Keyboard repeat is |
| 74 | handled by the keyboard itself. |
Adam Ford | cc3fedb | 2018-08-06 14:26:50 -0500 | [diff] [blame] | 75 | |
Peter Robinson | 06b070e | 2019-02-20 12:17:28 +0000 | [diff] [blame] | 76 | config TEGRA_KEYBOARD |
| 77 | bool "NVIDIA Tegra internal matrix keyboard controller support" |
| 78 | help |
| 79 | A matrix keyboard connected directly to the internal keyboard |
| 80 | controller on Tegra SoCs. |
| 81 | |
Adam Ford | cc3fedb | 2018-08-06 14:26:50 -0500 | [diff] [blame] | 82 | config TWL4030_INPUT |
| 83 | bool "Enable TWL4030 Input controller" |
| 84 | help |
| 85 | Enable TWL4030 Input controller |