mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
6c6d88e142
Intel x86 SoCs have a power manager/controller which handles several power-related aspects of the platform. Add a uclass for this, with a few useful operations. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
25 lines
925 B
Text
25 lines
925 B
Text
config ACPI_PMC
|
|
bool "Power Manager (x86 PMC) support"
|
|
help
|
|
Enable support for an x86-style power-management controller which
|
|
provides features including checking whether the system started from
|
|
resume, powering off the system and enabling/disabling the reset
|
|
mechanism.
|
|
|
|
config SPL_ACPI_PMC
|
|
bool "Power Manager (x86 PMC) support in SPL"
|
|
default y if ACPI_PMC
|
|
help
|
|
Enable support for an x86-style power-management controller which
|
|
provides features including checking whether the system started from
|
|
resume, powering off the system and enabling/disabling the reset
|
|
mechanism.
|
|
|
|
config TPL_ACPI_PMC
|
|
bool "Power Manager (x86 PMC) support in TPL"
|
|
default y if ACPI_PMC
|
|
help
|
|
Enable support for an x86-style power-management controller which
|
|
provides features including checking whether the system started from
|
|
resume, powering off the system and enabling/disabling the reset
|
|
mechanism.
|