aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/thomson
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-10-08 14:31:56 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-10-08 14:31:56 +0000
commit98402455c5a21cc8de9d5d51f7e6dd0c1b7df76e (patch)
tree858192658cd6f9f0a149293fd2770cbb7db5bb45 /src/mainboard/thomson
parent824fce488bb9c638881d8e5f5baa09f2bf02d2c1 (diff)
More kconfig:
AMD LX AMD SC520 boards by iei, pcengines, technexion, technologic, thomson Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4743 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/thomson')
-rw-r--r--src/mainboard/thomson/Kconfig9
-rw-r--r--src/mainboard/thomson/ip1000/Kconfig35
-rw-r--r--src/mainboard/thomson/ip1000/Makefile.inc4
3 files changed, 47 insertions, 1 deletions
diff --git a/src/mainboard/thomson/Kconfig b/src/mainboard/thomson/Kconfig
index 792d600548..6aeee5b40f 100644
--- a/src/mainboard/thomson/Kconfig
+++ b/src/mainboard/thomson/Kconfig
@@ -1 +1,8 @@
-#
+choice
+ prompt "Mainboard model"
+ depends on VENDOR_THOMSON
+
+source "src/mainboard/thomson/ip1000/Kconfig"
+
+endchoice
+
diff --git a/src/mainboard/thomson/ip1000/Kconfig b/src/mainboard/thomson/ip1000/Kconfig
new file mode 100644
index 0000000000..f75944492f
--- /dev/null
+++ b/src/mainboard/thomson/ip1000/Kconfig
@@ -0,0 +1,35 @@
+config BOARD_THOMSON_IP1000
+ bool "ip1000"
+ select ARCH_X86
+ select CPU_INTEL_SOCKET_PGA370
+ select NORTHBRIDGE_INTEL_I82830
+ select SOUTHBRIDGE_INTEL_I82801XX
+ select SUPERIO_SMSC_SMSCSUPERIO
+ select HAVE_PIRQ_TABLE
+ select UDELAY_TSC
+
+config MAINBOARD_DIR
+ string
+ default thomson/ip1000
+ depends on BOARD_THOMSON_IP1000
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "IP1000"
+ depends on BOARD_THOMSON_IP1000
+
+config HAVE_OPTION_TABLE
+ bool
+ default n
+ depends on BOARD_THOMSON_IP1000
+
+config IRQ_SLOT_COUNT
+ int
+ default 7
+ depends on BOARD_THOMSON_IP1000
+
+config VIDEO_MB
+ int
+ default 0
+ depends on BOARD_THOMSON_IP1000
+
diff --git a/src/mainboard/thomson/ip1000/Makefile.inc b/src/mainboard/thomson/ip1000/Makefile.inc
new file mode 100644
index 0000000000..b94711e01e
--- /dev/null
+++ b/src/mainboard/thomson/ip1000/Makefile.inc
@@ -0,0 +1,4 @@
+ROMCCFLAGS=-mcpu=p3 -O
+
+include $(src)/mainboard/Makefile.romccboard.inc
+