diff options
author | Kenneth Graunke <[email protected]> | 2011-04-26 12:25:56 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-05-17 23:33:02 -0700 |
commit | b2c1f8ff1d98f03be79892b7730372afdb94ba58 (patch) | |
tree | 09f473f4654c17ab6ba517a04130667b022fafc6 /src/egl | |
parent | 1b3d354743269ac1da80984da55d7545974f7345 (diff) |
egl: Recognize Ivybridge PCI IDs.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri2/platform_drm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/egl/drivers/dri2/platform_drm.c b/src/egl/drivers/dri2/platform_drm.c index 9811b280299..d2be66ccc2b 100644 --- a/src/egl/drivers/dri2/platform_drm.c +++ b/src/egl/drivers/dri2/platform_drm.c @@ -81,6 +81,11 @@ const int i965_chip_ids[] = { 0x0116, /* PCI_CHIP_SANDYBRIDGE_M_GT2 */ 0x0122, /* PCI_CHIP_SANDYBRIDGE_GT2_PLUS */ 0x0126, /* PCI_CHIP_SANDYBRIDGE_M_GT2_PLUS */ + 0x0152, /* PCI_CHIP_IVYBRIDGE_GT1 */ + 0x0162, /* PCI_CHIP_IVYBRIDGE_GT2 */ + 0x0156, /* PCI_CHIP_IVYBRIDGE_M_GT1 */ + 0x0166, /* PCI_CHIP_IVYBRIDGE_M_GT2 */ + 0x015a, /* PCI_CHIP_IVYBRIDGE_S_GT1 */ 0x29a2, /* PCI_CHIP_I965_G */ 0x2992, /* PCI_CHIP_I965_Q */ 0x2982, /* PCI_CHIP_I965_G_1 */ |