Author: uwe Date: 2009-07-05 18:23:43 +0200 (Sun, 05 Jul 2009) New Revision: 4400
Modified: trunk/coreboot-v2/src/northbridge/intel/i82810/raminit.c Log: Fix build for i810 boards that don't enable onboard VGA, yet.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: trunk/coreboot-v2/src/northbridge/intel/i82810/raminit.c =================================================================== --- trunk/coreboot-v2/src/northbridge/intel/i82810/raminit.c 2009-07-05 16:01:57 UTC (rev 4399) +++ trunk/coreboot-v2/src/northbridge/intel/i82810/raminit.c 2009-07-05 16:23:43 UTC (rev 4400) @@ -371,10 +371,12 @@ /* Set size for onboard-VGA framebuffer. */ reg8 = pci_read_config8(PCI_DEV(0, 0, 0), SMRAM); reg8 &= 0x3f; /* Disable graphics (for now). */ +#ifdef CONFIG_VIDEO_MB if (CONFIG_VIDEO_MB == 512) reg8 |= (1 << 7); /* Enable graphics (512KB RAM). */ else if (CONFIG_VIDEO_MB == 1) reg8 |= (1 << 7) | (1 << 6); /* Enable graphics (1MB RAM). */ +#endif pci_write_config8(PCI_DEV(0, 0, 0), SMRAM, reg8);
/* MISSC2: Bits 1, 2, 6, 7 must be set for VGA (see datasheet). */