diff options
author | Rudolf Marek <r.marek@assembler.cz> | 2009-04-13 17:57:44 +0000 |
---|---|---|
committer | Rudolf Marek <r.marek@assembler.cz> | 2009-04-13 17:57:44 +0000 |
commit | a572f83e7198eff99728335e697e9a0ef1e53a0c (patch) | |
tree | 30e2d17ce37a7e8eb4cb7ccf57167c0255f5f6f0 /src/cpu/amd/car | |
parent | 3f04dade0548e68c549af7a551f6c254b4e0088f (diff) |
Following patch adds necessary hooks and as well the compile time checks for
ACPI suspend/resume.
The memory cleared now is just the coreboot memory not the low memory.
Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4099 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/car')
-rw-r--r-- | src/cpu/amd/car/clear_init_ram.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/amd/car/clear_init_ram.c b/src/cpu/amd/car/clear_init_ram.c index ff05f0d439..293912175f 100644 --- a/src/cpu/amd/car/clear_init_ram.c +++ b/src/cpu/amd/car/clear_init_ram.c @@ -6,8 +6,7 @@ static void __attribute__((noinline)) clear_init_ram(void) // gcc 3.4.5 will inline the copy_and_run and clear_init_ram in post_cache_as_ram // will reuse %edi as 0 from clear_memory for copy_and_run part, actually it is increased already // so noline clear_init_ram - clear_memory(0, ((CONFIG_LB_MEM_TOPK<<10) - DCACHE_RAM_SIZE)); - + clear_memory( _RAMBASE, (CONFIG_LB_MEM_TOPK << 10) - _RAMBASE - DCACHE_RAM_SIZE); } /* be warned, this file will be used by core other than core 0/node 0 or core0/node0 when cpu_reset*/ |