diff options
author | Tomeu Vizoso <[email protected]> | 2019-06-28 09:17:55 +0200 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2019-06-28 15:40:52 +0200 |
commit | 7c745f6148d92bcbf2d27598f00c586cf106ed01 (patch) | |
tree | c3e3a30d24871bf98e1b9259271e65857e59711f /src/gallium | |
parent | 35734129819ca7795adb9145123eb4eafea3a562 (diff) |
panfrost: Only tag AFBC addresses when sampling
Rendering to AFBC was broken, as the HW will complaint loudly if we pass
a tagged pointer in bifrost_render_target.
Signed-off-by: Tomeu Vizoso <[email protected]>
Fixes: 3609b50a6443 ("panfrost: Merge AFBC slab with BO backing")
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_context.c | 8 | ||||
-rw-r--r-- | src/gallium/drivers/panfrost/pan_resource.c | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index 967d7116c24..be800ca6ce1 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -834,6 +834,11 @@ panfrost_upload_tex( unsigned first_layer = pview->u.tex.first_layer; unsigned last_layer = pview->u.tex.last_layer; + /* Lower-bit is set when sampling from colour AFBC */ + bool is_afbc = rsrc->bo->layout == PAN_AFBC; + bool is_zs = rsrc->base.bind & PIPE_BIND_DEPTH_STENCIL; + unsigned afbc_bit = (is_afbc && !is_zs) ? 1 : 0; + /* Inject the addresses in, interleaving mip levels, cube faces, and * strides in that order */ @@ -841,8 +846,9 @@ panfrost_upload_tex( for (unsigned l = first_level; l <= last_level; ++l) { for (unsigned f = first_layer; f <= last_layer; ++f) { + view->hw.payload[idx++] = - panfrost_get_texture_address(rsrc, l, f); + panfrost_get_texture_address(rsrc, l, f) + afbc_bit; if (has_manual_stride) { view->hw.payload[idx++] = diff --git a/src/gallium/drivers/panfrost/pan_resource.c b/src/gallium/drivers/panfrost/pan_resource.c index c5bda809320..8db7e45af1b 100644 --- a/src/gallium/drivers/panfrost/pan_resource.c +++ b/src/gallium/drivers/panfrost/pan_resource.c @@ -756,12 +756,7 @@ panfrost_get_texture_address( unsigned level_offset = rsrc->bo->slices[level].offset; unsigned face_offset = face * rsrc->bo->cubemap_stride; - /* Lower-bit is set when sampling from colour AFBC */ - bool is_afbc = rsrc->bo->layout == PAN_AFBC; - bool is_zs = rsrc->base.bind & PIPE_BIND_DEPTH_STENCIL; - unsigned afbc_bit = (is_afbc && !is_zs) ? 1 : 0; - - return rsrc->bo->gpu + level_offset + face_offset + afbc_bit; + return rsrc->bo->gpu + level_offset + face_offset; } static void |