diff options
author | Nico Huber <nico.h@gmx.de> | 2019-08-05 21:24:00 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-08-09 09:37:45 +0000 |
commit | 6bbabef388ba9a1c59ebc865c6d43e94000c1f14 (patch) | |
tree | e6598edd69dd5e3197a6389ef3d685962cf7d973 | |
parent | 3e786b55463fc656fd3c23823b42b72591eb3d21 (diff) | |
download | coreboot-6bbabef388ba9a1c59ebc865c6d43e94000c1f14.tar.xz |
soc/intel/common: Set power-failure-state via option table
Allow get_option() to override the Kconfig choice.
Change-Id: Ie91b502a38d1a40a3dea3711b017b7a5b7edd2db
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34729
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Furquan Shaikh <furquan@google.com>
-rw-r--r-- | src/soc/intel/common/block/pmc/pmclib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/pmc/pmclib.c b/src/soc/intel/common/block/pmc/pmclib.c index 7fb4d5e807..d7362b6dc4 100644 --- a/src/soc/intel/common/block/pmc/pmclib.c +++ b/src/soc/intel/common/block/pmc/pmclib.c @@ -21,7 +21,9 @@ #include <intelblocks/pmclib.h> #include <intelblocks/gpio.h> #include <intelblocks/tco.h> +#include <pc80/mc146818rtc.h> #include <soc/pm.h> +#include <stdint.h> #include <string.h> #include <timer.h> #include <security/vboot/vboot_common.h> @@ -570,9 +572,11 @@ void pmc_gpe_init(void) void pmc_set_power_failure_state(const bool target_on) { - const int state = CONFIG_MAINBOARD_POWER_FAILURE_STATE; bool on; + uint8_t state = CONFIG_MAINBOARD_POWER_FAILURE_STATE; + get_option(&state, "power_on_after_fail"); + switch (state) { case MAINBOARD_POWER_STATE_OFF: printk(BIOS_INFO, "Set power off after power failure.\n"); |