/* * This file is part of the coreboot project. * * Copyright (C) 2000,2007 Ronald G. Minnich * Copyright (C) 2007-2008 coresystems GmbH * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include #include #include #include #define CACHE_AS_RAM_SIZE 0x10000 #define CACHE_AS_RAM_BASE 0xd0000 #define CPU_PHYSMASK_HI (1 << (CONFIG_CPU_ADDR_BITS - 32) - 1) /* Save the BIST result. */ movl %eax, %ebp cache_as_ram: post_code(0x20) /* Clear the cache memory region. This will also fill up the cache */ movl $CACHE_AS_RAM_BASE, %esi movl %esi, %edi movl $(CACHE_AS_RAM_SIZE >> 2), %ecx // movl $0x23322332, %eax xorl %eax, %eax rep stosl post_code(0x21) /* Set up the stack pointer. */ movl $(CACHE_AS_RAM_SIZE + CACHE_AS_RAM_BASE - 4), %eax movl %eax, %esp /* Restore the BIST result. */ movl %ebp, %eax movl %esp, %ebp pushl %eax before_romstage: post_code(0x29) /* Call romstage.c main function. */ call main post_code(0x30) __main: post_code(POST_PREPARE_RAMSTAGE) cld /* Clear direction flag. */ movl $CONFIG_RAMTOP, %esp movl %esp, %ebp call copy_and_run .Lhlt: post_code(POST_DEAD_CODE) hlt jmp .Lhlt