diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-09 20:36:29 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-09 20:36:29 +0000 |
commit | 314e551447f408300e56cd6206af3e52d9b22059 (patch) | |
tree | 47fe0ed174ae5e2e7c5fe2bafdbb5e050acb17e8 /src/cpu/via/model_c7 | |
parent | fbb02a5f9d8aa04ce69ed955f739022a1e0dce9f (diff) |
This patch changes C7 CAR code to be a single assembler file instead
of the ugly mixture it was before. It also enables CAR for all C7 boards
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5399 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/via/model_c7')
-rw-r--r-- | src/cpu/via/model_c7/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cpu/via/model_c7/Kconfig b/src/cpu/via/model_c7/Kconfig index 530898cf6e..7790b95ee8 100644 --- a/src/cpu/via/model_c7/Kconfig +++ b/src/cpu/via/model_c7/Kconfig @@ -3,3 +3,16 @@ config CPU_VIA_C7 select UDELAY_TSC select MMX select SSE2 + select USE_PRINTK_IN_CAR + +config DCACHE_RAM_BASE + hex + default 0xffef0000 + depends on CPU_VIA_C7 + +config DCACHE_RAM_SIZE + hex + default 0x8000 + depends on CPU_VIA_C7 + + |