ff05f0d439387c03baa796a65a7bb8eb7126e803
[coreboot.git] / src / cpu / amd / car / clear_init_ram.c
1 /* by yhlu 6.2005 */
2 /* be warned, this file will be used core 0/node 0 only */
3
4 static void __attribute__((noinline)) clear_init_ram(void)
5 {
6         // gcc 3.4.5 will inline the copy_and_run and clear_init_ram in post_cache_as_ram
7         // will reuse %edi as 0 from clear_memory for copy_and_run part, actually it is increased already
8         // so noline clear_init_ram
9         clear_memory(0,  ((CONFIG_LB_MEM_TOPK<<10) - DCACHE_RAM_SIZE));
10
11 }
12
13 /* be warned, this file will be used by core other than core 0/node 0 or core0/node0 when cpu_reset*/
14 static void set_init_ram_access(void)
15 {
16         set_var_mtrr(0, 0x00000000, CONFIG_LB_MEM_TOPK << 10, MTRR_TYPE_WRBACK);
17 }
18