diff options
author | Joseph Smith <joe@settoplinux.org> | 2010-06-20 18:59:40 +0000 |
---|---|---|
committer | Joseph Smith <joe@smittys.pointclark.net> | 2010-06-20 18:59:40 +0000 |
commit | 992ae486c7f4eddca9046be8bed250292b0fbd28 (patch) | |
tree | 00a65b7b61d7363575954a9a9767cfc1e0a29351 /src/mainboard/hp | |
parent | bfca8efab37497dba0753f38d914a759b007be0e (diff) |
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/hp')
-rw-r--r-- | src/mainboard/hp/e_vectra_p2706t/Kconfig | 2 | ||||
-rw-r--r-- | src/mainboard/hp/e_vectra_p2706t/mainboard.c | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/hp/e_vectra_p2706t/Kconfig b/src/mainboard/hp/e_vectra_p2706t/Kconfig index 9c6a43ac1b..67118c0793 100644 --- a/src/mainboard/hp/e_vectra_p2706t/Kconfig +++ b/src/mainboard/hp/e_vectra_p2706t/Kconfig @@ -31,6 +31,8 @@ config BOARD_HP_E_VECTRA_P2706T select HAVE_PIRQ_TABLE select UDELAY_TSC select BOARD_ROMSIZE_KB_512 + select HAVE_MAINBOARD_RESOURCES + select GFXUMA config MAINBOARD_DIR string diff --git a/src/mainboard/hp/e_vectra_p2706t/mainboard.c b/src/mainboard/hp/e_vectra_p2706t/mainboard.c index 1e27514b0e..74339e935c 100644 --- a/src/mainboard/hp/e_vectra_p2706t/mainboard.c +++ b/src/mainboard/hp/e_vectra_p2706t/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("HP e-Vectra P2706T Mainboard") }; |