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

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