summaryrefslogtreecommitdiff
path: root/src/intel_module.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-07-09 12:12:13 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2010-07-09 12:12:13 +0100
commit6fba8c449f61341a98a5ae8d97effa6fd0610fd4 (patch)
treeaa2c5c15251f6f304f49367a528d41fa7f4a75d9 /src/intel_module.c
parent141e88c8730a099a6ca5eab1350c2e53a680cb0d (diff)
Add support for I854.
I spotted that the kernel knew of the I854, but the pci-id was never added to the ddx. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_module.c')
-rw-r--r--src/intel_module.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/intel_module.c b/src/intel_module.c
index 42350d43..5e649894 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -44,6 +44,7 @@ static const SymTabRec _intel_chipsets[] = {
{PCI_CHIP_I815, "i815"},
{PCI_CHIP_I830_M, "i830M"},
{PCI_CHIP_845_G, "845G"},
+ {PCI_CHIP_I854, "854"},
{PCI_CHIP_I855_GM, "852GM/855GM"},
{PCI_CHIP_I865_G, "865G"},
{PCI_CHIP_I915_G, "915G"},
@@ -85,6 +86,7 @@ static const struct pci_id_match intel_device_match[] = {
INTEL_DEVICE_MATCH (PCI_CHIP_I815, 0 ),
INTEL_DEVICE_MATCH (PCI_CHIP_I830_M, 0 ),
INTEL_DEVICE_MATCH (PCI_CHIP_845_G, 0 ),
+ INTEL_DEVICE_MATCH (PCI_CHIP_I854, 0 ),
INTEL_DEVICE_MATCH (PCI_CHIP_I855_GM, 0 ),
INTEL_DEVICE_MATCH (PCI_CHIP_I865_G, 0 ),
INTEL_DEVICE_MATCH (PCI_CHIP_I915_G, 0 ),
@@ -124,6 +126,7 @@ static PciChipsets intel_pci_chipsets[] = {
{PCI_CHIP_I815, PCI_CHIP_I815, NULL},
{PCI_CHIP_I830_M, PCI_CHIP_I830_M, NULL},
{PCI_CHIP_845_G, PCI_CHIP_845_G, NULL},
+ {PCI_CHIP_I854, PCI_CHIP_I854, NULL},
{PCI_CHIP_I855_GM, PCI_CHIP_I855_GM, NULL},
{PCI_CHIP_I865_G, PCI_CHIP_I865_G, NULL},
{PCI_CHIP_I915_G, PCI_CHIP_I915_G, NULL},
@@ -179,6 +182,9 @@ void intel_detect_chipset(ScrnInfoPtr scrn,
case PCI_CHIP_845_G:
chipset->name = "845G";
break;
+ case PCI_CHIP_I854:
+ chipset->name = "854";
+ break;
case PCI_CHIP_I855_GM:
/* Check capid register to find the chipset variant */
pci_device_cfg_read_u32(pci, &capid, I85X_CAPID);