1bf215546Sopenharmony_ci/* 2bf215546Sopenharmony_ci * Copyright (c) 2012-2015 Etnaviv Project 3bf215546Sopenharmony_ci * 4bf215546Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a 5bf215546Sopenharmony_ci * copy of this software and associated documentation files (the "Software"), 6bf215546Sopenharmony_ci * to deal in the Software without restriction, including without limitation 7bf215546Sopenharmony_ci * the rights to use, copy, modify, merge, publish, distribute, sub license, 8bf215546Sopenharmony_ci * and/or sell copies of the Software, and to permit persons to whom the 9bf215546Sopenharmony_ci * Software is furnished to do so, subject to the following conditions: 10bf215546Sopenharmony_ci * 11bf215546Sopenharmony_ci * The above copyright notice and this permission notice (including the 12bf215546Sopenharmony_ci * next paragraph) shall be included in all copies or substantial portions 13bf215546Sopenharmony_ci * of the Software. 14bf215546Sopenharmony_ci * 15bf215546Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16bf215546Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17bf215546Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 18bf215546Sopenharmony_ci * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19bf215546Sopenharmony_ci * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20bf215546Sopenharmony_ci * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21bf215546Sopenharmony_ci * DEALINGS IN THE SOFTWARE. 22bf215546Sopenharmony_ci * 23bf215546Sopenharmony_ci * Authors: 24bf215546Sopenharmony_ci * Wladimir J. van der Laan <laanwj@gmail.com> 25bf215546Sopenharmony_ci */ 26bf215546Sopenharmony_ci 27bf215546Sopenharmony_ci#include "etnaviv_zsa.h" 28bf215546Sopenharmony_ci 29bf215546Sopenharmony_ci#include "etnaviv_context.h" 30bf215546Sopenharmony_ci#include "etnaviv_screen.h" 31bf215546Sopenharmony_ci#include "etnaviv_translate.h" 32bf215546Sopenharmony_ci#include "util/half_float.h" 33bf215546Sopenharmony_ci#include "util/u_memory.h" 34bf215546Sopenharmony_ci 35bf215546Sopenharmony_ci#include "hw/common.xml.h" 36bf215546Sopenharmony_ci 37bf215546Sopenharmony_civoid * 38bf215546Sopenharmony_cietna_zsa_state_create(struct pipe_context *pctx, 39bf215546Sopenharmony_ci const struct pipe_depth_stencil_alpha_state *so) 40bf215546Sopenharmony_ci{ 41bf215546Sopenharmony_ci struct etna_context *ctx = etna_context(pctx); 42bf215546Sopenharmony_ci struct etna_screen *screen = ctx->screen; 43bf215546Sopenharmony_ci struct etna_zsa_state *cs = CALLOC_STRUCT(etna_zsa_state); 44bf215546Sopenharmony_ci 45bf215546Sopenharmony_ci if (!cs) 46bf215546Sopenharmony_ci return NULL; 47bf215546Sopenharmony_ci 48bf215546Sopenharmony_ci cs->base = *so; 49bf215546Sopenharmony_ci 50bf215546Sopenharmony_ci cs->z_test_enabled = so->depth_enabled && so->depth_func != PIPE_FUNC_ALWAYS; 51bf215546Sopenharmony_ci cs->z_write_enabled = so->depth_enabled && so->depth_writemask; 52bf215546Sopenharmony_ci 53bf215546Sopenharmony_ci /* XXX does stencil[0] / stencil[1] order depend on rs->front_ccw? */ 54bf215546Sopenharmony_ci 55bf215546Sopenharmony_ci/* Set operations to KEEP if write mask is 0. 56bf215546Sopenharmony_ci * When we don't do this, the depth buffer is written for the entire primitive 57bf215546Sopenharmony_ci * instead of just where the stencil condition holds (GC600 rev 0x0019, without 58bf215546Sopenharmony_ci * feature CORRECT_STENCIL). 59bf215546Sopenharmony_ci * Not sure if this is a hardware bug or just a strange edge case. */ 60bf215546Sopenharmony_ci#if 0 /* TODO: It looks like a hardware bug */ 61bf215546Sopenharmony_ci for(int i=0; i<2; ++i) 62bf215546Sopenharmony_ci { 63bf215546Sopenharmony_ci if(so->stencil[i].writemask == 0) 64bf215546Sopenharmony_ci { 65bf215546Sopenharmony_ci so->stencil[i].fail_op = so->stencil[i].zfail_op = so->stencil[i].zpass_op = PIPE_STENCIL_OP_KEEP; 66bf215546Sopenharmony_ci } 67bf215546Sopenharmony_ci } 68bf215546Sopenharmony_ci#endif 69bf215546Sopenharmony_ci 70bf215546Sopenharmony_ci /* Determine whether to enable early z reject. Don't enable it when any of 71bf215546Sopenharmony_ci * the stencil-modifying functions is used. */ 72bf215546Sopenharmony_ci if (so->stencil[0].enabled) { 73bf215546Sopenharmony_ci if (so->stencil[0].func != PIPE_FUNC_ALWAYS || 74bf215546Sopenharmony_ci (so->stencil[1].enabled && so->stencil[1].func != PIPE_FUNC_ALWAYS)) 75bf215546Sopenharmony_ci cs->stencil_enabled = 1; 76bf215546Sopenharmony_ci 77bf215546Sopenharmony_ci if (so->stencil[0].fail_op != PIPE_STENCIL_OP_KEEP || 78bf215546Sopenharmony_ci so->stencil[0].zfail_op != PIPE_STENCIL_OP_KEEP || 79bf215546Sopenharmony_ci so->stencil[0].zpass_op != PIPE_STENCIL_OP_KEEP) { 80bf215546Sopenharmony_ci cs->stencil_enabled = 1; 81bf215546Sopenharmony_ci cs->stencil_modified = 1; 82bf215546Sopenharmony_ci } else if (so->stencil[1].enabled) { 83bf215546Sopenharmony_ci if (so->stencil[1].fail_op != PIPE_STENCIL_OP_KEEP || 84bf215546Sopenharmony_ci so->stencil[1].zfail_op != PIPE_STENCIL_OP_KEEP || 85bf215546Sopenharmony_ci so->stencil[1].zpass_op != PIPE_STENCIL_OP_KEEP) { 86bf215546Sopenharmony_ci cs->stencil_enabled = 1; 87bf215546Sopenharmony_ci cs->stencil_modified = 1; 88bf215546Sopenharmony_ci } 89bf215546Sopenharmony_ci } 90bf215546Sopenharmony_ci } 91bf215546Sopenharmony_ci 92bf215546Sopenharmony_ci /* calculate extra_reference value */ 93bf215546Sopenharmony_ci uint32_t extra_reference = 0; 94bf215546Sopenharmony_ci 95bf215546Sopenharmony_ci if (VIV_FEATURE(screen, chipMinorFeatures1, HALF_FLOAT)) 96bf215546Sopenharmony_ci extra_reference = _mesa_float_to_half(SATURATE(so->alpha_ref_value)); 97bf215546Sopenharmony_ci 98bf215546Sopenharmony_ci cs->PE_STENCIL_CONFIG_EXT = 99bf215546Sopenharmony_ci VIVS_PE_STENCIL_CONFIG_EXT_EXTRA_ALPHA_REF(extra_reference); 100bf215546Sopenharmony_ci 101bf215546Sopenharmony_ci cs->PE_ALPHA_OP = 102bf215546Sopenharmony_ci COND(so->alpha_enabled, VIVS_PE_ALPHA_OP_ALPHA_TEST) | 103bf215546Sopenharmony_ci VIVS_PE_ALPHA_OP_ALPHA_FUNC(so->alpha_func) | 104bf215546Sopenharmony_ci VIVS_PE_ALPHA_OP_ALPHA_REF(etna_cfloat_to_uint8(so->alpha_ref_value)); 105bf215546Sopenharmony_ci 106bf215546Sopenharmony_ci for (unsigned i = 0; i < 2; i++) { 107bf215546Sopenharmony_ci const struct pipe_stencil_state *stencil_front = (so->stencil[1].enabled && so->stencil[1].valuemask) ? &so->stencil[i] : &so->stencil[0]; 108bf215546Sopenharmony_ci const struct pipe_stencil_state *stencil_back = (so->stencil[1].enabled && so->stencil[1].valuemask) ? &so->stencil[!i] : &so->stencil[0]; 109bf215546Sopenharmony_ci cs->PE_STENCIL_OP[i] = 110bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_FUNC_FRONT(stencil_front->func) | 111bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_FUNC_BACK(stencil_back->func) | 112bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_FAIL_FRONT(translate_stencil_op(stencil_front->fail_op)) | 113bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_FAIL_BACK(translate_stencil_op(stencil_back->fail_op)) | 114bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_DEPTH_FAIL_FRONT(translate_stencil_op(stencil_front->zfail_op)) | 115bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_DEPTH_FAIL_BACK(translate_stencil_op(stencil_back->zfail_op)) | 116bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_PASS_FRONT(translate_stencil_op(stencil_front->zpass_op)) | 117bf215546Sopenharmony_ci VIVS_PE_STENCIL_OP_PASS_BACK(translate_stencil_op(stencil_back->zpass_op)); 118bf215546Sopenharmony_ci cs->PE_STENCIL_CONFIG[i] = 119bf215546Sopenharmony_ci translate_stencil_mode(so->stencil[0].enabled, so->stencil[0].enabled) | 120bf215546Sopenharmony_ci VIVS_PE_STENCIL_CONFIG_MASK_FRONT(stencil_front->valuemask) | 121bf215546Sopenharmony_ci VIVS_PE_STENCIL_CONFIG_WRITE_MASK_FRONT(stencil_front->writemask); 122bf215546Sopenharmony_ci cs->PE_STENCIL_CONFIG_EXT2[i] = 123bf215546Sopenharmony_ci VIVS_PE_STENCIL_CONFIG_EXT2_MASK_BACK(stencil_back->valuemask) | 124bf215546Sopenharmony_ci VIVS_PE_STENCIL_CONFIG_EXT2_WRITE_MASK_BACK(stencil_back->writemask); 125bf215546Sopenharmony_ci } 126bf215546Sopenharmony_ci 127bf215546Sopenharmony_ci /* XXX does alpha/stencil test affect PE_COLOR_FORMAT_OVERWRITE? */ 128bf215546Sopenharmony_ci return cs; 129bf215546Sopenharmony_ci} 130