panfrost: Emit SFBD/MFBD after a batch, instead of before
[mesa.git] / src / gallium / drivers / panfrost / pan_context.h
1 /*
2 * © Copyright 2018 Alyssa Rosenzweig
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 */
24
25 #ifndef __BUILDER_H__
26 #define __BUILDER_H__
27
28 #define _LARGEFILE64_SOURCE 1
29 #define CACHE_LINE_SIZE 1024 /* TODO */
30 #include <sys/mman.h>
31 #include <assert.h>
32 #include "pan_resource.h"
33 #include "pan_job.h"
34 #include "pan_blend.h"
35 #include "pan_encoder.h"
36
37 #include "pipe/p_compiler.h"
38 #include "pipe/p_config.h"
39 #include "pipe/p_context.h"
40 #include "pipe/p_defines.h"
41 #include "pipe/p_format.h"
42 #include "pipe/p_screen.h"
43 #include "pipe/p_state.h"
44 #include "util/u_blitter.h"
45 #include "util/hash_table.h"
46
47 #include "midgard/midgard_compile.h"
48 #include "compiler/shader_enums.h"
49
50 /* Forward declare to avoid extra header dep */
51 struct prim_convert_context;
52
53 #define MAX_VARYINGS 4096
54
55 //#define PAN_DIRTY_CLEAR (1 << 0)
56 #define PAN_DIRTY_RASTERIZER (1 << 2)
57 #define PAN_DIRTY_FS (1 << 3)
58 #define PAN_DIRTY_FRAG_CORE (PAN_DIRTY_FS) /* Dirty writes are tied */
59 #define PAN_DIRTY_VS (1 << 4)
60 #define PAN_DIRTY_VERTEX (1 << 5)
61 #define PAN_DIRTY_VERT_BUF (1 << 6)
62 //#define PAN_DIRTY_VIEWPORT (1 << 7)
63 #define PAN_DIRTY_SAMPLERS (1 << 8)
64 #define PAN_DIRTY_TEXTURES (1 << 9)
65
66 #define SET_BIT(lval, bit, cond) \
67 if (cond) \
68 lval |= (bit); \
69 else \
70 lval &= ~(bit);
71
72 struct panfrost_constant_buffer {
73 struct pipe_constant_buffer cb[PIPE_MAX_CONSTANT_BUFFERS];
74 uint32_t enabled_mask;
75 uint32_t dirty_mask;
76 };
77
78 struct panfrost_query {
79 /* Passthrough from Gallium */
80 unsigned type;
81 unsigned index;
82
83 /* For computed queries. 64-bit to prevent overflow */
84 struct {
85 uint64_t start;
86 uint64_t end;
87 };
88
89 /* Memory for the GPU to writeback the value of the query */
90 struct panfrost_bo *bo;
91 };
92
93 struct panfrost_fence {
94 struct pipe_reference reference;
95 struct util_dynarray syncfds;
96 };
97
98 struct panfrost_streamout {
99 struct pipe_stream_output_target *targets[PIPE_MAX_SO_BUFFERS];
100 uint32_t offsets[PIPE_MAX_SO_BUFFERS];
101 unsigned num_targets;
102 };
103
104 struct panfrost_context {
105 /* Gallium context */
106 struct pipe_context base;
107
108 /* Bound job batch and map of panfrost_batch_key to job batches */
109 struct panfrost_batch *batch;
110 struct hash_table *batches;
111
112 /* panfrost_bo -> panfrost_bo_access */
113 struct hash_table *accessed_bos;
114
115 /* Within a launch_grid call.. */
116 const struct pipe_grid_info *compute_grid;
117
118 /* Bit mask for supported PIPE_DRAW for this hardware */
119 unsigned draw_modes;
120
121 struct pipe_framebuffer_state pipe_framebuffer;
122 struct panfrost_streamout streamout;
123
124 bool active_queries;
125 uint64_t prims_generated;
126 uint64_t tf_prims_generated;
127 struct panfrost_query *occlusion_query;
128
129 /* Each draw has corresponding vertex and tiler payloads */
130 struct midgard_payload_vertex_tiler payloads[PIPE_SHADER_TYPES];
131
132 /* The fragment shader binary itself is pointed here (for the tripipe) but
133 * also everything else in the shader core, including blending, the
134 * stencil/depth tests, etc. Refer to the presentations. */
135
136 struct mali_shader_meta fragment_shader_core;
137
138 /* Per-draw Dirty flags are setup like any other driver */
139 int dirty;
140
141 unsigned vertex_count;
142 unsigned instance_count;
143 enum pipe_prim_type active_prim;
144
145 /* If instancing is enabled, vertex count padded for instance; if
146 * it is disabled, just equal to plain vertex count */
147 unsigned padded_count;
148
149 /* TODO: Multiple uniform buffers (index =/= 0), finer updates? */
150
151 struct panfrost_constant_buffer constant_buffer[PIPE_SHADER_TYPES];
152
153 struct panfrost_rasterizer *rasterizer;
154 struct panfrost_shader_variants *shader[PIPE_SHADER_TYPES];
155 struct panfrost_vertex_state *vertex;
156
157 struct pipe_vertex_buffer vertex_buffers[PIPE_MAX_ATTRIBS];
158 uint32_t vb_mask;
159
160 struct pipe_shader_buffer ssbo[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_BUFFERS];
161 uint32_t ssbo_mask[PIPE_SHADER_TYPES];
162
163 struct panfrost_sampler_state *samplers[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
164 unsigned sampler_count[PIPE_SHADER_TYPES];
165
166 struct panfrost_sampler_view *sampler_views[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_SAMPLER_VIEWS];
167 unsigned sampler_view_count[PIPE_SHADER_TYPES];
168
169 struct primconvert_context *primconvert;
170 struct blitter_context *blitter;
171
172 /* Blitting the wallpaper (the old contents of the framebuffer back to
173 * itself) uses a dedicated u_blitter instance versus general blit()
174 * callbacks from Gallium, as the blit() callback can trigger
175 * wallpapering without Gallium realising, which in turns u_blitter
176 * errors due to unsupported reucrsion */
177
178 struct blitter_context *blitter_wallpaper;
179 struct panfrost_batch *wallpaper_batch;
180
181 struct panfrost_blend_state *blend;
182
183 struct pipe_viewport_state pipe_viewport;
184 struct pipe_scissor_state scissor;
185 struct pipe_blend_color blend_color;
186 struct pipe_depth_stencil_alpha_state *depth_stencil;
187 struct pipe_stencil_ref stencil_ref;
188 };
189
190 /* Corresponds to the CSO */
191
192 struct panfrost_rasterizer {
193 struct pipe_rasterizer_state base;
194
195 /* Bitmask of front face, etc */
196 unsigned tiler_gl_enables;
197 };
198
199 /* Variants bundle together to form the backing CSO, bundling multiple
200 * shaders with varying emulated features baked in (alpha test
201 * parameters, etc) */
202 #define MAX_SHADER_VARIANTS 8
203
204 /* A shader state corresponds to the actual, current variant of the shader */
205 struct panfrost_shader_state {
206 /* Compiled, mapped descriptor, ready for the hardware */
207 bool compiled;
208 struct mali_shader_meta *tripipe;
209
210 /* Non-descript information */
211 int uniform_count;
212 bool can_discard;
213 bool writes_point_size;
214 bool reads_point_coord;
215 bool reads_face;
216 bool reads_frag_coord;
217 unsigned stack_size;
218
219 struct mali_attr_meta varyings[PIPE_MAX_ATTRIBS];
220 gl_varying_slot varyings_loc[PIPE_MAX_ATTRIBS];
221 struct pipe_stream_output_info stream_output;
222 uint64_t so_mask;
223
224 unsigned sysval_count;
225 unsigned sysval[MAX_SYSVAL_COUNT];
226
227 /* Information on this particular shader variant */
228 struct pipe_alpha_state alpha_state;
229
230 uint16_t point_sprite_mask;
231 unsigned point_sprite_upper_left : 1;
232
233 /* Should we enable helper invocations */
234 bool helper_invocations;
235
236 struct panfrost_bo *bo;
237 };
238
239 /* A collection of varyings (the CSO) */
240 struct panfrost_shader_variants {
241 /* A panfrost_shader_variants can represent a shader for
242 * either graphics or compute */
243
244 bool is_compute;
245
246 union {
247 struct pipe_shader_state base;
248 struct pipe_compute_state cbase;
249 };
250
251 struct panfrost_shader_state variants[MAX_SHADER_VARIANTS];
252 unsigned variant_count;
253
254 /* The current active variant */
255 unsigned active_variant;
256 };
257
258 struct panfrost_vertex_state {
259 unsigned num_elements;
260
261 struct pipe_vertex_element pipe[PIPE_MAX_ATTRIBS];
262 struct mali_attr_meta hw[PIPE_MAX_ATTRIBS];
263 };
264
265 struct panfrost_sampler_state {
266 struct pipe_sampler_state base;
267 struct mali_sampler_descriptor hw;
268 };
269
270 /* Misnomer: Sampler view corresponds to textures, not samplers */
271
272 struct panfrost_sampler_view {
273 struct pipe_sampler_view base;
274 struct mali_texture_descriptor hw;
275 bool manual_stride;
276 };
277
278 static inline struct panfrost_context *
279 pan_context(struct pipe_context *pcontext)
280 {
281 return (struct panfrost_context *) pcontext;
282 }
283
284 struct pipe_context *
285 panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags);
286
287 void
288 panfrost_invalidate_frame(struct panfrost_context *ctx);
289
290 void
291 panfrost_emit_for_draw(struct panfrost_context *ctx, bool with_vertex_data);
292
293 struct panfrost_transfer
294 panfrost_vertex_tiler_job(struct panfrost_context *ctx, bool is_tiler);
295
296 unsigned
297 panfrost_get_default_swizzle(unsigned components);
298
299 void
300 panfrost_flush(
301 struct pipe_context *pipe,
302 struct pipe_fence_handle **fence,
303 unsigned flags);
304
305 mali_ptr panfrost_sfbd_fragment(struct panfrost_batch *batch, bool has_draws);
306 mali_ptr panfrost_mfbd_fragment(struct panfrost_batch *batch, bool has_draws);
307
308 void
309 panfrost_attach_mfbd(struct panfrost_batch *batch, unsigned vertex_count);
310
311 void
312 panfrost_attach_sfbd(struct panfrost_batch *batch, unsigned vertex_count);
313
314 struct midgard_tiler_descriptor
315 panfrost_emit_midg_tiler(struct panfrost_batch *batch, unsigned vertex_count);
316
317 mali_ptr
318 panfrost_fragment_job(struct panfrost_batch *batch, bool has_draws,
319 struct mali_job_descriptor_header **header_cpu);
320
321 void
322 panfrost_shader_compile(
323 struct panfrost_context *ctx,
324 struct mali_shader_meta *meta,
325 enum pipe_shader_ir ir_type,
326 const void *ir,
327 gl_shader_stage stage,
328 struct panfrost_shader_state *state,
329 uint64_t *outputs_written);
330
331 /* Instancing */
332
333 mali_ptr
334 panfrost_vertex_buffer_address(struct panfrost_context *ctx, unsigned i);
335
336 void
337 panfrost_emit_vertex_data(struct panfrost_batch *batch);
338
339 struct pan_shift_odd {
340 unsigned shift;
341 unsigned odd;
342 };
343
344 struct pan_shift_odd
345 panfrost_padded_vertex_count(
346 unsigned vertex_count,
347 bool primitive_pot);
348
349
350 unsigned
351 pan_expand_shift_odd(struct pan_shift_odd o);
352
353 /* Compute */
354
355 void
356 panfrost_compute_context_init(struct pipe_context *pctx);
357
358 /* Varyings */
359
360 void
361 panfrost_emit_varying_descriptor(
362 struct panfrost_context *ctx,
363 unsigned vertex_count);
364
365 #endif