diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-04-28 23:33:09 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-14 02:04:29 +0200 |
commit | 4b65177b27ede9dee3186bc3a58c737997ee4749 (patch) | |
tree | 37d845f71303fbda77be9f16c2b0b91fe52fe3e0 /drivers/gpu/drm/i915/i915_drv.h | |
parent | drm/i915: add IS_GEN7 macro to cover Ivy Bridge and later (diff) | |
download | linux-4b65177b27ede9dee3186bc3a58c737997ee4749.tar.xz linux-4b65177b27ede9dee3186bc3a58c737997ee4749.zip |
drm/i915: add IS_IVYBRIDGE macro for checks
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 8a0fa14ee714..bb8e839d2ac8 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -229,6 +229,7 @@ struct intel_device_info { u8 is_pineview : 1; u8 is_broadwater : 1; u8 is_crestline : 1; + u8 is_ivybridge : 1; u8 has_fbc : 1; u8 has_pipe_cxsr : 1; u8 has_hotplug : 1; @@ -933,6 +934,7 @@ enum intel_chip_family { #define IS_G33(dev) (INTEL_INFO(dev)->is_g33) #define IS_IRONLAKE_D(dev) ((dev)->pci_device == 0x0042) #define IS_IRONLAKE_M(dev) ((dev)->pci_device == 0x0046) +#define IS_IVYBRIDGE(dev) (INTEL_INFO(dev)->is_ivybridge) #define IS_MOBILE(dev) (INTEL_INFO(dev)->is_mobile) /* |