diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-03-29 15:53:54 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-04-04 02:23:39 +0200 |
commit | 424c63950bedc76020a0861ee85c19bf26eb4c6a (patch) | |
tree | 2ed155d910d0645e432c552acdad27e8096f7004 /src/cpu/amd | |
parent | 85782b21527b54ae5ac496bf27c1416e4d6aae68 (diff) | |
download | coreboot-424c63950bedc76020a0861ee85c19bf26eb4c6a.tar.xz |
AGESA: Refactor S3 support functions
Producer and consumer of these buffers now appear in same file.
Also add test for uninitialized NonVolatileStorage in SPI.
Change-Id: Ibbf6581a0bf1d4bffda870fc055721627b538b92
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/19037
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/agesa/heapmanager.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cpu/amd/agesa/heapmanager.c b/src/cpu/amd/agesa/heapmanager.c index cc6ee2216d..2a5141c62c 100644 --- a/src/cpu/amd/agesa/heapmanager.c +++ b/src/cpu/amd/agesa/heapmanager.c @@ -62,16 +62,6 @@ void EmptyHeap(void) (unsigned int)(uintptr_t) base, (unsigned int)(uintptr_t) base + BIOS_HEAP_SIZE - 1); } -void ResumeHeap(void **heap, size_t *len) -{ - void *base = GetHeapBase(); - *heap = base; - *len = BIOS_HEAP_SIZE; - - printk(BIOS_DEBUG, "Using resume HEAP at [%08x - %08x]\n", - (unsigned int)(uintptr_t) base, (unsigned int)(uintptr_t) base + BIOS_HEAP_SIZE - 1); -} - #if (IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY15_TN) || \ IS_ENABLED(CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY15_RL)) && !defined(__PRE_RAM__) |