aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-08-27 12:10:05 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-08-27 12:10:05 +0000
commit20c03fb923730f81e04b1e3ab997041eeb55d45f (patch)
tree88074de1cfbdbe086c9d9fa50bace12fd420de43
parent6c36305cdf866aa6c5136f303c98d389b1c1504e (diff)
Clean up the kontron Kconfig
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4595 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/mainboard/kontron/986lcd-m/Kconfig44
-rw-r--r--src/mainboard/kontron/Kconfig45
2 files changed, 45 insertions, 44 deletions
diff --git a/src/mainboard/kontron/986lcd-m/Kconfig b/src/mainboard/kontron/986lcd-m/Kconfig
new file mode 100644
index 0000000000..333ae1cf95
--- /dev/null
+++ b/src/mainboard/kontron/986lcd-m/Kconfig
@@ -0,0 +1,44 @@
+config BOARD_KONTRON_986LCD_M
+ bool "986LCD-M"
+ select ARCH_X86
+ select CPU_INTEL_CORE
+ select CPU_INTEL_SOCKET_MFCPGA478
+ select NORTHBRIDGE_INTEL_I945
+ select SOUTHBRIDGE_INTEL_I82801GX
+ select SUPERIO_WINBOND_W83627THG
+ select HAVE_PIRQ_TABLE
+ select MMCONF_SUPPORT
+ select USE_PRINTK_IN_CAR
+ help
+ Kontron 986LCD-M/mITX mainboard.
+
+config MAINBOARD_DIR
+ string
+ default kontron/986lcd-m
+ depends on BOARD_KONTRON_986LCD_M
+
+config DCACHE_RAM_BASE
+ hex
+ default 0xffdf8000
+ depends on BOARD_KONTRON_986LCD_M
+
+config DCACHE_RAM_SIZE
+ hex
+ default 0x8000
+ depends on BOARD_KONTRON_986LCD_M
+
+config LB_CKS_RANGE_END
+ int
+ default 122
+ depends on BOARD_KONTRON_986LCD_M
+
+config LB_CKS_LOC
+ int
+ default 123
+ depends on BOARD_KONTRON_986LCD_M
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "986LCD-M"
+ depends on BOARD_KONTRON_986LCD_M
+
diff --git a/src/mainboard/kontron/Kconfig b/src/mainboard/kontron/Kconfig
index eec11dccbf..152e9491d1 100644
--- a/src/mainboard/kontron/Kconfig
+++ b/src/mainboard/kontron/Kconfig
@@ -2,49 +2,6 @@ choice
prompt "Mainboard model"
depends on VENDOR_KONTRON
-config BOARD_KONTRON_986LCD_M
- bool "986LCD-M"
- select ARCH_X86
- select CPU_INTEL_CORE
- select CPU_INTEL_SOCKET_MFCPGA478
- select NORTHBRIDGE_INTEL_I945
- select SOUTHBRIDGE_INTEL_I82801GX
- select SUPERIO_WINBOND_W83627THG
- select HAVE_PIRQ_TABLE
- select MMCONF_SUPPORT
- select USE_PRINTK_IN_CAR
- help
- Kontron 986LCD-M/mITX mainboard.
+source "src/mainboard/kontron/986lcd-m/Kconfig"
endchoice
-
-config MAINBOARD_DIR
- string
- default kontron/986lcd-m
- depends on BOARD_KONTRON_986LCD_M
-
-config DCACHE_RAM_BASE
- hex
- default 0xffdf8000
- depends on BOARD_KONTRON_986LCD_M
-
-config DCACHE_RAM_SIZE
- hex
- default 0x8000
- depends on BOARD_KONTRON_986LCD_M
-
-config LB_CKS_RANGE_END
- int
- default 122
- depends on BOARD_KONTRON_986LCD_M
-
-config LB_CKS_LOC
- int
- default 123
- depends on BOARD_KONTRON_986LCD_M
-
-config MAINBOARD_PART_NUMBER
- string
- default "986LCD-M"
- depends on BOARD_KONTRON_986LCD_M
-