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>
This commit is contained in:
Tim Wawrzynczak 2020-07-24 13:37:33 -06:00 committed by Patrick Georgi
parent a76a64833b
commit 0aabd07c95
1 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
config DRIVERS_INTEL_DPTF config DRIVERS_INTEL_DPTF
bool "Support runtime generation of Intel DPTF ACPI tables" bool
depends on HAVE_ACPI_TABLES depends on HAVE_ACPI_TABLES
default n default n
help help
@ -7,10 +7,11 @@ config DRIVERS_INTEL_DPTF
Intel DPTF Tables at runtime in the SSDT. Intel DPTF Tables at runtime in the SSDT.
config DPTF_USE_EISA_HID config DPTF_USE_EISA_HID
bool "If selected, use 'old' 7 character EISA IDs for DPTF _HID" bool
depends on DRIVERS_INTEL_DPTF depends on DRIVERS_INTEL_DPTF
default n default n
help help
When selected, all DPTF devices will use the "old" style of Prior to Tiger Lake, all DPTF devices used 7-character EISA
_HIDs, which are 7-character EISA IDs. Otherwise, it will use IDs. If selected, the 7-character _HIDs will be emitted,
the "new" style, which are regular 8-character _HIDs. otherwise, it will use the "new" style, which are regular
8-character _HIDs.