Skip to content

Commit dd00ed9

Browse files
Oscar Mateorodrigovivi
authored andcommitted
drm/i915: Use a mask when applying WaProgramL3SqcReg1Default
Otherwise we are blasting other bits in GEN8_L3SQCREG1 that might be important (although we probably aren't at the moment because 0 seems to be the default for all the other bits). v2: Extra parentheses (Michel) Fixes: 050fc46 ("drm/i915:bxt: implement WaProgramL3SqcReg1DefaultForPerf") Fixes: 450174f ("drm/i915/chv: Tune L3 SQC credits based on actual latencies") Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Imre Deak <imre.deak@intel.com> Reviewed-by: Michel Thierry <michel.thierry@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/1508271945-14961-1-git-send-email-oscar.mateo@intel.com Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> (cherry picked from commit 930a784) Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
1 parent ca8d782 commit dd00ed9

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

drivers/gpu/drm/i915/i915_reg.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6998,6 +6998,7 @@ enum {
69986998
*/
69996999
#define L3_GENERAL_PRIO_CREDITS(x) (((x) >> 1) << 19)
70007000
#define L3_HIGH_PRIO_CREDITS(x) (((x) >> 1) << 14)
7001+
#define L3_PRIO_CREDITS_MASK ((0x1f << 19) | (0x1f << 14))
70017002

70027003
#define GEN7_L3CNTLREG1 _MMIO(0xB01C)
70037004
#define GEN7_WA_FOR_GEN7_L3_CONTROL 0x3C47FF8C

drivers/gpu/drm/i915/intel_engine_cs.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,9 +1048,12 @@ static int bxt_init_workarounds(struct intel_engine_cs *engine)
10481048
}
10491049

10501050
/* WaProgramL3SqcReg1DefaultForPerf:bxt */
1051-
if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
1052-
I915_WRITE(GEN8_L3SQCREG1, L3_GENERAL_PRIO_CREDITS(62) |
1053-
L3_HIGH_PRIO_CREDITS(2));
1051+
if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER)) {
1052+
u32 val = I915_READ(GEN8_L3SQCREG1);
1053+
val &= ~L3_PRIO_CREDITS_MASK;
1054+
val |= L3_GENERAL_PRIO_CREDITS(62) | L3_HIGH_PRIO_CREDITS(2);
1055+
I915_WRITE(GEN8_L3SQCREG1, val);
1056+
}
10541057

10551058
/* WaToEnableHwFixForPushConstHWBug:bxt */
10561059
if (IS_BXT_REVID(dev_priv, BXT_REVID_C0, REVID_FOREVER))

drivers/gpu/drm/i915/intel_pm.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8245,14 +8245,17 @@ static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
82458245
int high_prio_credits)
82468246
{
82478247
u32 misccpctl;
8248+
u32 val;
82488249

82498250
/* WaTempDisableDOPClkGating:bdw */
82508251
misccpctl = I915_READ(GEN7_MISCCPCTL);
82518252
I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
82528253

8253-
I915_WRITE(GEN8_L3SQCREG1,
8254-
L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
8255-
L3_HIGH_PRIO_CREDITS(high_prio_credits));
8254+
val = I915_READ(GEN8_L3SQCREG1);
8255+
val &= ~L3_PRIO_CREDITS_MASK;
8256+
val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8257+
val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8258+
I915_WRITE(GEN8_L3SQCREG1, val);
82568259

82578260
/*
82588261
* Wait at least 100 clocks before re-enabling clock gating.

0 commit comments

Comments
 (0)