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:
parent
a76a64833b
commit
0aabd07c95
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue