aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/include
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-07-01 03:48:39 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-08-16 00:35:49 +0000
commit66cabe7ba28a9abbbf228ef3688a4d2c17a5eba3 (patch)
treed9816550eb5873997708044720a50524a9f80002 /src/soc/amd/common/block/include
parent434a975b979819d0da162097bd433fba5ac7d8c8 (diff)
soc/amd/common: Refactor S3 helpers
Make the prototypes match what drivers/amd/agesa would rather see, in preparation to use the same code with open-source AGESA. Change-Id: I1506ee2f7ecf3cb6ec4cce37a030c05f78ec6d59 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31490 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/amd/common/block/include')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/s3_resume.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/s3_resume.h b/src/soc/amd/common/block/include/amdblocks/s3_resume.h
index 13f801021c..9323baf6aa 100644
--- a/src/soc/amd/common/block/include/amdblocks/s3_resume.h
+++ b/src/soc/amd/common/block/include/amdblocks/s3_resume.h
@@ -17,10 +17,10 @@
#define __AMD_S3_RESUME_H__
#include <stdint.h>
+#include <agesa_headers.h>
-int save_s3_info(void *nv_base, size_t nv_size,
- void *vol_base, size_t vol_size);
-void get_s3nv_info(void **base, size_t *size);
-void get_s3vol_info(void **base, size_t *size);
+AGESA_STATUS OemInitResume(S3_DATA_BLOCK *dataBlock);
+AGESA_STATUS OemS3LateRestore(S3_DATA_BLOCK *dataBlock);
+AGESA_STATUS OemS3Save(S3_DATA_BLOCK *dataBlock);
#endif /* __AMD_S3_RESUME_H__ */