diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-25 18:43:02 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-25 18:43:02 +0000 |
commit | 88f55b2c12f94fd0451902ee2edc663f12e401f4 (patch) | |
tree | 446179d449934a1dafeb2a2df44b8a515e380807 /src/northbridge/via | |
parent | 6bb3bdf869ab06a972520c5a58c6fc9b7cfe99f4 (diff) |
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 <patrick.georgi@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4673 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/via')
-rw-r--r-- | src/northbridge/via/Kconfig | 8 | ||||
-rw-r--r-- | src/northbridge/via/Makefile.inc | 8 | ||||
-rw-r--r-- | src/northbridge/via/cn700/Kconfig | 13 | ||||
-rw-r--r-- | src/northbridge/via/cn700/Makefile.inc | 26 | ||||
-rw-r--r-- | src/northbridge/via/vt8601/Kconfig | 13 | ||||
-rw-r--r-- | src/northbridge/via/vt8601/Makefile.inc | 22 | ||||
-rw-r--r-- | src/northbridge/via/vt8623/Kconfig | 13 | ||||
-rw-r--r-- | src/northbridge/via/vt8623/Makefile.inc | 22 | ||||
-rw-r--r-- | src/northbridge/via/vx800/Kconfig | 8 | ||||
-rw-r--r-- | src/northbridge/via/vx800/Makefile.inc | 27 |
10 files changed, 152 insertions, 8 deletions
diff --git a/src/northbridge/via/Kconfig b/src/northbridge/via/Kconfig index 5c62bde34d..2c38acf55a 100644 --- a/src/northbridge/via/Kconfig +++ b/src/northbridge/via/Kconfig @@ -1,6 +1,6 @@ -#source src/northbridge/via/cn700/Kconfig +source src/northbridge/via/cn700/Kconfig source src/northbridge/via/cx700/Kconfig source src/northbridge/via/cn400/Kconfig -#source src/northbridge/via/vt8601/Kconfig -#source src/northbridge/via/vt8623/Kconfig -#source src/northbridge/via/vx800/Kconfig +source src/northbridge/via/vt8601/Kconfig +source src/northbridge/via/vt8623/Kconfig +source src/northbridge/via/vx800/Kconfig diff --git a/src/northbridge/via/Makefile.inc b/src/northbridge/via/Makefile.inc index 95ac7ecb79..75cb15b045 100644 --- a/src/northbridge/via/Makefile.inc +++ b/src/northbridge/via/Makefile.inc @@ -1,7 +1,7 @@ -#subdirs-y += vt8601 -#subdirs-y += vt8623 -#subdirs-y += cn700 +subdirs-$(CONFIG_NORTHBRIDGE_VIA_VT8601) += vt8601 +subdirs-$(CONFIG_NORTHBRIDGE_VIA_VT8623) += vt8623 +subdirs-$(CONFIG_NORTHBRIDGE_VIA_CN700) += cn700 subdirs-$(CONFIG_NORTHBRIDGE_VIA_CX700) += cx700 subdirs-$(CONFIG_NORTHBRIDGE_VIA_CN400) += cn400 -#subdirs-y += vx800 +subdirs-$(CONFIG_NORTHBRIDGE_VIA_VX800) += vx800 diff --git a/src/northbridge/via/cn700/Kconfig b/src/northbridge/via/cn700/Kconfig new file mode 100644 index 0000000000..5395416c19 --- /dev/null +++ b/src/northbridge/via/cn700/Kconfig @@ -0,0 +1,13 @@ +config NORTHBRIDGE_VIA_CN700 + bool + default n + +config FALLBACK_SIZE + int + default 0 + depends on NORTHBRIDGE_VIA_CN700 + +config HAVE_HIGH_TABLES + bool + default y + depends on NORTHBRIDGE_VIA_CN700 diff --git a/src/northbridge/via/cn700/Makefile.inc b/src/northbridge/via/cn700/Makefile.inc new file mode 100644 index 0000000000..b63847d858 --- /dev/null +++ b/src/northbridge/via/cn700/Makefile.inc @@ -0,0 +1,26 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com> +## +## 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 +## + +obj-y += vgabios.o + +driver-y += northbridge.o +driver-y += agp.o +driver-y += vga.o + diff --git a/src/northbridge/via/vt8601/Kconfig b/src/northbridge/via/vt8601/Kconfig new file mode 100644 index 0000000000..5f5a672654 --- /dev/null +++ b/src/northbridge/via/vt8601/Kconfig @@ -0,0 +1,13 @@ +config NORTHBRIDGE_VIA_VT8601 + bool + default n + +config FALLBACK_SIZE + int + default 0 + depends on NORTHBRIDGE_VIA_VT8601 + +config HAVE_HIGH_TABLES + bool + default y + depends on NORTHBRIDGE_VIA_VT8601 diff --git a/src/northbridge/via/vt8601/Makefile.inc b/src/northbridge/via/vt8601/Makefile.inc new file mode 100644 index 0000000000..c9dc918ecc --- /dev/null +++ b/src/northbridge/via/vt8601/Makefile.inc @@ -0,0 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com> +## +## 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 +## + +driver-y += northbridge.o + diff --git a/src/northbridge/via/vt8623/Kconfig b/src/northbridge/via/vt8623/Kconfig new file mode 100644 index 0000000000..3976ed1f65 --- /dev/null +++ b/src/northbridge/via/vt8623/Kconfig @@ -0,0 +1,13 @@ +config NORTHBRIDGE_VIA_VT8623 + bool + default n + +config FALLBACK_SIZE + int + default 0 + depends on NORTHBRIDGE_VIA_VT8623 + +config HAVE_HIGH_TABLES + bool + default y + depends on NORTHBRIDGE_VIA_VT8623 diff --git a/src/northbridge/via/vt8623/Makefile.inc b/src/northbridge/via/vt8623/Makefile.inc new file mode 100644 index 0000000000..c9dc918ecc --- /dev/null +++ b/src/northbridge/via/vt8623/Makefile.inc @@ -0,0 +1,22 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com> +## +## 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 +## + +driver-y += northbridge.o + diff --git a/src/northbridge/via/vx800/Kconfig b/src/northbridge/via/vx800/Kconfig new file mode 100644 index 0000000000..104387db51 --- /dev/null +++ b/src/northbridge/via/vx800/Kconfig @@ -0,0 +1,8 @@ +config NORTHBRIDGE_VIA_VX800 + bool + default n + +config FALLBACK_SIZE + int + default 0 + depends on NORTHBRIDGE_VIA_VX800 diff --git a/src/northbridge/via/vx800/Makefile.inc b/src/northbridge/via/vx800/Makefile.inc new file mode 100644 index 0000000000..12b3ef4caf --- /dev/null +++ b/src/northbridge/via/vx800/Makefile.inc @@ -0,0 +1,27 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com> +## +## 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 +## + +obj-y += vgabios.o + +driver-y += northbridge.o +driver-y += vga.o +driver-y += vx800_lpc.o +driver-y += vx800_ide.o + |