summaryrefslogtreecommitdiff
path: root/src/lib/hardwaremain.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-10-16 20:58:47 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-10-19 06:15:00 +0200
commit7b14f08f45f54bc36510e4b12febc1831cd744ef (patch)
tree692561e262f68b0b7b2f22dae6d308593291daac /src/lib/hardwaremain.c
parent1729cd85744129104e3e41aac1f18e43b62f79ff (diff)
downloadcoreboot-7b14f08f45f54bc36510e4b12febc1831cd744ef.tar.xz
ACPI: Allocate S3 resume backup in CBMEM earlier
These allocations are not really part of write_tables() and the move opens possibilities to use CBMEM instead of SPI Flash to restore some parts of system state after S3 resume. Change-Id: I0c36bcee3f1da525af077fc1d18677ee85097e4d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/7097 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/lib/hardwaremain.c')
-rw-r--r--src/lib/hardwaremain.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c
index 9038f57987..be052b3587 100644
--- a/src/lib/hardwaremain.c
+++ b/src/lib/hardwaremain.c
@@ -197,6 +197,8 @@ static boot_state_t bs_os_resume_check(void *arg)
boot_states[BS_OS_RESUME].arg = wake_vector;
return BS_OS_RESUME;
}
+
+ acpi_prepare_resume_backup();
#endif
timestamp_add_now(TS_CBMEM_POST);