summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cpu/amd/agesa/family14/model_14_init.c4
-rw-r--r--src/cpu/amd/agesa/family15tn/model_15_init.c7
-rw-r--r--src/cpu/amd/agesa/family16kb/model_16_init.c7
-rw-r--r--src/cpu/amd/mtrr/amd_mtrr.c87
-rw-r--r--src/include/cpu/amd/mtrr.h1
5 files changed, 9 insertions, 97 deletions
diff --git a/src/cpu/amd/agesa/family14/model_14_init.c b/src/cpu/amd/agesa/family14/model_14_init.c
index 78234b663e..4cf0f45b82 100644
--- a/src/cpu/amd/agesa/family14/model_14_init.c
+++ b/src/cpu/amd/agesa/family14/model_14_init.c
@@ -25,9 +25,7 @@ static void model_14_init(struct device *dev)
disable_cache();
/*
* AGESA sets the MTRRs main MTRRs. The shadow area needs to be set
- * by coreboot. The amd_setup_mtrrs should work, but needs debug on fam14.
- * TODO:
- * amd_setup_mtrrs();
+ * by coreboot.
*/
/* Enable access to AMD RdDram and WrDram extension bits */
diff --git a/src/cpu/amd/agesa/family15tn/model_15_init.c b/src/cpu/amd/agesa/family15tn/model_15_init.c
index 245cdf34f9..d13fb9b135 100644
--- a/src/cpu/amd/agesa/family15tn/model_15_init.c
+++ b/src/cpu/amd/agesa/family15tn/model_15_init.c
@@ -25,9 +25,10 @@ static void model_15_init(struct device *dev)
u32 siblings;
#endif
- //enable_cache();
- //amd_setup_mtrrs();
- //x86_mtrr_check();
+ /*
+ * AGESA sets the MTRRs main MTRRs. The shadow area needs to be set
+ * by coreboot.
+ */
disable_cache();
/* Enable access to AMD RdDram and WrDram extension bits */
msr = rdmsr(SYSCFG_MSR);
diff --git a/src/cpu/amd/agesa/family16kb/model_16_init.c b/src/cpu/amd/agesa/family16kb/model_16_init.c
index c86f8acdef..2915565078 100644
--- a/src/cpu/amd/agesa/family16kb/model_16_init.c
+++ b/src/cpu/amd/agesa/family16kb/model_16_init.c
@@ -23,9 +23,10 @@ static void model_16_init(struct device *dev)
u32 siblings;
#endif
- //enable_cache();
- //amd_setup_mtrrs();
- //x86_mtrr_check();
+ /*
+ * AGESA sets the MTRRs main MTRRs. The shadow area needs to be set
+ * by coreboot.
+ */
disable_cache();
/* Enable access to AMD RdDram and WrDram extension bits */
msr = rdmsr(SYSCFG_MSR);
diff --git a/src/cpu/amd/mtrr/amd_mtrr.c b/src/cpu/amd/mtrr/amd_mtrr.c
index 8c703f57d5..7502ca83ff 100644
--- a/src/cpu/amd/mtrr/amd_mtrr.c
+++ b/src/cpu/amd/mtrr/amd_mtrr.c
@@ -48,25 +48,6 @@ void setup_bsp_ramtop(void)
amd_topmem2 = (uint64_t) msr2.hi << 32 | msr2.lo;
}
-static void setup_ap_ramtop(void)
-{
- msr_t msr;
- uint64_t v;
-
- v = bsp_topmem();
- if (!v)
- return;
-
- msr.hi = v >> 32;
- msr.lo = (uint32_t) v;
- wrmsr(TOP_MEM, msr);
-
- v = bsp_topmem2();
- msr.hi = v >> 32;
- msr.lo = (uint32_t) v;
- wrmsr(TOP_MEM2, msr);
-}
-
void add_uma_resource_below_tolm(struct device *nb, int idx)
{
uint32_t topmem = bsp_topmem();
@@ -83,71 +64,3 @@ void add_uma_resource_below_tolm(struct device *nb, int idx)
uma_resource(nb, idx, uma_base / KiB, uma_size / KiB);
}
-
-void amd_setup_mtrrs(void)
-{
- unsigned long i;
- msr_t msr, sys_cfg;
- // Test if this CPU is a Fam 0Fh rev. F or later
- const int cpu_id = cpuid_eax(0x80000001);
- printk(BIOS_SPEW, "CPU ID 0x80000001: %x\n", cpu_id);
- const int has_tom2wb =
- // ExtendedFamily > 0
- (((cpu_id>>20)&0xf) > 0) ||
- // Family == 0F
- ((((cpu_id>>8)&0xf) == 0xf) &&
- // Rev>=F deduced from rev tables
- (((cpu_id>>16)&0xf) >= 0x4));
- if (has_tom2wb)
- printk(BIOS_DEBUG, "CPU is Fam 0Fh rev.F or later. We can use TOM2WB for any memory above 4GB\n");
-
- /* Enable the access to AMD RdDram and WrDram extension bits */
- disable_cache();
- sys_cfg = rdmsr(SYSCFG_MSR);
- sys_cfg.lo |= SYSCFG_MSR_MtrrFixDramModEn;
- wrmsr(SYSCFG_MSR, sys_cfg);
- enable_cache();
-
- /* Setup fixed MTRRs, but do not enable them just yet. */
- x86_setup_fixed_mtrrs_no_enable();
-
- disable_cache();
-
- setup_ap_ramtop();
-
- /* if DRAM above 4GB: set SYSCFG_MSR_TOM2En and SYSCFG_MSR_TOM2WB */
- sys_cfg.lo &= ~(SYSCFG_MSR_TOM2En | SYSCFG_MSR_TOM2WB);
- if (bsp_topmem2() > (uint64_t)1 << 32) {
- sys_cfg.lo |= SYSCFG_MSR_TOM2En;
- if (has_tom2wb)
- sys_cfg.lo |= SYSCFG_MSR_TOM2WB;
- }
-
- /* zero the IORR's before we enable to prevent
- * undefined side effects.
- */
- msr.lo = msr.hi = 0;
- for (i = MTRR_IORR0_BASE; i <= MTRR_IORR1_MASK; i++)
- wrmsr(i, msr);
-
- /* Enable Variable Mtrrs
- * Enable the RdMem and WrMem bits in the fixed mtrrs.
- * Disable access to the RdMem and WrMem in the fixed mtrr.
- */
- sys_cfg.lo |= SYSCFG_MSR_MtrrVarDramEn | SYSCFG_MSR_MtrrFixDramEn;
- sys_cfg.lo &= ~SYSCFG_MSR_MtrrFixDramModEn;
- wrmsr(SYSCFG_MSR, sys_cfg);
-
- enable_fixed_mtrr();
-
- enable_cache();
-
- /* Now that I have mapped what is memory and what is not
- * Set up the mtrrs so we can cache the memory.
- */
-
- // Rev. F K8 supports has SYSCFG_MSR_TOM2WB and doesn't need
- // variable MTRR to span memory above 4GB
- // Lower revisions K8 need variable MTRR over 4GB
- x86_setup_var_mtrrs(cpu_phys_address_size(), has_tom2wb ? 0 : 1);
-}
diff --git a/src/include/cpu/amd/mtrr.h b/src/include/cpu/amd/mtrr.h
index 608a9df1ec..9a943ac64f 100644
--- a/src/include/cpu/amd/mtrr.h
+++ b/src/include/cpu/amd/mtrr.h
@@ -43,7 +43,6 @@
#include <cpu/x86/msr.h>
#include <stdint.h>
-void amd_setup_mtrrs(void);
struct device;
void add_uma_resource_below_tolm(struct device *nb, int idx);