0e00e387f14ea4eb3fb6e07003b00ace818982d1
[mesa.git] / src / gallium / drivers / freedreno / a4xx / fd4_emit.c
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4 * Copyright (C) 2014 Rob Clark <robclark@freedesktop.org>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #include "pipe/p_state.h"
30 #include "util/u_string.h"
31 #include "util/u_memory.h"
32 #include "util/u_helpers.h"
33 #include "util/u_format.h"
34
35 #include "freedreno_resource.h"
36
37 #include "fd4_emit.h"
38 #include "fd4_blend.h"
39 #include "fd4_context.h"
40 #include "fd4_program.h"
41 #include "fd4_rasterizer.h"
42 #include "fd4_texture.h"
43 #include "fd4_format.h"
44 #include "fd4_zsa.h"
45
46 /* regid: base const register
47 * prsc or dwords: buffer containing constant values
48 * sizedwords: size of const value buffer
49 */
50 void
51 fd4_emit_constant(struct fd_ringbuffer *ring,
52 enum adreno_state_block sb,
53 uint32_t regid, uint32_t offset, uint32_t sizedwords,
54 const uint32_t *dwords, struct pipe_resource *prsc)
55 {
56 uint32_t i, sz;
57 enum adreno_state_src src;
58
59 if (prsc) {
60 sz = 0;
61 src = 0x2; // TODO ??
62 } else {
63 sz = sizedwords;
64 src = SS_DIRECT;
65 }
66
67 OUT_PKT3(ring, CP_LOAD_STATE, 2 + sz);
68 OUT_RING(ring, CP_LOAD_STATE_0_DST_OFF(regid/4) |
69 CP_LOAD_STATE_0_STATE_SRC(src) |
70 CP_LOAD_STATE_0_STATE_BLOCK(sb) |
71 CP_LOAD_STATE_0_NUM_UNIT(sizedwords/4));
72 if (prsc) {
73 struct fd_bo *bo = fd_resource(prsc)->bo;
74 OUT_RELOC(ring, bo, offset,
75 CP_LOAD_STATE_1_STATE_TYPE(ST_CONSTANTS), 0);
76 } else {
77 OUT_RING(ring, CP_LOAD_STATE_1_EXT_SRC_ADDR(0) |
78 CP_LOAD_STATE_1_STATE_TYPE(ST_CONSTANTS));
79 dwords = (uint32_t *)&((uint8_t *)dwords)[offset];
80 }
81 for (i = 0; i < sz; i++) {
82 OUT_RING(ring, dwords[i]);
83 }
84 }
85
86 static void
87 emit_constants(struct fd_ringbuffer *ring,
88 enum adreno_state_block sb,
89 struct fd_constbuf_stateobj *constbuf,
90 struct ir3_shader_variant *shader)
91 {
92 uint32_t enabled_mask = constbuf->enabled_mask;
93 uint32_t first_immediate;
94 uint32_t base = 0;
95
96 // XXX TODO only emit dirty consts.. but we need to keep track if
97 // they are clobbered by a clear, gmem2mem, or mem2gmem..
98 constbuf->dirty_mask = enabled_mask;
99
100 /* in particular, with binning shader we may end up with unused
101 * consts, ie. we could end up w/ constlen that is smaller
102 * than first_immediate. In that case truncate the user consts
103 * early to avoid HLSQ lockup caused by writing too many consts
104 */
105 first_immediate = MIN2(shader->first_immediate, shader->constlen);
106
107 /* emit user constants: */
108 while (enabled_mask) {
109 unsigned index = ffs(enabled_mask) - 1;
110 struct pipe_constant_buffer *cb = &constbuf->cb[index];
111 unsigned size = align(cb->buffer_size, 4) / 4; /* size in dwords */
112
113 // I expect that size should be a multiple of vec4's:
114 assert(size == align(size, 4));
115
116 /* gallium could leave const buffers bound above what the
117 * current shader uses.. don't let that confuse us.
118 */
119 if (base >= (4 * first_immediate))
120 break;
121
122 if (constbuf->dirty_mask & (1 << index)) {
123 /* and even if the start of the const buffer is before
124 * first_immediate, the end may not be:
125 */
126 size = MIN2(size, (4 * first_immediate) - base);
127 fd4_emit_constant(ring, sb, base,
128 cb->buffer_offset, size,
129 cb->user_buffer, cb->buffer);
130 constbuf->dirty_mask &= ~(1 << index);
131 }
132
133 base += size;
134 enabled_mask &= ~(1 << index);
135 }
136
137 /* emit shader immediates: */
138 if (shader) {
139 int size = shader->immediates_count;
140 base = shader->first_immediate;
141
142 /* truncate size to avoid writing constants that shader
143 * does not use:
144 */
145 size = MIN2(size + base, shader->constlen) - base;
146
147 /* convert out of vec4: */
148 base *= 4;
149 size *= 4;
150
151 if (size > 0) {
152 fd4_emit_constant(ring, sb, base,
153 0, size, shader->immediates[0].val, NULL);
154 }
155 }
156 }
157
158 static void
159 emit_textures(struct fd_context *ctx, struct fd_ringbuffer *ring,
160 enum adreno_state_block sb, struct fd_texture_stateobj *tex)
161 {
162 unsigned i;
163
164 if (tex->num_samplers > 0) {
165 int num_samplers;
166
167 /* not sure if this is an a420.0 workaround, but we seem
168 * to need to emit these in pairs.. emit a final dummy
169 * entry if odd # of samplers:
170 */
171 num_samplers = align(tex->num_samplers, 2);
172
173 /* output sampler state: */
174 OUT_PKT3(ring, CP_LOAD_STATE, 2 + (2 * num_samplers));
175 OUT_RING(ring, CP_LOAD_STATE_0_DST_OFF(0) |
176 CP_LOAD_STATE_0_STATE_SRC(SS_DIRECT) |
177 CP_LOAD_STATE_0_STATE_BLOCK(sb) |
178 CP_LOAD_STATE_0_NUM_UNIT(num_samplers));
179 OUT_RING(ring, CP_LOAD_STATE_1_STATE_TYPE(ST_SHADER) |
180 CP_LOAD_STATE_1_EXT_SRC_ADDR(0));
181 for (i = 0; i < tex->num_samplers; i++) {
182 static const struct fd4_sampler_stateobj dummy_sampler = {};
183 const struct fd4_sampler_stateobj *sampler = tex->samplers[i] ?
184 fd4_sampler_stateobj(tex->samplers[i]) :
185 &dummy_sampler;
186 OUT_RING(ring, sampler->texsamp0);
187 OUT_RING(ring, sampler->texsamp1);
188 }
189
190 for (; i < num_samplers; i++) {
191 OUT_RING(ring, 0x00000000);
192 OUT_RING(ring, 0x00000000);
193 }
194 }
195
196 if (tex->num_textures > 0) {
197 /* emit texture state: */
198 OUT_PKT3(ring, CP_LOAD_STATE, 2 + (8 * tex->num_textures));
199 OUT_RING(ring, CP_LOAD_STATE_0_DST_OFF(0) |
200 CP_LOAD_STATE_0_STATE_SRC(SS_DIRECT) |
201 CP_LOAD_STATE_0_STATE_BLOCK(sb) |
202 CP_LOAD_STATE_0_NUM_UNIT(tex->num_textures));
203 OUT_RING(ring, CP_LOAD_STATE_1_STATE_TYPE(ST_CONSTANTS) |
204 CP_LOAD_STATE_1_EXT_SRC_ADDR(0));
205 for (i = 0; i < tex->num_textures; i++) {
206 static const struct fd4_pipe_sampler_view dummy_view = {};
207 const struct fd4_pipe_sampler_view *view = tex->textures[i] ?
208 fd4_pipe_sampler_view(tex->textures[i]) :
209 &dummy_view;
210 struct fd_resource *rsc = view->tex_resource;
211 unsigned start = view->base.u.tex.first_level;
212 uint32_t offset = fd_resource_offset(rsc, start, 0);
213
214 OUT_RING(ring, view->texconst0);
215 OUT_RING(ring, view->texconst1);
216 OUT_RING(ring, view->texconst2);
217 OUT_RING(ring, view->texconst3);
218 OUT_RELOC(ring, rsc->bo, offset, view->textconst4, 0);
219 OUT_RING(ring, 0x00000000);
220 OUT_RING(ring, 0x00000000);
221 OUT_RING(ring, 0x00000000);
222 }
223 }
224 }
225
226 /* emit texture state for mem->gmem restore operation.. eventually it would
227 * be good to get rid of this and use normal CSO/etc state for more of these
228 * special cases..
229 */
230 void
231 fd4_emit_gmem_restore_tex(struct fd_ringbuffer *ring, struct pipe_surface *psurf)
232 {
233 struct fd_resource *rsc = fd_resource(psurf->texture);
234 unsigned lvl = psurf->u.tex.level;
235 struct fd_resource_slice *slice = fd_resource_slice(rsc, lvl);
236 uint32_t offset = fd_resource_offset(rsc, lvl, psurf->u.tex.first_layer);
237 enum pipe_format format = fd4_gmem_restore_format(psurf->format);
238
239 debug_assert(psurf->u.tex.first_layer == psurf->u.tex.last_layer);
240
241 /* output sampler state: */
242 OUT_PKT3(ring, CP_LOAD_STATE, 4);
243 OUT_RING(ring, CP_LOAD_STATE_0_DST_OFF(0) |
244 CP_LOAD_STATE_0_STATE_SRC(SS_DIRECT) |
245 CP_LOAD_STATE_0_STATE_BLOCK(SB_FRAG_TEX) |
246 CP_LOAD_STATE_0_NUM_UNIT(1));
247 OUT_RING(ring, CP_LOAD_STATE_1_STATE_TYPE(ST_SHADER) |
248 CP_LOAD_STATE_1_EXT_SRC_ADDR(0));
249 OUT_RING(ring, A4XX_TEX_SAMP_0_XY_MAG(A4XX_TEX_NEAREST) |
250 A4XX_TEX_SAMP_0_XY_MIN(A4XX_TEX_NEAREST) |
251 A4XX_TEX_SAMP_0_WRAP_S(A4XX_TEX_CLAMP_TO_EDGE) |
252 A4XX_TEX_SAMP_0_WRAP_T(A4XX_TEX_CLAMP_TO_EDGE) |
253 A4XX_TEX_SAMP_0_WRAP_R(A4XX_TEX_REPEAT));
254 OUT_RING(ring, 0x00000000);
255
256 /* emit texture state: */
257 OUT_PKT3(ring, CP_LOAD_STATE, 10);
258 OUT_RING(ring, CP_LOAD_STATE_0_DST_OFF(0) |
259 CP_LOAD_STATE_0_STATE_SRC(SS_DIRECT) |
260 CP_LOAD_STATE_0_STATE_BLOCK(SB_FRAG_TEX) |
261 CP_LOAD_STATE_0_NUM_UNIT(1));
262 OUT_RING(ring, CP_LOAD_STATE_1_STATE_TYPE(ST_CONSTANTS) |
263 CP_LOAD_STATE_1_EXT_SRC_ADDR(0));
264 OUT_RING(ring, A4XX_TEX_CONST_0_FMT(fd4_pipe2tex(format)) |
265 A4XX_TEX_CONST_0_TYPE(A4XX_TEX_2D) |
266 fd4_tex_swiz(format, PIPE_SWIZZLE_RED, PIPE_SWIZZLE_GREEN,
267 PIPE_SWIZZLE_BLUE, PIPE_SWIZZLE_ALPHA));
268 OUT_RING(ring, A4XX_TEX_CONST_1_WIDTH(psurf->width) |
269 A4XX_TEX_CONST_1_HEIGHT(psurf->height));
270 OUT_RING(ring, A4XX_TEX_CONST_2_PITCH(slice->pitch * rsc->cpp));
271 OUT_RING(ring, 0x00000000);
272 OUT_RELOC(ring, rsc->bo, offset, 0, 0);
273 OUT_RING(ring, 0x00000000);
274 OUT_RING(ring, 0x00000000);
275 OUT_RING(ring, 0x00000000);
276 }
277
278 void
279 fd4_emit_vertex_bufs(struct fd_ringbuffer *ring, struct fd4_emit *emit)
280 {
281 uint32_t i, j, last = 0;
282 uint32_t total_in = 0;
283 const struct fd_vertex_state *vtx = emit->vtx;
284 struct ir3_shader_variant *vp = fd4_emit_get_vp(emit);
285 unsigned n = MIN2(vtx->vtx->num_elements, vp->inputs_count);
286
287 /* hw doesn't like to be configured for zero vbo's, it seems: */
288 if (vtx->vtx->num_elements == 0)
289 return;
290
291 for (i = 0; i < n; i++)
292 if (vp->inputs[i].compmask)
293 last = i;
294
295 for (i = 0, j = 0; i <= last; i++) {
296 if (vp->inputs[i].compmask) {
297 struct pipe_vertex_element *elem = &vtx->vtx->pipe[i];
298 const struct pipe_vertex_buffer *vb =
299 &vtx->vertexbuf.vb[elem->vertex_buffer_index];
300 struct fd_resource *rsc = fd_resource(vb->buffer);
301 enum pipe_format pfmt = elem->src_format;
302 enum a4xx_vtx_fmt fmt = fd4_pipe2vtx(pfmt);
303 bool switchnext = (i != last);
304 uint32_t fs = util_format_get_blocksize(pfmt);
305 uint32_t off = vb->buffer_offset + elem->src_offset;
306 uint32_t size = fd_bo_size(rsc->bo) - off;
307 debug_assert(fmt != ~0);
308
309 OUT_PKT0(ring, REG_A4XX_VFD_FETCH(j), 4);
310 OUT_RING(ring, A4XX_VFD_FETCH_INSTR_0_FETCHSIZE(fs - 1) |
311 A4XX_VFD_FETCH_INSTR_0_BUFSTRIDE(vb->stride) |
312 COND(switchnext, A4XX_VFD_FETCH_INSTR_0_SWITCHNEXT));
313 OUT_RELOC(ring, rsc->bo, off, 0, 0);
314 OUT_RING(ring, A4XX_VFD_FETCH_INSTR_2_SIZE(size));
315 OUT_RING(ring, 0x00000001);
316
317 OUT_PKT0(ring, REG_A4XX_VFD_DECODE_INSTR(j), 1);
318 OUT_RING(ring, A4XX_VFD_DECODE_INSTR_CONSTFILL |
319 A4XX_VFD_DECODE_INSTR_WRITEMASK(vp->inputs[i].compmask) |
320 A4XX_VFD_DECODE_INSTR_FORMAT(fmt) |
321 A4XX_VFD_DECODE_INSTR_SWAP(fd4_pipe2swap(pfmt)) |
322 A4XX_VFD_DECODE_INSTR_REGID(vp->inputs[i].regid) |
323 A4XX_VFD_DECODE_INSTR_SHIFTCNT(fs) |
324 A4XX_VFD_DECODE_INSTR_LASTCOMPVALID |
325 COND(switchnext, A4XX_VFD_DECODE_INSTR_SWITCHNEXT));
326
327 total_in += vp->inputs[i].ncomp;
328 j++;
329 }
330 }
331
332 OUT_PKT0(ring, REG_A4XX_VFD_CONTROL_0, 5);
333 OUT_RING(ring, A4XX_VFD_CONTROL_0_TOTALATTRTOVS(total_in) |
334 0xa0000 | /* XXX */
335 A4XX_VFD_CONTROL_0_STRMDECINSTRCNT(j) |
336 A4XX_VFD_CONTROL_0_STRMFETCHINSTRCNT(j));
337 OUT_RING(ring, A4XX_VFD_CONTROL_1_MAXSTORAGE(129) | // XXX
338 A4XX_VFD_CONTROL_1_REGID4VTX(regid(63,0)) |
339 A4XX_VFD_CONTROL_1_REGID4INST(regid(63,0)));
340 OUT_RING(ring, 0x00000000); /* XXX VFD_CONTROL_2 */
341 OUT_RING(ring, 0x0000fc00); /* XXX VFD_CONTROL_3 */
342 OUT_RING(ring, 0x00000000); /* XXX VFD_CONTROL_4 */
343
344 /* cache invalidate, otherwise vertex fetch could see
345 * stale vbo contents:
346 */
347 OUT_PKT0(ring, REG_A4XX_UCHE_INVALIDATE0, 2);
348 OUT_RING(ring, 0x00000000);
349 OUT_RING(ring, 0x00000012);
350 }
351
352 void
353 fd4_emit_state(struct fd_context *ctx, struct fd_ringbuffer *ring,
354 struct fd4_emit *emit)
355 {
356 struct ir3_shader_variant *vp = fd4_emit_get_vp(emit);
357 struct ir3_shader_variant *fp = fd4_emit_get_fp(emit);
358 uint32_t dirty = emit->dirty;
359
360 emit_marker(ring, 5);
361
362 if ((dirty & (FD_DIRTY_ZSA | FD_DIRTY_PROG)) && !emit->key.binning_pass) {
363 uint32_t val = fd4_zsa_stateobj(ctx->zsa)->rb_render_control;
364
365 /* I suppose if we needed to (which I don't *think* we need
366 * to), we could emit this for binning pass too. But we
367 * would need to keep a different patch-list for binning
368 * vs render pass.
369 */
370
371 OUT_PKT0(ring, REG_A4XX_RB_RENDER_CONTROL, 1);
372 OUT_RINGP(ring, val, &fd4_context(ctx)->rbrc_patches);
373 }
374
375 if (dirty & FD_DIRTY_ZSA) {
376 struct fd4_zsa_stateobj *zsa = fd4_zsa_stateobj(ctx->zsa);
377
378 OUT_PKT0(ring, REG_A4XX_RB_ALPHA_CONTROL, 1);
379 OUT_RING(ring, zsa->rb_alpha_control);
380
381 OUT_PKT0(ring, REG_A4XX_RB_STENCIL_CONTROL, 2);
382 OUT_RING(ring, zsa->rb_stencil_control);
383 OUT_RING(ring, zsa->rb_stencil_control2);
384 }
385
386 if (dirty & (FD_DIRTY_ZSA | FD_DIRTY_STENCIL_REF)) {
387 struct fd4_zsa_stateobj *zsa = fd4_zsa_stateobj(ctx->zsa);
388 struct pipe_stencil_ref *sr = &ctx->stencil_ref;
389
390 OUT_PKT0(ring, REG_A4XX_RB_STENCILREFMASK, 2);
391 OUT_RING(ring, zsa->rb_stencilrefmask |
392 A4XX_RB_STENCILREFMASK_STENCILREF(sr->ref_value[0]));
393 OUT_RING(ring, zsa->rb_stencilrefmask_bf |
394 A4XX_RB_STENCILREFMASK_BF_STENCILREF(sr->ref_value[1]));
395 }
396
397 if (dirty & (FD_DIRTY_ZSA | FD_DIRTY_PROG)) {
398 struct fd4_zsa_stateobj *zsa = fd4_zsa_stateobj(ctx->zsa);
399 bool fragz = fp->has_kill | fp->writes_pos;
400
401 OUT_PKT0(ring, REG_A4XX_RB_DEPTH_CONTROL, 1);
402 OUT_RING(ring, zsa->rb_depth_control |
403 COND(fragz, A4XX_RB_DEPTH_CONTROL_EARLY_Z_DISABLE));
404
405 /* maybe this register/bitfield needs a better name.. this
406 * appears to be just disabling early-z
407 */
408 OUT_PKT0(ring, REG_A4XX_GRAS_ALPHA_CONTROL, 1);
409 OUT_RING(ring, zsa->gras_alpha_control |
410 COND(fragz, A4XX_GRAS_ALPHA_CONTROL_ALPHA_TEST_ENABLE));
411 }
412
413 if (dirty & FD_DIRTY_RASTERIZER) {
414 struct fd4_rasterizer_stateobj *rasterizer =
415 fd4_rasterizer_stateobj(ctx->rasterizer);
416
417 OUT_PKT0(ring, REG_A4XX_GRAS_SU_MODE_CONTROL, 1);
418 OUT_RING(ring, rasterizer->gras_su_mode_control |
419 A4XX_GRAS_SU_MODE_CONTROL_RENDERING_PASS);
420
421 OUT_PKT0(ring, REG_A4XX_GRAS_SU_POINT_MINMAX, 2);
422 OUT_RING(ring, rasterizer->gras_su_point_minmax);
423 OUT_RING(ring, rasterizer->gras_su_point_size);
424
425 OUT_PKT0(ring, REG_A4XX_GRAS_SU_POLY_OFFSET_SCALE, 2);
426 OUT_RING(ring, rasterizer->gras_su_poly_offset_scale);
427 OUT_RING(ring, rasterizer->gras_su_poly_offset_offset);
428
429 OUT_PKT0(ring, REG_A4XX_GRAS_CL_CLIP_CNTL, 1);
430 OUT_RING(ring, rasterizer->gras_cl_clip_cntl);
431 }
432
433 /* NOTE: since primitive_restart is not actually part of any
434 * state object, we need to make sure that we always emit
435 * PRIM_VTX_CNTL.. either that or be more clever and detect
436 * when it changes.
437 */
438 if (emit->info) {
439 uint32_t val = fd4_rasterizer_stateobj(ctx->rasterizer)
440 ->pc_prim_vtx_cntl;
441
442 val |= COND(vp->writes_psize, A4XX_PC_PRIM_VTX_CNTL_PSIZE);
443 if (fp->total_in > 0) {
444 uint32_t varout = align(fp->total_in, 16) / 16;
445 if (varout > 1)
446 varout = align(varout, 2);
447 val |= A4XX_PC_PRIM_VTX_CNTL_VAROUT(varout);
448 }
449
450 OUT_PKT0(ring, REG_A4XX_PC_PRIM_VTX_CNTL, 2);
451 OUT_RING(ring, val);
452 OUT_RING(ring, 0x12); /* XXX UNKNOWN_21C5 */
453 }
454
455 if (dirty & FD_DIRTY_SCISSOR) {
456 struct pipe_scissor_state *scissor = fd_context_get_scissor(ctx);
457
458 OUT_PKT0(ring, REG_A4XX_GRAS_SC_WINDOW_SCISSOR_BR, 2);
459 OUT_RING(ring, A4XX_GRAS_SC_WINDOW_SCISSOR_BR_X(scissor->maxx - 1) |
460 A4XX_GRAS_SC_WINDOW_SCISSOR_BR_Y(scissor->maxy - 1));
461 OUT_RING(ring, A4XX_GRAS_SC_WINDOW_SCISSOR_TL_X(scissor->minx) |
462 A4XX_GRAS_SC_WINDOW_SCISSOR_TL_Y(scissor->miny));
463
464 ctx->max_scissor.minx = MIN2(ctx->max_scissor.minx, scissor->minx);
465 ctx->max_scissor.miny = MIN2(ctx->max_scissor.miny, scissor->miny);
466 ctx->max_scissor.maxx = MAX2(ctx->max_scissor.maxx, scissor->maxx);
467 ctx->max_scissor.maxy = MAX2(ctx->max_scissor.maxy, scissor->maxy);
468 }
469
470 if (dirty & FD_DIRTY_VIEWPORT) {
471 fd_wfi(ctx, ring);
472 OUT_PKT0(ring, REG_A4XX_GRAS_CL_VPORT_XOFFSET_0, 6);
473 OUT_RING(ring, A4XX_GRAS_CL_VPORT_XOFFSET_0(ctx->viewport.translate[0]));
474 OUT_RING(ring, A4XX_GRAS_CL_VPORT_XSCALE_0(ctx->viewport.scale[0]));
475 OUT_RING(ring, A4XX_GRAS_CL_VPORT_YOFFSET_0(ctx->viewport.translate[1]));
476 OUT_RING(ring, A4XX_GRAS_CL_VPORT_YSCALE_0(ctx->viewport.scale[1]));
477 OUT_RING(ring, A4XX_GRAS_CL_VPORT_ZOFFSET_0(ctx->viewport.translate[2]));
478 OUT_RING(ring, A4XX_GRAS_CL_VPORT_ZSCALE_0(ctx->viewport.scale[2]));
479 }
480
481 if (dirty & FD_DIRTY_PROG)
482 fd4_program_emit(ring, emit);
483
484 if ((dirty & (FD_DIRTY_PROG | FD_DIRTY_CONSTBUF)) &&
485 /* evil hack to deal sanely with clear path: */
486 (emit->prog == &ctx->prog)) {
487 fd_wfi(ctx, ring);
488 emit_constants(ring, SB_VERT_SHADER,
489 &ctx->constbuf[PIPE_SHADER_VERTEX],
490 (emit->prog->dirty & FD_SHADER_DIRTY_VP) ? vp : NULL);
491 if (!emit->key.binning_pass) {
492 emit_constants(ring, SB_FRAG_SHADER,
493 &ctx->constbuf[PIPE_SHADER_FRAGMENT],
494 (emit->prog->dirty & FD_SHADER_DIRTY_FP) ? fp : NULL);
495 }
496 }
497
498 if ((dirty & FD_DIRTY_BLEND) && ctx->blend) {
499 struct fd4_blend_stateobj *blend = fd4_blend_stateobj(ctx->blend);
500 uint32_t i;
501
502 for (i = 0; i < 8; i++) {
503 OUT_PKT0(ring, REG_A4XX_RB_MRT_CONTROL(i), 1);
504 OUT_RING(ring, blend->rb_mrt[i].control);
505
506 OUT_PKT0(ring, REG_A4XX_RB_MRT_BLEND_CONTROL(i), 1);
507 OUT_RING(ring, blend->rb_mrt[i].blend_control);
508 }
509
510 OUT_PKT0(ring, REG_A4XX_RB_FS_OUTPUT, 1);
511 OUT_RING(ring, blend->rb_fs_output |
512 A4XX_RB_FS_OUTPUT_SAMPLE_MASK(0xffff));
513 }
514
515 if (dirty & FD_DIRTY_BLEND_COLOR) {
516 struct pipe_blend_color *bcolor = &ctx->blend_color;
517 OUT_PKT0(ring, REG_A4XX_RB_BLEND_RED, 4);
518 OUT_RING(ring, A4XX_RB_BLEND_RED_UINT(bcolor->color[0] * 255.0) |
519 A4XX_RB_BLEND_RED_FLOAT(bcolor->color[0]));
520 OUT_RING(ring, A4XX_RB_BLEND_GREEN_UINT(bcolor->color[1] * 255.0) |
521 A4XX_RB_BLEND_GREEN_FLOAT(bcolor->color[1]));
522 OUT_RING(ring, A4XX_RB_BLEND_BLUE_UINT(bcolor->color[2] * 255.0) |
523 A4XX_RB_BLEND_BLUE_FLOAT(bcolor->color[2]));
524 OUT_RING(ring, A4XX_RB_BLEND_ALPHA_UINT(bcolor->color[3] * 255.0) |
525 A4XX_RB_BLEND_ALPHA_FLOAT(bcolor->color[3]));
526 }
527
528 if (dirty & FD_DIRTY_VERTTEX) {
529 if (vp->has_samp)
530 emit_textures(ctx, ring, SB_VERT_TEX, &ctx->verttex);
531 else
532 dirty &= ~FD_DIRTY_VERTTEX;
533 }
534
535 if (dirty & FD_DIRTY_FRAGTEX) {
536 if (fp->has_samp)
537 emit_textures(ctx, ring, SB_FRAG_TEX, &ctx->fragtex);
538 else
539 dirty &= ~FD_DIRTY_FRAGTEX;
540 }
541
542 ctx->dirty &= ~dirty;
543 }
544
545 /* emit setup at begin of new cmdstream buffer (don't rely on previous
546 * state, there could have been a context switch between ioctls):
547 */
548 void
549 fd4_emit_restore(struct fd_context *ctx)
550 {
551 struct fd4_context *fd4_ctx = fd4_context(ctx);
552 struct fd_ringbuffer *ring = ctx->ring;
553
554 OUT_PKT0(ring, REG_A4XX_RBBM_PERFCTR_CTL, 1);
555 OUT_RING(ring, 0x00000001);
556
557 OUT_PKT0(ring, REG_A4XX_GRAS_DEBUG_ECO_CONTROL, 1);
558 OUT_RING(ring, 0x00000000);
559
560 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0EC3, 1);
561 OUT_RING(ring, 0x00000006);
562
563 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0F03, 1);
564 OUT_RING(ring, 0x0000003a);
565
566 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0D01, 1);
567 OUT_RING(ring, 0x00000001);
568
569 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0E42, 1);
570 OUT_RING(ring, 0x00000000);
571
572 OUT_PKT0(ring, REG_A4XX_UCHE_CACHE_WAYS_VFD, 1);
573 OUT_RING(ring, 0x00000007);
574
575 OUT_PKT0(ring, REG_A4XX_UCHE_CACHE_MODE_CONTROL, 1);
576 OUT_RING(ring, 0x00000000);
577
578 OUT_PKT0(ring, REG_A4XX_UCHE_INVALIDATE0, 2);
579 OUT_RING(ring, 0x00000000);
580 OUT_RING(ring, 0x00000012);
581
582 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0E05, 1);
583 OUT_RING(ring, 0x00000000);
584
585 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0CC5, 1);
586 OUT_RING(ring, 0x00000006);
587
588 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0CC6, 1);
589 OUT_RING(ring, 0x00000000);
590
591 OUT_PKT0(ring, REG_A4XX_UNKNOWN_0EC2, 1);
592 OUT_RING(ring, 0x00040000);
593
594 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2001, 1);
595 OUT_RING(ring, 0x00000000);
596
597 OUT_PKT3(ring, CP_INVALIDATE_STATE, 1);
598 OUT_RING(ring, 0x00001000);
599
600 OUT_PKT0(ring, REG_A4XX_UNKNOWN_20EF, 1);
601 OUT_RING(ring, 0x00000000);
602
603 OUT_PKT0(ring, REG_A4XX_UNKNOWN_20F0, 1);
604 OUT_RING(ring, 0x00000000);
605
606 OUT_PKT0(ring, REG_A4XX_UNKNOWN_20F1, 1);
607 OUT_RING(ring, 0x00000000);
608
609 OUT_PKT0(ring, REG_A4XX_UNKNOWN_20F2, 1);
610 OUT_RING(ring, 0x00000000);
611
612 OUT_PKT0(ring, REG_A4XX_RB_BLEND_RED, 4);
613 OUT_RING(ring, A4XX_RB_BLEND_RED_UINT(0) |
614 A4XX_RB_BLEND_RED_FLOAT(0.0));
615 OUT_RING(ring, A4XX_RB_BLEND_GREEN_UINT(0) |
616 A4XX_RB_BLEND_GREEN_FLOAT(0.0));
617 OUT_RING(ring, A4XX_RB_BLEND_BLUE_UINT(0) |
618 A4XX_RB_BLEND_BLUE_FLOAT(0.0));
619 OUT_RING(ring, A4XX_RB_BLEND_ALPHA_UINT(0x7fff) |
620 A4XX_RB_BLEND_ALPHA_FLOAT(1.0));
621
622 OUT_PKT0(ring, REG_A4XX_UNKNOWN_20F7, 1);
623 OUT_RING(ring, 0x3f800000);
624
625 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2152, 1);
626 OUT_RING(ring, 0x00000000);
627
628 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2153, 1);
629 OUT_RING(ring, 0x00000000);
630
631 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2154, 1);
632 OUT_RING(ring, 0x00000000);
633
634 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2155, 1);
635 OUT_RING(ring, 0x00000000);
636
637 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2156, 1);
638 OUT_RING(ring, 0x00000000);
639
640 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2157, 1);
641 OUT_RING(ring, 0x00000000);
642
643 OUT_PKT0(ring, REG_A4XX_UNKNOWN_21C3, 1);
644 OUT_RING(ring, 0x0000001d);
645
646 OUT_PKT0(ring, REG_A4XX_PC_GS_PARAM, 1);
647 OUT_RING(ring, 0x00000000);
648
649 OUT_PKT0(ring, REG_A4XX_UNKNOWN_21E6, 1);
650 OUT_RING(ring, 0x00000001);
651
652 OUT_PKT0(ring, REG_A4XX_PC_HS_PARAM, 1);
653 OUT_RING(ring, 0x00000000);
654
655 OUT_PKT0(ring, REG_A4XX_UNKNOWN_22D7, 1);
656 OUT_RING(ring, 0x00000000);
657
658 OUT_PKT0(ring, REG_A4XX_TPL1_TP_TEX_OFFSET, 1);
659 OUT_RING(ring, 0x00000000);
660
661 OUT_PKT0(ring, REG_A4XX_UNKNOWN_2381, 1);
662 OUT_RING(ring, 0x00000010);
663
664 OUT_PKT0(ring, REG_A4XX_UNKNOWN_23A0, 1);
665 OUT_RING(ring, 0x00000010);
666
667 /* we don't use this yet.. probably best to disable.. */
668 OUT_PKT3(ring, CP_SET_DRAW_STATE, 2);
669 OUT_RING(ring, CP_SET_DRAW_STATE_0_COUNT(0) |
670 CP_SET_DRAW_STATE_0_DISABLE_ALL_GROUPS |
671 CP_SET_DRAW_STATE_0_GROUP_ID(0));
672 OUT_RING(ring, CP_SET_DRAW_STATE_1_ADDR(0));
673
674 OUT_PKT0(ring, REG_A4XX_SP_VS_PVT_MEM_PARAM, 2);
675 OUT_RING(ring, 0x08000001); /* SP_VS_PVT_MEM_PARAM */
676 OUT_RELOC(ring, fd4_ctx->vs_pvt_mem, 0,0,0); /* SP_VS_PVT_MEM_ADDR */
677
678 OUT_PKT0(ring, REG_A4XX_SP_FS_PVT_MEM_PARAM, 2);
679 OUT_RING(ring, 0x08000001); /* SP_FS_PVT_MEM_PARAM */
680 OUT_RELOC(ring, fd4_ctx->fs_pvt_mem, 0,0,0); /* SP_FS_PVT_MEM_ADDR */
681
682 OUT_PKT0(ring, REG_A4XX_GRAS_SC_CONTROL, 1);
683 OUT_RING(ring, A4XX_GRAS_SC_CONTROL_RENDER_MODE(RB_RENDERING_PASS) |
684 A4XX_GRAS_SC_CONTROL_MSAA_DISABLE |
685 A4XX_GRAS_SC_CONTROL_MSAA_SAMPLES(MSAA_ONE) |
686 A4XX_GRAS_SC_CONTROL_RASTER_MODE(0));
687
688 OUT_PKT0(ring, REG_A4XX_RB_MSAA_CONTROL, 1);
689 OUT_RING(ring, A4XX_RB_MSAA_CONTROL_DISABLE |
690 A4XX_RB_MSAA_CONTROL_SAMPLES(MSAA_ONE));
691
692 OUT_PKT0(ring, REG_A4XX_GRAS_CL_GB_CLIP_ADJ, 1);
693 OUT_RING(ring, A4XX_GRAS_CL_GB_CLIP_ADJ_HORZ(0) |
694 A4XX_GRAS_CL_GB_CLIP_ADJ_VERT(0));
695
696 OUT_PKT0(ring, REG_A4XX_RB_ALPHA_CONTROL, 1);
697 OUT_RING(ring, A4XX_RB_ALPHA_CONTROL_ALPHA_TEST_FUNC(FUNC_ALWAYS));
698
699 OUT_PKT0(ring, REG_A4XX_RB_FS_OUTPUT, 1);
700 OUT_RING(ring, A4XX_RB_FS_OUTPUT_SAMPLE_MASK(0xffff));
701
702 OUT_PKT0(ring, REG_A4XX_RB_RENDER_CONTROL3, 1);
703 OUT_RING(ring, A4XX_RB_RENDER_CONTROL3_COMPONENT_ENABLE(0xf));
704
705 OUT_PKT0(ring, REG_A4XX_GRAS_CLEAR_CNTL, 1);
706 OUT_RING(ring, A4XX_GRAS_CLEAR_CNTL_NOT_FASTCLEAR);
707
708 OUT_PKT0(ring, REG_A4XX_GRAS_ALPHA_CONTROL, 1);
709 OUT_RING(ring, 0x0);
710
711 ctx->needs_rb_fbd = true;
712 }