diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-02-15 17:00:46 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-07-19 14:24:29 +0200 |
commit | f2b3cd63cfa2fcf7874b1947c60c22b664a277c7 (patch) | |
tree | 0f7ccfa29cfe00a3334f055333492157f96c4d3b /src/drivers/lenovo/Kconfig | |
parent | c2956e7752213f9eae5064e63d16afa84b7cc23f (diff) | |
download | coreboot-f2b3cd63cfa2fcf7874b1947c60c22b664a277c7.tar.xz |
lenovo/x60: Support digitizer on X60t and X201t.
Change-Id: I5b0399a8edca3b73aa7d515d2c446c31b3239fa5
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/5239
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/drivers/lenovo/Kconfig')
-rw-r--r-- | src/drivers/lenovo/Kconfig | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/drivers/lenovo/Kconfig b/src/drivers/lenovo/Kconfig new file mode 100644 index 0000000000..30bacb90ea --- /dev/null +++ b/src/drivers/lenovo/Kconfig @@ -0,0 +1,29 @@ +config DRIVERS_LENOVO_WACOM + bool + default n + +if DRIVERS_LENOVO_WACOM + +choice + prompt "Digitizer" + default DIGITIZER_AUTODETECT + +config DIGITIZER_AUTODETECT + bool "Autodetect" + help + The presence of digitizer is inferred from model number stored in + AT24RF chip. + +config DIGITIZER_PRESENT + bool "Present" + help + The digitizer is assumed to be present. + +config DIGITIZER_ABSENT + bool "Absent" + help + The digitizer is assumed to be absent. + +endchoice + +endif |