summaryrefslogtreecommitdiffstats
path: root/src/intel/blorp
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2020-01-01 17:38:01 -0800
committerKenneth Graunke <[email protected]>2020-01-03 00:20:17 +0000
commit7a9c0fc0d778dd8ea6ed2c94efbe1374f9535a00 (patch)
tree7c9175caf0e101336a2351efbdb8630f3d7e5129 /src/intel/blorp
parented17baab5fc4699b569586a9526814ace1748d68 (diff)
intel: Drop Gen11 WaBTPPrefetchDisable workaround
This isn't needed on production Icelake hardware. Reviewed-by: Anuj Phogat <[email protected]> Acked-by: Jason Ekstrand <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3250> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3250>
Diffstat (limited to 'src/intel/blorp')
-rw-r--r--src/intel/blorp/blorp_genX_exec.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h
index 53ff4f9a74c..c1fc0892893 100644
--- a/src/intel/blorp/blorp_genX_exec.h
+++ b/src/intel/blorp/blorp_genX_exec.h
@@ -772,13 +772,6 @@ blorp_emit_ps_config(struct blorp_batch *batch,
ps.BindingTableEntryCount = 1;
}
- /* Gen 11 workarounds table #2056 WABTPPrefetchDisable suggests to
- * disable prefetching of binding tables on A0 and B0 steppings.
- * TODO: Revisit this WA on C0 stepping.
- */
- if (GEN_GEN == 11)
- ps.BindingTableEntryCount = 0;
-
/* SAMPLER_STATE prefetching is broken on Gen11 - WA_1606682166 */
if (GEN_GEN == 11)
ps.SamplerCount = 0;