summaryrefslogtreecommitdiff
path: root/src/mainboard/msi/ms6178
diff options
context:
space:
mode:
authorJoseph Smith <joe@settoplinux.org>2010-06-20 18:59:40 +0000
committerJoseph Smith <joe@smittys.pointclark.net>2010-06-20 18:59:40 +0000
commit992ae486c7f4eddca9046be8bed250292b0fbd28 (patch)
tree00a65b7b61d7363575954a9a9767cfc1e0a29351 /src/mainboard/msi/ms6178
parentbfca8efab37497dba0753f38d914a759b007be0e (diff)
downloadcoreboot-992ae486c7f4eddca9046be8bed250292b0fbd28.tar.xz
This patch implements GFXUMA on all supported i810 boards. Also some fix-ups to the i810 northbridge.c code.
Signed-off-by: Joseph Smith <joe@settoplinux.org> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5635 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/msi/ms6178')
-rw-r--r--src/mainboard/msi/ms6178/Kconfig2
-rw-r--r--src/mainboard/msi/ms6178/mainboard.c6
2 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/msi/ms6178/Kconfig b/src/mainboard/msi/ms6178/Kconfig
index a4bb5487b9..b5cef0e695 100644
--- a/src/mainboard/msi/ms6178/Kconfig
+++ b/src/mainboard/msi/ms6178/Kconfig
@@ -27,6 +27,8 @@ config BOARD_MSI_MS_6178
select ROMCC
select HAVE_PIRQ_TABLE
select BOARD_ROMSIZE_KB_512
+ select HAVE_MAINBOARD_RESOURCES
+ select GFXUMA
config MAINBOARD_DIR
string
diff --git a/src/mainboard/msi/ms6178/mainboard.c b/src/mainboard/msi/ms6178/mainboard.c
index c3fdd81bbc..e4ba148d40 100644
--- a/src/mainboard/msi/ms6178/mainboard.c
+++ b/src/mainboard/msi/ms6178/mainboard.c
@@ -19,8 +19,14 @@
*/
#include <device/device.h>
+#include <boot/tables.h>
#include "chip.h"
+int add_mainboard_resources(struct lb_memory *mem)
+{
+ return add_northbridge_resources(mem);
+}
+
struct chip_operations mainboard_ops = {
CHIP_NAME("MSI MS-6178 Mainboard")
};