Arthur Heymans (arthur@aheymans.xyz) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17900
-gerrit
commit 938b1bdee76a3862eca7b617ac2152f2b1579fde Author: Arthur Heymans arthur@aheymans.xyz Date: Fri Dec 16 15:32:32 2016 +0100
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 native graphic init to be used.
Change-Id: Ida32c563a99576b66685dfdadf9a534fd6e197dc Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- src/northbridge/intel/x4x/gma.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/northbridge/intel/x4x/gma.c b/src/northbridge/intel/x4x/gma.c index 76ab893..74250fe 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 = {