From 0aa308f4200ad88c9b9ac0fd3e2ad30bde74edb9 Mon Sep 17 00:00:00 2001 From: Nanley Chery Date: Wed, 21 Aug 2019 10:57:29 -0700 Subject: [PATCH] intel: Fix and use HIZ_CCS write through mode Write through to the CCS if the surface is used as a texture and can be sampled by the HW with CCS. Reviewed-by: Sagar Ghuge Reviewed-by: Kenneth Graunke --- src/intel/genxml/gen12.xml | 1 + src/intel/isl/isl_emit_depth_stencil.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/intel/genxml/gen12.xml b/src/intel/genxml/gen12.xml index 8970ddf51a8..466ddb6894c 100644 --- a/src/intel/genxml/gen12.xml +++ b/src/intel/genxml/gen12.xml @@ -1893,6 +1893,7 @@ + diff --git a/src/intel/isl/isl_emit_depth_stencil.c b/src/intel/isl/isl_emit_depth_stencil.c index c3815a6ac56..fc2cf68ed4c 100644 --- a/src/intel/isl/isl_emit_depth_stencil.c +++ b/src/intel/isl/isl_emit_depth_stencil.c @@ -192,6 +192,12 @@ isl_genX(emit_depth_stencil_hiz_s)(const struct isl_device *dev, void *batch, hiz.SurfaceBaseAddress = info->hiz_address; hiz.MOCS = info->mocs; hiz.SurfacePitch = info->hiz_surf->row_pitch_B - 1; +#if GEN_GEN >= 12 + hiz.HierarchicalDepthBufferWriteThruEnable = + isl_surf_supports_hiz_ccs_wt(dev->info, info->depth_surf, + info->hiz_usage); +#endif + #if GEN_GEN >= 8 /* From the SKL PRM Vol2a: * -- 2.30.2