diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-02-09 16:51:38 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-02-09 19:45:49 +0100 |
commit | 12b72624ee876e5855d501a527413d5f96edf65b (patch) | |
tree | c60e75e2bcfcd6353f262e689035a557cf691499 /src/cpu/via/c7/Kconfig | |
parent | c466287d4d4062478e3c3c5fc6502cfb5567f249 (diff) | |
download | coreboot-12b72624ee876e5855d501a527413d5f96edf65b.tar.xz |
VIA cpus: apply un-written naming rules
Rename files and directories:
model_c3 -> c3
model_c7 -> c7
Change-Id: If144fc501e8ae44b347ac44fa90c689c33a8e126
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/614
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/via/c7/Kconfig')
-rw-r--r-- | src/cpu/via/c7/Kconfig | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/cpu/via/c7/Kconfig b/src/cpu/via/c7/Kconfig new file mode 100644 index 0000000000..ebbb8f9f02 --- /dev/null +++ b/src/cpu/via/c7/Kconfig @@ -0,0 +1,21 @@ +config CPU_VIA_C7 + bool + +if CPU_VIA_C7 + +config CPU_SPECIFIC_OPTIONS + def_bool y + select UDELAY_TSC + select MMX + select SSE2 + select CACHE_AS_RAM + +config DCACHE_RAM_BASE + hex + default 0xffef0000 + +config DCACHE_RAM_SIZE + hex + default 0x8000 + +endif # CPU_VIA_C7 |