On Broadwell, default to using the modesetting driver. Our KMS support on

Broadwell is still a bit weak and the modesetting driver seems to work
better than the intel driver, while still providing 3D acceleration and
video playback support.

ok phessler@, matthieu@, jsg@
This commit is contained in:
kettenis 2015-12-21 08:37:11 +00:00
parent 1391c4a1a1
commit ed4591c1ef

View File

@ -1173,6 +1173,28 @@ xf86VideoPtrToDriverList(struct pci_device *dev,
case 0x0bef:
/* Use fbdev/vesa driver on Oaktrail, Medfield, CDV */
break;
/* Broadwell */
case 0x1602:
case 0x1606:
case 0x160a:
case 0x160b:
case 0x160d:
case 0x160e:
case 0x1612:
case 0x1616:
case 0x161a:
case 0x161b:
case 0x161d:
case 0x161e:
case 0x1622:
case 0x1626:
case 0x162a:
case 0x162b:
case 0x162d:
case 0x162e:
/* Use modesetting driver on Broadwell */
driverList[0] = "modesetting";
break;
default:
driverList[0] = "intel";
break;