summaryrefslogtreecommitdiffstats
path: root/src/northbridge/amd/agesa/agesa_helper.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-05 18:57:03 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-08 03:20:27 +0100
commitda74041b2b3be61737e598a45bd53e773faabfa2 (patch)
tree407ebe25cf5d36ea9eb8e8e480ea0169b5510b22 /src/northbridge/amd/agesa/agesa_helper.h
parent8e1f908ce07563a9c1c60dd4515892a47a2b0104 (diff)
downloadcoreboot-da74041b2b3be61737e598a45bd53e773faabfa2.tar.gz
coreboot-da74041b2b3be61737e598a45bd53e773faabfa2.tar.bz2
coreboot-da74041b2b3be61737e598a45bd53e773faabfa2.zip
AGESA: Move heap allocator declarations
Definitions are not part of ACPI S3 feature, nor do they require any AGESA headers so move them to a better location. Change-Id: I9269e9d65463463d9b8280936cf90ef76711ed4f Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/18616 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/northbridge/amd/agesa/agesa_helper.h')
-rw-r--r--src/northbridge/amd/agesa/agesa_helper.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/northbridge/amd/agesa/agesa_helper.h b/src/northbridge/amd/agesa/agesa_helper.h
index 73f927e576f0..82963c1f04b5 100644
--- a/src/northbridge/amd/agesa/agesa_helper.h
+++ b/src/northbridge/amd/agesa/agesa_helper.h
@@ -16,6 +16,8 @@
#ifndef _AGESA_HELPER_H_
#define _AGESA_HELPER_H_
+#include <stddef.h>
+
enum {
PICK_DMI, /* DMI Interface */
PICK_PSTATE, /* Acpi Pstate SSDT Table */
@@ -33,4 +35,21 @@ void amd_initcpuio(void);
void amd_initmmio(void);
void amd_initenv(void);
+void *GetHeapBase(void);
+void EmptyHeap(void);
+void ResumeHeap(void **heap, size_t *len);
+
+#define BSP_STACK_BASE_ADDR 0x30000
+
+#if 1
+/* This covers node 0 only. */
+#define HIGH_ROMSTAGE_STACK_SIZE (0x48000 - BSP_STACK_BASE_ADDR)
+#else
+/* This covers total of 8 nodes. */
+#define HIGH_ROMSTAGE_STACK_SIZE (0xA0000 - BSP_STACK_BASE_ADDR)
+#endif
+
+#define HIGH_MEMORY_SCRATCH 0x30000
+
+
#endif /* _AGESA_HELPER_H_ */