Blame SOURCES/06_use-intel-only-on-pre-gen4.diff

976099
Description: Use intel ddx only on pre-gen4 hw, newer ones will fall back to modesetting
976099
Author: Timo Aaltonen <tjaalton@debian.org>
976099
976099
--- a/hw/xfree86/common/xf86pciBus.c
976099
+++ b/hw/xfree86/common/xf86pciBus.c
976099
@@ -1173,7 +1173,23 @@ xf86VideoPtrToDriverList(struct pci_devi
976099
 		case 0x0bef:
976099
 			/* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
976099
 			break;
976099
-		default:
976099
+		/* Default to intel only on pre-gen4 chips */
976099
+		case 0x3577:
976099
+		case 0x2562:
976099
+		case 0x3582:
976099
+		case 0x358e:
976099
+		case 0x2572:
976099
+		case 0x2582:
976099
+		case 0x258a:
976099
+		case 0x2592:
976099
+		case 0x2772:
976099
+		case 0x27a2:
976099
+		case 0x27ae:
976099
+		case 0x29b2:
976099
+		case 0x29c2:
976099
+		case 0x29d2:
976099
+		case 0xa001:
976099
+		case 0xa011:
976099
 			driverList[0] = "intel";
976099
 			break;
976099
         }