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

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