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>
This commit is contained in:
Arthur Heymans 2016-12-16 15:32:32 +01:00 committed by Nico Huber
parent 2fe0d75d42
commit 9e70ce0c3e
1 changed files with 7 additions and 1 deletions

View File

@ -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 = {