diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2016-09-06 23:03:04 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-30 17:12:36 +0200 |
commit | 0b9ecb5831bdba869035e70f0773596881a97d27 (patch) | |
tree | 0d224518bbb8deccac0163a2c05bc840134f8a16 | |
parent | b59bcb2d5f6c6be2d008d9108a1a7afb73a37e23 (diff) |
mb/intel/d945gclf: Allow use of native graphic init
Add PCI device id to native graphic init and add the Native graphic init
option in Kconfig.
Change-Id: I136122daef70547830bcc87f568406be7162461f
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/16512
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | src/mainboard/intel/d945gclf/Kconfig | 2 | ||||
-rw-r--r-- | src/northbridge/intel/i945/gma.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mainboard/intel/d945gclf/Kconfig b/src/mainboard/intel/d945gclf/Kconfig index 429a3040f2..a83e613dd3 100644 --- a/src/mainboard/intel/d945gclf/Kconfig +++ b/src/mainboard/intel/d945gclf/Kconfig @@ -29,6 +29,8 @@ config BOARD_SPECIFIC_OPTIONS # dummy select HAVE_ACPI_RESUME select BOARD_ROMSIZE_KB_512 select CHANNEL_XOR_RANDOMIZATION + select MAINBOARD_HAS_NATIVE_VGA_INIT + select INTEL_EDID config MAINBOARD_DIR string diff --git a/src/northbridge/intel/i945/gma.c b/src/northbridge/intel/i945/gma.c index 2bbde4610a..3bfb5b13a6 100644 --- a/src/northbridge/intel/i945/gma.c +++ b/src/northbridge/intel/i945/gma.c @@ -726,7 +726,7 @@ static struct device_operations gma_func1_ops = { .ops_pci = &gma_pci_ops, }; -static const unsigned short pci_device_ids[] = { 0x27a2, 0x27ae, 0 }; +static const unsigned short pci_device_ids[] = { 0x27a2, 0x27ae, 0x2772, 0 }; static const struct pci_driver i945_gma_func0_driver __pci_driver = { .ops = &gma_func0_ops, |