aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/x4x
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2016-12-16 15:32:32 +0100
committerNico Huber <nico.h@gmx.de>2016-12-17 13:38:03 +0100
commit9e70ce0c3ec823a41abc1f44b642d1bdfb14b4cb (patch)
treed562d99cb8e104046dbe4bc11ab3ff6a53df175e /src/northbridge/intel/x4x
parent2fe0d75d42904b224be344b1865a2582b20ecea2 (diff)
nb/x4x: Add other Eaglelake IGD PCI DID to list
Currently only there is only one eaglelake board in coreboot (ga-g41m-es2l) featuring a G41 variant northbridge. Adding boards with a different variant (Q43, Q45, G43, G45, B43) will require this change for graphic initialisation. Change-Id: Ida32c563a99576b66685dfdadf9a534fd6e197dc Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/17900 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/intel/x4x')
-rw-r--r--src/northbridge/intel/x4x/gma.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/northbridge/intel/x4x/gma.c b/src/northbridge/intel/x4x/gma.c
index 76ab893896..74250fea4d 100644
--- a/src/northbridge/intel/x4x/gma.c
+++ b/src/northbridge/intel/x4x/gma.c
@@ -424,7 +424,13 @@ static struct device_operations gma_func0_ops = {
static const unsigned short pci_device_ids[] =
{
- 0x2e32, 0
+ 0x2e02, /* Eaglelake */
+ 0x2e12, /* Q43/Q45 */
+ 0x2e22, /* G43/G45 */
+ 0x2e32, /* G41 */
+ 0x2e42, /* B43 */
+ 0x2e92, /* B43_I */
+ 0
};
static const struct pci_driver gma __pci_driver = {