aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_drv.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r--drivers/gpu/drm/i915/i915_drv.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 979439cfb827..6960849522f8 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -205,6 +205,7 @@ struct intel_device_info {
205 u8 is_g4x : 1; 205 u8 is_g4x : 1;
206 u8 is_pineview : 1; 206 u8 is_pineview : 1;
207 u8 is_ironlake : 1; 207 u8 is_ironlake : 1;
208 u8 is_gen6 : 1;
208 u8 has_fbc : 1; 209 u8 has_fbc : 1;
209 u8 has_rc6 : 1; 210 u8 has_rc6 : 1;
210 u8 has_pipe_cxsr : 1; 211 u8 has_pipe_cxsr : 1;
@@ -610,6 +611,8 @@ typedef struct drm_i915_private {
610 /* Reclocking support */ 611 /* Reclocking support */
611 bool render_reclock_avail; 612 bool render_reclock_avail;
612 bool lvds_downclock_avail; 613 bool lvds_downclock_avail;
614 /* indicate whether the LVDS EDID is OK */
615 bool lvds_edid_good;
613 /* indicates the reduced downclock for LVDS*/ 616 /* indicates the reduced downclock for LVDS*/
614 int lvds_downclock; 617 int lvds_downclock;
615 struct work_struct idle_work; 618 struct work_struct idle_work;
@@ -730,6 +733,8 @@ struct drm_i915_gem_object {
730 atomic_t pending_flip; 733 atomic_t pending_flip;
731}; 734};
732 735
736#define to_intel_bo(x) ((struct drm_i915_gem_object *) (x)->driver_private)
737
733/** 738/**
734 * Request queue structure. 739 * Request queue structure.
735 * 740 *
@@ -1084,6 +1089,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
1084#define IS_IRONLAKE_M(dev) ((dev)->pci_device == 0x0046) 1089#define IS_IRONLAKE_M(dev) ((dev)->pci_device == 0x0046)
1085#define IS_IRONLAKE(dev) (INTEL_INFO(dev)->is_ironlake) 1090#define IS_IRONLAKE(dev) (INTEL_INFO(dev)->is_ironlake)
1086#define IS_I9XX(dev) (INTEL_INFO(dev)->is_i9xx) 1091#define IS_I9XX(dev) (INTEL_INFO(dev)->is_i9xx)
1092#define IS_GEN6(dev) (INTEL_INFO(dev)->is_gen6)
1087#define IS_MOBILE(dev) (INTEL_INFO(dev)->is_mobile) 1093#define IS_MOBILE(dev) (INTEL_INFO(dev)->is_mobile)
1088 1094
1089#define IS_GEN3(dev) (IS_I915G(dev) || \ 1095#define IS_GEN3(dev) (IS_I915G(dev) || \
@@ -1107,8 +1113,6 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
1107 1113
1108#define I915_NEED_GFX_HWS(dev) (INTEL_INFO(dev)->need_gfx_hws) 1114#define I915_NEED_GFX_HWS(dev) (INTEL_INFO(dev)->need_gfx_hws)
1109 1115
1110#define IS_GEN6(dev) ((dev)->pci_device == 0x0102)
1111
1112/* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte 1116/* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
1113 * rows, which changed the alignment requirements and fence programming. 1117 * rows, which changed the alignment requirements and fence programming.
1114 */ 1118 */