From 00f0267f7805f6d27d78c1ed586ac0f13c90637b Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 9 Oct 2009 14:10:28 +0000 Subject: Remaining boards are Kconfig'd now. Whether they work or not still depends on how close the configuration options are to what they should be. Signed-off-by: Patrick Georgi Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4751 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/supermicro/x6dhr_ig2/Kconfig | 54 +++++++++++++++++++++++++ src/mainboard/supermicro/x6dhr_ig2/Makefile.inc | 24 +++++++++++ 2 files changed, 78 insertions(+) create mode 100644 src/mainboard/supermicro/x6dhr_ig2/Kconfig create mode 100644 src/mainboard/supermicro/x6dhr_ig2/Makefile.inc (limited to 'src/mainboard/supermicro/x6dhr_ig2') diff --git a/src/mainboard/supermicro/x6dhr_ig2/Kconfig b/src/mainboard/supermicro/x6dhr_ig2/Kconfig new file mode 100644 index 0000000000..eee564050e --- /dev/null +++ b/src/mainboard/supermicro/x6dhr_ig2/Kconfig @@ -0,0 +1,54 @@ +config BOARD_SUPERMICRO_X6DHR_IG2 + bool "X6DHR-IG" + select ARCH_X86 + select CPU_INTEL_SOCKET_MPGA604 + select NORTHBRIDGE_INTEL_E7520 + select SOUTHBRIDGE_INTEL_I82801ER + select SOUTHBRIDGE_INTEL_PXHD + select SUPERIO_WINBOND_W83627HF + select PIRQ_TABLE + +config MAINBOARD_DIR + string + default supermicro/x6dhr_ig2 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config LB_CKS_RANGE_END + int + default 122 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config LB_CKS_LOC + int + default 123 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config MAINBOARD_PART_NUMBER + string + default "X6DHR_IG2" + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x15d9 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID + hex + default 0x6780 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config MAX_CPUS + int + default 4 + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config USE_INIT + bool + default n + depends on BOARD_SUPERMICRO_X6DHR_IG2 + +config IRQ_SLOT_COUNT + int + default 15 + depends on BOARD_SUPERMICRO_X6DHR_IG2 diff --git a/src/mainboard/supermicro/x6dhr_ig2/Makefile.inc b/src/mainboard/supermicro/x6dhr_ig2/Makefile.inc new file mode 100644 index 0000000000..e697040c94 --- /dev/null +++ b/src/mainboard/supermicro/x6dhr_ig2/Makefile.inc @@ -0,0 +1,24 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2009 Uwe Hermann +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +ROMCCFLAGS=-mcpu=p4 -O2 + +include $(src)/mainboard/Makefile.romccboard.inc + -- cgit v1.2.3