diff options
author | Dave Airlie <airlied@redhat.com> | 2007-11-20 09:08:04 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2007-11-20 09:08:04 +1000 |
commit | 0d1e0c7805b3d8e56ccb49465e6b144afb7bdc51 (patch) | |
tree | 59102e282ac9cb0d4f982c588927cd949f096f96 | |
parent | d5909b30595c103bb5f42cd1704330f944bba49c (diff) |
r5xx: add 71c5 for macbook pro
-rw-r--r-- | src/atipciids.h | 1 | ||||
-rw-r--r-- | src/radeon_chipset.h | 1 | ||||
-rw-r--r-- | src/radeon_driver.c | 5 | ||||
-rw-r--r-- | src/radeon_probe.c | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/src/atipciids.h b/src/atipciids.h index 7f50dfb0..902bddc3 100644 --- a/src/atipciids.h +++ b/src/atipciids.h @@ -289,6 +289,7 @@ #define PCI_CHIP_R520_7104 0x7104 #define PCI_CHIP_RV515_7142 0x7142 #define PCI_CHIP_RV515_7183 0x7183 +#define PCI_CHIP_RV530_71C5 0x71C5 #define PCI_CHIP_R580_7249 0x7249 #define PCI_CHIP_RV570_7280 0x7280 diff --git a/src/radeon_chipset.h b/src/radeon_chipset.h index 6568fcc5..892717aa 100644 --- a/src/radeon_chipset.h +++ b/src/radeon_chipset.h @@ -139,6 +139,7 @@ static SymTabRec RADEONChipsets[] = { { 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)"}, + { PCI_CHIP_RV530_71C5, "ATI Mobility Radeon X1600" }, { PCI_CHIP_R520_7104, "ATI FireGL V7200 (PCIE)" }, { PCI_CHIP_R580_7249, "ATI Radeon X1900 XT"}, { PCI_CHIP_RV570_7280, "ATI Radeon X1950 Pro (PCIE)" }, diff --git a/src/radeon_driver.c b/src/radeon_driver.c index 55f279bf..0da3cfe3 100644 --- a/src/radeon_driver.c +++ b/src/radeon_driver.c @@ -1847,6 +1847,11 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn) info->ChipFamily = CHIP_FAMILY_R520; break; + case PCI_CHIP_RV530_71C5: + info->ChipFamily = CHIP_FAMILY_RV570; + info->IsMobility = TRUE; + break; + case PCI_CHIP_R580_7249: info->ChipFamily = CHIP_FAMILY_R580; break; diff --git a/src/radeon_probe.c b/src/radeon_probe.c index fe6f7591..d4036f6a 100644 --- a/src/radeon_probe.c +++ b/src/radeon_probe.c @@ -195,6 +195,7 @@ PciChipsets RADEONPciChipsets[] = { { PCI_CHIP_R520_7104, PCI_CHIP_R520_7104, 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 }, + { PCI_CHIP_RV530_71C5, PCI_CHIP_RV530_71C5, RES_SHARED_VGA }, { PCI_CHIP_R580_7249, PCI_CHIP_R580_7249, RES_SHARED_VGA }, { PCI_CHIP_RV570_7280, PCI_CHIP_RV570_7280, RES_SHARED_VGA }, |