ilo: add 3DSTATE_VF to ilo_state_vf
[mesa.git] / src / gallium / drivers / ilo / ilo_render_gen6.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2013 LunarG, Inc.
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 shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Chia-I Wu <olv@lunarg.com>
26 */
27
28 #include "genhw/genhw.h"
29 #include "core/ilo_builder_3d.h"
30 #include "core/ilo_builder_mi.h"
31 #include "core/ilo_builder_render.h"
32 #include "util/u_prim.h"
33
34 #include "ilo_blitter.h"
35 #include "ilo_query.h"
36 #include "ilo_shader.h"
37 #include "ilo_state.h"
38 #include "ilo_render_gen.h"
39
40 /**
41 * This should be called before PIPE_CONTROL.
42 */
43 void
44 gen6_wa_pre_pipe_control(struct ilo_render *r, uint32_t dw1)
45 {
46 /*
47 * From the Sandy Bridge PRM, volume 2 part 1, page 60:
48 *
49 * "Pipe-control with CS-stall bit set must be sent BEFORE the
50 * pipe-control with a post-sync op and no write-cache flushes."
51 *
52 * This WA may also be triggered indirectly by the other two WAs on the
53 * same page:
54 *
55 * "Before any depth stall flush (including those produced by
56 * non-pipelined state commands), software needs to first send a
57 * PIPE_CONTROL with no bits set except Post-Sync Operation != 0."
58 *
59 * "Before a PIPE_CONTROL with Write Cache Flush Enable =1, a
60 * PIPE_CONTROL with any non-zero post-sync-op is required."
61 */
62 const bool direct_wa_cond = (dw1 & GEN6_PIPE_CONTROL_WRITE__MASK) &&
63 !(dw1 & GEN6_PIPE_CONTROL_RENDER_CACHE_FLUSH);
64 const bool indirect_wa_cond = (dw1 & GEN6_PIPE_CONTROL_DEPTH_STALL) |
65 (dw1 & GEN6_PIPE_CONTROL_RENDER_CACHE_FLUSH);
66
67 ILO_DEV_ASSERT(r->dev, 6, 6);
68
69 if (!direct_wa_cond && !indirect_wa_cond)
70 return;
71
72 if (!(r->state.current_pipe_control_dw1 & GEN6_PIPE_CONTROL_CS_STALL)) {
73 /*
74 * From the Sandy Bridge PRM, volume 2 part 1, page 73:
75 *
76 * "1 of the following must also be set (when CS stall is set):
77 *
78 * - Depth Cache Flush Enable ([0] of DW1)
79 * - Stall at Pixel Scoreboard ([1] of DW1)
80 * - Depth Stall ([13] of DW1)
81 * - Post-Sync Operation ([13] of DW1)
82 * - Render Target Cache Flush Enable ([12] of DW1)
83 * - Notify Enable ([8] of DW1)"
84 *
85 * Because of the WAs above, we have to pick Stall at Pixel Scoreboard.
86 */
87 const uint32_t direct_wa = GEN6_PIPE_CONTROL_CS_STALL |
88 GEN6_PIPE_CONTROL_PIXEL_SCOREBOARD_STALL;
89
90 ilo_render_pipe_control(r, direct_wa);
91 }
92
93 if (indirect_wa_cond &&
94 !(r->state.current_pipe_control_dw1 & GEN6_PIPE_CONTROL_WRITE__MASK)) {
95 const uint32_t indirect_wa = GEN6_PIPE_CONTROL_WRITE_IMM;
96
97 ilo_render_pipe_control(r, indirect_wa);
98 }
99 }
100
101 /**
102 * This should be called before any non-pipelined state command.
103 */
104 static void
105 gen6_wa_pre_non_pipelined(struct ilo_render *r)
106 {
107 ILO_DEV_ASSERT(r->dev, 6, 6);
108
109 /* non-pipelined state commands produce depth stall */
110 gen6_wa_pre_pipe_control(r, GEN6_PIPE_CONTROL_DEPTH_STALL);
111 }
112
113 static void
114 gen6_wa_post_3dstate_urb_no_gs(struct ilo_render *r)
115 {
116 /*
117 * From the Sandy Bridge PRM, volume 2 part 1, page 27:
118 *
119 * "Because of a urb corruption caused by allocating a previous
120 * gsunit's urb entry to vsunit software is required to send a
121 * "GS NULL Fence" (Send URB fence with VS URB size == 1 and GS URB
122 * size == 0) plus a dummy DRAW call before any case where VS will
123 * be taking over GS URB space."
124 */
125 const uint32_t dw1 = GEN6_PIPE_CONTROL_CS_STALL;
126
127 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
128 gen6_wa_pre_pipe_control(r, dw1);
129 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
130 ilo_render_pipe_control(r, dw1);
131 }
132
133 static void
134 gen6_wa_post_3dstate_constant_vs(struct ilo_render *r)
135 {
136 /*
137 * According to upload_vs_state() of the classic driver, we need to emit a
138 * PIPE_CONTROL after 3DSTATE_CONSTANT_VS, otherwise the command is kept
139 * being buffered by VS FF, to the point that the FF dies.
140 */
141 const uint32_t dw1 = GEN6_PIPE_CONTROL_DEPTH_STALL |
142 GEN6_PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE |
143 GEN6_PIPE_CONTROL_STATE_CACHE_INVALIDATE;
144
145 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
146 gen6_wa_pre_pipe_control(r, dw1);
147 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
148 ilo_render_pipe_control(r, dw1);
149 }
150
151 static void
152 gen6_wa_pre_3dstate_vs_toggle(struct ilo_render *r)
153 {
154 /*
155 * The classic driver has this undocumented WA:
156 *
157 * From the BSpec, 3D Pipeline > Geometry > Vertex Shader > State,
158 * 3DSTATE_VS, Dword 5.0 "VS Function Enable":
159 *
160 * [DevSNB] A pipeline flush must be programmed prior to a 3DSTATE_VS
161 * command that causes the VS Function Enable to toggle. Pipeline
162 * flush can be executed by sending a PIPE_CONTROL command with CS
163 * stall bit set and a post sync operation.
164 */
165 const uint32_t dw1 = GEN6_PIPE_CONTROL_WRITE_IMM |
166 GEN6_PIPE_CONTROL_CS_STALL;
167
168 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
169 gen6_wa_pre_pipe_control(r, dw1);
170 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
171 ilo_render_pipe_control(r, dw1);
172 }
173
174 static void
175 gen6_wa_pre_3dstate_wm_max_threads(struct ilo_render *r)
176 {
177 /*
178 * From the Sandy Bridge PRM, volume 2 part 1, page 274:
179 *
180 * "A PIPE_CONTROL command, with only the Stall At Pixel Scoreboard
181 * field set (DW1 Bit 1), must be issued prior to any change to the
182 * value in this field (Maximum Number of Threads in 3DSTATE_WM)"
183 */
184 const uint32_t dw1 = GEN6_PIPE_CONTROL_PIXEL_SCOREBOARD_STALL;
185
186 ILO_DEV_ASSERT(r->dev, 6, 6);
187
188 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
189 gen6_wa_pre_pipe_control(r, dw1);
190 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
191 ilo_render_pipe_control(r, dw1);
192 }
193
194 static void
195 gen6_wa_pre_3dstate_multisample(struct ilo_render *r)
196 {
197 /*
198 * From the Sandy Bridge PRM, volume 2 part 1, page 305:
199 *
200 * "Driver must guarentee that all the caches in the depth pipe are
201 * flushed before this command (3DSTATE_MULTISAMPLE) is parsed. This
202 * requires driver to send a PIPE_CONTROL with a CS stall along with a
203 * Depth Flush prior to this command."
204 */
205 const uint32_t dw1 = GEN6_PIPE_CONTROL_DEPTH_CACHE_FLUSH |
206 GEN6_PIPE_CONTROL_CS_STALL;
207
208 ILO_DEV_ASSERT(r->dev, 6, 6);
209
210 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
211 gen6_wa_pre_pipe_control(r, dw1);
212 if ((r->state.current_pipe_control_dw1 & dw1) != dw1)
213 ilo_render_pipe_control(r, dw1);
214 }
215
216 static void
217 gen6_wa_pre_depth(struct ilo_render *r)
218 {
219 ILO_DEV_ASSERT(r->dev, 6, 6);
220
221 /*
222 * From the Ivy Bridge PRM, volume 2 part 1, page 315:
223 *
224 * "Restriction: Prior to changing Depth/Stencil Buffer state (i.e.,
225 * any combination of 3DSTATE_DEPTH_BUFFER, 3DSTATE_CLEAR_PARAMS,
226 * 3DSTATE_STENCIL_BUFFER, 3DSTATE_HIER_DEPTH_BUFFER) SW must first
227 * issue a pipelined depth stall (PIPE_CONTROL with Depth Stall bit
228 * set), followed by a pipelined depth cache flush (PIPE_CONTROL with
229 * Depth Flush Bit set, followed by another pipelined depth stall
230 * (PIPE_CONTROL with Depth Stall Bit set), unless SW can otherwise
231 * guarantee that the pipeline from WM onwards is already flushed
232 * (e.g., via a preceding MI_FLUSH)."
233 *
234 * According to the classic driver, it also applies for GEN6.
235 */
236 gen6_wa_pre_pipe_control(r, GEN6_PIPE_CONTROL_DEPTH_STALL |
237 GEN6_PIPE_CONTROL_DEPTH_CACHE_FLUSH);
238
239 ilo_render_pipe_control(r, GEN6_PIPE_CONTROL_DEPTH_STALL);
240 ilo_render_pipe_control(r, GEN6_PIPE_CONTROL_DEPTH_CACHE_FLUSH);
241 ilo_render_pipe_control(r, GEN6_PIPE_CONTROL_DEPTH_STALL);
242 }
243
244 #define DIRTY(state) (session->pipe_dirty & ILO_DIRTY_ ## state)
245
246 void
247 gen6_draw_common_select(struct ilo_render *r,
248 const struct ilo_state_vector *vec,
249 struct ilo_render_draw_session *session)
250 {
251 /* PIPELINE_SELECT */
252 if (r->hw_ctx_changed) {
253 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
254 gen6_wa_pre_non_pipelined(r);
255
256 gen6_PIPELINE_SELECT(r->builder, 0x0);
257 }
258 }
259
260 void
261 gen6_draw_common_sip(struct ilo_render *r,
262 const struct ilo_state_vector *vec,
263 struct ilo_render_draw_session *session)
264 {
265 /* STATE_SIP */
266 if (r->hw_ctx_changed) {
267 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
268 gen6_wa_pre_non_pipelined(r);
269
270 gen6_STATE_SIP(r->builder, 0);
271 }
272 }
273
274 void
275 gen6_draw_common_base_address(struct ilo_render *r,
276 const struct ilo_state_vector *vec,
277 struct ilo_render_draw_session *session)
278 {
279 /* STATE_BASE_ADDRESS */
280 if (r->state_bo_changed || r->instruction_bo_changed ||
281 r->batch_bo_changed) {
282 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
283 gen6_wa_pre_non_pipelined(r);
284
285 if (ilo_dev_gen(r->dev) >= ILO_GEN(8))
286 gen8_state_base_address(r->builder, r->hw_ctx_changed);
287 else
288 gen6_state_base_address(r->builder, r->hw_ctx_changed);
289
290 /*
291 * From the Sandy Bridge PRM, volume 1 part 1, page 28:
292 *
293 * "The following commands must be reissued following any change to
294 * the base addresses:
295 *
296 * * 3DSTATE_BINDING_TABLE_POINTERS
297 * * 3DSTATE_SAMPLER_STATE_POINTERS
298 * * 3DSTATE_VIEWPORT_STATE_POINTERS
299 * * 3DSTATE_CC_POINTERS
300 * * MEDIA_STATE_POINTERS"
301 *
302 * 3DSTATE_SCISSOR_STATE_POINTERS is not on the list, but it is
303 * reasonable to also reissue the command. Same to PCB.
304 */
305 session->viewport_changed = true;
306
307 session->scissor_changed = true;
308
309 session->blend_changed = true;
310 session->dsa_changed = true;
311 session->cc_changed = true;
312
313 session->sampler_vs_changed = true;
314 session->sampler_gs_changed = true;
315 session->sampler_fs_changed = true;
316
317 session->pcb_vs_changed = true;
318 session->pcb_gs_changed = true;
319 session->pcb_fs_changed = true;
320
321 session->binding_table_vs_changed = true;
322 session->binding_table_gs_changed = true;
323 session->binding_table_fs_changed = true;
324 }
325 }
326
327 static void
328 gen6_draw_common_urb(struct ilo_render *r,
329 const struct ilo_state_vector *vec,
330 struct ilo_render_draw_session *session)
331 {
332 const bool gs_active = (vec->gs || (vec->vs &&
333 ilo_shader_get_kernel_param(vec->vs, ILO_KERNEL_VS_GEN6_SO)));
334
335 /* 3DSTATE_URB */
336 if (session->urb_delta.dirty & (ILO_STATE_URB_3DSTATE_URB_VS |
337 ILO_STATE_URB_3DSTATE_URB_GS)) {
338 gen6_3DSTATE_URB(r->builder, &vec->urb);
339
340 if (r->state.gs.active && !gs_active)
341 gen6_wa_post_3dstate_urb_no_gs(r);
342 }
343
344 r->state.gs.active = gs_active;
345 }
346
347 static void
348 gen6_draw_common_pointers_1(struct ilo_render *r,
349 const struct ilo_state_vector *vec,
350 struct ilo_render_draw_session *session)
351 {
352 /* 3DSTATE_VIEWPORT_STATE_POINTERS */
353 if (session->viewport_changed) {
354 gen6_3DSTATE_VIEWPORT_STATE_POINTERS(r->builder,
355 r->state.CLIP_VIEWPORT,
356 r->state.SF_VIEWPORT,
357 r->state.CC_VIEWPORT);
358 }
359 }
360
361 static void
362 gen6_draw_common_pointers_2(struct ilo_render *r,
363 const struct ilo_state_vector *vec,
364 struct ilo_render_draw_session *session)
365 {
366 /* 3DSTATE_CC_STATE_POINTERS */
367 if (session->blend_changed ||
368 session->dsa_changed ||
369 session->cc_changed) {
370 gen6_3DSTATE_CC_STATE_POINTERS(r->builder,
371 r->state.BLEND_STATE,
372 r->state.DEPTH_STENCIL_STATE,
373 r->state.COLOR_CALC_STATE);
374 }
375
376 /* 3DSTATE_SAMPLER_STATE_POINTERS */
377 if (session->sampler_vs_changed ||
378 session->sampler_gs_changed ||
379 session->sampler_fs_changed) {
380 gen6_3DSTATE_SAMPLER_STATE_POINTERS(r->builder,
381 r->state.vs.SAMPLER_STATE,
382 0,
383 r->state.wm.SAMPLER_STATE);
384 }
385 }
386
387 static void
388 gen6_draw_common_pointers_3(struct ilo_render *r,
389 const struct ilo_state_vector *vec,
390 struct ilo_render_draw_session *session)
391 {
392 /* 3DSTATE_SCISSOR_STATE_POINTERS */
393 if (session->scissor_changed) {
394 gen6_3DSTATE_SCISSOR_STATE_POINTERS(r->builder,
395 r->state.SCISSOR_RECT);
396 }
397
398 /* 3DSTATE_BINDING_TABLE_POINTERS */
399 if (session->binding_table_vs_changed ||
400 session->binding_table_gs_changed ||
401 session->binding_table_fs_changed) {
402 gen6_3DSTATE_BINDING_TABLE_POINTERS(r->builder,
403 r->state.vs.BINDING_TABLE_STATE,
404 r->state.gs.BINDING_TABLE_STATE,
405 r->state.wm.BINDING_TABLE_STATE);
406 }
407 }
408
409 void
410 gen6_draw_vf(struct ilo_render *r,
411 const struct ilo_state_vector *vec,
412 struct ilo_render_draw_session *session)
413 {
414 if (ilo_dev_gen(r->dev) >= ILO_GEN(7.5)) {
415 /* 3DSTATE_INDEX_BUFFER */
416 if ((session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_INDEX_BUFFER) ||
417 DIRTY(IB) || r->batch_bo_changed)
418 gen6_3DSTATE_INDEX_BUFFER(r->builder, &vec->ve->vf, &vec->ib);
419
420 /* 3DSTATE_VF */
421 if (session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_VF)
422 gen75_3DSTATE_VF(r->builder, &vec->ve->vf);
423 } else {
424 /* 3DSTATE_INDEX_BUFFER */
425 if ((session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_INDEX_BUFFER) ||
426 DIRTY(IB) || r->batch_bo_changed)
427 gen6_3DSTATE_INDEX_BUFFER(r->builder, &vec->ve->vf, &vec->ib);
428 }
429
430 /* 3DSTATE_VERTEX_BUFFERS */
431 if (DIRTY(VB) || DIRTY(VE) || r->batch_bo_changed) {
432 gen6_3DSTATE_VERTEX_BUFFERS(r->builder, &vec->vb, vec->ve->vb_mapping,
433 vec->ve->instance_divisors, vec->ve->vb_count);
434 }
435
436 /* 3DSTATE_VERTEX_ELEMENTS */
437 if (session->vf_delta.dirty & ILO_STATE_VF_3DSTATE_VERTEX_ELEMENTS)
438 gen6_3DSTATE_VERTEX_ELEMENTS(r->builder, &vec->ve->vf);
439 }
440
441 void
442 gen6_draw_vf_statistics(struct ilo_render *r,
443 const struct ilo_state_vector *vec,
444 struct ilo_render_draw_session *session)
445 {
446 /* 3DSTATE_VF_STATISTICS */
447 if (r->hw_ctx_changed)
448 gen6_3DSTATE_VF_STATISTICS(r->builder, false);
449 }
450
451 void
452 gen6_draw_vs(struct ilo_render *r,
453 const struct ilo_state_vector *vec,
454 struct ilo_render_draw_session *session)
455 {
456 /* 3DSTATE_CONSTANT_VS */
457 if (session->pcb_vs_changed) {
458 gen6_3DSTATE_CONSTANT_VS(r->builder,
459 &r->state.vs.PUSH_CONSTANT_BUFFER,
460 &r->state.vs.PUSH_CONSTANT_BUFFER_size,
461 1);
462
463 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
464 gen6_wa_post_3dstate_constant_vs(r);
465 }
466
467 /* 3DSTATE_VS */
468 if (DIRTY(VS) || r->instruction_bo_changed) {
469 const union ilo_shader_cso *cso = ilo_shader_get_kernel_cso(vec->vs);
470 const uint32_t kernel_offset = ilo_shader_get_kernel_offset(vec->vs);
471
472 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
473 gen6_wa_pre_3dstate_vs_toggle(r);
474
475 if (ilo_dev_gen(r->dev) == ILO_GEN(6) &&
476 ilo_shader_get_kernel_param(vec->vs, ILO_KERNEL_VS_GEN6_SO))
477 gen6_3DSTATE_VS(r->builder, &cso->vs_sol.vs, kernel_offset);
478 else
479 gen6_3DSTATE_VS(r->builder, &cso->vs, kernel_offset);
480 }
481 }
482
483 static void
484 gen6_draw_gs(struct ilo_render *r,
485 const struct ilo_state_vector *vec,
486 struct ilo_render_draw_session *session)
487 {
488 /* 3DSTATE_CONSTANT_GS */
489 if (session->pcb_gs_changed)
490 gen6_3DSTATE_CONSTANT_GS(r->builder, NULL, NULL, 0);
491
492 /* 3DSTATE_GS */
493 if (DIRTY(GS) || DIRTY(VS) ||
494 session->prim_changed || r->instruction_bo_changed) {
495 const union ilo_shader_cso *cso;
496 uint32_t kernel_offset;
497
498 if (vec->gs) {
499 cso = ilo_shader_get_kernel_cso(vec->gs);
500 kernel_offset = ilo_shader_get_kernel_offset(vec->gs);
501
502 gen6_3DSTATE_GS(r->builder, &cso->gs, kernel_offset);
503 } else if (ilo_dev_gen(r->dev) == ILO_GEN(6) &&
504 ilo_shader_get_kernel_param(vec->vs, ILO_KERNEL_VS_GEN6_SO)) {
505 const int verts_per_prim =
506 u_vertices_per_prim(session->reduced_prim);
507 enum ilo_kernel_param param;
508
509 switch (verts_per_prim) {
510 case 1:
511 param = ILO_KERNEL_VS_GEN6_SO_POINT_OFFSET;
512 break;
513 case 2:
514 param = ILO_KERNEL_VS_GEN6_SO_LINE_OFFSET;
515 break;
516 default:
517 param = ILO_KERNEL_VS_GEN6_SO_TRI_OFFSET;
518 break;
519 }
520
521 cso = ilo_shader_get_kernel_cso(vec->vs);
522 kernel_offset = ilo_shader_get_kernel_offset(vec->vs) +
523 ilo_shader_get_kernel_param(vec->vs, param);
524
525 gen6_3DSTATE_GS(r->builder, &cso->vs_sol.sol, kernel_offset);
526 } else {
527 gen6_3DSTATE_GS(r->builder, &vec->disabled_gs, 0);
528 }
529 }
530 }
531
532 static bool
533 gen6_draw_update_max_svbi(struct ilo_render *r,
534 const struct ilo_state_vector *vec,
535 struct ilo_render_draw_session *session)
536 {
537 if (DIRTY(VS) || DIRTY(GS) || DIRTY(SO)) {
538 const struct pipe_stream_output_info *so_info =
539 (vec->gs) ? ilo_shader_get_kernel_so_info(vec->gs) :
540 (vec->vs) ? ilo_shader_get_kernel_so_info(vec->vs) : NULL;
541 unsigned max_svbi = 0xffffffff;
542 int i;
543
544 for (i = 0; i < so_info->num_outputs; i++) {
545 const int output_buffer = so_info->output[i].output_buffer;
546 const struct pipe_stream_output_target *so =
547 vec->so.states[output_buffer];
548 const int struct_size = so_info->stride[output_buffer] * 4;
549 const int elem_size = so_info->output[i].num_components * 4;
550 int buf_size, count;
551
552 if (!so) {
553 max_svbi = 0;
554 break;
555 }
556
557 buf_size = so->buffer_size - so_info->output[i].dst_offset * 4;
558
559 count = buf_size / struct_size;
560 if (buf_size % struct_size >= elem_size)
561 count++;
562
563 if (count < max_svbi)
564 max_svbi = count;
565 }
566
567 if (r->state.so_max_vertices != max_svbi) {
568 r->state.so_max_vertices = max_svbi;
569 return true;
570 }
571 }
572
573 return false;
574 }
575
576 static void
577 gen6_draw_gs_svbi(struct ilo_render *r,
578 const struct ilo_state_vector *vec,
579 struct ilo_render_draw_session *session)
580 {
581 const bool emit = gen6_draw_update_max_svbi(r, vec, session);
582
583 /* 3DSTATE_GS_SVB_INDEX */
584 if (emit) {
585 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
586 gen6_wa_pre_non_pipelined(r);
587
588 gen6_3DSTATE_GS_SVB_INDEX(r->builder,
589 0, 0, r->state.so_max_vertices,
590 false);
591
592 if (r->hw_ctx_changed) {
593 int i;
594
595 /*
596 * From the Sandy Bridge PRM, volume 2 part 1, page 148:
597 *
598 * "If a buffer is not enabled then the SVBI must be set to 0x0
599 * in order to not cause overflow in that SVBI."
600 *
601 * "If a buffer is not enabled then the MaxSVBI must be set to
602 * 0xFFFFFFFF in order to not cause overflow in that SVBI."
603 */
604 for (i = 1; i < 4; i++) {
605 gen6_3DSTATE_GS_SVB_INDEX(r->builder,
606 i, 0, 0xffffffff, false);
607 }
608 }
609 }
610 }
611
612 void
613 gen6_draw_clip(struct ilo_render *r,
614 const struct ilo_state_vector *vec,
615 struct ilo_render_draw_session *session)
616 {
617 /* 3DSTATE_CLIP */
618 if (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_CLIP)
619 gen6_3DSTATE_CLIP(r->builder, &vec->rasterizer->rs);
620 }
621
622 static void
623 gen6_draw_sf(struct ilo_render *r,
624 const struct ilo_state_vector *vec,
625 struct ilo_render_draw_session *session)
626 {
627 /* 3DSTATE_SF */
628 if ((session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_SF) || DIRTY(FS)) {
629 const struct ilo_state_sbe *sbe = ilo_shader_get_kernel_sbe(vec->fs);
630 gen6_3DSTATE_SF(r->builder, &vec->rasterizer->rs, sbe);
631 }
632 }
633
634 void
635 gen6_draw_sf_rect(struct ilo_render *r,
636 const struct ilo_state_vector *vec,
637 struct ilo_render_draw_session *session)
638 {
639 /* 3DSTATE_DRAWING_RECTANGLE */
640 if (DIRTY(FB)) {
641 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
642 gen6_wa_pre_non_pipelined(r);
643
644 gen6_3DSTATE_DRAWING_RECTANGLE(r->builder, 0, 0,
645 vec->fb.state.width, vec->fb.state.height);
646 }
647 }
648
649 static void
650 gen6_draw_wm(struct ilo_render *r,
651 const struct ilo_state_vector *vec,
652 struct ilo_render_draw_session *session)
653 {
654 /* 3DSTATE_CONSTANT_PS */
655 if (session->pcb_fs_changed) {
656 gen6_3DSTATE_CONSTANT_PS(r->builder,
657 &r->state.wm.PUSH_CONSTANT_BUFFER,
658 &r->state.wm.PUSH_CONSTANT_BUFFER_size,
659 1);
660 }
661
662 /* 3DSTATE_WM */
663 if (DIRTY(FS) ||
664 (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_WM) ||
665 r->instruction_bo_changed) {
666 const union ilo_shader_cso *cso = ilo_shader_get_kernel_cso(vec->fs);
667 const uint32_t kernel_offset = ilo_shader_get_kernel_offset(vec->fs);
668
669 if (ilo_dev_gen(r->dev) == ILO_GEN(6) && r->hw_ctx_changed)
670 gen6_wa_pre_3dstate_wm_max_threads(r);
671
672 gen6_3DSTATE_WM(r->builder, &vec->rasterizer->rs,
673 &cso->ps, kernel_offset);
674 }
675 }
676
677 static void
678 gen6_draw_wm_multisample(struct ilo_render *r,
679 const struct ilo_state_vector *vec,
680 struct ilo_render_draw_session *session)
681 {
682 /* 3DSTATE_MULTISAMPLE */
683 if (DIRTY(FB) || (session->rs_delta.dirty &
684 ILO_STATE_RASTER_3DSTATE_MULTISAMPLE)) {
685 const uint8_t sample_count = (vec->fb.num_samples > 1) ? 4 : 1;
686
687 if (ilo_dev_gen(r->dev) == ILO_GEN(6)) {
688 gen6_wa_pre_non_pipelined(r);
689 gen6_wa_pre_3dstate_multisample(r);
690 }
691
692 gen6_3DSTATE_MULTISAMPLE(r->builder, &vec->rasterizer->rs,
693 &r->sample_pattern, sample_count);
694 }
695
696 /* 3DSTATE_SAMPLE_MASK */
697 if (session->rs_delta.dirty & ILO_STATE_RASTER_3DSTATE_SAMPLE_MASK)
698 gen6_3DSTATE_SAMPLE_MASK(r->builder, &vec->rasterizer->rs);
699 }
700
701 static void
702 gen6_draw_wm_depth(struct ilo_render *r,
703 const struct ilo_state_vector *vec,
704 struct ilo_render_draw_session *session)
705 {
706 /* 3DSTATE_DEPTH_BUFFER and 3DSTATE_CLEAR_PARAMS */
707 if (DIRTY(FB) || r->batch_bo_changed) {
708 const struct ilo_state_zs *zs;
709 uint32_t clear_params;
710
711 if (vec->fb.state.zsbuf) {
712 const struct ilo_surface_cso *surface =
713 (const struct ilo_surface_cso *) vec->fb.state.zsbuf;
714 const struct ilo_texture_slice *slice =
715 ilo_texture_get_slice(ilo_texture(surface->base.texture),
716 surface->base.u.tex.level, surface->base.u.tex.first_layer);
717
718 assert(!surface->is_rt);
719
720 zs = &surface->u.zs;
721 clear_params = slice->clear_value;
722 }
723 else {
724 zs = &vec->fb.null_zs;
725 clear_params = 0;
726 }
727
728 if (ilo_dev_gen(r->dev) == ILO_GEN(6)) {
729 gen6_wa_pre_non_pipelined(r);
730 gen6_wa_pre_depth(r);
731 }
732
733 gen6_3DSTATE_DEPTH_BUFFER(r->builder, zs);
734 gen6_3DSTATE_HIER_DEPTH_BUFFER(r->builder, zs);
735 gen6_3DSTATE_STENCIL_BUFFER(r->builder, zs);
736 gen6_3DSTATE_CLEAR_PARAMS(r->builder, clear_params);
737 }
738 }
739
740 void
741 gen6_draw_wm_raster(struct ilo_render *r,
742 const struct ilo_state_vector *vec,
743 struct ilo_render_draw_session *session)
744 {
745 /* 3DSTATE_POLY_STIPPLE_PATTERN and 3DSTATE_POLY_STIPPLE_OFFSET */
746 if ((DIRTY(RASTERIZER) || DIRTY(POLY_STIPPLE)) &&
747 vec->rasterizer->state.poly_stipple_enable) {
748 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
749 gen6_wa_pre_non_pipelined(r);
750
751 gen6_3DSTATE_POLY_STIPPLE_PATTERN(r->builder, &vec->poly_stipple);
752 gen6_3DSTATE_POLY_STIPPLE_OFFSET(r->builder, &vec->poly_stipple);
753 }
754
755 /* 3DSTATE_LINE_STIPPLE */
756 if (DIRTY(RASTERIZER) && vec->rasterizer->state.line_stipple_enable) {
757 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
758 gen6_wa_pre_non_pipelined(r);
759
760 gen6_3DSTATE_LINE_STIPPLE(r->builder, &vec->line_stipple);
761 }
762
763 /* 3DSTATE_AA_LINE_PARAMETERS */
764 if (session->rs_delta.dirty &
765 ILO_STATE_RASTER_3DSTATE_AA_LINE_PARAMETERS) {
766 if (ilo_dev_gen(r->dev) == ILO_GEN(6))
767 gen6_wa_pre_non_pipelined(r);
768
769 gen6_3DSTATE_AA_LINE_PARAMETERS(r->builder, &vec->rasterizer->rs);
770 }
771 }
772
773 #undef DIRTY
774
775 void
776 ilo_render_emit_draw_commands_gen6(struct ilo_render *render,
777 const struct ilo_state_vector *vec,
778 struct ilo_render_draw_session *session)
779 {
780 ILO_DEV_ASSERT(render->dev, 6, 6);
781
782 /*
783 * We try to keep the order of the commands match, as closely as possible,
784 * that of the classic i965 driver. It allows us to compare the command
785 * streams easily.
786 */
787 gen6_draw_common_select(render, vec, session);
788 gen6_draw_gs_svbi(render, vec, session);
789 gen6_draw_common_sip(render, vec, session);
790 gen6_draw_vf_statistics(render, vec, session);
791 gen6_draw_common_base_address(render, vec, session);
792 gen6_draw_common_pointers_1(render, vec, session);
793 gen6_draw_common_urb(render, vec, session);
794 gen6_draw_common_pointers_2(render, vec, session);
795 gen6_draw_wm_multisample(render, vec, session);
796 gen6_draw_vs(render, vec, session);
797 gen6_draw_gs(render, vec, session);
798 gen6_draw_clip(render, vec, session);
799 gen6_draw_sf(render, vec, session);
800 gen6_draw_wm(render, vec, session);
801 gen6_draw_common_pointers_3(render, vec, session);
802 gen6_draw_wm_depth(render, vec, session);
803 gen6_draw_wm_raster(render, vec, session);
804 gen6_draw_sf_rect(render, vec, session);
805 gen6_draw_vf(render, vec, session);
806
807 ilo_render_3dprimitive(render, vec->draw, &vec->ib);
808 }
809
810 static void
811 gen6_rectlist_vs_to_sf(struct ilo_render *r,
812 const struct ilo_blitter *blitter)
813 {
814 gen6_3DSTATE_CONSTANT_VS(r->builder, NULL, NULL, 0);
815 gen6_wa_post_3dstate_constant_vs(r);
816
817 gen6_wa_pre_3dstate_vs_toggle(r);
818 gen6_3DSTATE_VS(r->builder, &blitter->vs, 0);
819
820 gen6_3DSTATE_CONSTANT_GS(r->builder, NULL, NULL, 0);
821 gen6_3DSTATE_GS(r->builder, &blitter->gs, 0);
822
823 gen6_3DSTATE_CLIP(r->builder, &blitter->fb.rs);
824 gen6_3DSTATE_SF(r->builder, &blitter->fb.rs, &blitter->sbe);
825 }
826
827 static void
828 gen6_rectlist_wm(struct ilo_render *r,
829 const struct ilo_blitter *blitter)
830 {
831 gen6_3DSTATE_CONSTANT_PS(r->builder, NULL, NULL, 0);
832
833 gen6_wa_pre_3dstate_wm_max_threads(r);
834 gen6_3DSTATE_WM(r->builder, &blitter->fb.rs, &blitter->ps, 0);
835 }
836
837 static void
838 gen6_rectlist_wm_depth(struct ilo_render *r,
839 const struct ilo_blitter *blitter)
840 {
841 gen6_wa_pre_depth(r);
842
843 if (blitter->uses & (ILO_BLITTER_USE_FB_DEPTH |
844 ILO_BLITTER_USE_FB_STENCIL))
845 gen6_3DSTATE_DEPTH_BUFFER(r->builder, &blitter->fb.dst.u.zs);
846
847 if (blitter->uses & ILO_BLITTER_USE_FB_DEPTH) {
848 gen6_3DSTATE_HIER_DEPTH_BUFFER(r->builder,
849 &blitter->fb.dst.u.zs);
850 }
851
852 if (blitter->uses & ILO_BLITTER_USE_FB_STENCIL) {
853 gen6_3DSTATE_STENCIL_BUFFER(r->builder,
854 &blitter->fb.dst.u.zs);
855 }
856
857 gen6_3DSTATE_CLEAR_PARAMS(r->builder,
858 blitter->depth_clear_value);
859 }
860
861 static void
862 gen6_rectlist_wm_multisample(struct ilo_render *r,
863 const struct ilo_blitter *blitter)
864 {
865 const uint8_t sample_count = (blitter->fb.num_samples > 1) ? 4 : 1;
866
867 gen6_wa_pre_3dstate_multisample(r);
868
869 gen6_3DSTATE_MULTISAMPLE(r->builder, &blitter->fb.rs, &r->sample_pattern, sample_count);
870 gen6_3DSTATE_SAMPLE_MASK(r->builder, &blitter->fb.rs);
871 }
872
873 int
874 ilo_render_get_rectlist_commands_len_gen6(const struct ilo_render *render,
875 const struct ilo_blitter *blitter)
876 {
877 ILO_DEV_ASSERT(render->dev, 6, 7.5);
878
879 return 256;
880 }
881
882 void
883 ilo_render_emit_rectlist_commands_gen6(struct ilo_render *r,
884 const struct ilo_blitter *blitter,
885 const struct ilo_render_rectlist_session *session)
886 {
887 ILO_DEV_ASSERT(r->dev, 6, 6);
888
889 gen6_wa_pre_non_pipelined(r);
890
891 gen6_rectlist_wm_multisample(r, blitter);
892
893 gen6_state_base_address(r->builder, true);
894
895 gen6_user_3DSTATE_VERTEX_BUFFERS(r->builder,
896 session->vb_start, session->vb_end,
897 sizeof(blitter->vertices[0]));
898
899 gen6_3DSTATE_VERTEX_ELEMENTS(r->builder, &blitter->vf);
900
901 gen6_3DSTATE_URB(r->builder, &blitter->urb);
902
903 if (r->state.gs.active) {
904 gen6_wa_post_3dstate_urb_no_gs(r);
905 r->state.gs.active = false;
906 }
907
908 if (blitter->uses &
909 (ILO_BLITTER_USE_DSA | ILO_BLITTER_USE_CC)) {
910 gen6_3DSTATE_CC_STATE_POINTERS(r->builder, 0,
911 r->state.DEPTH_STENCIL_STATE, r->state.COLOR_CALC_STATE);
912 }
913
914 gen6_rectlist_vs_to_sf(r, blitter);
915 gen6_rectlist_wm(r, blitter);
916
917 if (blitter->uses & ILO_BLITTER_USE_VIEWPORT) {
918 gen6_3DSTATE_VIEWPORT_STATE_POINTERS(r->builder,
919 0, 0, r->state.CC_VIEWPORT);
920 }
921
922 gen6_rectlist_wm_depth(r, blitter);
923
924 gen6_3DSTATE_DRAWING_RECTANGLE(r->builder, 0, 0,
925 blitter->fb.width, blitter->fb.height);
926
927 ilo_render_3dprimitive(r, &blitter->draw, NULL);
928 }
929
930 int
931 ilo_render_get_draw_commands_len_gen6(const struct ilo_render *render,
932 const struct ilo_state_vector *vec)
933 {
934 static int len;
935
936 ILO_DEV_ASSERT(render->dev, 6, 6);
937
938 if (!len) {
939 len += GEN6_3DSTATE_CONSTANT_ANY__SIZE * 3;
940 len += GEN6_3DSTATE_GS_SVB_INDEX__SIZE * 4;
941 len += GEN6_PIPE_CONTROL__SIZE * 5;
942
943 len +=
944 GEN6_STATE_BASE_ADDRESS__SIZE +
945 GEN6_STATE_SIP__SIZE +
946 GEN6_3DSTATE_VF_STATISTICS__SIZE +
947 GEN6_PIPELINE_SELECT__SIZE +
948 GEN6_3DSTATE_BINDING_TABLE_POINTERS__SIZE +
949 GEN6_3DSTATE_SAMPLER_STATE_POINTERS__SIZE +
950 GEN6_3DSTATE_URB__SIZE +
951 GEN6_3DSTATE_VERTEX_BUFFERS__SIZE +
952 GEN6_3DSTATE_VERTEX_ELEMENTS__SIZE +
953 GEN6_3DSTATE_INDEX_BUFFER__SIZE +
954 GEN6_3DSTATE_VIEWPORT_STATE_POINTERS__SIZE +
955 GEN6_3DSTATE_CC_STATE_POINTERS__SIZE +
956 GEN6_3DSTATE_SCISSOR_STATE_POINTERS__SIZE +
957 GEN6_3DSTATE_VS__SIZE +
958 GEN6_3DSTATE_GS__SIZE +
959 GEN6_3DSTATE_CLIP__SIZE +
960 GEN6_3DSTATE_SF__SIZE +
961 GEN6_3DSTATE_WM__SIZE +
962 GEN6_3DSTATE_SAMPLE_MASK__SIZE +
963 GEN6_3DSTATE_DRAWING_RECTANGLE__SIZE +
964 GEN6_3DSTATE_DEPTH_BUFFER__SIZE +
965 GEN6_3DSTATE_POLY_STIPPLE_OFFSET__SIZE +
966 GEN6_3DSTATE_POLY_STIPPLE_PATTERN__SIZE +
967 GEN6_3DSTATE_LINE_STIPPLE__SIZE +
968 GEN6_3DSTATE_AA_LINE_PARAMETERS__SIZE +
969 GEN6_3DSTATE_MULTISAMPLE__SIZE +
970 GEN6_3DSTATE_STENCIL_BUFFER__SIZE +
971 GEN6_3DSTATE_HIER_DEPTH_BUFFER__SIZE +
972 GEN6_3DSTATE_CLEAR_PARAMS__SIZE +
973 GEN6_3DPRIMITIVE__SIZE;
974 }
975
976 return len;
977 }