Add an option to keep the ROM cached after romstage
Change-Id: I05f1cbd33f0cb7d80ec90c636d1607774b4a74ef Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/739 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
1afe51af83
commit
00093a81d3
@ -40,4 +40,6 @@ config LOGICAL_CPUS
|
||||
bool
|
||||
default y
|
||||
|
||||
|
||||
config CACHE_ROM
|
||||
bool
|
||||
default n
|
||||
|
@ -2,3 +2,4 @@ ramstage-y += lapic.c
|
||||
ramstage-y += lapic_cpu_init.c
|
||||
ramstage-y += secondary.S
|
||||
ramstage-$(CONFIG_UDELAY_LAPIC) += apic_timer.c
|
||||
ramstage-y += boot_cpu.c
|
||||
|
@ -1,7 +1,8 @@
|
||||
#include <cpu/x86/lapic.h>
|
||||
#include <cpu/x86/msr.h>
|
||||
|
||||
#if CONFIG_SMP
|
||||
static int boot_cpu(void)
|
||||
int boot_cpu(void)
|
||||
{
|
||||
int bsp;
|
||||
msr_t msr;
|
||||
|
@ -36,7 +36,9 @@
|
||||
#include <cpu/x86/msr.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <cpu/x86/lapic.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <arch/acpi.h>
|
||||
|
||||
#if CONFIG_GFXUMA
|
||||
extern uint64_t uma_memory_base, uma_memory_size;
|
||||
@ -48,7 +50,6 @@ static unsigned int mtrr_msr[] = {
|
||||
MTRRfix4K_E0000_MSR, MTRRfix4K_E8000_MSR, MTRRfix4K_F0000_MSR, MTRRfix4K_F8000_MSR,
|
||||
};
|
||||
|
||||
|
||||
void enable_fixed_mtrr(void)
|
||||
{
|
||||
msr_t msr;
|
||||
@ -456,6 +457,17 @@ void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb)
|
||||
while(var_state.reg < MTRRS) {
|
||||
set_var_mtrr(var_state.reg++, 0, 0, 0, var_state.address_bits);
|
||||
}
|
||||
|
||||
#if CONFIG_CACHE_ROM
|
||||
/* Enable Caching and speculative Reads for the
|
||||
* complete ROM now that we actually have RAM.
|
||||
*/
|
||||
if (boot_cpu() && (acpi_slp_type != 3)) {
|
||||
set_var_mtrr(7, (4096-4)*1024, 4*1024,
|
||||
MTRR_TYPE_WRPROT, address_bits);
|
||||
}
|
||||
#endif
|
||||
|
||||
printk(BIOS_SPEW, "call enable_var_mtrr()\n");
|
||||
enable_var_mtrr();
|
||||
printk(BIOS_SPEW, "Leave %s\n", __func__);
|
||||
|
Reference in New Issue
Block a user