From 753169dc251e3f5e71a9f678c93b68c040aebbf0 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Wed, 6 Jan 2010 09:14:08 +0000 Subject: Kconfig builds all boards now. This patch also aligns the configuration of a couple of boards more closely to what newconfig does. Also, the romstrap inc/lds files are declared in the Makefiles of the southbridges they belong to, instead of some global file. AMD CPUs have their own timer functions, so disable UDELAY_IO for them and set HAVE_INIT_TIMER as appropriate, same for emulation/qemu-x86. Signed-off-by: Patrick Georgi Acked-by: Myles Watson git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5000 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/cpu/amd/model_10xxx/Kconfig | 5 +++++ src/cpu/amd/model_fxx/Kconfig | 6 ++++++ src/cpu/amd/sc520/Kconfig | 5 +++++ 3 files changed, 16 insertions(+) (limited to 'src/cpu/amd') diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig index c765eba490..974eed69bc 100644 --- a/src/cpu/amd/model_10xxx/Kconfig +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -4,6 +4,7 @@ config CPU_AMD_MODEL_10XXX select USE_PRINTK_IN_CAR select USE_DCACHE_RAM select SSE + select HAVE_INIT_TIMER config CPU_ADDR_BITS int @@ -25,3 +26,7 @@ config DCACHE_RAM_GLOBAL_VAR_SIZE default 0x04000 depends on CPU_AMD_MODEL_10XXX +config UDELAY_IO + bool + default n + depends on CPU_AMD_MODEL_10XXX diff --git a/src/cpu/amd/model_fxx/Kconfig b/src/cpu/amd/model_fxx/Kconfig index 3132fb9e73..83a7fe102b 100644 --- a/src/cpu/amd/model_fxx/Kconfig +++ b/src/cpu/amd/model_fxx/Kconfig @@ -4,6 +4,7 @@ config CPU_AMD_MODEL_FXX select USE_PRINTK_IN_CAR select USE_DCACHE_RAM select SSE + select HAVE_INIT_TIMER config CPU_ADDR_BITS int @@ -25,3 +26,8 @@ config DCACHE_RAM_GLOBAL_VAR_SIZE default 0x01000 depends on CPU_AMD_MODEL_FXX + +config UDELAY_IO + bool + default n + depends on CPU_AMD_MODEL_FXX diff --git a/src/cpu/amd/sc520/Kconfig b/src/cpu/amd/sc520/Kconfig index 2285b5787a..6d3fa19017 100644 --- a/src/cpu/amd/sc520/Kconfig +++ b/src/cpu/amd/sc520/Kconfig @@ -1,3 +1,8 @@ config CPU_AMD_SC520 bool +config UDELAY_IO + bool + default n + depends on CPU_AMD_SC520 + -- cgit v1.2.3