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/southbridge/via/Kconfig | 7 +++---- src/southbridge/via/Makefile.inc | 7 +++---- src/southbridge/via/k8t890/Kconfig | 4 ++++ src/southbridge/via/k8t890/Makefile.inc | 9 +++++++++ src/southbridge/via/vt8231/Kconfig | 23 +++++++++++++++++++++++ src/southbridge/via/vt8231/Makefile.inc | 25 +++++++++++++++++++++++++ src/southbridge/via/vt8235/Kconfig | 23 +++++++++++++++++++++++ src/southbridge/via/vt8235/Makefile.inc | 24 ++++++++++++++++++++++++ 8 files changed, 114 insertions(+), 8 deletions(-) create mode 100644 src/southbridge/via/k8t890/Kconfig create mode 100644 src/southbridge/via/k8t890/Makefile.inc create mode 100644 src/southbridge/via/vt8231/Kconfig create mode 100644 src/southbridge/via/vt8231/Makefile.inc create mode 100644 src/southbridge/via/vt8235/Kconfig create mode 100644 src/southbridge/via/vt8235/Makefile.inc (limited to 'src/southbridge/via') diff --git a/src/southbridge/via/Kconfig b/src/southbridge/via/Kconfig index cbc697d3af..ab135a44fc 100644 --- a/src/southbridge/via/Kconfig +++ b/src/southbridge/via/Kconfig @@ -1,5 +1,4 @@ -#source src/southbridge/via/k8t890/Kconfig -#source src/southbridge/via/vt8231/Kconfig -#source src/southbridge/via/vt8235/Kconfig +source src/southbridge/via/k8t890/Kconfig +source src/southbridge/via/vt8231/Kconfig +source src/southbridge/via/vt8235/Kconfig source src/southbridge/via/vt8237r/Kconfig -#source src/southbridge/via/vt82c686/Kconfig diff --git a/src/southbridge/via/Makefile.inc b/src/southbridge/via/Makefile.inc index b866b33458..ca555795b2 100644 --- a/src/southbridge/via/Makefile.inc +++ b/src/southbridge/via/Makefile.inc @@ -1,5 +1,4 @@ -#subdirs-y += k8t890 -#subdirs-y += vt8231 -#subdirs-y += vt8235 +subdirs-$(CONFIG_SOUTHBRIDGE_VIA_K8T890) += k8t890 +subdirs-$(CONFIG_SOUTHBRIDGE_VIA_VT8231) += vt8231 +subdirs-$(CONFIG_SOUTHBRIDGE_VIA_VT8235) += vt8235 subdirs-$(CONFIG_SOUTHBRIDGE_VIA_VT8237R) += vt8237r -#subdirs-y += vt82c686 diff --git a/src/southbridge/via/k8t890/Kconfig b/src/southbridge/via/k8t890/Kconfig new file mode 100644 index 0000000000..2219920b9a --- /dev/null +++ b/src/southbridge/via/k8t890/Kconfig @@ -0,0 +1,4 @@ +config SOUTHBRIDGE_VIA_K8T890 + bool + default n + diff --git a/src/southbridge/via/k8t890/Makefile.inc b/src/southbridge/via/k8t890/Makefile.inc new file mode 100644 index 0000000000..0eff25e751 --- /dev/null +++ b/src/southbridge/via/k8t890/Makefile.inc @@ -0,0 +1,9 @@ +driver-y += k8t890_ctrl.o +driver-y += k8t890_dram.o +driver-y += k8t890_bridge.o +driver-y += k8t890_host.o +driver-y += k8t890_host_ctrl.o +driver-y += k8t890_pcie.o +driver-y += k8t890_traf_ctrl.o +driver-y += k8t890_error.o +driver-y += k8m890_chrome.o diff --git a/src/southbridge/via/vt8231/Kconfig b/src/southbridge/via/vt8231/Kconfig new file mode 100644 index 0000000000..c567140332 --- /dev/null +++ b/src/southbridge/via/vt8231/Kconfig @@ -0,0 +1,23 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2008-2009 coresystems GmbH +## +## 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; version 2 of the License. +## +## 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 +## + +config SOUTHBRIDGE_VIA_VT8231 + bool + default n + diff --git a/src/southbridge/via/vt8231/Makefile.inc b/src/southbridge/via/vt8231/Makefile.inc new file mode 100644 index 0000000000..4f1dca7c46 --- /dev/null +++ b/src/southbridge/via/vt8231/Makefile.inc @@ -0,0 +1,25 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007, 2009 Rudolf Marek +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License v2 as published by +## the Free Software Foundation. +## +## 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 +## + +driver-y += vt8231.o +driver-y += vt8231_lpc.o +driver-y += vt8231_acpi.o +driver-y += vt8231_ide.o +driver-y += vt8231_nic.o +#driver-y += vt8231_usb.o diff --git a/src/southbridge/via/vt8235/Kconfig b/src/southbridge/via/vt8235/Kconfig new file mode 100644 index 0000000000..f8e723b784 --- /dev/null +++ b/src/southbridge/via/vt8235/Kconfig @@ -0,0 +1,23 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2008-2009 coresystems GmbH +## +## 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; version 2 of the License. +## +## 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 +## + +config SOUTHBRIDGE_VIA_VT8235 + bool + default n + diff --git a/src/southbridge/via/vt8235/Makefile.inc b/src/southbridge/via/vt8235/Makefile.inc new file mode 100644 index 0000000000..361d6aa791 --- /dev/null +++ b/src/southbridge/via/vt8235/Makefile.inc @@ -0,0 +1,24 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007, 2009 Rudolf Marek +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License v2 as published by +## the Free Software Foundation. +## +## 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 +## + +driver-y += vt8235.o +driver-y += vt8235_ide.o +driver-y += vt8235_lpc.o +driver-y += vt8235_nic.o +driver-y += vt8235_usb.o -- cgit v1.2.3