diff options
author | Patrick Rudolph <siro@das-labor.org> | 2018-11-01 17:48:37 +0100 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2018-11-07 18:12:39 +0000 |
commit | 6b931125459250a015f6de438dbf9c23e9cd6d75 (patch) | |
tree | 9e730502527fb236b5ad24c57b9e71a83f41811f /src/southbridge/intel/common/pmutil.h | |
parent | f19a07b2e4d82b60a8ff6ab0ad29b42f67170485 (diff) |
sb/intel: Deduplicate vbnv_cmos_failed and rtc_init
* Move all implementations to into common folder.
* Add rtc.c for rtc based functions
Allows all Intel based platforms to use VBOOT_VBNV_CMOS.
Change-Id: Ia494e6d418af6f907c648376674776c54d95ba71
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/29427
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/southbridge/intel/common/pmutil.h')
-rw-r--r-- | src/southbridge/intel/common/pmutil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/southbridge/intel/common/pmutil.h b/src/southbridge/intel/common/pmutil.h index 26134d9fad..c578982e92 100644 --- a/src/southbridge/intel/common/pmutil.h +++ b/src/southbridge/intel/common/pmutil.h @@ -21,6 +21,9 @@ #define D31F0_PMBASE 0x40 #define D31F0_GEN_PMCON_3 0xa4 +#define RTC_BATTERY_DEAD (1 << 2) +#define RTC_POWER_FAILED (1 << 1) +#define SLEEP_AFTER_POWER_FAIL (1 << 0) #define D31F0_GPIO_ROUT 0xb8 #define GPI_DISABLE 0x00 #define GPI_IS_SMI 0x01 |