aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-03 04:27:39 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-01-04 12:20:47 +0100
commit503e4fef17666b1145aba21313f471ddb727a074 (patch)
tree28d0239ec5de9b5485c94825264520f50f423635 /src/northbridge
parent47777569d234ff4ed0703ac176586bd09d3ed992 (diff)
X201: Fix native video init
Due to recent restructuring X201 native video init has disappeared from config options. Put it back and fix compilation with it. Change-Id: I6d9ba5da196c093abd2df89a6fe5efefece1fb3c Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4606 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/nehalem/gma.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/northbridge/intel/nehalem/gma.c b/src/northbridge/intel/nehalem/gma.c
index 31068d11fa..c7a0e9b941 100644
--- a/src/northbridge/intel/nehalem/gma.c
+++ b/src/northbridge/intel/nehalem/gma.c
@@ -548,10 +548,12 @@ static void gma_pm_init_pre_vbios(struct device *dev)
#include <pc80/vga.h>
#include <pc80/vga_io.h>
+#if CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
static void fake_vbios(void)
{
#include "fake_vbios.c"
}
+#endif
static void gma_pm_init_post_vbios(struct device *dev)
{
@@ -635,8 +637,8 @@ static void gma_func0_init(struct device *dev)
pci_dev_init(dev);
#else
printk(BIOS_SPEW, "Initializing VGA without OPROM.\n");
-#endif
fake_vbios();
+#endif
/* Linux relies on VBT for panel info. */
if (read16(0xc0000) != 0xaa55) {
@@ -670,18 +672,6 @@ static void gma_func0_init(struct device *dev)
/* Post VBIOS init */
gma_pm_init_post_vbios(dev);
-
-#if CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
- /* This should probably run before post VBIOS init. */
- u32 iobase, mmiobase, physbase, graphics_base;
- iobase = dev->resource_list[2].base;
- mmiobase = dev->resource_list[0].base;
- physbase = pci_read_config32(dev, 0x5c) & ~0xf;
- graphics_base = dev->resource_list[1].base;
-
- int i915lightup(u32 physbase, u32 iobase, u32 mmiobase, u32 gfx);
- i915lightup(physbase, iobase, mmiobase, graphics_base);
-#endif
}
static void gma_set_subsystem(device_t dev, unsigned vendor, unsigned device)