@@ -608,19 +608,19 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
608
608
/* ULX machines are also considered ULT. */
609
609
#define IS_HASWELL_ULX (i915 ) \
610
610
IS_SUBPLATFORM(i915, INTEL_HASWELL, INTEL_SUBPLATFORM_ULX)
611
- #define IS_SKL_ULT (i915 ) \
611
+ #define IS_SKYLAKE_ULT (i915 ) \
612
612
IS_SUBPLATFORM(i915, INTEL_SKYLAKE, INTEL_SUBPLATFORM_ULT)
613
- #define IS_SKL_ULX (i915 ) \
613
+ #define IS_SKYLAKE_ULX (i915 ) \
614
614
IS_SUBPLATFORM(i915, INTEL_SKYLAKE, INTEL_SUBPLATFORM_ULX)
615
615
#define IS_KBL_ULT (i915 ) \
616
616
IS_SUBPLATFORM(i915, INTEL_KABYLAKE, INTEL_SUBPLATFORM_ULT)
617
617
#define IS_KBL_ULX (i915 ) \
618
618
IS_SUBPLATFORM(i915, INTEL_KABYLAKE, INTEL_SUBPLATFORM_ULX)
619
- #define IS_SKL_GT2 (i915 ) (IS_SKYLAKE(i915) && \
619
+ #define IS_SKYLAKE_GT2 (i915 ) (IS_SKYLAKE(i915) && \
620
620
INTEL_INFO(i915)->gt == 2)
621
- #define IS_SKL_GT3 (i915 ) (IS_SKYLAKE(i915) && \
621
+ #define IS_SKYLAKE_GT3 (i915 ) (IS_SKYLAKE(i915) && \
622
622
INTEL_INFO(i915)->gt == 3)
623
- #define IS_SKL_GT4 (i915 ) (IS_SKYLAKE(i915) && \
623
+ #define IS_SKYLAKE_GT4 (i915 ) (IS_SKYLAKE(i915) && \
624
624
INTEL_INFO(i915)->gt == 4)
625
625
#define IS_KBL_GT2 (i915 ) (IS_KABYLAKE(i915) && \
626
626
INTEL_INFO(i915)->gt == 2)
@@ -648,7 +648,6 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
648
648
#define IS_TGL_UY (i915 ) \
649
649
IS_SUBPLATFORM(i915, INTEL_TIGERLAKE, INTEL_SUBPLATFORM_UY)
650
650
651
- #define IS_SKL_GRAPHICS_STEP (p , since , until ) (IS_SKYLAKE(p) && IS_GRAPHICS_STEP(p, since, until))
652
651
653
652
#define IS_KBL_GRAPHICS_STEP (i915 , since , until ) \
654
653
(IS_KABYLAKE(i915) && IS_GRAPHICS_STEP(i915, since, until))
@@ -799,7 +798,7 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
799
798
800
799
/* WaRsDisableCoarsePowerGating:skl,cnl */
801
800
#define NEEDS_WaRsDisableCoarsePowerGating (i915 ) \
802
- (IS_SKL_GT3 (i915) || IS_SKL_GT4 (i915))
801
+ (IS_SKYLAKE_GT3 (i915) || IS_SKYLAKE_GT4 (i915))
803
802
804
803
/* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
805
804
* rows, which changed the alignment requirements and fence programming.
0 commit comments