diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2014-03-05 09:51:24 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-03-05 09:51:24 +0000 |
commit | a2b4f2657f8cd503fce4e3b8cc3240d7b45d36ce (patch) | |
tree | 511128aadade27237594b12cfae42f0764ef7a32 /src | |
parent | a7123410a33f29c67a11f26d17ce8b0dc09cc594 (diff) |
sna/gen8: Correct MOCS settings for render targets
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/sna/gen8_render.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sna/gen8_render.c b/src/sna/gen8_render.c index 2a36795a..855551da 100644 --- a/src/sna/gen8_render.c +++ b/src/sna/gen8_render.c @@ -1281,6 +1281,13 @@ gen8_tiling_bits(uint32_t tiling) } } +#define MOCS_WT (2 << 5) +#define MOCS_WB (3 << 5) +#define MOCS_eLLC_ONLY (0 << 3) +#define MOCS_LLC_ONLY (1 << 3) +#define MOCS_eLLC_LLC (2 << 3) +#define MOCS_ALL_CACHES (3 << 3) + /** * Sets up the common fields for a surface state buffer for the given * picture in the given surface state buffer. @@ -1318,7 +1325,7 @@ gen8_bind_bo(struct sna *sna, domains = I915_GEM_DOMAIN_RENDER << 16 |I915_GEM_DOMAIN_RENDER; } else domains = I915_GEM_DOMAIN_SAMPLER << 16; - ss[1] = (is_scanout || bo->io) ? 0 : 3 << 24; + ss[1] = bo->io ? 0 : is_scanout ? (MOCS_WT | MOCS_ALL_CACHES) << 24 : (MOCS_WB | MOCS_ALL_CACHES) << 24; ss[2] = ((width - 1) << SURFACE_WIDTH_SHIFT | (height - 1) << SURFACE_HEIGHT_SHIFT); ss[3] = (bo->pitch - 1) << SURFACE_PITCH_SHIFT; |