/* * Copyright (C) 2018 Alyssa Rosenzweig * Copyright (C) 2019-2021 Collabora, Ltd. * * 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. */ #ifndef __PAN_BLEND_H__ #define __PAN_BLEND_H__ #include "genxml/gen_macros.h" #include "util/u_dynarray.h" #include "util/format/u_format.h" #include "compiler/shader_enums.h" #include "compiler/nir/nir.h" #include "panfrost/util/pan_ir.h" struct MALI_BLEND_EQUATION; struct panfrost_device; struct pan_blend_equation { unsigned blend_enable : 1; enum blend_func rgb_func : 3; unsigned rgb_invert_src_factor : 1; enum blend_factor rgb_src_factor : 4; unsigned rgb_invert_dst_factor : 1; enum blend_factor rgb_dst_factor : 4; enum blend_func alpha_func : 3; unsigned alpha_invert_src_factor : 1; enum blend_factor alpha_src_factor : 4; unsigned alpha_invert_dst_factor : 1; enum blend_factor alpha_dst_factor : 4; unsigned color_mask : 4; }; struct pan_blend_rt_state { /* RT format */ enum pipe_format format; /* Number of samples */ unsigned nr_samples; struct pan_blend_equation equation; }; struct pan_blend_state { bool logicop_enable; enum pipe_logicop logicop_func; float constants[4]; unsigned rt_count; struct pan_blend_rt_state rts[8]; }; struct pan_blend_shader_key { enum pipe_format format; nir_alu_type src0_type, src1_type; uint32_t rt : 3; uint32_t has_constants : 1; uint32_t logicop_enable : 1; uint32_t logicop_func:4; uint32_t nr_samples : 5; uint32_t padding : 18; struct pan_blend_equation equation; }; struct pan_blend_shader_variant { struct list_head node; float constants[4]; struct util_dynarray binary; unsigned first_tag; unsigned work_reg_count; }; #define PAN_BLEND_SHADER_MAX_VARIANTS 16 struct pan_blend_shader { struct pan_blend_shader_key key; unsigned nvariants; struct list_head variants; }; bool pan_blend_reads_dest(const struct pan_blend_equation eq); bool pan_blend_can_fixed_function(const struct pan_blend_equation equation, bool supports_2src); bool pan_blend_is_opaque(const struct pan_blend_equation eq); unsigned pan_blend_constant_mask(const struct pan_blend_equation eq); /* Fixed-function blending only supports a single constant, so if multiple bits * are set in constant_mask, the constants must match. Therefore we may pick * just the first constant. */ static inline float pan_blend_get_constant(unsigned mask, const float *constants) { return mask ? constants[ffs(mask) - 1] : 0.0; } /* v6 doesn't support blend constants in FF blend equations whatsoever, and v7 * only uses the constant from RT 0 (TODO: what if it's the same constant? or a * constant is shared?) */ static inline bool pan_blend_supports_constant(unsigned arch, unsigned rt) { return !((arch == 6) || (arch == 7 && rt > 0)); } /* The SOURCE_2 value is new in Bifrost */ static inline bool pan_blend_supports_2src(unsigned arch) { return (arch >= 6); } bool pan_blend_is_homogenous_constant(unsigned mask, const float *constants); void pan_blend_to_fixed_function_equation(const struct pan_blend_equation eq, struct MALI_BLEND_EQUATION *equation); uint32_t pan_pack_blend(const struct pan_blend_equation equation); void pan_blend_shaders_init(struct panfrost_device *dev); void pan_blend_shaders_cleanup(struct panfrost_device *dev); #ifdef PAN_ARCH nir_shader * GENX(pan_blend_create_shader)(const struct panfrost_device *dev, const struct pan_blend_state *state, nir_alu_type src0_type, nir_alu_type src1_type, unsigned rt); #if PAN_ARCH >= 6 uint64_t GENX(pan_blend_get_internal_desc)(const struct panfrost_device *dev, enum pipe_format fmt, unsigned rt, unsigned force_size, bool dithered); #endif /* Take blend_shaders.lock before calling this function and release it when * you're done with the shader variant object. */ struct pan_blend_shader_variant * GENX(pan_blend_get_shader_locked)(const struct panfrost_device *dev, const struct pan_blend_state *state, nir_alu_type src0_type, nir_alu_type src1_type, unsigned rt); #endif #endif