File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2788,9 +2788,10 @@ intel_info(const struct drm_i915_private *dev_priv)
2788
2788
/* Early gen2 have a totally busted CS tlb and require pinned batches. */
2789
2789
#define HAS_BROKEN_CS_TLB (dev_priv ) (IS_I830(dev_priv) || IS_I845G(dev_priv))
2790
2790
2791
- /* WaRsDisableCoarsePowerGating:skl,bxt */
2791
+ /* WaRsDisableCoarsePowerGating:skl,cnl */
2792
2792
#define NEEDS_WaRsDisableCoarsePowerGating (dev_priv ) \
2793
- (IS_SKL_GT3(dev_priv) || IS_SKL_GT4(dev_priv))
2793
+ (IS_CANNONLAKE(dev_priv) || \
2794
+ IS_SKL_GT3(dev_priv) || IS_SKL_GT4(dev_priv))
2794
2795
2795
2796
/*
2796
2797
* dp aux and gmbus irq on gen4 seems to be able to generate legacy interrupts
Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ int intel_guc_sample_forcewake(struct intel_guc *guc)
370
370
u32 action [2 ];
371
371
372
372
action [0 ] = INTEL_GUC_ACTION_SAMPLE_FORCEWAKE ;
373
- /* WaRsDisableCoarsePowerGating:skl,bxt */
373
+ /* WaRsDisableCoarsePowerGating:skl,cnl */
374
374
if (!HAS_RC6 (dev_priv ) || NEEDS_WaRsDisableCoarsePowerGating (dev_priv ))
375
375
action [1 ] = 0 ;
376
376
else
Original file line number Diff line number Diff line change @@ -6715,7 +6715,7 @@ static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
6715
6715
6716
6716
/*
6717
6717
* 3b: Enable Coarse Power Gating only when RC6 is enabled.
6718
- * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
6718
+ * WaRsDisableCoarsePowerGating:skl,cnl - Render/Media PG need to be disabled with RC6.
6719
6719
*/
6720
6720
if (NEEDS_WaRsDisableCoarsePowerGating (dev_priv ))
6721
6721
I915_WRITE (GEN9_PG_ENABLE , 0 );
You can’t perform that action at this time.
0 commit comments