mb/intel/d510mo: Use native gfx initialization
Change-Id: Ic4de7a762e90b379be3814afc61467e1cd099215 Signed-off-by: Damien Zammit <damien@zamaudio.com> Reviewed-on: https://review.coreboot.org/13034 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
parent
301999f4b8
commit
761c2942ef
|
@ -23,6 +23,8 @@ config BOARD_SPECIFIC_OPTIONS
|
|||
select SUPERIO_WINBOND_W83627THG
|
||||
select HAVE_ACPI_TABLES
|
||||
select BOARD_ROMSIZE_KB_1024
|
||||
select MAINBOARD_HAS_NATIVE_VGA_INIT
|
||||
select INTEL_INT15
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
|
|
@ -15,14 +15,20 @@
|
|||
#
|
||||
|
||||
chip northbridge/intel/pineview # Northbridge
|
||||
register "gfx.use_spread_spectrum_clock" = "0"
|
||||
register "use_crt" = "1"
|
||||
register "use_lvds" = "0"
|
||||
|
||||
device cpu_cluster 0 on # APIC cluster
|
||||
chip cpu/intel/socket_FCBGA559 # CPU
|
||||
device lapic 0 on end # APIC
|
||||
end
|
||||
end
|
||||
device domain 0 on # PCI domain
|
||||
device domain 0 on # PCI domain
|
||||
device pci 0.0 on end # Host Bridge
|
||||
device pci 2.0 off end # Integrated graphics controller
|
||||
device pci 1.0 off end # PEG
|
||||
device pci 2.0 on end # Integrated graphics controller
|
||||
device pci 2.1 on end # Integrated graphics controller 2
|
||||
chip southbridge/intel/i82801gx # Southbridge
|
||||
register "pirqa_routing" = "0x0b"
|
||||
register "pirqb_routing" = "0x0b"
|
||||
|
|
|
@ -18,10 +18,12 @@
|
|||
#include <device/pci_ops.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <device/pci.h>
|
||||
#include <drivers/intel/gma/int15.h>
|
||||
|
||||
static void mainboard_enable(device_t dev)
|
||||
{
|
||||
dev->ops->init = NULL;
|
||||
install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_NONE,
|
||||
GMA_INT15_PANEL_FIT_DEFAULT, GMA_INT15_BOOT_DISPLAY_CRT, 0);
|
||||
}
|
||||
|
||||
struct chip_operations mainboard_ops = {
|
||||
|
|
Loading…
Reference in New Issue