summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2007-11-19 15:46:58 +1000
committerDave Airlie <airlied@redhat.com>2007-11-19 15:46:58 +1000
commitc19123fd9483758eb6b286c3dffcb6d79d5b1ee5 (patch)
tree39a68f7093f23c9ef34a1bcdd9d8be853e7bd62b
parent52aba8d73189ba959f19c0437499d5e7a8829827 (diff)
add firegl card on ajaxs machine
-rw-r--r--src/atipciids.h1
-rw-r--r--src/radeon_chipset.h1
-rw-r--r--src/radeon_driver.c4
-rw-r--r--src/radeon_probe.c1
4 files changed, 7 insertions, 0 deletions
diff --git a/src/atipciids.h b/src/atipciids.h
index 9c45c24d..62b56c00 100644
--- a/src/atipciids.h
+++ b/src/atipciids.h
@@ -286,6 +286,7 @@
#define PCI_CHIP_RS350_7834 0x7834
#define PCI_CHIP_RS350_7835 0x7835
+#define PCI_CHIP_R520_7104 0x7104
#define PCI_CHIP_RV515_7142 0x7142
#define PCI_CHIP_RV515_7183 0x7183
#define PCI_CHIP_R580_7249 0x7249
diff --git a/src/radeon_chipset.h b/src/radeon_chipset.h
index b2e20d20..2c26ce7f 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_R520_7104, "ATI FireGL V7200 (PCIE)" },
{ PCI_CHIP_R580_7249, "ATI Radeon X1900 XT"},
{ -1, NULL }
diff --git a/src/radeon_driver.c b/src/radeon_driver.c
index fa04413f..8eb0bc36 100644
--- a/src/radeon_driver.c
+++ b/src/radeon_driver.c
@@ -1843,6 +1843,10 @@ static Bool RADEONPreInitChipType(ScrnInfoPtr pScrn)
info->ChipFamily = CHIP_FAMILY_RV515;
break;
+ case PCI_CHIP_R520_7104:
+ info->ChipFamily = CHIP_FAMILY_R520;
+ 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 c1ed1059..9b77f331 100644
--- a/src/radeon_probe.c
+++ b/src/radeon_probe.c
@@ -192,6 +192,7 @@ PciChipsets RADEONPciChipsets[] = {
{ PCI_CHIP_R481_4B4A, PCI_CHIP_R481_4B4A, RES_SHARED_VGA },
{ PCI_CHIP_R481_4B49, PCI_CHIP_R481_4B49, RES_SHARED_VGA },
{ PCI_CHIP_R481_4B4C, PCI_CHIP_R481_4B4C, RES_SHARED_VGA },
+ { 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_R580_7249, PCI_CHIP_R580_7249, RES_SHARED_VGA },