summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2020-07-24 13:37:33 -0600
committerPatrick Georgi <pgeorgi@google.com>2020-07-26 21:34:03 +0000
commit0aabd07c95c3a940832d2818bacb47843388ad85 (patch)
tree2c534220434ae14ebafc6b48672fb9032d15a9d7 /src/drivers
parenta76a64833bb02c342f6190231ef38ac39151da45 (diff)
downloadcoreboot-0aabd07c95c3a940832d2818bacb47843388ad85.tar.xz
drivers/intel/dptf: Remove prompts from DPTF config options
The prompts for the DPTF Kconfig options were not necessary, they should be selected based on what DPTF implementation is being used, ASL files or generated at runtime. It's not really meant to be fiddled with at build-time. Also rewrite the help text for the _HID selection, to try and make it more clear when to use y or n. Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Change-Id: I6edcabd28426916d9586d501b95b510dfc163fc1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43830 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Caveh Jalali <caveh@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/intel/dptf/Kconfig11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/drivers/intel/dptf/Kconfig b/src/drivers/intel/dptf/Kconfig
index 880b32ad9c..c3af32036c 100644
--- a/src/drivers/intel/dptf/Kconfig
+++ b/src/drivers/intel/dptf/Kconfig
@@ -1,5 +1,5 @@
config DRIVERS_INTEL_DPTF
- bool "Support runtime generation of Intel DPTF ACPI tables"
+ bool
depends on HAVE_ACPI_TABLES
default n
help
@@ -7,10 +7,11 @@ config DRIVERS_INTEL_DPTF
Intel DPTF Tables at runtime in the SSDT.
config DPTF_USE_EISA_HID
- bool "If selected, use 'old' 7 character EISA IDs for DPTF _HID"
+ bool
depends on DRIVERS_INTEL_DPTF
default n
help
- When selected, all DPTF devices will use the "old" style of
- _HIDs, which are 7-character EISA IDs. Otherwise, it will use
- the "new" style, which are regular 8-character _HIDs.
+ Prior to Tiger Lake, all DPTF devices used 7-character EISA
+ IDs. If selected, the 7-character _HIDs will be emitted,
+ otherwise, it will use the "new" style, which are regular
+ 8-character _HIDs.