diff options
author | Alex Deucher <alex@botch2.(none)> | 2007-11-08 19:33:13 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2007-11-08 19:33:13 -0500 |
commit | 83f170c32c08c74a9e3466ffa0e0a0606c74427b (patch) | |
tree | 1fbf6a0c8f5c876446d205670b1dfeaa31f3b70d | |
parent | 5cdcaba0f6e9de2d15cfcc109ab97d9fd423e3bf (diff) |
add pci ids for X1550PRO
-rw-r--r-- | src/atipciids.h | 1 | ||||
-rw-r--r-- | src/radeon_chipset.h | 2 | ||||
-rw-r--r-- | src/radeon_driver.c | 1 | ||||
-rw-r--r-- | src/radeon_probe.c | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/src/atipciids.h b/src/atipciids.h index ab74492f..685b8115 100644 --- a/src/atipciids.h +++ b/src/atipciids.h @@ -287,6 +287,7 @@ #define PCI_CHIP_RS350_7835 0x7835 #define PCI_CHIP_RV515_7142 0x7142 +#define PCI_CHIP_RV515_7183 0x7183 /* Misc */ diff --git a/src/radeon_chipset.h b/src/radeon_chipset.h index 890babdb..d6d8bae6 100644 --- a/src/radeon_chipset.h +++ b/src/radeon_chipset.h @@ -137,6 +137,8 @@ static SymTabRec RADEONChipsets[] = { { PCI_CHIP_R481_4B4A, "ATI Radeon X850 SE (R480) (AGP)" }, { PCI_CHIP_R481_4B49, "ATI Radeon X850 XT (R480) (AGP)" }, { PCI_CHIP_R481_4B4C, "ATI Radeon X850 XT PE (R480) (AGP)" }, + { PCI_CHIP_RV515_7142, "ATI AVIVO X1300 (PCIE)"}, + { PCI_CHIP_RV515_7183, "ATI AVIVO X1550PRO (PCI/PCIE)"}, { -1, NULL } }; diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 99144465..e49ad423 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1838,6 +1838,7 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) break; case PCI_CHIP_RV515_7142: + case PCI_CHIP_RV515_7183: info->ChipFamily = CHIP_FAMILY_RV515; break; diff --git a/src/radeon_probe.c b/src/radeon_probe.c index 5253cd7a..7a3c9081 100644 --- a/src/radeon_probe.c +++ b/src/radeon_probe.c @@ -193,6 +193,7 @@ PciChipsets RADEONPciChipsets[] = { { PCI_CHIP_R481_4B49, PCI_CHIP_R481_4B49, RES_SHARED_VGA }, { PCI_CHIP_R481_4B4C, PCI_CHIP_R481_4B4C, RES_SHARED_VGA }, { PCI_CHIP_RV515_7142, PCI_CHIP_RV515_7142, RES_SHARED_VGA }, + { PCI_CHIP_RV515_7183, PCI_CHIP_RV515_7183, RES_SHARED_VGA }, { -1, -1, RES_UNDEFINED } }; |