HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9804
-gerrit
commit 776853ba5fa0a1c0413e5f6ffa8cb353223410e3 Author: Elyes HAOUAS ehaouas@noos.fr Date: Tue May 12 22:30:11 2015 +0200
Add 82945G/GC/GZ Integrated Graphics Controller PCI IDs.
Change-Id: I548368ca580c2c4ec98d90778054ec12ad5b290e Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/northbridge/intel/i945/gma.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/src/northbridge/intel/i945/gma.c b/src/northbridge/intel/i945/gma.c index e5974c9..5b0072e 100644 --- a/src/northbridge/intel/i945/gma.c +++ b/src/northbridge/intel/i945/gma.c @@ -514,16 +514,27 @@ 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 i945_gma_func0_ids[] = { + 0x2772 + 0x27a2, + 0x27ae, + 0 +}; + +static const unsigned short i945_gma_func1_ids[] = { + 0x2776, + 0x27a6, + 0 +};
static const struct pci_driver i945_gma_func0_driver __pci_driver = { .ops = &gma_func0_ops, .vendor = PCI_VENDOR_ID_INTEL, - .devices = pci_device_ids, + .devices = i945_gma_func0_ids, };
static const struct pci_driver i945_gma_func1_driver __pci_driver = { .ops = &gma_func1_ops, .vendor = PCI_VENDOR_ID_INTEL, - .device = 0x27a6, + .devices = i945_gma_func1_ids, };