summaryrefslogtreecommitdiff
path: root/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-05-04 07:24:43 +0300
committerPatrick Georgi <patrick@georgi-clan.de>2014-05-05 08:53:45 +0200
commit8ef30253e3f117275306a1f977fd42e0470f4f5a (patch)
tree2f51f09c8f2fe5d1890136a5da672fbb9897cc0f /src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c
parent5601922130485ee7af96189e843114f58a58b4fd (diff)
downloadcoreboot-8ef30253e3f117275306a1f977fd42e0470f4f5a.tar.xz
AGESA fam14: Use common callouts
Backported from fam15tn and fam16kb. This also implements GetHeapBase() to satisfy some requirements of HAVE_ACPI_RESUME for the following boards: amd/inagua amd/south_station amd/union_station asrock/e350m1 Change-Id: I488d063d4eabf4bf45bcbabd1e8f13b88b2ef401 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5658 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c')
-rw-r--r--src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c b/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c
index 89f3c01c46..21930e4304 100644
--- a/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c
+++ b/src/mainboard/jetway/nf81-t56n-lf/agesawrapper.c
@@ -23,9 +23,7 @@
#define __SIMPLE_DEVICE__
-#include <arch/acpi.h>
#include <arch/io.h>
-#include <cbmem.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/mtrr.h>
#include <stdint.h>
@@ -181,23 +179,6 @@ AGESA_STATUS agesawrapper_amdinitearly(void)
return status;
}
-UINT32 GetHeapBase(
- AMD_CONFIG_PARAMS *StdHeader
- )
-{
- UINT32 heap;
-
-#if CONFIG_HAVE_ACPI_RESUME
- /* Both romstage and ramstage has this S3 detect. */
- if (acpi_get_sleep_type() == 3)
- heap = (UINT32)cbmem_find(CBMEM_ID_RESUME_SCRATCH) + (CONFIG_HIGH_SCRATCH_MEMORY_SIZE - BIOS_HEAP_SIZE); /* himem_heap_base + high_stack_size */
- else
-#endif
- heap = BIOS_HEAP_START_ADDRESS; /* low mem */
-
- return heap;
-}
-
AGESA_STATUS agesawrapper_amdinitpost(void)
{
AGESA_STATUS status;