/* * Copyright (C) 2016 Rob Clark * Copyright © 2018 Google, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Authors: * Rob Clark */ #include "pipe/p_state.h" #include "util/u_memory.h" #include "util/u_string.h" #include "fd6_context.h" #include "fd6_format.h" #include "fd6_zsa.h" /* update lza state based on stencil-test func: * * Conceptually the order of the pipeline is: * * * FS -> Alpha-Test -> Stencil-Test -> Depth-Test * | | * if wrmask != 0 if wrmask != 0 * | | * v v * Stencil-Write Depth-Write * * Because Stencil-Test can have side effects (Stencil-Write) prior * to depth test, in this case we potentially need to disable early * lrz-test. See: * * https://www.khronos.org/opengl/wiki/Per-Sample_Processing */ static void update_lrz_stencil(struct fd6_zsa_stateobj *so, enum pipe_compare_func func, bool stencil_write) { switch (func) { case PIPE_FUNC_ALWAYS: /* nothing to do for LRZ, but for stencil test when stencil- * write is enabled, we need to disable lrz-test, since * conceptually stencil test and write happens before depth- * test: */ if (stencil_write) { so->lrz.enable = false; so->lrz.test = false; } break; case PIPE_FUNC_NEVER: /* fragment never passes, disable lrz_write for this draw: */ so->lrz.write = false; break; default: /* whether the fragment passes or not depends on result * of stencil test, which we cannot know when doing binning * pass: */ so->lrz.write = false; /* similarly to the PIPE_FUNC_ALWAY case, if there are side- * effects from stencil test we need to disable lrz-test. */ if (stencil_write) { so->lrz.enable = false; so->lrz.test = false; } break; } } void * fd6_zsa_state_create(struct pipe_context *pctx, const struct pipe_depth_stencil_alpha_state *cso) { struct fd_context *ctx = fd_context(pctx); struct fd6_zsa_stateobj *so; so = CALLOC_STRUCT(fd6_zsa_stateobj); if (!so) return NULL; so->base = *cso; so->writes_zs = util_writes_depth_stencil(cso); so->rb_depth_cntl |= A6XX_RB_DEPTH_CNTL_ZFUNC(cso->depth_func); /* maps 1:1 */ if (cso->depth_enabled) { so->rb_depth_cntl |= A6XX_RB_DEPTH_CNTL_Z_TEST_ENABLE | A6XX_RB_DEPTH_CNTL_Z_READ_ENABLE; so->lrz.test = true; if (cso->depth_writemask) { so->lrz.write = true; } switch (cso->depth_func) { case PIPE_FUNC_LESS: case PIPE_FUNC_LEQUAL: so->lrz.enable = true; so->lrz.direction = FD_LRZ_LESS; break; case PIPE_FUNC_GREATER: case PIPE_FUNC_GEQUAL: so->lrz.enable = true; so->lrz.direction = FD_LRZ_GREATER; break; case PIPE_FUNC_NEVER: so->lrz.enable = true; so->lrz.write = false; so->lrz.direction = FD_LRZ_LESS; break; /* TODO revisit these: */ case PIPE_FUNC_EQUAL: case PIPE_FUNC_NOTEQUAL: case PIPE_FUNC_ALWAYS: so->lrz.write = false; so->invalidate_lrz = true; break; } } if (cso->depth_writemask) so->rb_depth_cntl |= A6XX_RB_DEPTH_CNTL_Z_WRITE_ENABLE; if (cso->stencil[0].enabled) { const struct pipe_stencil_state *s = &cso->stencil[0]; /* stencil test happens before depth test, so without performing * stencil test we don't really know what the updates to the * depth buffer will be. */ update_lrz_stencil(so, s->func, !!s->writemask); so->rb_stencil_control |= A6XX_RB_STENCIL_CONTROL_STENCIL_READ | A6XX_RB_STENCIL_CONTROL_STENCIL_ENABLE | A6XX_RB_STENCIL_CONTROL_FUNC(s->func) | /* maps 1:1 */ A6XX_RB_STENCIL_CONTROL_FAIL(fd_stencil_op(s->fail_op)) | A6XX_RB_STENCIL_CONTROL_ZPASS(fd_stencil_op(s->zpass_op)) | A6XX_RB_STENCIL_CONTROL_ZFAIL(fd_stencil_op(s->zfail_op)); so->rb_stencilmask = A6XX_RB_STENCILMASK_MASK(s->valuemask); so->rb_stencilwrmask = A6XX_RB_STENCILWRMASK_WRMASK(s->writemask); if (cso->stencil[1].enabled) { const struct pipe_stencil_state *bs = &cso->stencil[1]; update_lrz_stencil(so, bs->func, !!bs->writemask); so->rb_stencil_control |= A6XX_RB_STENCIL_CONTROL_STENCIL_ENABLE_BF | A6XX_RB_STENCIL_CONTROL_FUNC_BF(bs->func) | /* maps 1:1 */ A6XX_RB_STENCIL_CONTROL_FAIL_BF(fd_stencil_op(bs->fail_op)) | A6XX_RB_STENCIL_CONTROL_ZPASS_BF(fd_stencil_op(bs->zpass_op)) | A6XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op)); so->rb_stencilmask |= A6XX_RB_STENCILMASK_BFMASK(bs->valuemask); so->rb_stencilwrmask |= A6XX_RB_STENCILWRMASK_BFWRMASK(bs->writemask); } } if (cso->alpha_enabled) { /* Alpha test is functionally a conditional discard, so we can't * write LRZ before seeing if we end up discarding or not */ if (cso->alpha_func != PIPE_FUNC_ALWAYS) { so->lrz.write = false; so->alpha_test = true; } uint32_t ref = cso->alpha_ref_value * 255.0; so->rb_alpha_control = A6XX_RB_ALPHA_CONTROL_ALPHA_TEST | A6XX_RB_ALPHA_CONTROL_ALPHA_REF(ref) | A6XX_RB_ALPHA_CONTROL_ALPHA_TEST_FUNC(cso->alpha_func); } for (int i = 0; i < 4; i++) { struct fd_ringbuffer *ring = fd_ringbuffer_new_object(ctx->pipe, 9 * 4); OUT_PKT4(ring, REG_A6XX_RB_ALPHA_CONTROL, 1); OUT_RING(ring, (i & FD6_ZSA_NO_ALPHA) ? so->rb_alpha_control & ~A6XX_RB_ALPHA_CONTROL_ALPHA_TEST : so->rb_alpha_control); OUT_PKT4(ring, REG_A6XX_RB_STENCIL_CONTROL, 1); OUT_RING(ring, so->rb_stencil_control); OUT_PKT4(ring, REG_A6XX_RB_DEPTH_CNTL, 1); OUT_RING(ring, so->rb_depth_cntl | COND(i & FD6_ZSA_DEPTH_CLAMP, A6XX_RB_DEPTH_CNTL_Z_CLAMP_ENABLE)); OUT_PKT4(ring, REG_A6XX_RB_STENCILMASK, 2); OUT_RING(ring, so->rb_stencilmask); OUT_RING(ring, so->rb_stencilwrmask); so->stateobj[i] = ring; } return so; } void fd6_zsa_state_delete(struct pipe_context *pctx, void *hwcso) { struct fd6_zsa_stateobj *so = hwcso; for (int i = 0; i < ARRAY_SIZE(so->stateobj); i++) fd_ringbuffer_del(so->stateobj[i]); FREE(hwcso); }