diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-06-05 11:57:57 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-06-10 10:24:51 +0800 |
commit | 4f40b33ef4b069b18a6a18406da83a23ca6e1127 (patch) | |
tree | 157371b99422bc1ed26e904fe978212b0e88e9b1 /src/i810_driver.c | |
parent | accdbd23676d812d2345f86d8e3ee62f108841ff (diff) |
Add new chipsets PCI ids
Desktop and mobile version of new chipsets are added.
Also do memory config like Intel 4 series chipset.
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r-- | src/i810_driver.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index 21c35da1..4b8c4590 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -138,6 +138,8 @@ static const struct pci_id_match intel_device_match[] = { INTEL_DEVICE_MATCH (PCI_CHIP_G45_G, 0 ), INTEL_DEVICE_MATCH (PCI_CHIP_Q45_G, 0 ), INTEL_DEVICE_MATCH (PCI_CHIP_G41_G, 0 ), + INTEL_DEVICE_MATCH (PCI_CHIP_IGDNG_D_G, 0 ), + INTEL_DEVICE_MATCH (PCI_CHIP_IGDNG_M_G, 0 ), { 0, 0, 0 }, }; @@ -189,6 +191,8 @@ static SymTabRec I810Chipsets[] = { {PCI_CHIP_G45_G, "G45/G43"}, {PCI_CHIP_Q45_G, "Q45/Q43"}, {PCI_CHIP_G41_G, "G41"}, + {PCI_CHIP_IGDNG_D_G, "IGDNG_D"}, + {PCI_CHIP_IGDNG_M_G, "IGDNG_M"}, {-1, NULL} }; @@ -225,6 +229,8 @@ static PciChipsets I810PciChipsets[] = { {PCI_CHIP_G45_G, PCI_CHIP_G45_G, RES_SHARED_VGA}, {PCI_CHIP_Q45_G, PCI_CHIP_Q45_G, RES_SHARED_VGA}, {PCI_CHIP_G41_G, PCI_CHIP_G41_G, RES_SHARED_VGA}, + {PCI_CHIP_IGDNG_D_G, PCI_CHIP_IGDNG_D_G, RES_SHARED_VGA}, + {PCI_CHIP_IGDNG_M_G, PCI_CHIP_IGDNG_M_G, RES_SHARED_VGA}, {-1, -1, RES_UNDEFINED } }; |