diff options
Diffstat (limited to 'drivers/char/drm/i915_drv.h')
-rw-r--r-- | drivers/char/drm/i915_drv.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/char/drm/i915_drv.h b/drivers/char/drm/i915_drv.h index 440228f71fe0..37bbf6729b4e 100644 --- a/drivers/char/drm/i915_drv.h +++ b/drivers/char/drm/i915_drv.h | |||
@@ -1084,10 +1084,13 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
1084 | (dev)->pci_device == 0x2992 || \ | 1084 | (dev)->pci_device == 0x2992 || \ |
1085 | (dev)->pci_device == 0x29A2 || \ | 1085 | (dev)->pci_device == 0x29A2 || \ |
1086 | (dev)->pci_device == 0x2A02 || \ | 1086 | (dev)->pci_device == 0x2A02 || \ |
1087 | (dev)->pci_device == 0x2A12) | 1087 | (dev)->pci_device == 0x2A12 || \ |
1088 | (dev)->pci_device == 0x2A42) | ||
1088 | 1089 | ||
1089 | #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) | 1090 | #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) |
1090 | 1091 | ||
1092 | #define IS_IGD_GM(dev) ((dev)->pci_device == 0x2A42) | ||
1093 | |||
1091 | #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \ | 1094 | #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \ |
1092 | (dev)->pci_device == 0x29B2 || \ | 1095 | (dev)->pci_device == 0x29B2 || \ |
1093 | (dev)->pci_device == 0x29D2) | 1096 | (dev)->pci_device == 0x29D2) |
@@ -1096,7 +1099,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
1096 | IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev)) | 1099 | IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev)) |
1097 | 1100 | ||
1098 | #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \ | 1101 | #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \ |
1099 | IS_I945GM(dev) || IS_I965GM(dev)) | 1102 | IS_I945GM(dev) || IS_I965GM(dev) || IS_IGD_GM(dev)) |
1100 | 1103 | ||
1101 | #define PRIMARY_RINGBUFFER_SIZE (128*1024) | 1104 | #define PRIMARY_RINGBUFFER_SIZE (128*1024) |
1102 | 1105 | ||