From 88f55b2c12f94fd0451902ee2edc663f12e401f4 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 25 Sep 2009 18:43:02 +0000 Subject: some progress on kconfig: - northbridges are done - southbridges are done - Intel CPUs are done, with a design that the board only has to specify the socket it has, and the CPUs are pulled in automatically. There is some more cleanup possible in that area, but I'll do that later - a couple more mainboards compile: - intel/eagleheights - intel/jarrell - intel/mtarvon - intel/truxton - intel/xe7501devkit - sunw/ultra40 - supermicro/h8dme - tyan/s2850 - tyan/s2875 - via/epia - via/epia-cn - via/epia-m - via/epia-m700 - via/epia-n - via/pc2500e (PPC not considered, probably overlooked something) All of them only _build_, but some options are probably completely wrong. To be fixed later Signed-off-by: Patrick Georgi Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4673 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/tyan/s2875/Kconfig | 71 +++++++++++++++++++++++++++++++++++ src/mainboard/tyan/s2875/Makefile.inc | 1 + 2 files changed, 72 insertions(+) create mode 100644 src/mainboard/tyan/s2875/Kconfig create mode 100644 src/mainboard/tyan/s2875/Makefile.inc (limited to 'src/mainboard/tyan/s2875') diff --git a/src/mainboard/tyan/s2875/Kconfig b/src/mainboard/tyan/s2875/Kconfig new file mode 100644 index 0000000000..57e3bab1c9 --- /dev/null +++ b/src/mainboard/tyan/s2875/Kconfig @@ -0,0 +1,71 @@ +config BOARD_TYAN_S2875 + bool "Tyan S2875" + select ARCH_X86 + select CPU_AMD_K8 + select CPU_AMD_SOCKET_940 + select NORTHBRIDGE_AMD_AMDK8 + select NORTHBRIDGE_AMD_AMDK8_ROOT_COMPLEX + select SOUTHBRIDGE_AMD_AMD8151 + select SOUTHBRIDGE_AMD_AMD8111 + select SUPERIO_WINBOND_W83627HF + select PIRQ_TABLE + +config MAINBOARD_DIR + string + default tyan/s2875 + depends on BOARD_TYAN_S2875 + +config LB_CKS_RANGE_END + int + default 122 + depends on BOARD_TYAN_S2875 + +config LB_CKS_LOC + int + default 123 + depends on BOARD_TYAN_S2875 + +config MAINBOARD_PART_NUMBER + string + default "s2875" + depends on BOARD_TYAN_S2875 + +config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x2875 + depends on BOARD_TYAN_S2875 + +config HW_MEM_HOLE_SIZEK + hex + default 0x100000 + depends on BOARD_TYAN_S2875 + +config HAVE_FAILOVER_BOOT + bool + default n + depends on BOARD_TYAN_S2875 + +config USE_FAILOVER_IMAGE + bool + default n + depends on BOARD_TYAN_S2875 + +config MAX_CPUS + int + default 4 + depends on BOARD_TYAN_S2875 + +config MAX_PHYSICAL_CPUS + int + default 2 + depends on BOARD_TYAN_S2875 + +config HW_MEM_HOLE_SIZE_AUTO_INC + bool + default n + depends on BOARD_TYAN_S2875 + +config USE_INIT + bool + default n + depends on BOARD_TYAN_S2875 diff --git a/src/mainboard/tyan/s2875/Makefile.inc b/src/mainboard/tyan/s2875/Makefile.inc new file mode 100644 index 0000000000..88582f5329 --- /dev/null +++ b/src/mainboard/tyan/s2875/Makefile.inc @@ -0,0 +1 @@ +include $(src)/mainboard/tyan/Makefile.s289x.inc -- cgit v1.2.3