diff options
author | Kenneth Graunke <[email protected]> | 2019-08-30 17:00:22 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-09-06 10:57:55 -0700 |
commit | 0d0ae16e8ff0d10e01b67913f550a977796cb91a (patch) | |
tree | bdfeac027048c119367e6a7b86aad89b618b93ab /src/gallium/drivers | |
parent | 68be5ff8d0ee30bffef1af631ffe9070ab63f832 (diff) |
intel: Stop redirecting state cache to command streamer cache section
This bit redirects the state cache from the unified/RO sections of the
L3 cache to the "CS command buffer" section of the cache, which would
be set up via TCCNTLREG. The documentation says:
"Additionaly, this redirection should be enabled only if there is a
non-zero allocation for the CS command buffer section."
We don't allocate any cache to the CS command buffer section, so
enabling this redirection effectively disabled the state cache.
The Windows driver only sets up that section when using POSH, which
we do not currently use. So, leave it unallocated and disable the
redirection to get a functional state cache again.
Improves performance in Civilization VI by 18%, Manhattan 3.0 by 6%,
and Car Chase by 2%.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/iris/iris_state.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index 525263174e0..ec1e56fe356 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -799,12 +799,6 @@ iris_init_render_context(struct iris_screen *screen, } iris_emit_lri(batch, HALF_SLICE_CHICKEN7, reg_val); - iris_pack_state(GENX(SLICE_COMMON_ECO_CHICKEN1), ®_val, reg) { - reg.StateCacheRedirectToCSSectionEnable = true; - reg.StateCacheRedirectToCSSectionEnableMask = true; - } - iris_emit_lri(batch, SLICE_COMMON_ECO_CHICKEN1, reg_val); - /* Hardware specification recommends disabling repacking for the * compatibility with decompression mechanism in display controller. */ |