]> Git Repo - linux.git/commitdiff
drm/i915/mtl: Don't set PIPE_CONTROL_FLUSH_L3
authorVinay Belgaumkar <[email protected]>
Tue, 17 Oct 2023 19:53:09 +0000 (12:53 -0700)
committerAndi Shyti <[email protected]>
Wed, 18 Oct 2023 16:44:14 +0000 (18:44 +0200)
This bit does not cause an explicit L3 flush. We already use
PIPE_CONTROL_DC_FLUSH_ENABLE for that purpose.

v2: Use FLUSH_L3 only pre-MTL since spec will likely remain
the same going forward.

Cc: Nirmoy Das <[email protected]>
Cc: Mika Kuoppala <[email protected]>
Acked-by: Mika Kuoppala <[email protected]>
Reviewed-by: Nirmoy Das <[email protected]>
Signed-off-by: Vinay Belgaumkar <[email protected]>
Reviewed-by: Andi Shyti <[email protected]>
Signed-off-by: Andi Shyti <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/i915/gt/gen8_engine_cs.c

index 8b93cbe0f535ea95bc477ced0e2f55477fc79387..bafcd3d9772042d25b4f5bfa7d25af2cc1b1ea1b 100644 (file)
@@ -278,7 +278,8 @@ int gen12_emit_flush_rcs(struct i915_request *rq, u32 mode)
                 * deals with Protected Memory which is not needed for
                 * AUX CCS invalidation and lead to unwanted side effects.
                 */
-               if (mode & EMIT_FLUSH)
+               if ((mode & EMIT_FLUSH) &&
+                   GRAPHICS_VER_FULL(rq->i915) < IP_VER(12, 70))
                        bit_group_1 |= PIPE_CONTROL_FLUSH_L3;
 
                bit_group_1 |= PIPE_CONTROL_TILE_CACHE_FLUSH;
@@ -812,12 +813,14 @@ u32 *gen12_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs)
        u32 flags = (PIPE_CONTROL_CS_STALL |
                     PIPE_CONTROL_TLB_INVALIDATE |
                     PIPE_CONTROL_TILE_CACHE_FLUSH |
-                    PIPE_CONTROL_FLUSH_L3 |
                     PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
                     PIPE_CONTROL_DEPTH_CACHE_FLUSH |
                     PIPE_CONTROL_DC_FLUSH_ENABLE |
                     PIPE_CONTROL_FLUSH_ENABLE);
 
+       if (GRAPHICS_VER_FULL(rq->i915) < IP_VER(12, 70))
+               flags |= PIPE_CONTROL_FLUSH_L3;
+
        /* Wa_14016712196 */
        if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71)) || IS_DG2(i915))
                /* dummy PIPE_CONTROL + depth flush */
This page took 0.079811 seconds and 4 git commands to generate.