diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 07:43:09 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-08 07:43:09 +0000 |
commit | 5726f92027c4299a7cad46c9153dbe55543efb5e (patch) | |
tree | 3b48da7bf4d3c522769628e36e0b5df329188164 /src/cpu/amd/model_10xxx | |
parent | b97ee05dc72c52fbb694326863b4977736d0f225 (diff) |
Kconfig: AMD Fam10, all Tyan boards.
Fam10 doesn't build due to size constraints at this time.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4741 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/model_10xxx')
-rw-r--r-- | src/cpu/amd/model_10xxx/Kconfig | 44 | ||||
-rw-r--r-- | src/cpu/amd/model_10xxx/Makefile.inc | 5 |
2 files changed, 49 insertions, 0 deletions
diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig new file mode 100644 index 0000000000..0e308a27a1 --- /dev/null +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -0,0 +1,44 @@ +config CPU_AMD_MODEL_10XXX + bool + default n + +config HAVE_INIT_TIMER + bool + default y + depends on CPU_AMD_MODEL_10XXX + +config HAVE_MOVNTI + bool + default y + depends on CPU_AMD_MODEL_10XXX + +config CPU_ADDR_BITS + int + default 48 + depends on CPU_AMD_MODEL_10XXX + +config USE_PRINTK_IN_CAR + bool + default y + depends on CPU_AMD_MODEL_10XXX + +config USE_DCACHE_RAM + bool + default y + depends on CPU_AMD_MODEL_10XXX + +config DCACHE_RAM_BASE + hex + default 0xc8000 + depends on CPU_AMD_MODEL_10XXX + +config DCACHE_RAM_SIZE + hex + default 0x08000 + depends on CPU_AMD_MODEL_10XXX + +config DCACHE_RAM_GLOBAL_VAR_SIZE + hex + default 0x01000 + depends on CPU_AMD_MODEL_10XXX + diff --git a/src/cpu/amd/model_10xxx/Makefile.inc b/src/cpu/amd/model_10xxx/Makefile.inc new file mode 100644 index 0000000000..d0beb04c98 --- /dev/null +++ b/src/cpu/amd/model_10xxx/Makefile.inc @@ -0,0 +1,5 @@ +# no conditionals here. If you include this file from a socket, then you get all the binaries. +driver-y += model_10xxx_init.o +obj-y += update_microcode.o +obj-y += apic_timer.o +obj-y += processor_name.o |