diff options
Diffstat (limited to 'src/cpu/via')
-rw-r--r-- | src/cpu/via/car/cache_as_ram.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/via/car/cache_as_ram.inc b/src/cpu/via/car/cache_as_ram.inc index 2f61b9138a..8d02e5d2ec 100644 --- a/src/cpu/via/car/cache_as_ram.inc +++ b/src/cpu/via/car/cache_as_ram.inc @@ -225,7 +225,7 @@ testok: movl $(MTRR_DEF_TYPE_EN), %eax wrmsr - /* Enable caching for 0..CONFIG_RAMTOP. */ + /* Enable caching for 0..CACHE_TMP_RAMTOP. */ movl $MTRR_PHYS_BASE(0), %ecx xorl %edx, %edx movl $(0x0 | MTRR_TYPE_WRBACK), %eax @@ -233,7 +233,7 @@ testok: movl $MTRR_PHYS_MASK(0), %ecx movl $0x0000000f, %edx /* AMD 40 bit 0xff */ - movl $(~(CONFIG_RAMTOP - 1) | MTRR_PHYS_MASK_VALID), %eax + movl $(~(CACHE_TMP_RAMTOP - 1) | MTRR_PHYS_MASK_VALID), %eax wrmsr /* Cache XIP_ROM area to speedup coreboot code. */ |