diff drivers/radeon/radeonfb.c @ 3940:db3a8c95bcf7

Added support of Radeon2 8500 AIW Ugly fix (from non-x86 point) of FPU problems for Radeons color correction Added checking of boundaries during color correction on Radeon
author nick
date Wed, 02 Jan 2002 09:37:37 +0000
parents 33bbfea73af3
children ca2ff7e1b66e
line wrap: on
line diff
--- a/drivers/radeon/radeonfb.c	Wed Jan 02 00:45:41 2002 +0000
+++ b/drivers/radeon/radeonfb.c	Wed Jan 02 09:37:37 2002 +0000
@@ -124,6 +124,7 @@
 	RADEON_LZ,
 	RADEON_LW,
 	R200_QL,
+	R200_BB,
 	RV200_QW
 };
 
@@ -148,6 +149,7 @@
 	{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LZ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LZ},
 	{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LW, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LW},
 	{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_R200_QL, PCI_ANY_ID, PCI_ANY_ID, 0, 0, R200_QL},
+	{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_R200_BB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, R200_BB},
 	{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RV200_QW, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RV200_QW},
 	{ 0, }
 };
@@ -1081,6 +1083,11 @@
 			rinfo->isR200 = 1;
 			strcpy(rinfo->name, "Radeon2 8500 QL ");
 			break;
+		case PCI_DEVICE_ID_R200_BB:
+			rinfo->hasCRTC2 = 1;
+			rinfo->isR200 = 1;
+			strcpy(rinfo->name, "Radeon2 8500 AIW");
+			break;
 		case PCI_DEVICE_ID_RV200_QW:
 			rinfo->hasCRTC2 = 1;
 			rinfo->isM7 = 1;