Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * © Copyright 2017-2018 Alyssa Rosenzweig |
| 3 | * © Copyright 2017-2018 Connor Abbott |
| 4 | * © Copyright 2017-2018 Lyude Paul |
Alyssa Rosenzweig | d4575c3 | 2019-06-25 13:30:17 -0700 | [diff] [blame] | 5 | * © Copyright2019 Collabora, Ltd. |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the "Software"), |
| 9 | * to deal in the Software without restriction, including without limitation |
| 10 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 11 | * and/or sell copies of the Software, and to permit persons to whom the |
| 12 | * Software is furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice (including the next |
| 15 | * paragraph) shall be included in all copies or substantial portions of the |
| 16 | * Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 21 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 24 | * SOFTWARE. |
| 25 | * |
| 26 | */ |
| 27 | |
| 28 | #ifndef __PANFROST_JOB_H__ |
| 29 | #define __PANFROST_JOB_H__ |
| 30 | |
| 31 | #include <stdint.h> |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 32 | #include <stdbool.h> |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 33 | #include <panfrost-misc.h> |
| 34 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 35 | enum mali_job_type { |
| 36 | JOB_NOT_STARTED = 0, |
| 37 | JOB_TYPE_NULL = 1, |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 38 | JOB_TYPE_WRITE_VALUE = 2, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 39 | JOB_TYPE_CACHE_FLUSH = 3, |
| 40 | JOB_TYPE_COMPUTE = 4, |
| 41 | JOB_TYPE_VERTEX = 5, |
| 42 | JOB_TYPE_GEOMETRY = 6, |
| 43 | JOB_TYPE_TILER = 7, |
| 44 | JOB_TYPE_FUSED = 8, |
| 45 | JOB_TYPE_FRAGMENT = 9, |
| 46 | }; |
| 47 | |
| 48 | enum mali_draw_mode { |
| 49 | MALI_DRAW_NONE = 0x0, |
| 50 | MALI_POINTS = 0x1, |
| 51 | MALI_LINES = 0x2, |
| 52 | MALI_LINE_STRIP = 0x4, |
| 53 | MALI_LINE_LOOP = 0x6, |
| 54 | MALI_TRIANGLES = 0x8, |
| 55 | MALI_TRIANGLE_STRIP = 0xA, |
| 56 | MALI_TRIANGLE_FAN = 0xC, |
| 57 | MALI_POLYGON = 0xD, |
| 58 | MALI_QUADS = 0xE, |
| 59 | MALI_QUAD_STRIP = 0xF, |
| 60 | |
| 61 | /* All other modes invalid */ |
| 62 | }; |
| 63 | |
| 64 | /* Applies to tiler_gl_enables */ |
| 65 | |
Alyssa Rosenzweig | 2d22b53 | 2019-02-14 02:44:03 +0000 | [diff] [blame] | 66 | #define MALI_OCCLUSION_QUERY (1 << 3) |
| 67 | #define MALI_OCCLUSION_PRECISE (1 << 4) |
| 68 | |
Alyssa Rosenzweig | 2adf35e | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 69 | /* Set for a glFrontFace(GL_CCW) in a Y=0=TOP coordinate system (like Gallium). |
| 70 | * In OpenGL, this would corresponds to glFrontFace(GL_CW). Mesa and the blob |
| 71 | * disagree about how to do viewport flipping, so the blob actually sets this |
| 72 | * for GL_CW but then has a negative viewport stride */ |
Alyssa Rosenzweig | 44971b8 | 2019-10-27 19:46:50 -0400 | [diff] [blame] | 73 | |
Alyssa Rosenzweig | 2adf35e | 2019-05-23 03:01:32 +0000 | [diff] [blame] | 74 | #define MALI_FRONT_CCW_TOP (1 << 5) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 75 | |
Alyssa Rosenzweig | 2d22b53 | 2019-02-14 02:44:03 +0000 | [diff] [blame] | 76 | #define MALI_CULL_FACE_FRONT (1 << 6) |
| 77 | #define MALI_CULL_FACE_BACK (1 << 7) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 78 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 79 | /* Used in stencil and depth tests */ |
| 80 | |
| 81 | enum mali_func { |
| 82 | MALI_FUNC_NEVER = 0, |
| 83 | MALI_FUNC_LESS = 1, |
| 84 | MALI_FUNC_EQUAL = 2, |
| 85 | MALI_FUNC_LEQUAL = 3, |
| 86 | MALI_FUNC_GREATER = 4, |
| 87 | MALI_FUNC_NOTEQUAL = 5, |
| 88 | MALI_FUNC_GEQUAL = 6, |
| 89 | MALI_FUNC_ALWAYS = 7 |
| 90 | }; |
| 91 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 92 | /* Flags apply to unknown2_3? */ |
| 93 | |
| 94 | #define MALI_HAS_MSAA (1 << 0) |
| 95 | #define MALI_CAN_DISCARD (1 << 5) |
| 96 | |
Alyssa Rosenzweig | 97aa054 | 2019-02-10 20:06:21 +0000 | [diff] [blame] | 97 | /* Applies on SFBD systems, specifying that programmable blending is in use */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 98 | #define MALI_HAS_BLEND_SHADER (1 << 6) |
| 99 | |
| 100 | /* func is mali_func */ |
| 101 | #define MALI_DEPTH_FUNC(func) (func << 8) |
| 102 | #define MALI_GET_DEPTH_FUNC(flags) ((flags >> 8) & 0x7) |
| 103 | #define MALI_DEPTH_FUNC_MASK MALI_DEPTH_FUNC(0x7) |
| 104 | |
Boris Brezillon | 2844082 | 2019-11-04 11:57:22 +0100 | [diff] [blame] | 105 | #define MALI_DEPTH_WRITEMASK (1 << 11) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 106 | |
| 107 | /* Next flags to unknown2_4 */ |
| 108 | #define MALI_STENCIL_TEST (1 << 0) |
| 109 | |
| 110 | /* What?! */ |
| 111 | #define MALI_SAMPLE_ALPHA_TO_COVERAGE_NO_BLEND_SHADER (1 << 1) |
| 112 | |
| 113 | #define MALI_NO_DITHER (1 << 9) |
| 114 | #define MALI_DEPTH_RANGE_A (1 << 12) |
| 115 | #define MALI_DEPTH_RANGE_B (1 << 13) |
| 116 | #define MALI_NO_MSAA (1 << 14) |
| 117 | |
| 118 | /* Stencil test state is all encoded in a single u32, just with a lot of |
| 119 | * enums... */ |
| 120 | |
| 121 | enum mali_stencil_op { |
| 122 | MALI_STENCIL_KEEP = 0, |
| 123 | MALI_STENCIL_REPLACE = 1, |
| 124 | MALI_STENCIL_ZERO = 2, |
| 125 | MALI_STENCIL_INVERT = 3, |
| 126 | MALI_STENCIL_INCR_WRAP = 4, |
| 127 | MALI_STENCIL_DECR_WRAP = 5, |
| 128 | MALI_STENCIL_INCR = 6, |
| 129 | MALI_STENCIL_DECR = 7 |
| 130 | }; |
| 131 | |
| 132 | struct mali_stencil_test { |
| 133 | unsigned ref : 8; |
| 134 | unsigned mask : 8; |
| 135 | enum mali_func func : 3; |
| 136 | enum mali_stencil_op sfail : 3; |
| 137 | enum mali_stencil_op dpfail : 3; |
| 138 | enum mali_stencil_op dppass : 3; |
| 139 | unsigned zero : 4; |
| 140 | } __attribute__((packed)); |
| 141 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 142 | #define MALI_MASK_R (1 << 0) |
| 143 | #define MALI_MASK_G (1 << 1) |
| 144 | #define MALI_MASK_B (1 << 2) |
| 145 | #define MALI_MASK_A (1 << 3) |
| 146 | |
| 147 | enum mali_nondominant_mode { |
| 148 | MALI_BLEND_NON_MIRROR = 0, |
| 149 | MALI_BLEND_NON_ZERO = 1 |
| 150 | }; |
| 151 | |
| 152 | enum mali_dominant_blend { |
| 153 | MALI_BLEND_DOM_SOURCE = 0, |
| 154 | MALI_BLEND_DOM_DESTINATION = 1 |
| 155 | }; |
| 156 | |
| 157 | enum mali_dominant_factor { |
| 158 | MALI_DOMINANT_UNK0 = 0, |
| 159 | MALI_DOMINANT_ZERO = 1, |
| 160 | MALI_DOMINANT_SRC_COLOR = 2, |
| 161 | MALI_DOMINANT_DST_COLOR = 3, |
| 162 | MALI_DOMINANT_UNK4 = 4, |
| 163 | MALI_DOMINANT_SRC_ALPHA = 5, |
| 164 | MALI_DOMINANT_DST_ALPHA = 6, |
| 165 | MALI_DOMINANT_CONSTANT = 7, |
| 166 | }; |
| 167 | |
| 168 | enum mali_blend_modifier { |
| 169 | MALI_BLEND_MOD_UNK0 = 0, |
| 170 | MALI_BLEND_MOD_NORMAL = 1, |
| 171 | MALI_BLEND_MOD_SOURCE_ONE = 2, |
| 172 | MALI_BLEND_MOD_DEST_ONE = 3, |
| 173 | }; |
| 174 | |
| 175 | struct mali_blend_mode { |
| 176 | enum mali_blend_modifier clip_modifier : 2; |
| 177 | unsigned unused_0 : 1; |
| 178 | unsigned negate_source : 1; |
| 179 | |
| 180 | enum mali_dominant_blend dominant : 1; |
| 181 | |
| 182 | enum mali_nondominant_mode nondominant_mode : 1; |
| 183 | |
| 184 | unsigned unused_1 : 1; |
| 185 | |
| 186 | unsigned negate_dest : 1; |
| 187 | |
| 188 | enum mali_dominant_factor dominant_factor : 3; |
| 189 | unsigned complement_dominant : 1; |
| 190 | } __attribute__((packed)); |
| 191 | |
| 192 | struct mali_blend_equation { |
| 193 | /* Of type mali_blend_mode */ |
| 194 | unsigned rgb_mode : 12; |
| 195 | unsigned alpha_mode : 12; |
| 196 | |
| 197 | unsigned zero1 : 4; |
| 198 | |
| 199 | /* Corresponds to MALI_MASK_* above and glColorMask arguments */ |
| 200 | |
| 201 | unsigned color_mask : 4; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 202 | } __attribute__((packed)); |
| 203 | |
| 204 | /* Used with channel swizzling */ |
| 205 | enum mali_channel { |
| 206 | MALI_CHANNEL_RED = 0, |
| 207 | MALI_CHANNEL_GREEN = 1, |
| 208 | MALI_CHANNEL_BLUE = 2, |
| 209 | MALI_CHANNEL_ALPHA = 3, |
| 210 | MALI_CHANNEL_ZERO = 4, |
| 211 | MALI_CHANNEL_ONE = 5, |
| 212 | MALI_CHANNEL_RESERVED_0 = 6, |
| 213 | MALI_CHANNEL_RESERVED_1 = 7, |
| 214 | }; |
| 215 | |
| 216 | struct mali_channel_swizzle { |
| 217 | enum mali_channel r : 3; |
| 218 | enum mali_channel g : 3; |
| 219 | enum mali_channel b : 3; |
| 220 | enum mali_channel a : 3; |
| 221 | } __attribute__((packed)); |
| 222 | |
| 223 | /* Compressed per-pixel formats. Each of these formats expands to one to four |
| 224 | * floating-point or integer numbers, as defined by the OpenGL specification. |
| 225 | * There are various places in OpenGL where the user can specify a compressed |
| 226 | * format in memory, which all use the same 8-bit enum in the various |
| 227 | * descriptors, although different hardware units support different formats. |
| 228 | */ |
| 229 | |
| 230 | /* The top 3 bits specify how the bits of each component are interpreted. */ |
| 231 | |
Icecream95 | 960fe9d | 2020-01-11 20:00:38 +1300 | [diff] [blame] | 232 | /* e.g. ETC2_RGB8 */ |
| 233 | #define MALI_FORMAT_COMPRESSED (0 << 5) |
| 234 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 235 | /* e.g. R11F_G11F_B10F */ |
| 236 | #define MALI_FORMAT_SPECIAL (2 << 5) |
| 237 | |
| 238 | /* signed normalized, e.g. RGBA8_SNORM */ |
| 239 | #define MALI_FORMAT_SNORM (3 << 5) |
| 240 | |
| 241 | /* e.g. RGBA8UI */ |
| 242 | #define MALI_FORMAT_UINT (4 << 5) |
| 243 | |
| 244 | /* e.g. RGBA8 and RGBA32F */ |
| 245 | #define MALI_FORMAT_UNORM (5 << 5) |
| 246 | |
| 247 | /* e.g. RGBA8I and RGBA16F */ |
| 248 | #define MALI_FORMAT_SINT (6 << 5) |
| 249 | |
| 250 | /* These formats seem to largely duplicate the others. They're used at least |
| 251 | * for Bifrost framebuffer output. |
| 252 | */ |
| 253 | #define MALI_FORMAT_SPECIAL2 (7 << 5) |
| 254 | |
| 255 | /* If the high 3 bits are 3 to 6 these two bits say how many components |
| 256 | * there are. |
| 257 | */ |
| 258 | #define MALI_NR_CHANNELS(n) ((n - 1) << 3) |
| 259 | |
| 260 | /* If the high 3 bits are 3 to 6, then the low 3 bits say how big each |
| 261 | * component is, except the special MALI_CHANNEL_FLOAT which overrides what the |
| 262 | * bits mean. |
| 263 | */ |
| 264 | |
Alyssa Rosenzweig | 60270c8 | 2019-02-24 06:28:39 +0000 | [diff] [blame] | 265 | #define MALI_CHANNEL_4 2 |
| 266 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 267 | #define MALI_CHANNEL_8 3 |
| 268 | |
| 269 | #define MALI_CHANNEL_16 4 |
| 270 | |
| 271 | #define MALI_CHANNEL_32 5 |
| 272 | |
| 273 | /* For MALI_FORMAT_SINT it means a half-float (e.g. RG16F). For |
| 274 | * MALI_FORMAT_UNORM, it means a 32-bit float. |
| 275 | */ |
| 276 | #define MALI_CHANNEL_FLOAT 7 |
| 277 | |
| 278 | enum mali_format { |
Icecream95 | 960fe9d | 2020-01-11 20:00:38 +1300 | [diff] [blame] | 279 | MALI_ETC2_RGB8 = MALI_FORMAT_COMPRESSED | 0x1, |
| 280 | MALI_ETC2_R11_UNORM = MALI_FORMAT_COMPRESSED | 0x2, |
| 281 | MALI_ETC2_RGBA8 = MALI_FORMAT_COMPRESSED | 0x3, |
| 282 | MALI_ETC2_RG11_UNORM = MALI_FORMAT_COMPRESSED | 0x4, |
| 283 | MALI_ETC2_R11_SNORM = MALI_FORMAT_COMPRESSED | 0x11, |
| 284 | MALI_ETC2_RG11_SNORM = MALI_FORMAT_COMPRESSED | 0x12, |
| 285 | MALI_ETC2_RGB8A1 = MALI_FORMAT_COMPRESSED | 0x13, |
Icecream95 | 31bd3b5 | 2020-01-11 19:19:45 +1300 | [diff] [blame] | 286 | MALI_ASTC_SRGB_SUPP = MALI_FORMAT_COMPRESSED | 0x16, |
| 287 | MALI_ASTC_HDR_SUPP = MALI_FORMAT_COMPRESSED | 0x17, |
Icecream95 | 960fe9d | 2020-01-11 20:00:38 +1300 | [diff] [blame] | 288 | |
Alyssa Rosenzweig | 90fd82c | 2019-02-24 05:43:14 +0000 | [diff] [blame] | 289 | MALI_RGB565 = MALI_FORMAT_SPECIAL | 0x0, |
Icecream95 | 81d059c | 2020-03-24 13:09:30 +1300 | [diff] [blame] | 290 | MALI_RGB5_X1_UNORM = MALI_FORMAT_SPECIAL | 0x1, |
Alyssa Rosenzweig | 90fd82c | 2019-02-24 05:43:14 +0000 | [diff] [blame] | 291 | MALI_RGB5_A1_UNORM = MALI_FORMAT_SPECIAL | 0x2, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 292 | MALI_RGB10_A2_UNORM = MALI_FORMAT_SPECIAL | 0x3, |
| 293 | MALI_RGB10_A2_SNORM = MALI_FORMAT_SPECIAL | 0x5, |
| 294 | MALI_RGB10_A2UI = MALI_FORMAT_SPECIAL | 0x7, |
| 295 | MALI_RGB10_A2I = MALI_FORMAT_SPECIAL | 0x9, |
| 296 | |
Icecream95 | bd87bcb | 2020-03-24 13:25:19 +1300 | [diff] [blame] | 297 | MALI_RGB332_UNORM = MALI_FORMAT_SPECIAL | 0xb, |
Icecream95 | 50e3b2e | 2020-03-24 17:33:22 +1300 | [diff] [blame] | 298 | MALI_RGB233_UNORM = MALI_FORMAT_SPECIAL | 0xc, |
Icecream95 | bd87bcb | 2020-03-24 13:25:19 +1300 | [diff] [blame] | 299 | |
Icecream95 | 50e3b2e | 2020-03-24 17:33:22 +1300 | [diff] [blame] | 300 | MALI_Z32_UNORM = MALI_FORMAT_SPECIAL | 0xd, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 301 | MALI_R32_FIXED = MALI_FORMAT_SPECIAL | 0x11, |
| 302 | MALI_RG32_FIXED = MALI_FORMAT_SPECIAL | 0x12, |
| 303 | MALI_RGB32_FIXED = MALI_FORMAT_SPECIAL | 0x13, |
| 304 | MALI_RGBA32_FIXED = MALI_FORMAT_SPECIAL | 0x14, |
| 305 | MALI_R11F_G11F_B10F = MALI_FORMAT_SPECIAL | 0x19, |
Alyssa Rosenzweig | 601d4d3 | 2019-06-26 16:24:28 -0700 | [diff] [blame] | 306 | MALI_R9F_G9F_B9F_E5F = MALI_FORMAT_SPECIAL | 0x1b, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 307 | /* Only used for varyings, to indicate the transformed gl_Position */ |
| 308 | MALI_VARYING_POS = MALI_FORMAT_SPECIAL | 0x1e, |
| 309 | /* Only used for varyings, to indicate that the write should be |
| 310 | * discarded. |
| 311 | */ |
| 312 | MALI_VARYING_DISCARD = MALI_FORMAT_SPECIAL | 0x1f, |
| 313 | |
| 314 | MALI_R8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8, |
| 315 | MALI_R16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16, |
| 316 | MALI_R32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32, |
| 317 | MALI_RG8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8, |
| 318 | MALI_RG16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16, |
| 319 | MALI_RG32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32, |
| 320 | MALI_RGB8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8, |
| 321 | MALI_RGB16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16, |
| 322 | MALI_RGB32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32, |
| 323 | MALI_RGBA8_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8, |
| 324 | MALI_RGBA16_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16, |
| 325 | MALI_RGBA32_SNORM = MALI_FORMAT_SNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32, |
| 326 | |
| 327 | MALI_R8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8, |
| 328 | MALI_R16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16, |
| 329 | MALI_R32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32, |
| 330 | MALI_RG8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8, |
| 331 | MALI_RG16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16, |
| 332 | MALI_RG32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32, |
| 333 | MALI_RGB8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8, |
| 334 | MALI_RGB16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16, |
| 335 | MALI_RGB32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32, |
| 336 | MALI_RGBA8UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8, |
| 337 | MALI_RGBA16UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16, |
| 338 | MALI_RGBA32UI = MALI_FORMAT_UINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32, |
| 339 | |
| 340 | MALI_R8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8, |
| 341 | MALI_R16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16, |
| 342 | MALI_R32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32, |
| 343 | MALI_R32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(1) | MALI_CHANNEL_FLOAT, |
| 344 | MALI_RG8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8, |
| 345 | MALI_RG16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16, |
| 346 | MALI_RG32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32, |
| 347 | MALI_RG32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(2) | MALI_CHANNEL_FLOAT, |
| 348 | MALI_RGB8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8, |
| 349 | MALI_RGB16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16, |
| 350 | MALI_RGB32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32, |
| 351 | MALI_RGB32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(3) | MALI_CHANNEL_FLOAT, |
Alyssa Rosenzweig | 60270c8 | 2019-02-24 06:28:39 +0000 | [diff] [blame] | 352 | MALI_RGBA4_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_4, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 353 | MALI_RGBA8_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8, |
| 354 | MALI_RGBA16_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16, |
| 355 | MALI_RGBA32_UNORM = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32, |
| 356 | MALI_RGBA32F = MALI_FORMAT_UNORM | MALI_NR_CHANNELS(4) | MALI_CHANNEL_FLOAT, |
| 357 | |
| 358 | MALI_R8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_8, |
| 359 | MALI_R16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_16, |
| 360 | MALI_R32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_32, |
| 361 | MALI_R16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(1) | MALI_CHANNEL_FLOAT, |
| 362 | MALI_RG8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_8, |
| 363 | MALI_RG16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_16, |
| 364 | MALI_RG32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_32, |
| 365 | MALI_RG16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(2) | MALI_CHANNEL_FLOAT, |
| 366 | MALI_RGB8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_8, |
| 367 | MALI_RGB16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_16, |
| 368 | MALI_RGB32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_32, |
| 369 | MALI_RGB16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(3) | MALI_CHANNEL_FLOAT, |
| 370 | MALI_RGBA8I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_8, |
| 371 | MALI_RGBA16I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_16, |
| 372 | MALI_RGBA32I = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_32, |
| 373 | MALI_RGBA16F = MALI_FORMAT_SINT | MALI_NR_CHANNELS(4) | MALI_CHANNEL_FLOAT, |
| 374 | |
| 375 | MALI_RGBA4 = MALI_FORMAT_SPECIAL2 | 0x8, |
| 376 | MALI_RGBA8_2 = MALI_FORMAT_SPECIAL2 | 0xd, |
| 377 | MALI_RGB10_A2_2 = MALI_FORMAT_SPECIAL2 | 0xe, |
| 378 | }; |
| 379 | |
| 380 | |
| 381 | /* Alpha coverage is encoded as 4-bits (from a clampf), with inversion |
| 382 | * literally performing a bitwise invert. This function produces slightly wrong |
| 383 | * results and I'm not sure why; some rounding issue I suppose... */ |
| 384 | |
| 385 | #define MALI_ALPHA_COVERAGE(clampf) ((uint16_t) (int) (clampf * 15.0f)) |
| 386 | #define MALI_GET_ALPHA_COVERAGE(nibble) ((float) nibble / 15.0f) |
| 387 | |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 388 | /* Applies to midgard1.flags_lo */ |
| 389 | |
| 390 | /* Should be set when the fragment shader updates the depth value. */ |
| 391 | #define MALI_WRITES_Z (1 << 4) |
Alyssa Rosenzweig | 8d1adc0 | 2019-06-07 16:00:49 -0700 | [diff] [blame] | 392 | |
| 393 | /* Should the hardware perform early-Z testing? Normally should be set |
| 394 | * for performance reasons. Clear if you use: discard, |
| 395 | * alpha-to-coverage... * It's also possible this disables |
| 396 | * forward-pixel kill; we're not quite sure which bit is which yet. |
| 397 | * TODO: How does this interact with blending?*/ |
| 398 | |
Alyssa Rosenzweig | bd2fc60 | 2019-06-20 16:41:39 -0700 | [diff] [blame] | 399 | #define MALI_EARLY_Z (1 << 6) |
Alyssa Rosenzweig | 8d1adc0 | 2019-06-07 16:00:49 -0700 | [diff] [blame] | 400 | |
| 401 | /* Should the hardware calculate derivatives (via helper invocations)? Set in a |
| 402 | * fragment shader that uses texturing or derivative functions */ |
| 403 | |
Alyssa Rosenzweig | bd2fc60 | 2019-06-20 16:41:39 -0700 | [diff] [blame] | 404 | #define MALI_HELPER_INVOCATIONS (1 << 7) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 405 | |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 406 | /* Flags denoting the fragment shader's use of tilebuffer readback. If the |
| 407 | * shader might read any part of the tilebuffer, set MALI_READS_TILEBUFFER. If |
| 408 | * it might read depth/stencil in particular, also set MALI_READS_ZS */ |
| 409 | |
Alyssa Rosenzweig | bd2fc60 | 2019-06-20 16:41:39 -0700 | [diff] [blame] | 410 | #define MALI_READS_ZS (1 << 8) |
| 411 | #define MALI_READS_TILEBUFFER (1 << 12) |
Alyssa Rosenzweig | 7cccc89 | 2019-04-05 01:17:21 +0000 | [diff] [blame] | 412 | |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 413 | /* Applies to midgard1.flags_hi */ |
| 414 | |
| 415 | /* Should be set when the fragment shader updates the stencil value. */ |
| 416 | #define MALI_WRITES_S (1 << 2) |
| 417 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 418 | /* The raw Midgard blend payload can either be an equation or a shader |
| 419 | * address, depending on the context */ |
| 420 | |
| 421 | union midgard_blend { |
| 422 | mali_ptr shader; |
Alyssa Rosenzweig | 3645c78 | 2019-05-18 20:36:00 +0000 | [diff] [blame] | 423 | |
| 424 | struct { |
| 425 | struct mali_blend_equation equation; |
| 426 | float constant; |
| 427 | }; |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 428 | }; |
| 429 | |
Alyssa Rosenzweig | fd81916 | 2019-11-12 14:19:52 -0500 | [diff] [blame] | 430 | /* We need to load the tilebuffer to blend (i.e. the destination factor is not |
| 431 | * ZERO) */ |
| 432 | |
| 433 | #define MALI_BLEND_LOAD_TIB (0x1) |
| 434 | |
| 435 | /* A blend shader is used to blend this render target */ |
| 436 | #define MALI_BLEND_MRT_SHADER (0x2) |
| 437 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 438 | /* On MRT Midgard systems (using an MFBD), each render target gets its own |
| 439 | * blend descriptor */ |
| 440 | |
Alyssa Rosenzweig | 6585bb9 | 2019-06-17 16:23:23 -0700 | [diff] [blame] | 441 | #define MALI_BLEND_SRGB (0x400) |
| 442 | |
Alyssa Rosenzweig | 5c554e2 | 2019-07-17 16:19:45 -0700 | [diff] [blame] | 443 | /* Dithering is specified here for MFBD, otherwise NO_DITHER for SFBD */ |
| 444 | #define MALI_BLEND_NO_DITHER (0x800) |
| 445 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 446 | struct midgard_blend_rt { |
| 447 | /* Flags base value of 0x200 to enable the render target. |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 448 | * OR with 0x1 for blending (anything other than REPLACE). |
Alyssa Rosenzweig | 71dd52e | 2019-11-30 13:24:46 -0500 | [diff] [blame] | 449 | * OR with 0x2 for programmable blending |
Alyssa Rosenzweig | 6585bb9 | 2019-06-17 16:23:23 -0700 | [diff] [blame] | 450 | * OR with MALI_BLEND_SRGB for implicit sRGB |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 451 | */ |
| 452 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 453 | u64 flags; |
| 454 | union midgard_blend blend; |
| 455 | } __attribute__((packed)); |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 456 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 457 | /* On Bifrost systems (all MRT), each render target gets one of these |
| 458 | * descriptors */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 459 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 460 | struct bifrost_blend_rt { |
| 461 | /* This is likely an analogue of the flags on |
| 462 | * midgard_blend_rt */ |
| 463 | |
Alyssa Rosenzweig | ae70538 | 2019-05-18 20:48:43 +0000 | [diff] [blame] | 464 | u16 flags; // = 0x200 |
| 465 | |
| 466 | /* Single-channel blend constants are encoded in a sort of |
| 467 | * fixed-point. Basically, the float is mapped to a byte, becoming |
| 468 | * a high byte, and then the lower-byte is added for precision. |
| 469 | * For the original float f: |
| 470 | * |
| 471 | * f = (constant_hi / 255) + (constant_lo / 65535) |
| 472 | * |
| 473 | * constant_hi = int(f / 255) |
| 474 | * constant_lo = 65535*f - (65535/255) * constant_hi |
| 475 | */ |
| 476 | |
| 477 | u16 constant; |
| 478 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 479 | struct mali_blend_equation equation; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 480 | /* |
| 481 | * - 0x19 normally |
| 482 | * - 0x3 when this slot is unused (everything else is 0 except the index) |
| 483 | * - 0x11 when this is the fourth slot (and it's used) |
| 484 | + * - 0 when there is a blend shader |
| 485 | */ |
| 486 | u16 unk2; |
| 487 | /* increments from 0 to 3 */ |
| 488 | u16 index; |
| 489 | |
| 490 | union { |
| 491 | struct { |
| 492 | /* So far, I've only seen: |
| 493 | * - R001 for 1-component formats |
| 494 | * - RG01 for 2-component formats |
| 495 | * - RGB1 for 3-component formats |
| 496 | * - RGBA for 4-component formats |
| 497 | */ |
| 498 | u32 swizzle : 12; |
| 499 | enum mali_format format : 8; |
| 500 | |
| 501 | /* Type of the shader output variable. Note, this can |
| 502 | * be different from the format. |
| 503 | * |
| 504 | * 0: f16 (mediump float) |
| 505 | * 1: f32 (highp float) |
| 506 | * 2: i32 (highp int) |
| 507 | * 3: u32 (highp uint) |
| 508 | * 4: i16 (mediump int) |
| 509 | * 5: u16 (mediump uint) |
| 510 | */ |
| 511 | u32 shader_type : 3; |
| 512 | u32 zero : 9; |
| 513 | }; |
| 514 | |
| 515 | /* Only the low 32 bits of the blend shader are stored, the |
| 516 | * high 32 bits are implicitly the same as the original shader. |
| 517 | * According to the kernel driver, the program counter for |
| 518 | * shaders is actually only 24 bits, so shaders cannot cross |
| 519 | * the 2^24-byte boundary, and neither can the blend shader. |
| 520 | * The blob handles this by allocating a 2^24 byte pool for |
| 521 | * shaders, and making sure that any blend shaders are stored |
| 522 | * in the same pool as the original shader. The kernel will |
| 523 | * make sure this allocation is aligned to 2^24 bytes. |
| 524 | */ |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 525 | u32 shader; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 526 | }; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 527 | } __attribute__((packed)); |
| 528 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 529 | /* Descriptor for the shader. Following this is at least one, up to four blend |
| 530 | * descriptors for each active render target */ |
| 531 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 532 | struct mali_shader_meta { |
| 533 | mali_ptr shader; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 534 | u16 sampler_count; |
Alyssa Rosenzweig | 194b49e | 2019-07-31 07:20:29 -0700 | [diff] [blame] | 535 | u16 texture_count; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 536 | u16 attribute_count; |
| 537 | u16 varying_count; |
| 538 | |
| 539 | union { |
| 540 | struct { |
| 541 | u32 uniform_buffer_count : 4; |
| 542 | u32 unk1 : 28; // = 0x800000 for vertex, 0x958020 for tiler |
| 543 | } bifrost1; |
| 544 | struct { |
Alyssa Rosenzweig | bd2fc60 | 2019-06-20 16:41:39 -0700 | [diff] [blame] | 545 | unsigned uniform_buffer_count : 4; |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 546 | unsigned flags_lo : 12; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 547 | |
Alyssa Rosenzweig | 95ba661 | 2019-12-27 13:01:17 -0500 | [diff] [blame] | 548 | /* vec4 units */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 549 | unsigned work_count : 5; |
| 550 | unsigned uniform_count : 5; |
Boris Brezillon | 8ed94d3 | 2020-01-31 12:37:38 +0100 | [diff] [blame] | 551 | unsigned flags_hi : 6; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 552 | } midgard1; |
| 553 | }; |
| 554 | |
Alyssa Rosenzweig | 7a36c72 | 2019-07-11 07:01:56 -0700 | [diff] [blame] | 555 | /* Same as glPolygoOffset() arguments */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 556 | float depth_units; |
| 557 | float depth_factor; |
| 558 | |
| 559 | u32 unknown2_2; |
| 560 | |
| 561 | u16 alpha_coverage; |
| 562 | u16 unknown2_3; |
| 563 | |
| 564 | u8 stencil_mask_front; |
| 565 | u8 stencil_mask_back; |
| 566 | u16 unknown2_4; |
| 567 | |
| 568 | struct mali_stencil_test stencil_front; |
| 569 | struct mali_stencil_test stencil_back; |
| 570 | |
| 571 | union { |
| 572 | struct { |
| 573 | u32 unk3 : 7; |
| 574 | /* On Bifrost, some system values are preloaded in |
| 575 | * registers R55-R62 by the thread dispatcher prior to |
| 576 | * the start of shader execution. This is a bitfield |
| 577 | * with one entry for each register saying which |
| 578 | * registers need to be preloaded. Right now, the known |
| 579 | * values are: |
| 580 | * |
| 581 | * Vertex/compute: |
| 582 | * - R55 : gl_LocalInvocationID.xy |
| 583 | * - R56 : gl_LocalInvocationID.z + unknown in high 16 bits |
| 584 | * - R57 : gl_WorkGroupID.x |
| 585 | * - R58 : gl_WorkGroupID.y |
| 586 | * - R59 : gl_WorkGroupID.z |
| 587 | * - R60 : gl_GlobalInvocationID.x |
| 588 | * - R61 : gl_GlobalInvocationID.y/gl_VertexID (without base) |
| 589 | * - R62 : gl_GlobalInvocationID.z/gl_InstanceID (without base) |
| 590 | * |
| 591 | * Fragment: |
| 592 | * - R55 : unknown, never seen (but the bit for this is |
| 593 | * always set?) |
| 594 | * - R56 : unknown (bit always unset) |
| 595 | * - R57 : gl_PrimitiveID |
| 596 | * - R58 : gl_FrontFacing in low bit, potentially other stuff |
| 597 | * - R59 : u16 fragment coordinates (used to compute |
| 598 | * gl_FragCoord.xy, together with sample positions) |
| 599 | * - R60 : gl_SampleMask (used in epilog, so pretty |
| 600 | * much always used, but the bit is always 0 -- is |
| 601 | * this just always pushed?) |
| 602 | * - R61 : gl_SampleMaskIn and gl_SampleID, used by |
| 603 | * varying interpolation. |
| 604 | * - R62 : unknown (bit always unset). |
Alyssa Rosenzweig | eb15525 | 2020-03-02 21:32:31 -0500 | [diff] [blame] | 605 | * |
| 606 | * Later GPUs (starting with Mali-G52?) support |
| 607 | * preloading float varyings into r0-r7. This is |
| 608 | * indicated by setting 0x40. There is no distinction |
| 609 | * here between 1 varying and 2. |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 610 | */ |
| 611 | u32 preload_regs : 8; |
| 612 | /* In units of 8 bytes or 64 bits, since the |
| 613 | * uniform/const port loads 64 bits at a time. |
| 614 | */ |
| 615 | u32 uniform_count : 7; |
| 616 | u32 unk4 : 10; // = 2 |
| 617 | } bifrost2; |
| 618 | struct { |
| 619 | u32 unknown2_7; |
| 620 | } midgard2; |
| 621 | }; |
| 622 | |
Alyssa Rosenzweig | 50138ab | 2020-02-10 08:56:33 -0500 | [diff] [blame] | 623 | u32 padding; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 624 | |
| 625 | /* Blending information for the older non-MRT Midgard HW. Check for |
| 626 | * MALI_HAS_BLEND_SHADER to decide how to interpret. |
| 627 | */ |
| 628 | |
Alyssa Rosenzweig | 050b934 | 2019-05-04 21:57:01 +0000 | [diff] [blame] | 629 | union midgard_blend blend; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 630 | } __attribute__((packed)); |
| 631 | |
| 632 | /* This only concerns hardware jobs */ |
| 633 | |
| 634 | /* Possible values for job_descriptor_size */ |
| 635 | |
| 636 | #define MALI_JOB_32 0 |
| 637 | #define MALI_JOB_64 1 |
| 638 | |
| 639 | struct mali_job_descriptor_header { |
| 640 | u32 exception_status; |
| 641 | u32 first_incomplete_task; |
| 642 | u64 fault_pointer; |
| 643 | u8 job_descriptor_size : 1; |
| 644 | enum mali_job_type job_type : 7; |
| 645 | u8 job_barrier : 1; |
| 646 | u8 unknown_flags : 7; |
| 647 | u16 job_index; |
| 648 | u16 job_dependency_index_1; |
| 649 | u16 job_dependency_index_2; |
Alyssa Rosenzweig | 65e5c19 | 2019-12-27 13:03:22 -0500 | [diff] [blame] | 650 | u64 next_job; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 651 | } __attribute__((packed)); |
| 652 | |
Alyssa Rosenzweig | 358372b | 2019-08-09 16:04:24 -0700 | [diff] [blame] | 653 | /* These concern exception_status */ |
| 654 | |
| 655 | /* Access type causing a fault, paralleling AS_FAULTSTATUS_* entries in the |
| 656 | * kernel */ |
| 657 | |
| 658 | enum mali_exception_access { |
| 659 | /* Atomic in the kernel for MMU, but that doesn't make sense for a job |
| 660 | * fault so it's just unused */ |
| 661 | MALI_EXCEPTION_ACCESS_NONE = 0, |
| 662 | |
| 663 | MALI_EXCEPTION_ACCESS_EXECUTE = 1, |
| 664 | MALI_EXCEPTION_ACCESS_READ = 2, |
| 665 | MALI_EXCEPTION_ACCESS_WRITE = 3 |
| 666 | }; |
| 667 | |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 668 | /* Details about write_value from panfrost igt tests which use it as a generic |
Alyssa Rosenzweig | 9eae950 | 2019-12-04 08:59:29 -0500 | [diff] [blame] | 669 | * dword write primitive */ |
| 670 | |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 671 | #define MALI_WRITE_VALUE_ZERO 3 |
Alyssa Rosenzweig | 9eae950 | 2019-12-04 08:59:29 -0500 | [diff] [blame] | 672 | |
Alyssa Rosenzweig | adf716d | 2019-12-05 09:06:53 -0500 | [diff] [blame] | 673 | struct mali_payload_write_value { |
Alyssa Rosenzweig | 9eae950 | 2019-12-04 08:59:29 -0500 | [diff] [blame] | 674 | u64 address; |
| 675 | u32 value_descriptor; |
| 676 | u32 reserved; |
| 677 | u64 immediate; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 678 | } __attribute__((packed)); |
| 679 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 680 | /* |
| 681 | * Mali Attributes |
| 682 | * |
| 683 | * This structure lets the attribute unit compute the address of an attribute |
| 684 | * given the vertex and instance ID. Unfortunately, the way this works is |
| 685 | * rather complicated when instancing is enabled. |
| 686 | * |
| 687 | * To explain this, first we need to explain how compute and vertex threads are |
| 688 | * dispatched. This is a guess (although a pretty firm guess!) since the |
| 689 | * details are mostly hidden from the driver, except for attribute instancing. |
| 690 | * When a quad is dispatched, it receives a single, linear index. However, we |
| 691 | * need to translate that index into a (vertex id, instance id) pair, or a |
| 692 | * (local id x, local id y, local id z) triple for compute shaders (although |
| 693 | * vertex shaders and compute shaders are handled almost identically). |
| 694 | * Focusing on vertex shaders, one option would be to do: |
| 695 | * |
| 696 | * vertex_id = linear_id % num_vertices |
| 697 | * instance_id = linear_id / num_vertices |
| 698 | * |
| 699 | * but this involves a costly division and modulus by an arbitrary number. |
| 700 | * Instead, we could pad num_vertices. We dispatch padded_num_vertices * |
| 701 | * num_instances threads instead of num_vertices * num_instances, which results |
| 702 | * in some "extra" threads with vertex_id >= num_vertices, which we have to |
| 703 | * discard. The more we pad num_vertices, the more "wasted" threads we |
| 704 | * dispatch, but the division is potentially easier. |
| 705 | * |
| 706 | * One straightforward choice is to pad num_vertices to the next power of two, |
| 707 | * which means that the division and modulus are just simple bit shifts and |
| 708 | * masking. But the actual algorithm is a bit more complicated. The thread |
| 709 | * dispatcher has special support for dividing by 3, 5, 7, and 9, in addition |
| 710 | * to dividing by a power of two. This is possibly using the technique |
| 711 | * described in patent US20170010862A1. As a result, padded_num_vertices can be |
| 712 | * 1, 3, 5, 7, or 9 times a power of two. This results in less wasted threads, |
| 713 | * since we need less padding. |
| 714 | * |
| 715 | * padded_num_vertices is picked by the hardware. The driver just specifies the |
| 716 | * actual number of vertices. At least for Mali G71, the first few cases are |
| 717 | * given by: |
| 718 | * |
| 719 | * num_vertices | padded_num_vertices |
| 720 | * 3 | 4 |
| 721 | * 4-7 | 8 |
| 722 | * 8-11 | 12 (3 * 4) |
| 723 | * 12-15 | 16 |
| 724 | * 16-19 | 20 (5 * 4) |
| 725 | * |
| 726 | * Note that padded_num_vertices is a multiple of four (presumably because |
| 727 | * threads are dispatched in groups of 4). Also, padded_num_vertices is always |
| 728 | * at least one more than num_vertices, which seems like a quirk of the |
| 729 | * hardware. For larger num_vertices, the hardware uses the following |
| 730 | * algorithm: using the binary representation of num_vertices, we look at the |
| 731 | * most significant set bit as well as the following 3 bits. Let n be the |
| 732 | * number of bits after those 4 bits. Then we set padded_num_vertices according |
| 733 | * to the following table: |
| 734 | * |
| 735 | * high bits | padded_num_vertices |
| 736 | * 1000 | 9 * 2^n |
| 737 | * 1001 | 5 * 2^(n+1) |
| 738 | * 101x | 3 * 2^(n+2) |
| 739 | * 110x | 7 * 2^(n+1) |
| 740 | * 111x | 2^(n+4) |
| 741 | * |
| 742 | * For example, if num_vertices = 70 is passed to glDraw(), its binary |
| 743 | * representation is 1000110, so n = 3 and the high bits are 1000, and |
| 744 | * therefore padded_num_vertices = 9 * 2^3 = 72. |
| 745 | * |
| 746 | * The attribute unit works in terms of the original linear_id. if |
| 747 | * num_instances = 1, then they are the same, and everything is simple. |
| 748 | * However, with instancing things get more complicated. There are four |
| 749 | * possible modes, two of them we can group together: |
| 750 | * |
| 751 | * 1. Use the linear_id directly. Only used when there is no instancing. |
| 752 | * |
| 753 | * 2. Use the linear_id modulo a constant. This is used for per-vertex |
| 754 | * attributes with instancing enabled by making the constant equal |
| 755 | * padded_num_vertices. Because the modulus is always padded_num_vertices, this |
| 756 | * mode only supports a modulus that is a power of 2 times 1, 3, 5, 7, or 9. |
| 757 | * The shift field specifies the power of two, while the extra_flags field |
| 758 | * specifies the odd number. If shift = n and extra_flags = m, then the modulus |
| 759 | * is (2m + 1) * 2^n. As an example, if num_vertices = 70, then as computed |
| 760 | * above, padded_num_vertices = 9 * 2^3, so we should set extra_flags = 4 and |
| 761 | * shift = 3. Note that we must exactly follow the hardware algorithm used to |
| 762 | * get padded_num_vertices in order to correctly implement per-vertex |
| 763 | * attributes. |
| 764 | * |
| 765 | * 3. Divide the linear_id by a constant. In order to correctly implement |
| 766 | * instance divisors, we have to divide linear_id by padded_num_vertices times |
| 767 | * to user-specified divisor. So first we compute padded_num_vertices, again |
| 768 | * following the exact same algorithm that the hardware uses, then multiply it |
| 769 | * by the GL-level divisor to get the hardware-level divisor. This case is |
| 770 | * further divided into two more cases. If the hardware-level divisor is a |
| 771 | * power of two, then we just need to shift. The shift amount is specified by |
| 772 | * the shift field, so that the hardware-level divisor is just 2^shift. |
| 773 | * |
| 774 | * If it isn't a power of two, then we have to divide by an arbitrary integer. |
| 775 | * For that, we use the well-known technique of multiplying by an approximation |
| 776 | * of the inverse. The driver must compute the magic multiplier and shift |
| 777 | * amount, and then the hardware does the multiplication and shift. The |
| 778 | * hardware and driver also use the "round-down" optimization as described in |
| 779 | * http://ridiculousfish.com/files/faster_unsigned_division_by_constants.pdf. |
| 780 | * The hardware further assumes the multiplier is between 2^31 and 2^32, so the |
| 781 | * high bit is implicitly set to 1 even though it is set to 0 by the driver -- |
| 782 | * presumably this simplifies the hardware multiplier a little. The hardware |
| 783 | * first multiplies linear_id by the multiplier and takes the high 32 bits, |
| 784 | * then applies the round-down correction if extra_flags = 1, then finally |
| 785 | * shifts right by the shift field. |
| 786 | * |
| 787 | * There are some differences between ridiculousfish's algorithm and the Mali |
| 788 | * hardware algorithm, which means that the reference code from ridiculousfish |
| 789 | * doesn't always produce the right constants. Mali does not use the pre-shift |
| 790 | * optimization, since that would make a hardware implementation slower (it |
| 791 | * would have to always do the pre-shift, multiply, and post-shift operations). |
| 792 | * It also forces the multplier to be at least 2^31, which means that the |
| 793 | * exponent is entirely fixed, so there is no trial-and-error. Altogether, |
| 794 | * given the divisor d, the algorithm the driver must follow is: |
| 795 | * |
| 796 | * 1. Set shift = floor(log2(d)). |
| 797 | * 2. Compute m = ceil(2^(shift + 32) / d) and e = 2^(shift + 32) % d. |
| 798 | * 3. If e <= 2^shift, then we need to use the round-down algorithm. Set |
| 799 | * magic_divisor = m - 1 and extra_flags = 1. |
| 800 | * 4. Otherwise, set magic_divisor = m and extra_flags = 0. |
Alyssa Rosenzweig | a692126 | 2019-07-30 17:27:03 -0700 | [diff] [blame] | 801 | * |
| 802 | * Unrelated to instancing/actual attributes, images (the OpenCL kind) are |
| 803 | * implemented as special attributes, denoted by MALI_ATTR_IMAGE. For images, |
| 804 | * let shift=extra_flags=0. Stride is set to the image format's bytes-per-pixel |
| 805 | * (*NOT the row stride*). Size is set to the size of the image itself. |
Alyssa Rosenzweig | f3e1512 | 2019-07-31 11:56:55 -0700 | [diff] [blame] | 806 | * |
Alyssa Rosenzweig | 5f83761 | 2019-12-27 12:10:24 -0500 | [diff] [blame] | 807 | * Special internal attribtues and varyings (gl_VertexID, gl_FrontFacing, etc) |
| 808 | * use particular fixed addresses with modified structures. |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 809 | */ |
| 810 | |
| 811 | enum mali_attr_mode { |
| 812 | MALI_ATTR_UNUSED = 0, |
| 813 | MALI_ATTR_LINEAR = 1, |
| 814 | MALI_ATTR_POT_DIVIDE = 2, |
| 815 | MALI_ATTR_MODULO = 3, |
| 816 | MALI_ATTR_NPOT_DIVIDE = 4, |
Alyssa Rosenzweig | f3e1512 | 2019-07-31 11:56:55 -0700 | [diff] [blame] | 817 | MALI_ATTR_IMAGE = 5, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 818 | }; |
| 819 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 820 | /* Pseudo-address for gl_VertexID, gl_FragCoord, gl_FrontFacing */ |
Alyssa Rosenzweig | f3e1512 | 2019-07-31 11:56:55 -0700 | [diff] [blame] | 821 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 822 | #define MALI_ATTR_VERTEXID (0x22) |
| 823 | #define MALI_ATTR_INSTANCEID (0x24) |
Alyssa Rosenzweig | 2c5ba2e | 2019-08-22 11:29:23 -0700 | [diff] [blame] | 824 | #define MALI_VARYING_FRAG_COORD (0x25) |
| 825 | #define MALI_VARYING_FRONT_FACING (0x26) |
Alyssa Rosenzweig | f3e1512 | 2019-07-31 11:56:55 -0700 | [diff] [blame] | 826 | |
Alyssa Rosenzweig | b98955e | 2019-03-15 23:25:55 +0000 | [diff] [blame] | 827 | /* This magic "pseudo-address" is used as `elements` to implement |
| 828 | * gl_PointCoord. When read from a fragment shader, it generates a point |
| 829 | * coordinate per the OpenGL ES 2.0 specification. Flipped coordinate spaces |
| 830 | * require an affine transformation in the shader. */ |
| 831 | |
Alyssa Rosenzweig | 2c5ba2e | 2019-08-22 11:29:23 -0700 | [diff] [blame] | 832 | #define MALI_VARYING_POINT_COORD (0x61) |
| 833 | |
| 834 | /* Used for comparison to check if an address is special. Mostly a guess, but |
| 835 | * it doesn't really matter. */ |
| 836 | |
Alyssa Rosenzweig | 3b3d965 | 2019-12-19 12:28:42 -0500 | [diff] [blame] | 837 | #define MALI_RECORD_SPECIAL (0x100) |
Alyssa Rosenzweig | b98955e | 2019-03-15 23:25:55 +0000 | [diff] [blame] | 838 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 839 | union mali_attr { |
| 840 | /* This is used for actual attributes. */ |
| 841 | struct { |
| 842 | /* The bottom 3 bits are the mode */ |
| 843 | mali_ptr elements : 64 - 8; |
| 844 | u32 shift : 5; |
| 845 | u32 extra_flags : 3; |
| 846 | u32 stride; |
| 847 | u32 size; |
| 848 | }; |
| 849 | /* The entry after an NPOT_DIVIDE entry has this format. It stores |
| 850 | * extra information that wouldn't fit in a normal entry. |
| 851 | */ |
| 852 | struct { |
| 853 | u32 unk; /* = 0x20 */ |
| 854 | u32 magic_divisor; |
| 855 | u32 zero; |
| 856 | /* This is the original, GL-level divisor. */ |
| 857 | u32 divisor; |
| 858 | }; |
| 859 | } __attribute__((packed)); |
| 860 | |
| 861 | struct mali_attr_meta { |
| 862 | /* Vertex buffer index */ |
| 863 | u8 index; |
| 864 | |
| 865 | unsigned unknown1 : 2; |
| 866 | unsigned swizzle : 12; |
| 867 | enum mali_format format : 8; |
| 868 | |
| 869 | /* Always observed to be zero at the moment */ |
| 870 | unsigned unknown3 : 2; |
| 871 | |
Alyssa Rosenzweig | 8d74749 | 2019-06-27 14:13:10 -0700 | [diff] [blame] | 872 | /* When packing multiple attributes in a buffer, offset addresses by |
| 873 | * this value. Obscurely, this is signed. */ |
| 874 | int32_t src_offset; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 875 | } __attribute__((packed)); |
| 876 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 877 | #define FBD_MASK (~0x3f) |
| 878 | |
Alyssa Rosenzweig | 8959364 | 2019-12-16 12:05:45 -0500 | [diff] [blame] | 879 | /* MFBD, rather than SFBD */ |
| 880 | #define MALI_MFBD (0x1) |
| 881 | |
Alyssa Rosenzweig | f06e8f7 | 2019-08-21 12:06:50 -0700 | [diff] [blame] | 882 | /* ORed into an MFBD address to specify the fbx section is included */ |
| 883 | #define MALI_MFBD_TAG_EXTRA (0x2) |
| 884 | |
Alyssa Rosenzweig | 7d3c48f | 2020-02-16 17:01:02 -0500 | [diff] [blame] | 885 | /* Uniform buffer objects are 64-bit fields divided as: |
| 886 | * |
| 887 | * u64 size : 10; |
| 888 | * mali_ptr ptr : 64 - 10; |
| 889 | * |
| 890 | * The size is actually the size minus 1 (MALI_POSITIVE), in units of 16 bytes. |
| 891 | * This gives a maximum of 2^14 bytes, which just so happens to be the GL |
| 892 | * minimum-maximum for GL_MAX_UNIFORM_BLOCK_SIZE. |
| 893 | * |
| 894 | * The pointer is missing the bottom 2 bits and top 8 bits. The top 8 bits |
| 895 | * should be 0 for userspace pointers, according to |
| 896 | * https://lwn.net/Articles/718895/. By reusing these bits, we can make each |
| 897 | * entry in the table only 64 bits. |
| 898 | */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 899 | |
Alyssa Rosenzweig | 7d3c48f | 2020-02-16 17:01:02 -0500 | [diff] [blame] | 900 | #define MALI_MAKE_UBO(elements, ptr) \ |
| 901 | (MALI_POSITIVE((elements)) | (((ptr) >> 2) << 10)) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 902 | |
| 903 | /* On Bifrost, these fields are the same between the vertex and tiler payloads. |
| 904 | * They also seem to be the same between Bifrost and Midgard. They're shared in |
| 905 | * fused payloads. |
| 906 | */ |
| 907 | |
| 908 | /* Applies to unknown_draw */ |
Alyssa Rosenzweig | 72981c9 | 2019-02-27 04:33:13 +0000 | [diff] [blame] | 909 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 910 | #define MALI_DRAW_INDEXED_UINT8 (0x10) |
| 911 | #define MALI_DRAW_INDEXED_UINT16 (0x20) |
| 912 | #define MALI_DRAW_INDEXED_UINT32 (0x30) |
Alyssa Rosenzweig | f38ce6e | 2019-08-21 16:06:23 -0700 | [diff] [blame] | 913 | #define MALI_DRAW_INDEXED_SIZE (0x30) |
| 914 | #define MALI_DRAW_INDEXED_SHIFT (4) |
| 915 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 916 | #define MALI_DRAW_VARYING_SIZE (0x100) |
Alyssa Rosenzweig | 71df7c6 | 2019-12-27 15:33:21 -0500 | [diff] [blame] | 917 | |
| 918 | /* Set to use first vertex as the provoking vertex for flatshading. Clear to |
| 919 | * use the last vertex. This is the default in DX and VK, but not in GL. */ |
| 920 | |
| 921 | #define MALI_DRAW_FLATSHADE_FIRST (0x800) |
| 922 | |
Alyssa Rosenzweig | 72981c9 | 2019-02-27 04:33:13 +0000 | [diff] [blame] | 923 | #define MALI_DRAW_PRIMITIVE_RESTART_FIXED_INDEX (0x10000) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 924 | |
| 925 | struct mali_vertex_tiler_prefix { |
| 926 | /* This is a dynamic bitfield containing the following things in this order: |
| 927 | * |
| 928 | * - gl_WorkGroupSize.x |
| 929 | * - gl_WorkGroupSize.y |
| 930 | * - gl_WorkGroupSize.z |
| 931 | * - gl_NumWorkGroups.x |
| 932 | * - gl_NumWorkGroups.y |
| 933 | * - gl_NumWorkGroups.z |
| 934 | * |
| 935 | * The number of bits allocated for each number is based on the *_shift |
| 936 | * fields below. For example, workgroups_y_shift gives the bit that |
| 937 | * gl_NumWorkGroups.y starts at, and workgroups_z_shift gives the bit |
| 938 | * that gl_NumWorkGroups.z starts at (and therefore one after the bit |
| 939 | * that gl_NumWorkGroups.y ends at). The actual value for each gl_* |
| 940 | * value is one more than the stored value, since if any of the values |
| 941 | * are zero, then there would be no invocations (and hence no job). If |
| 942 | * there were 0 bits allocated to a given field, then it must be zero, |
| 943 | * and hence the real value is one. |
| 944 | * |
| 945 | * Vertex jobs reuse the same job dispatch mechanism as compute jobs, |
| 946 | * effectively doing glDispatchCompute(1, vertex_count, instance_count) |
| 947 | * where vertex count is the number of vertices. |
| 948 | */ |
| 949 | u32 invocation_count; |
| 950 | |
Alyssa Rosenzweig | 6378797 | 2019-12-12 11:28:08 -0500 | [diff] [blame] | 951 | /* Bitfield for shifts: |
| 952 | * |
| 953 | * size_y_shift : 5 |
| 954 | * size_z_shift : 5 |
| 955 | * workgroups_x_shift : 6 |
| 956 | * workgroups_y_shift : 6 |
| 957 | * workgroups_z_shift : 6 |
| 958 | * workgroups_x_shift_2 : 4 |
| 959 | */ |
| 960 | u32 invocation_shifts; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 961 | |
| 962 | u32 draw_mode : 4; |
| 963 | u32 unknown_draw : 22; |
| 964 | |
| 965 | /* This is the the same as workgroups_x_shift_2 in compute shaders, but |
| 966 | * always 5 for vertex jobs and 6 for tiler jobs. I suspect this has |
| 967 | * something to do with how many quads get put in the same execution |
| 968 | * engine, which is a balance (you don't want to starve the engine, but |
| 969 | * you also want to distribute work evenly). |
| 970 | */ |
| 971 | u32 workgroups_x_shift_3 : 6; |
| 972 | |
| 973 | |
Rohan Garg | 16edd56 | 2019-07-17 18:50:13 +0200 | [diff] [blame] | 974 | /* Negative of min_index. This is used to compute |
| 975 | * the unbiased index in tiler/fragment shader runs. |
| 976 | * |
| 977 | * The hardware adds offset_bias_correction in each run, |
| 978 | * so that absent an index bias, the first vertex processed is |
| 979 | * genuinely the first vertex (0). But with an index bias, |
| 980 | * the first vertex process is numbered the same as the bias. |
| 981 | * |
| 982 | * To represent this more conviniently: |
| 983 | * unbiased_index = lower_bound_index + |
| 984 | * index_bias + |
| 985 | * offset_bias_correction |
| 986 | * |
| 987 | * This is done since the hardware doesn't accept a index_bias |
| 988 | * and this allows it to recover the unbiased index. |
| 989 | */ |
| 990 | int32_t offset_bias_correction; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 991 | u32 zero1; |
| 992 | |
| 993 | /* Like many other strictly nonzero quantities, index_count is |
| 994 | * subtracted by one. For an indexed cube, this is equal to 35 = 6 |
| 995 | * faces * 2 triangles/per face * 3 vertices/per triangle - 1. That is, |
| 996 | * for an indexed draw, index_count is the number of actual vertices |
| 997 | * rendered whereas invocation_count is the number of unique vertices |
| 998 | * rendered (the number of times the vertex shader must be invoked). |
| 999 | * For non-indexed draws, this is just equal to invocation_count. */ |
| 1000 | |
| 1001 | u32 index_count; |
| 1002 | |
| 1003 | /* No hidden structure; literally just a pointer to an array of uint |
| 1004 | * indices (width depends on flags). Thanks, guys, for not making my |
| 1005 | * life insane for once! NULL for non-indexed draws. */ |
| 1006 | |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1007 | u64 indices; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1008 | } __attribute__((packed)); |
| 1009 | |
| 1010 | /* Point size / line width can either be specified as a 32-bit float (for |
| 1011 | * constant size) or as a [machine word size]-bit GPU pointer (for varying size). If a pointer |
| 1012 | * is selected, by setting the appropriate MALI_DRAW_VARYING_SIZE bit in the tiler |
| 1013 | * payload, the contents of varying_pointer will be intepreted as an array of |
| 1014 | * fp16 sizes, one for each vertex. gl_PointSize is therefore implemented by |
| 1015 | * creating a special MALI_R16F varying writing to varying_pointer. */ |
| 1016 | |
| 1017 | union midgard_primitive_size { |
| 1018 | float constant; |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1019 | u64 pointer; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1020 | }; |
| 1021 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1022 | struct bifrost_tiler_heap_meta { |
| 1023 | u32 zero; |
| 1024 | u32 heap_size; |
| 1025 | /* note: these are just guesses! */ |
| 1026 | mali_ptr tiler_heap_start; |
| 1027 | mali_ptr tiler_heap_free; |
| 1028 | mali_ptr tiler_heap_end; |
| 1029 | |
| 1030 | /* hierarchy weights? but they're still 0 after the job has run... */ |
| 1031 | u32 zeros[12]; |
| 1032 | } __attribute__((packed)); |
| 1033 | |
| 1034 | struct bifrost_tiler_meta { |
| 1035 | u64 zero0; |
Alyssa Rosenzweig | 7f26bb3 | 2019-06-13 10:25:32 -0700 | [diff] [blame] | 1036 | u16 hierarchy_mask; |
| 1037 | u16 flags; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1038 | u16 width; |
| 1039 | u16 height; |
| 1040 | u64 zero1; |
| 1041 | mali_ptr tiler_heap_meta; |
| 1042 | /* TODO what is this used for? */ |
| 1043 | u64 zeros[20]; |
| 1044 | } __attribute__((packed)); |
| 1045 | |
| 1046 | struct bifrost_tiler_only { |
| 1047 | /* 0x20 */ |
| 1048 | union midgard_primitive_size primitive_size; |
| 1049 | |
| 1050 | mali_ptr tiler_meta; |
| 1051 | |
| 1052 | u64 zero1, zero2, zero3, zero4, zero5, zero6; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1053 | } __attribute__((packed)); |
| 1054 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1055 | struct mali_vertex_tiler_postfix { |
Tomeu Vizoso | 7b10d4e | 2020-04-08 10:55:28 +0200 | [diff] [blame^] | 1056 | u16 gl_enables; // 0x6 on Midgard, 0x2 on Bifrost |
Alyssa Rosenzweig | b010a6d | 2020-04-06 20:31:32 -0400 | [diff] [blame] | 1057 | |
| 1058 | /* Both zero for non-instanced draws. For instanced draws, a |
| 1059 | * decomposition of padded_num_vertices. See the comments about the |
| 1060 | * corresponding fields in mali_attr for context. */ |
| 1061 | |
| 1062 | unsigned instance_shift : 5; |
| 1063 | unsigned instance_odd : 3; |
| 1064 | |
| 1065 | u8 zero4; |
| 1066 | |
| 1067 | /* Offset for first vertex in buffer */ |
| 1068 | u32 offset_start; |
| 1069 | |
| 1070 | u64 zero5; |
| 1071 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1072 | /* Zero for vertex jobs. Pointer to the position (gl_Position) varying |
| 1073 | * output from the vertex shader for tiler jobs. |
| 1074 | */ |
| 1075 | |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1076 | u64 position_varying; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1077 | |
| 1078 | /* An array of mali_uniform_buffer_meta's. The size is given by the |
| 1079 | * shader_meta. |
| 1080 | */ |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1081 | u64 uniform_buffers; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1082 | |
| 1083 | /* This is a pointer to an array of pointers to the texture |
| 1084 | * descriptors, number of pointers bounded by number of textures. The |
| 1085 | * indirection is needed to accomodate varying numbers and sizes of |
| 1086 | * texture descriptors */ |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1087 | u64 texture_trampoline; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1088 | |
| 1089 | /* For OpenGL, from what I've seen, this is intimately connected to |
| 1090 | * texture_meta. cwabbott says this is not the case under Vulkan, hence |
| 1091 | * why this field is seperate (Midgard is Vulkan capable). Pointer to |
| 1092 | * array of sampler descriptors (which are uniform in size) */ |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1093 | u64 sampler_descriptor; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1094 | |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1095 | u64 uniforms; |
Alyssa Rosenzweig | fa14cdf | 2019-10-27 19:46:21 -0400 | [diff] [blame] | 1096 | u64 shader; |
Tomeu Vizoso | 5a7688f | 2019-07-11 08:06:41 +0200 | [diff] [blame] | 1097 | u64 attributes; /* struct attribute_buffer[] */ |
| 1098 | u64 attribute_meta; /* attribute_meta[] */ |
| 1099 | u64 varyings; /* struct attr */ |
| 1100 | u64 varying_meta; /* pointer */ |
| 1101 | u64 viewport; |
| 1102 | u64 occlusion_counter; /* A single bit as far as I can tell */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1103 | |
Alyssa Rosenzweig | 6dc1055 | 2020-02-10 08:47:09 -0500 | [diff] [blame] | 1104 | /* On Bifrost, this points directly to a mali_shared_memory structure. |
| 1105 | * On Midgard, this points to a framebuffer (either SFBD or MFBD as |
| 1106 | * tagged), which embeds a mali_shared_memory structure */ |
| 1107 | mali_ptr shared_memory; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1108 | } __attribute__((packed)); |
| 1109 | |
| 1110 | struct midgard_payload_vertex_tiler { |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1111 | struct mali_vertex_tiler_prefix prefix; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1112 | struct mali_vertex_tiler_postfix postfix; |
| 1113 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1114 | union midgard_primitive_size primitive_size; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1115 | } __attribute__((packed)); |
| 1116 | |
| 1117 | struct bifrost_payload_vertex { |
| 1118 | struct mali_vertex_tiler_prefix prefix; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1119 | struct mali_vertex_tiler_postfix postfix; |
| 1120 | } __attribute__((packed)); |
| 1121 | |
| 1122 | struct bifrost_payload_tiler { |
| 1123 | struct mali_vertex_tiler_prefix prefix; |
| 1124 | struct bifrost_tiler_only tiler; |
| 1125 | struct mali_vertex_tiler_postfix postfix; |
| 1126 | } __attribute__((packed)); |
| 1127 | |
| 1128 | struct bifrost_payload_fused { |
| 1129 | struct mali_vertex_tiler_prefix prefix; |
| 1130 | struct bifrost_tiler_only tiler; |
| 1131 | struct mali_vertex_tiler_postfix tiler_postfix; |
Alyssa Rosenzweig | 6b2457e | 2019-05-18 21:04:33 +0000 | [diff] [blame] | 1132 | u64 padding; /* zero */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1133 | struct mali_vertex_tiler_postfix vertex_postfix; |
| 1134 | } __attribute__((packed)); |
| 1135 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1136 | /* Purposeful off-by-one in width, height fields. For example, a (64, 64) |
| 1137 | * texture is stored as (63, 63) in these fields. This adjusts for that. |
| 1138 | * There's an identical pattern in the framebuffer descriptor. Even vertex |
| 1139 | * count fields work this way, hence the generic name -- integral fields that |
| 1140 | * are strictly positive generally need this adjustment. */ |
| 1141 | |
| 1142 | #define MALI_POSITIVE(dim) (dim - 1) |
| 1143 | |
Alyssa Rosenzweig | 5fe5827 | 2019-12-27 12:42:53 -0500 | [diff] [blame] | 1144 | /* Used with wrapping. Unclear what top bit conveys */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1145 | |
| 1146 | enum mali_wrap_mode { |
Alyssa Rosenzweig | 5fe5827 | 2019-12-27 12:42:53 -0500 | [diff] [blame] | 1147 | MALI_WRAP_REPEAT = 0x8 | 0x0, |
| 1148 | MALI_WRAP_CLAMP_TO_EDGE = 0x8 | 0x1, |
| 1149 | MALI_WRAP_CLAMP = 0x8 | 0x2, |
| 1150 | MALI_WRAP_CLAMP_TO_BORDER = 0x8 | 0x3, |
| 1151 | MALI_WRAP_MIRRORED_REPEAT = 0x8 | 0x4 | 0x0, |
| 1152 | MALI_WRAP_MIRRORED_CLAMP_TO_EDGE = 0x8 | 0x4 | 0x1, |
| 1153 | MALI_WRAP_MIRRORED_CLAMP = 0x8 | 0x4 | 0x2, |
| 1154 | MALI_WRAP_MIRRORED_CLAMP_TO_BORDER = 0x8 | 0x4 | 0x3, |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1155 | }; |
| 1156 | |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1157 | /* Shared across both command stream and Midgard, and even with Bifrost */ |
| 1158 | |
| 1159 | enum mali_texture_type { |
| 1160 | MALI_TEX_CUBE = 0x0, |
| 1161 | MALI_TEX_1D = 0x1, |
| 1162 | MALI_TEX_2D = 0x2, |
| 1163 | MALI_TEX_3D = 0x3 |
| 1164 | }; |
| 1165 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1166 | /* 8192x8192 */ |
| 1167 | #define MAX_MIP_LEVELS (13) |
| 1168 | |
| 1169 | /* Cubemap bloats everything up */ |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1170 | #define MAX_CUBE_FACES (6) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1171 | |
Alyssa Rosenzweig | 416fc3b | 2019-06-07 14:25:28 -0700 | [diff] [blame] | 1172 | /* For each pointer, there is an address and optionally also a stride */ |
| 1173 | #define MAX_ELEMENTS (2) |
| 1174 | |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 1175 | /* It's not known why there are 4-bits allocated -- this enum is almost |
| 1176 | * certainly incomplete */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1177 | |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 1178 | enum mali_texture_layout { |
| 1179 | /* For a Z/S texture, this is linear */ |
| 1180 | MALI_TEXTURE_TILED = 0x1, |
| 1181 | |
| 1182 | /* Z/S textures cannot be tiled */ |
| 1183 | MALI_TEXTURE_LINEAR = 0x2, |
| 1184 | |
| 1185 | /* 16x16 sparse */ |
| 1186 | MALI_TEXTURE_AFBC = 0xC |
| 1187 | }; |
| 1188 | |
| 1189 | /* Corresponds to the type passed to glTexImage2D and so forth */ |
Alyssa Rosenzweig | cea93520 | 2019-05-14 22:42:47 +0000 | [diff] [blame] | 1190 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1191 | struct mali_texture_format { |
| 1192 | unsigned swizzle : 12; |
| 1193 | enum mali_format format : 8; |
| 1194 | |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1195 | unsigned srgb : 1; |
| 1196 | unsigned unknown1 : 1; |
| 1197 | |
| 1198 | enum mali_texture_type type : 2; |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 1199 | enum mali_texture_layout layout : 4; |
Alyssa Rosenzweig | 83c02a5 | 2019-06-17 14:26:08 -0700 | [diff] [blame] | 1200 | |
Alyssa Rosenzweig | 9f15f4d | 2019-08-20 15:36:00 -0700 | [diff] [blame] | 1201 | /* Always set */ |
| 1202 | unsigned unknown2 : 1; |
| 1203 | |
| 1204 | /* Set to allow packing an explicit stride */ |
| 1205 | unsigned manual_stride : 1; |
| 1206 | |
| 1207 | unsigned zero : 2; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1208 | } __attribute__((packed)); |
| 1209 | |
| 1210 | struct mali_texture_descriptor { |
| 1211 | uint16_t width; |
| 1212 | uint16_t height; |
| 1213 | uint16_t depth; |
Alyssa Rosenzweig | bdf169a | 2019-06-14 16:23:32 -0700 | [diff] [blame] | 1214 | uint16_t array_size; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1215 | |
| 1216 | struct mali_texture_format format; |
| 1217 | |
| 1218 | uint16_t unknown3; |
| 1219 | |
| 1220 | /* One for non-mipmapped, zero for mipmapped */ |
| 1221 | uint8_t unknown3A; |
| 1222 | |
| 1223 | /* Zero for non-mipmapped, (number of levels - 1) for mipmapped */ |
Alyssa Rosenzweig | 96f6b8a | 2019-08-20 15:24:18 -0700 | [diff] [blame] | 1224 | uint8_t levels; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1225 | |
| 1226 | /* Swizzling is a single 32-bit word, broken up here for convenience. |
| 1227 | * Here, swizzling refers to the ES 3.0 texture parameters for channel |
| 1228 | * level swizzling, not the internal pixel-level swizzling which is |
| 1229 | * below OpenGL's reach */ |
| 1230 | |
| 1231 | unsigned swizzle : 12; |
| 1232 | unsigned swizzle_zero : 20; |
| 1233 | |
| 1234 | uint32_t unknown5; |
| 1235 | uint32_t unknown6; |
| 1236 | uint32_t unknown7; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1237 | } __attribute__((packed)); |
| 1238 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 1239 | /* filter_mode */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1240 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 1241 | #define MALI_SAMP_MAG_NEAREST (1 << 0) |
| 1242 | #define MALI_SAMP_MIN_NEAREST (1 << 1) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1243 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 1244 | /* TODO: What do these bits mean individually? Only seen set together */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1245 | |
Alyssa Rosenzweig | cf6cad3 | 2019-07-31 08:50:02 -0700 | [diff] [blame] | 1246 | #define MALI_SAMP_MIP_LINEAR_1 (1 << 3) |
| 1247 | #define MALI_SAMP_MIP_LINEAR_2 (1 << 4) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1248 | |
Alyssa Rosenzweig | 3e47a11 | 2019-07-31 09:08:07 -0700 | [diff] [blame] | 1249 | /* Flag in filter_mode, corresponding to OpenCL's NORMALIZED_COORDS_TRUE |
| 1250 | * sampler_t flag. For typical OpenGL textures, this is always set. */ |
| 1251 | |
| 1252 | #define MALI_SAMP_NORM_COORDS (1 << 5) |
| 1253 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1254 | /* Used for lod encoding. Thanks @urjaman for pointing out these routines can |
| 1255 | * be cleaned up a lot. */ |
| 1256 | |
| 1257 | #define DECODE_FIXED_16(x) ((float) (x / 256.0)) |
| 1258 | |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 1259 | static inline int16_t |
| 1260 | FIXED_16(float x, bool allow_negative) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1261 | { |
| 1262 | /* Clamp inputs, accounting for float error */ |
| 1263 | float max_lod = (32.0 - (1.0 / 512.0)); |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 1264 | float min_lod = allow_negative ? -max_lod : 0.0; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1265 | |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 1266 | x = ((x > max_lod) ? max_lod : ((x < min_lod) ? min_lod : x)); |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1267 | |
| 1268 | return (int) (x * 256.0); |
| 1269 | } |
| 1270 | |
| 1271 | struct mali_sampler_descriptor { |
Alyssa Rosenzweig | 046097c | 2019-11-20 09:26:48 -0500 | [diff] [blame] | 1272 | uint16_t filter_mode; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1273 | |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 1274 | /* Fixed point, signed. |
| 1275 | * Upper 7 bits before the decimal point, although it caps [0-31]. |
| 1276 | * Lower 8 bits after the decimal point: int(round(x * 256)) */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1277 | |
Icecream95 | f2f1277 | 2020-01-09 15:13:58 +1300 | [diff] [blame] | 1278 | int16_t lod_bias; |
| 1279 | int16_t min_lod; |
| 1280 | int16_t max_lod; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1281 | |
Alyssa Rosenzweig | de077c2 | 2019-12-27 12:56:03 -0500 | [diff] [blame] | 1282 | /* All one word in reality, but packed a bit. Comparisons are flipped |
| 1283 | * from OpenGL. */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1284 | |
| 1285 | enum mali_wrap_mode wrap_s : 4; |
| 1286 | enum mali_wrap_mode wrap_t : 4; |
| 1287 | enum mali_wrap_mode wrap_r : 4; |
Alyssa Rosenzweig | de077c2 | 2019-12-27 12:56:03 -0500 | [diff] [blame] | 1288 | enum mali_func compare_func : 3; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1289 | |
Alyssa Rosenzweig | 17adcfc | 2019-06-24 09:16:11 -0700 | [diff] [blame] | 1290 | /* No effect on 2D textures. For cubemaps, set for ES3 and clear for |
| 1291 | * ES2, controlling seamless cubemapping */ |
| 1292 | unsigned seamless_cube_map : 1; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1293 | |
| 1294 | unsigned zero : 16; |
| 1295 | |
| 1296 | uint32_t zero2; |
| 1297 | float border_color[4]; |
| 1298 | } __attribute__((packed)); |
| 1299 | |
Alyssa Rosenzweig | 7b5217a | 2019-05-18 21:01:03 +0000 | [diff] [blame] | 1300 | /* viewport0/viewport1 form the arguments to glViewport. viewport1 is |
| 1301 | * modified by MALI_POSITIVE; viewport0 is as-is. |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1302 | */ |
| 1303 | |
| 1304 | struct mali_viewport { |
Alyssa Rosenzweig | 49985ce | 2019-02-15 06:45:07 +0000 | [diff] [blame] | 1305 | /* XY clipping planes */ |
| 1306 | float clip_minx; |
| 1307 | float clip_miny; |
| 1308 | float clip_maxx; |
| 1309 | float clip_maxy; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1310 | |
Alyssa Rosenzweig | 49985ce | 2019-02-15 06:45:07 +0000 | [diff] [blame] | 1311 | /* Depth clipping planes */ |
| 1312 | float clip_minz; |
| 1313 | float clip_maxz; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1314 | |
| 1315 | u16 viewport0[2]; |
| 1316 | u16 viewport1[2]; |
| 1317 | } __attribute__((packed)); |
| 1318 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1319 | /* From presentations, 16x16 tiles externally. Use shift for fast computation |
| 1320 | * of tile numbers. */ |
| 1321 | |
| 1322 | #define MALI_TILE_SHIFT 4 |
| 1323 | #define MALI_TILE_LENGTH (1 << MALI_TILE_SHIFT) |
| 1324 | |
| 1325 | /* Tile coordinates are stored as a compact u32, as only 12 bits are needed to |
| 1326 | * each component. Notice that this provides a theoretical upper bound of (1 << |
| 1327 | * 12) = 4096 tiles in each direction, addressing a maximum framebuffer of size |
| 1328 | * 65536x65536. Multiplying that together, times another four given that Mali |
| 1329 | * framebuffers are 32-bit ARGB8888, means that this upper bound would take 16 |
| 1330 | * gigabytes of RAM just to store the uncompressed framebuffer itself, let |
| 1331 | * alone rendering in real-time to such a buffer. |
| 1332 | * |
| 1333 | * Nice job, guys.*/ |
| 1334 | |
| 1335 | /* From mali_kbase_10969_workaround.c */ |
| 1336 | #define MALI_X_COORD_MASK 0x00000FFF |
| 1337 | #define MALI_Y_COORD_MASK 0x0FFF0000 |
| 1338 | |
| 1339 | /* Extract parts of a tile coordinate */ |
| 1340 | |
| 1341 | #define MALI_TILE_COORD_X(coord) ((coord) & MALI_X_COORD_MASK) |
| 1342 | #define MALI_TILE_COORD_Y(coord) (((coord) & MALI_Y_COORD_MASK) >> 16) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1343 | |
| 1344 | /* Helpers to generate tile coordinates based on the boundary coordinates in |
| 1345 | * screen space. So, with the bounds (0, 0) to (128, 128) for the screen, these |
| 1346 | * functions would convert it to the bounding tiles (0, 0) to (7, 7). |
| 1347 | * Intentional "off-by-one"; finding the tile number is a form of fencepost |
| 1348 | * problem. */ |
| 1349 | |
| 1350 | #define MALI_MAKE_TILE_COORDS(X, Y) ((X) | ((Y) << 16)) |
| 1351 | #define MALI_BOUND_TO_TILE(B, bias) ((B - bias) >> MALI_TILE_SHIFT) |
| 1352 | #define MALI_COORDINATE_TO_TILE(W, H, bias) MALI_MAKE_TILE_COORDS(MALI_BOUND_TO_TILE(W, bias), MALI_BOUND_TO_TILE(H, bias)) |
| 1353 | #define MALI_COORDINATE_TO_TILE_MIN(W, H) MALI_COORDINATE_TO_TILE(W, H, 0) |
| 1354 | #define MALI_COORDINATE_TO_TILE_MAX(W, H) MALI_COORDINATE_TO_TILE(W, H, 1) |
| 1355 | |
| 1356 | struct mali_payload_fragment { |
| 1357 | u32 min_tile_coord; |
| 1358 | u32 max_tile_coord; |
| 1359 | mali_ptr framebuffer; |
| 1360 | } __attribute__((packed)); |
| 1361 | |
Alyssa Rosenzweig | 7b5217a | 2019-05-18 21:01:03 +0000 | [diff] [blame] | 1362 | /* Single Framebuffer Descriptor */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1363 | |
| 1364 | /* Flags apply to format. With just MSAA_A and MSAA_B, the framebuffer is |
| 1365 | * configured for 4x. With MSAA_8, it is configured for 8x. */ |
| 1366 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1367 | #define MALI_SFBD_FORMAT_MSAA_8 (1 << 3) |
| 1368 | #define MALI_SFBD_FORMAT_MSAA_A (1 << 4) |
| 1369 | #define MALI_SFBD_FORMAT_MSAA_B (1 << 4) |
| 1370 | #define MALI_SFBD_FORMAT_SRGB (1 << 5) |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1371 | |
| 1372 | /* Fast/slow based on whether all three buffers are cleared at once */ |
| 1373 | |
| 1374 | #define MALI_CLEAR_FAST (1 << 18) |
| 1375 | #define MALI_CLEAR_SLOW (1 << 28) |
| 1376 | #define MALI_CLEAR_SLOW_STENCIL (1 << 31) |
| 1377 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 1378 | /* Configures hierarchical tiling on Midgard for both SFBD/MFBD (embedded |
| 1379 | * within the larget framebuffer descriptor). Analogous to |
| 1380 | * bifrost_tiler_heap_meta and bifrost_tiler_meta*/ |
| 1381 | |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 1382 | /* See pan_tiler.c for derivation */ |
| 1383 | #define MALI_HIERARCHY_MASK ((1 << 9) - 1) |
| 1384 | |
Alyssa Rosenzweig | 9fb0904 | 2019-11-27 08:31:16 -0500 | [diff] [blame] | 1385 | /* Flag disabling the tiler for clear-only jobs, with |
| 1386 | hierarchical tiling */ |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 1387 | #define MALI_TILER_DISABLED (1 << 12) |
| 1388 | |
Alyssa Rosenzweig | 9fb0904 | 2019-11-27 08:31:16 -0500 | [diff] [blame] | 1389 | /* Flag selecting userspace-generated polygon list, for clear-only jobs without |
| 1390 | * hierarhical tiling. */ |
| 1391 | #define MALI_TILER_USER 0xFFF |
| 1392 | |
| 1393 | /* Absent any geometry, the minimum size of the polygon list header */ |
| 1394 | #define MALI_TILER_MINIMUM_HEADER_SIZE 0x200 |
| 1395 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 1396 | struct midgard_tiler_descriptor { |
| 1397 | /* Size of the entire polygon list; see pan_tiler.c for the |
| 1398 | * computation. It's based on hierarchical tiling */ |
| 1399 | |
| 1400 | u32 polygon_list_size; |
| 1401 | |
| 1402 | /* Name known from the replay workaround in the kernel. What exactly is |
| 1403 | * flagged here is less known. We do that (tiler_hierarchy_mask & 0x1ff) |
| 1404 | * specifies a mask of hierarchy weights, which explains some of the |
| 1405 | * performance mysteries around setting it. We also see the bottom bit |
Alyssa Rosenzweig | 897110a | 2019-08-19 14:47:50 -0700 | [diff] [blame] | 1406 | * of tiler_flags set in the kernel, but no comment why. |
| 1407 | * |
| 1408 | * hierarchy_mask can have the TILER_DISABLED flag */ |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 1409 | |
| 1410 | u16 hierarchy_mask; |
| 1411 | u16 flags; |
| 1412 | |
| 1413 | /* See mali_tiler.c for an explanation */ |
| 1414 | mali_ptr polygon_list; |
| 1415 | mali_ptr polygon_list_body; |
| 1416 | |
| 1417 | /* Names based on we see symmetry with replay jobs which name these |
| 1418 | * explicitly */ |
| 1419 | |
| 1420 | mali_ptr heap_start; /* tiler heap_free_address */ |
| 1421 | mali_ptr heap_end; |
| 1422 | |
| 1423 | /* Hierarchy weights. We know these are weights based on the kernel, |
| 1424 | * but I've never seen them be anything other than zero */ |
| 1425 | u32 weights[8]; |
| 1426 | }; |
| 1427 | |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1428 | enum mali_block_format { |
| 1429 | MALI_BLOCK_TILED = 0x0, |
| 1430 | MALI_BLOCK_UNKNOWN = 0x1, |
| 1431 | MALI_BLOCK_LINEAR = 0x2, |
| 1432 | MALI_BLOCK_AFBC = 0x3, |
| 1433 | }; |
| 1434 | |
| 1435 | struct mali_sfbd_format { |
| 1436 | /* 0x1 */ |
| 1437 | unsigned unk1 : 6; |
| 1438 | |
| 1439 | /* mali_channel_swizzle */ |
| 1440 | unsigned swizzle : 12; |
| 1441 | |
| 1442 | /* MALI_POSITIVE */ |
| 1443 | unsigned nr_channels : 2; |
| 1444 | |
| 1445 | /* 0x4 */ |
| 1446 | unsigned unk2 : 6; |
| 1447 | |
| 1448 | enum mali_block_format block : 2; |
| 1449 | |
| 1450 | /* 0xb */ |
| 1451 | unsigned unk3 : 4; |
| 1452 | }; |
| 1453 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 1454 | /* Shared structure at the start of framebuffer descriptors, or used bare for |
| 1455 | * compute jobs, configuring stack and shared memory */ |
| 1456 | |
| 1457 | struct mali_shared_memory { |
| 1458 | u32 stack_shift : 4; |
| 1459 | u32 unk0 : 28; |
| 1460 | |
| 1461 | /* Configuration for shared memory for compute shaders. |
| 1462 | * shared_workgroup_count is logarithmic and may be computed for a |
| 1463 | * compute shader using shared memory as: |
| 1464 | * |
| 1465 | * shared_workgroup_count = MAX2(ceil(log2(count_x)) + ... + ceil(log2(count_z), 10) |
| 1466 | * |
| 1467 | * For compute shaders that don't use shared memory, or non-compute |
| 1468 | * shaders, this is set to ~0 |
| 1469 | */ |
| 1470 | |
| 1471 | u32 shared_workgroup_count : 5; |
| 1472 | u32 shared_unk1 : 3; |
| 1473 | u32 shared_shift : 4; |
| 1474 | u32 shared_zero : 20; |
| 1475 | |
Alyssa Rosenzweig | 6c63727 | 2019-12-09 08:41:07 -0500 | [diff] [blame] | 1476 | mali_ptr scratchpad; |
| 1477 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 1478 | /* For compute shaders, the RAM backing of workgroup-shared memory. For |
| 1479 | * fragment shaders on Bifrost, apparently multisampling locations */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1480 | |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 1481 | mali_ptr shared_memory; |
| 1482 | mali_ptr unknown1; |
| 1483 | } __attribute__((packed)); |
| 1484 | |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1485 | /* Configures multisampling on Bifrost fragment jobs */ |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 1486 | |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1487 | struct bifrost_multisampling { |
| 1488 | u64 zero1; |
| 1489 | u64 zero2; |
| 1490 | mali_ptr sample_locations; |
| 1491 | u64 zero4; |
| 1492 | } __attribute__((packed)); |
Alyssa Rosenzweig | 254f40f | 2020-02-05 15:58:28 -0500 | [diff] [blame] | 1493 | |
| 1494 | struct mali_single_framebuffer { |
| 1495 | struct mali_shared_memory shared_memory; |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1496 | struct mali_sfbd_format format; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1497 | |
| 1498 | u32 clear_flags; |
| 1499 | u32 zero2; |
| 1500 | |
| 1501 | /* Purposeful off-by-one in these fields should be accounted for by the |
| 1502 | * MALI_DIMENSION macro */ |
| 1503 | |
| 1504 | u16 width; |
| 1505 | u16 height; |
| 1506 | |
Tomeu Vizoso | 23fe7cd | 2019-07-12 12:38:50 +0200 | [diff] [blame] | 1507 | u32 zero3[4]; |
| 1508 | mali_ptr checksum; |
| 1509 | u32 checksum_stride; |
| 1510 | u32 zero5; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1511 | |
| 1512 | /* By default, the framebuffer is upside down from OpenGL's |
| 1513 | * perspective. Set framebuffer to the end and negate the stride to |
| 1514 | * flip in the Y direction */ |
| 1515 | |
| 1516 | mali_ptr framebuffer; |
| 1517 | int32_t stride; |
| 1518 | |
| 1519 | u32 zero4; |
| 1520 | |
| 1521 | /* Depth and stencil buffers are interleaved, it appears, as they are |
| 1522 | * set to the same address in captures. Both fields set to zero if the |
| 1523 | * buffer is not being cleared. Depending on GL_ENABLE magic, you might |
| 1524 | * get a zero enable despite the buffer being present; that still is |
| 1525 | * disabled. */ |
| 1526 | |
| 1527 | mali_ptr depth_buffer; // not SAME_VA |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1528 | u32 depth_stride_zero : 4; |
| 1529 | u32 depth_stride : 28; |
| 1530 | u32 zero7; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1531 | |
| 1532 | mali_ptr stencil_buffer; // not SAME_VA |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1533 | u32 stencil_stride_zero : 4; |
| 1534 | u32 stencil_stride : 28; |
| 1535 | u32 zero8; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1536 | |
| 1537 | u32 clear_color_1; // RGBA8888 from glClear, actually used by hardware |
| 1538 | u32 clear_color_2; // always equal, but unclear function? |
| 1539 | u32 clear_color_3; // always equal, but unclear function? |
| 1540 | u32 clear_color_4; // always equal, but unclear function? |
| 1541 | |
| 1542 | /* Set to zero if not cleared */ |
| 1543 | |
| 1544 | float clear_depth_1; // float32, ditto |
| 1545 | float clear_depth_2; // float32, ditto |
| 1546 | float clear_depth_3; // float32, ditto |
| 1547 | float clear_depth_4; // float32, ditto |
| 1548 | |
| 1549 | u32 clear_stencil; // Exactly as it appears in OpenGL |
| 1550 | |
| 1551 | u32 zero6[7]; |
| 1552 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 1553 | struct midgard_tiler_descriptor tiler; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1554 | |
| 1555 | /* More below this, maybe */ |
| 1556 | } __attribute__((packed)); |
| 1557 | |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1558 | /* Format bits for the render target flags */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1559 | |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 1560 | #define MALI_MFBD_FORMAT_MSAA (1 << 1) |
Alyssa Rosenzweig | 31a4ef8 | 2019-06-17 16:01:24 -0700 | [diff] [blame] | 1561 | #define MALI_MFBD_FORMAT_SRGB (1 << 2) |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 1562 | |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1563 | struct mali_rt_format { |
| 1564 | unsigned unk1 : 32; |
| 1565 | unsigned unk2 : 3; |
| 1566 | |
| 1567 | unsigned nr_channels : 2; /* MALI_POSITIVE */ |
| 1568 | |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 1569 | unsigned unk3 : 5; |
Tomeu Vizoso | 9447a84 | 2019-10-30 12:05:30 +0100 | [diff] [blame] | 1570 | enum mali_block_format block : 2; |
Alyssa Rosenzweig | d507951 | 2019-06-17 15:53:09 -0700 | [diff] [blame] | 1571 | unsigned flags : 4; |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1572 | |
| 1573 | unsigned swizzle : 12; |
| 1574 | |
Alyssa Rosenzweig | b78e04c | 2019-08-14 16:01:38 -0700 | [diff] [blame] | 1575 | unsigned zero : 3; |
| 1576 | |
| 1577 | /* Disables MFBD preload. When this bit is set, the render target will |
| 1578 | * be cleared every frame. When this bit is clear, the hardware will |
| 1579 | * automatically wallpaper the render target back from main memory. |
| 1580 | * Unfortunately, MFBD preload is very broken on Midgard, so in |
| 1581 | * practice, this is a chicken bit that should always be set. |
| 1582 | * Discovered by accident, as all good chicken bits are. */ |
| 1583 | |
| 1584 | unsigned no_preload : 1; |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1585 | } __attribute__((packed)); |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1586 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1587 | struct mali_render_target { |
Alyssa Rosenzweig | f943047 | 2019-02-24 06:22:23 +0000 | [diff] [blame] | 1588 | struct mali_rt_format format; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1589 | |
| 1590 | u64 zero1; |
| 1591 | |
Alyssa Rosenzweig | c9b6233 | 2019-08-20 11:06:07 -0700 | [diff] [blame] | 1592 | struct { |
| 1593 | /* Stuff related to ARM Framebuffer Compression. When AFBC is enabled, |
| 1594 | * there is an extra metadata buffer that contains 16 bytes per tile. |
| 1595 | * The framebuffer needs to be the same size as before, since we don't |
| 1596 | * know ahead of time how much space it will take up. The |
| 1597 | * framebuffer_stride is set to 0, since the data isn't stored linearly |
| 1598 | * anymore. |
| 1599 | * |
| 1600 | * When AFBC is disabled, these fields are zero. |
| 1601 | */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1602 | |
Alyssa Rosenzweig | c9b6233 | 2019-08-20 11:06:07 -0700 | [diff] [blame] | 1603 | mali_ptr metadata; |
| 1604 | u32 stride; // stride in units of tiles |
| 1605 | u32 unk; // = 0x20000 |
| 1606 | } afbc; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1607 | |
| 1608 | mali_ptr framebuffer; |
| 1609 | |
| 1610 | u32 zero2 : 4; |
| 1611 | u32 framebuffer_stride : 28; // in units of bytes |
| 1612 | u32 zero3; |
| 1613 | |
| 1614 | u32 clear_color_1; // RGBA8888 from glClear, actually used by hardware |
| 1615 | u32 clear_color_2; // always equal, but unclear function? |
| 1616 | u32 clear_color_3; // always equal, but unclear function? |
| 1617 | u32 clear_color_4; // always equal, but unclear function? |
| 1618 | } __attribute__((packed)); |
| 1619 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1620 | /* An optional part of mali_framebuffer. It comes between the main structure |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1621 | * and the array of render targets. It must be included if any of these are |
| 1622 | * enabled: |
| 1623 | * |
| 1624 | * - Transaction Elimination |
| 1625 | * - Depth/stencil |
| 1626 | * - TODO: Anything else? |
| 1627 | */ |
| 1628 | |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1629 | /* flags_hi */ |
| 1630 | #define MALI_EXTRA_PRESENT (0x10) |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 1631 | |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1632 | /* flags_lo */ |
Alyssa Rosenzweig | 587ad37 | 2019-03-09 00:45:23 +0000 | [diff] [blame] | 1633 | #define MALI_EXTRA_ZS (0x4) |
| 1634 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1635 | struct mali_framebuffer_extra { |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1636 | mali_ptr checksum; |
| 1637 | /* Each tile has an 8 byte checksum, so the stride is "width in tiles * 8" */ |
| 1638 | u32 checksum_stride; |
| 1639 | |
Alyssa Rosenzweig | 6bd9c4d | 2020-01-10 13:12:35 -0500 | [diff] [blame] | 1640 | unsigned flags_lo : 4; |
| 1641 | enum mali_block_format zs_block : 2; |
| 1642 | unsigned flags_hi : 26; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1643 | |
| 1644 | union { |
| 1645 | /* Note: AFBC is only allowed for 24/8 combined depth/stencil. */ |
| 1646 | struct { |
| 1647 | mali_ptr depth_stencil_afbc_metadata; |
| 1648 | u32 depth_stencil_afbc_stride; // in units of tiles |
| 1649 | u32 zero1; |
| 1650 | |
| 1651 | mali_ptr depth_stencil; |
| 1652 | |
| 1653 | u64 padding; |
| 1654 | } ds_afbc; |
| 1655 | |
| 1656 | struct { |
| 1657 | /* Depth becomes depth/stencil in case of combined D/S */ |
| 1658 | mali_ptr depth; |
| 1659 | u32 depth_stride_zero : 4; |
| 1660 | u32 depth_stride : 28; |
| 1661 | u32 zero1; |
| 1662 | |
| 1663 | mali_ptr stencil; |
| 1664 | u32 stencil_stride_zero : 4; |
| 1665 | u32 stencil_stride : 28; |
| 1666 | u32 zero2; |
| 1667 | } ds_linear; |
| 1668 | }; |
| 1669 | |
| 1670 | |
| 1671 | u64 zero3, zero4; |
| 1672 | } __attribute__((packed)); |
| 1673 | |
Alyssa Rosenzweig | ac68946 | 2019-06-14 11:14:01 -0700 | [diff] [blame] | 1674 | /* Flags for mfbd_flags */ |
Alyssa Rosenzweig | e57ea53 | 2019-03-09 00:12:07 +0000 | [diff] [blame] | 1675 | |
| 1676 | /* Enables writing depth results back to main memory (rather than keeping them |
| 1677 | * on-chip in the tile buffer and then discarding) */ |
| 1678 | |
| 1679 | #define MALI_MFBD_DEPTH_WRITE (1 << 10) |
| 1680 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1681 | /* The MFBD contains the extra mali_framebuffer_extra section */ |
Alyssa Rosenzweig | e57ea53 | 2019-03-09 00:12:07 +0000 | [diff] [blame] | 1682 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1683 | #define MALI_MFBD_EXTRA (1 << 13) |
| 1684 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1685 | struct mali_framebuffer { |
Alyssa Rosenzweig | 3f5cd44 | 2020-02-28 07:17:53 -0500 | [diff] [blame] | 1686 | union { |
| 1687 | struct mali_shared_memory shared_memory; |
| 1688 | struct bifrost_multisampling msaa; |
| 1689 | }; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1690 | |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1691 | /* 0x20 */ |
| 1692 | u16 width1, height1; |
| 1693 | u32 zero3; |
| 1694 | u16 width2, height2; |
| 1695 | u32 unk1 : 19; // = 0x01000 |
| 1696 | u32 rt_count_1 : 2; // off-by-one (use MALI_POSITIVE) |
| 1697 | u32 unk2 : 3; // = 0 |
| 1698 | u32 rt_count_2 : 3; // no off-by-one |
| 1699 | u32 zero4 : 5; |
| 1700 | /* 0x30 */ |
| 1701 | u32 clear_stencil : 8; |
Alyssa Rosenzweig | ac68946 | 2019-06-14 11:14:01 -0700 | [diff] [blame] | 1702 | u32 mfbd_flags : 24; // = 0x100 |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1703 | float clear_depth; |
Alyssa Rosenzweig | 85e745f | 2019-06-12 09:33:06 -0700 | [diff] [blame] | 1704 | |
Alyssa Rosenzweig | 31fc52a | 2019-07-10 07:22:19 -0700 | [diff] [blame] | 1705 | struct midgard_tiler_descriptor tiler; |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1706 | |
Alyssa Rosenzweig | 6d9ee3e | 2020-02-10 08:51:37 -0500 | [diff] [blame] | 1707 | /* optional: struct mali_framebuffer_extra extra */ |
| 1708 | /* struct mali_render_target rts[] */ |
Alyssa Rosenzweig | 61d3ae6 | 2019-01-29 05:46:07 +0000 | [diff] [blame] | 1709 | } __attribute__((packed)); |
| 1710 | |
| 1711 | #endif /* __PANFROST_JOB_H__ */ |