summaryrefslogtreecommitdiff
path: root/shared-core/i915_drv.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-01-23 08:05:36 +0800
committerEric Anholt <eric@anholt.net>2007-02-07 21:26:01 -0800
commit8918748058bc1aff64298855cde09512e2128367 (patch)
tree90974ce69f47e6e117416ada6e8c29efa5b6893a /shared-core/i915_drv.h
parent17985f07d68322519919a7f629a6d2d9bf3916ed (diff)
Add chip family flags to i915 driver, and fix a missing '"' in mach64 ID list.
Diffstat (limited to 'shared-core/i915_drv.h')
-rw-r--r--shared-core/i915_drv.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/shared-core/i915_drv.h b/shared-core/i915_drv.h
index ef9f3638..5a76cb15 100644
--- a/shared-core/i915_drv.h
+++ b/shared-core/i915_drv.h
@@ -132,6 +132,13 @@ typedef struct drm_i915_private {
unsigned int swaps_pending;
} drm_i915_private_t;
+enum intel_chip_family {
+ CHIP_I8XX = 0x01,
+ CHIP_I9XX = 0x02,
+ CHIP_I915 = 0x04,
+ CHIP_I965 = 0x08,
+};
+
extern drm_ioctl_desc_t i915_ioctls[];
extern int i915_max_ioctl;